PDA

View Full Version : 2900 Series Prob



karren
12-17-2009, 09:50 PM
i have cisco 2900 series fast ethernet switch

i'm not able to create any vlan on it.

i want to know whether 2900 series switch supports vlan or not

regards,

foxbot
12-17-2009, 09:51 PM
!try this config it should work

!Cork Switch


enable

vlan database

vlan 10 name management
vlan 20 name sales
vlan 30 name accounting

exit

configure terminal

interface range fastethernet 0/1 - 4
description connection to management vlan
switchport mode access
switchport access vlan 10
exit

interface range fastethernet 0/5 - 8
description connection to sales vlan
switchport mode access
switchport access vlan 20
exit

interface range fastethernet 0/9 - 11
description connection to accounting vlan
switchport mode access
switchport access vlan 30
exit

interface fastethernet 0/24
description trunk connection to CorkRouter fa 0/0
switchport mode trunk

exit


hostname SwCork
enable secret cisco

interface vlan1
ip address 172.16.7.2 255.255.255.248
no shut

exit

ip default-gateway 172.16.7.1

line console 0
password cisco
login

line vty 0 15
password cisco
login

exit

! if you have a router try this config for Inter-vlan

int fastethernet 0/0
ip address 172.16.7.1 255.255.255.248

no shut
exit

int fastethernet 0/0.10
encapsulation dot1q 10
ip address 172.16.4.1 255.255.255.0


int fastethernet 0/0.20
encapsulation dot1q 20
ip address 172.16.5.1 255.255.255.0


int fastethernet 0/0.30
encapsulation dot1q 30
ip address 172.16.6.1 255.255.255.0

exit

router ospf 1
network 172.16.4.0 0.0.0.255 area 0
network 172.16.5.0 0.0.0.255 area 0
network 172.16.6.0 0.0.0.255 area 0
network 172.16.7.0 0.0.0.7 area 0
exit
! or use any other routing protocol you want to (if using classfull routing change the ip addresses to classfull)

trueccnp
12-17-2009, 09:51 PM
Hi!
Check that your switch is not in VTP Client mode.