This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
networking:switch:dell_8024 [2017/08/09 11:48] gcooper |
networking:switch:dell_8024 [2021/12/20 10:33] (current) gcooper |
||
---|---|---|---|
Line 4: | Line 4: | ||
http:// | http:// | ||
+ | |||
+ | **User Guide**: https:// | ||
Getting Started Guide: ftp:// | Getting Started Guide: ftp:// | ||
Line 14: | Line 16: | ||
Deploying FCoE: ftp:// | Deploying FCoE: ftp:// | ||
+ | |||
+ | ===== Replacement Fan ===== | ||
+ | |||
+ | <note warning> | ||
+ | |||
+ | **Delta FFB0412SHN-F00** | ||
+ | |||
+ | * 40x40x28mm | ||
+ | * 3-pin | ||
+ | * 13K RPM | ||
+ | * Tach signal on blue/yellow | ||
+ | * Pinned red-blue-black (red-yellow-black) from pin marked '' | ||
+ | |||
+ | {{: | ||
===== Initial Configuration ===== | ===== Initial Configuration ===== | ||
Line 22: | Line 38: | ||
Use the Getting Started Guide listed above. | Use the Getting Started Guide listed above. | ||
+ | |||
+ | Set the ' | ||
+ | |||
+ | < | ||
+ | configure | ||
+ | enable password xxxxx | ||
+ | </ | ||
+ | |||
+ | To enable SSH and web console, enter the following commands: | ||
+ | |||
+ | < | ||
+ | enable | ||
+ | configure | ||
+ | username xxx password xxx privilege 15 | ||
+ | crypto key generate rsa | ||
+ | crypto key generate dsa | ||
+ | ip ssh server | ||
+ | </ | ||
+ | |||
+ | To disable telnet, enter: | ||
+ | |||
+ | < | ||
+ | ip telnet server disable | ||
+ | </ | ||
+ | |||
+ | To enable HTTPS, enter the following commands: | ||
+ | |||
+ | FIXME Untested | ||
+ | |||
+ | < | ||
+ | crypto certificate 1 generate key | ||
+ | ip https certificate 1 | ||
+ | ip http secure-server | ||
+ | </ | ||
+ | |||
+ | To disable HTTP: | ||
+ | |||
+ | < | ||
+ | no ip http server | ||
+ | </ | ||
+ | |||
+ | < | ||
+ | exit | ||
+ | </ | ||
+ | |||
+ | After verifying connectivity via SSH or HTTPS, save the configuration by entering: | ||
+ | |||
+ | < | ||
+ | copy running-config startup-config | ||
+ | </ | ||
==== CLI Basics ==== | ==== CLI Basics ==== | ||
Line 53: | Line 119: | ||
Switch1> enable | Switch1> enable | ||
Switch1# configure | Switch1# configure | ||
- | Switch1(config)# | + | Switch1(config)# |
Switch1(config-if-ch1)# | Switch1(config-if-ch1)# | ||
Switch1(config-if-ch1)# | Switch1(config-if-ch1)# | ||
Line 66: | Line 132: | ||
Switch1> enable | Switch1> enable | ||
Switch1# configure | Switch1# configure | ||
- | |Switch1(config)# | + | Switch1(config)# |
Switch1(config-if-ch1)# | Switch1(config-if-ch1)# | ||
</ | </ | ||
Line 185: | Line 251: | ||
===== Link Aggregation (Bonding) ===== | ===== Link Aggregation (Bonding) ===== | ||
+ | |||
+ | - **Configure the switch** to enable LACP | ||
+ | - **Configure the client**/ | ||
==== Create Dynamic LACP LAG ==== | ==== Create Dynamic LACP LAG ==== | ||
+ | |||
+ | PowerConnect Switch: | ||
< | < | ||
console> enable | console> enable | ||
console# configure | console# configure | ||
- | console(config)# | + | console(config)# |
- | console(config-if)# | + | console(config-if)# |
console(config-if)# | console(config-if)# | ||
console(config)# | console(config)# | ||
+ | </ | ||
+ | |||
+ | OmniOS (UNIX) Client: | ||
+ | |||
+ | < | ||
+ | ifconfig | ||
+ | ipadm show-if | ||
+ | |||
+ | ipadm delete-if ixgbe0 | ||
+ | ipadm delete-if ixgbe1 | ||
+ | ipadm show-if | ||
+ | |||
+ | dladm create-aggr -l ixgbe0 -l ixgbe1 aggr2 | ||
+ | dladm modify-aggr -L active -T long aggr2 | ||
+ | |||
+ | ipadm create-addr -T static -a 123.123.123.123/ | ||
+ | ifconfig | ||
</ | </ |