Difference between revisions of "NDPF Dell switch config"

From PDP/Grid Wiki
Jump to navigationJump to search
m
 
m
 
(One intermediate revision by the same user not shown)
Line 4: Line 4:
  
 
   enable
 
   enable
   conf
+
 
 +
(and provide password when asked for)
 +
 
 +
Then, enable the <tt>portfast</tt> feature on all ethernet interfaces
 +
 
 +
   configure
 
   int range ethe all
 
   int range ethe all
 
   spanning-tree portfast
 
   spanning-tree portfast
  
en klaar
+
now you are ready to connect nodes to the switch and use DHCP to install these nodes.
 +
If you do not enable portfast, the DHCP timeout is shorter than the STP negotiation and thus DHCP will fail.
 +
 
 +
Now, don't forget to commit the config to the startup-config. From the top-level menu
 +
 
 +
  copy run startup
 +
 
 +
 
 +
== Trunking ==
 +
 
 +
To create a trunked line of, say, ports 21 and 22 on a Dell 5324:
 +
 
 +
  enable
 +
  conf
 +
  int ethe g21
 +
  channel-group 1 mode on
 +
  exit
 +
  int ethe g22
 +
  channel-group 1 mode on
 +
 
 +
confirm that it's there:
 +
 
 +
  show int port-channel
 +
 
 +
and it should show up in channel 1.
 +
 
 +
And rememebr to match this config on deel (and there to also deploy the trunks).

Latest revision as of 13:31, 22 November 2006

Setting up the Dell 5x24 switch

connect a serial cable (9600 8N1) and login to the box

 enable

(and provide password when asked for)

Then, enable the portfast feature on all ethernet interfaces

 configure
 int range ethe all
 spanning-tree portfast

now you are ready to connect nodes to the switch and use DHCP to install these nodes. If you do not enable portfast, the DHCP timeout is shorter than the STP negotiation and thus DHCP will fail.

Now, don't forget to commit the config to the startup-config. From the top-level menu

 copy run startup


Trunking

To create a trunked line of, say, ports 21 and 22 on a Dell 5324:

 enable
 conf
 int ethe g21 
 channel-group 1 mode on
 exit
 int ethe g22
 channel-group 1 mode on

confirm that it's there:

 show int port-channel

and it should show up in channel 1.

And rememebr to match this config on deel (and there to also deploy the trunks).