Recently I've configured a Catalyst 2900 XL.
You can only configure an ip address on vlan interface for purposes management only.
I have set three vlan: 1 (default), 2 and 3.
Switch(config)# interface vlan 3
Switch(config)# ip address 192.168.4.213 255.255.254.0
If I do "no shutdown", the interface goes on "administratively down".
According to my startup-config:
!
interface VLAN1
no ip directed-broadcast
no ip route-cache
!
interface VLAN3
ip address 192.168.4.213 255.255.254.0
no ip redirects
no ip directed-broadcast
no ip proxy-arp
no ip route-cache
shutdown
!
Nevertheless, if I run:
Switch(config)# interface vlan 3
Switch(config)# managed
You can do
Switch(config)# no shutdown
and works nice: you can use the ip address of interface vlan 3, but in running-config appears:
!
interface VLAN1
no ip directed-broadcast
no ip route-cache
shutdown
!
interface VLAN3
ip address 192.168.4.213 255.255.254.0
no ip redirects
no ip directed-broadcast
no ip proxy-arp
no ip route-cache
!
I'm wondering if in this kind of switch you can only use an management ip address per vlan interface. Am I right?
Many thanks in advance!
You can only configure an ip address on vlan interface for purposes management only.
I have set three vlan: 1 (default), 2 and 3.
Switch(config)# interface vlan 3
Switch(config)# ip address 192.168.4.213 255.255.254.0
If I do "no shutdown", the interface goes on "administratively down".
According to my startup-config:
!
interface VLAN1
no ip directed-broadcast
no ip route-cache
!
interface VLAN3
ip address 192.168.4.213 255.255.254.0
no ip redirects
no ip directed-broadcast
no ip proxy-arp
no ip route-cache
shutdown
!
Nevertheless, if I run:
Switch(config)# interface vlan 3
Switch(config)# managed
You can do
Switch(config)# no shutdown
and works nice: you can use the ip address of interface vlan 3, but in running-config appears:
!
interface VLAN1
no ip directed-broadcast
no ip route-cache
shutdown
!
interface VLAN3
ip address 192.168.4.213 255.255.254.0
no ip redirects
no ip directed-broadcast
no ip proxy-arp
no ip route-cache
!
I'm wondering if in this kind of switch you can only use an management ip address per vlan interface. Am I right?
Many thanks in advance!