We have a cable connected to port 7 of the interface number 2 of a Foundry Bigiron switch. We want to setup this port and connect it to a specific VLAN. These are the steps.
$telnet switch
passwd = ....
> enable
passwd = ....
> configure terminal
> show interfaces ethernet 2/7
> show vlan
> vlan 822
> untagged ethernet 2/7
> exit
> write memory
> show vlan ethernet 2/7
Before adding some port to a vlan , you must make sure that the port is not currently connected to any vlan.
To check that port 2/8 is not connected to any vlan , type :
> show vlan ethernet 2/8
If the port is connected to the default vlan then you can go ahead and attach this port to a specific vlan.
To remove a port from a vlan, check the number of the vlan that the port is attached to by issuing the command
> show vlan ethernet 2/8
Then, enter the configuration mode of the vlan, eg :
> vlan 3504
Then if the port is attached to the vlan as a tagged port
> no tagged ethernet 2/8
if the port is untagged
> no untagged ethernet 2/8
finaly exit the vlan configuration mode and save
> exit > write memory
| Labels: routing, howto |
|