04-19-2019 12:06 AM
i have configured the vlan1 as 10.10.0.31 to the switch 2960
now i want to disable the vlan1 and create a new vlan99 and route the traffic through that vlan
can any body give me the answer how to do the following steps
04-19-2019 12:46 AM
Hello,
2960#conf t
2960(config)#int vlan 1
2960(config-int)#shut
2960(config-int)#exit
2960(config)#interface Vlan 99
2960(config-int)#ip address x.x.x.x y.y.y.y
04-19-2019 12:51 AM
Hello
@ramakanth wrote:
i have configured the vlan1 as 10.10.0.31 to the switch 2960
now i want to disable the vlan1 and create a new vlan99 and route the traffic through that vlan
can any body give me the answer how to do the following steps
If this switch is going to be your core switch then the following example:
conf t
int vlan 1
shut
int vlan 30
ip address 10.10.10.31 255.255.255.0
no shut
exit
vlan 99
exit
ip routing
If this is just a access switch same as above but disable ip routing and provide it with a default gateway.
no ip routing
ip default-gateway 10.10.10.x <--- ip address of core switch vlan 99
Discover and save your favorite ideas. Come back to expert answers, step-by-step guides, recent topics, and more.
New here? Get started with these tips. How to use Community New member guide