Need to program a Dell L2 switch with some VLANs...

Asgorath

[H]ard|Gawd
Joined
Jul 12, 2004
Messages
1,253
I know how to work with Cisco switches but I need to program a Dell switch with a few VLANs and some trunk ports. If anyone is good at programming Dell switches please PM me with your contact details. I'm willing to pay to have this programmed.

Thanks.
 
That switch Dell doesn't have a CLI or a GUI you can log into to configure?
 
Firstly what model Dell Powerconnect are we working with, and what do you want to do with your VLANs. If you want to cheat the WebGUI makes everything extremely easy to do.
 
With the Dells only use the command line or the gui. Try not to use both. In my experience its easy to screw up the config if you save over a config that was created in the cli with the gui.
 
I have a few Dell PowerConnect switches; the CLI is almost identical to Cisco.

login, then do:

configure
vlan database
vlan 10-14,101,666

(this would create VLAN 10, 11, 12, 13, 14, 101, and 666)


To add a port 1/g4 to VLAN 11, login, then:

configure
interface ethernet 1/g4
switchport access vlan 11
exit
 
Back
Top