Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Multi VLAN on Cisco 3500XL

Status
Not open for further replies.

SJDunfee

IS-IT--Management
Aug 22, 2009
3
US
Hello,
I have a switch with 3 VLANs, and they all need to access a backup server connected to two ports (fe0/47-48). Here is my config. Can anyone tell me why I can not access this server from any of the VLANs please?

Building configuration...

SOLACE-COLO1#sh run
Building configuration...

Current configuration:
!
version 12.0
no service pad
service timestamps debug datetime msec localtime show-timezone
service timestamps log datetime msec localtime show-timezone
service password-encryption
!
hostname SOLACE-COLO1
!
logging console informational
enable password 7 *
!
!
!
!
!
clock timezone CST -6
!
ip subnet-zero
no ip domain-lookup
!
!
!
interface FastEthernet0/1
switchport access vlan 101
spanning-tree portfast
!
interface FastEthernet0/2
switchport access vlan 101
spanning-tree portfast
!
interface FastEthernet0/3
switchport access vlan 101
spanning-tree portfast
!
interface FastEthernet0/4
switchport access vlan 101
spanning-tree portfast
!
interface FastEthernet0/5
switchport access vlan 101
spanning-tree portfast
!
interface FastEthernet0/6
switchport access vlan 101
spanning-tree portfast
!
interface FastEthernet0/7
switchport access vlan 101
spanning-tree portfast
!
interface FastEthernet0/8
switchport access vlan 101
spanning-tree portfast
!
interface FastEthernet0/9
switchport access vlan 102
spanning-tree portfast
!
interface FastEthernet0/10
switchport access vlan 102
spanning-tree portfast
!
interface FastEthernet0/11
switchport access vlan 102
spanning-tree portfast
!
interface FastEthernet0/12
switchport access vlan 102
spanning-tree portfast
!
interface FastEthernet0/13
switchport access vlan 102
spanning-tree portfast
!
interface FastEthernet0/14
switchport access vlan 102
spanning-tree portfast
!
interface FastEthernet0/15
switchport access vlan 102
spanning-tree portfast
!
interface FastEthernet0/16
switchport access vlan 102
spanning-tree portfast
!
interface FastEthernet0/17
switchport access vlan 103
spanning-tree portfast
!
interface FastEthernet0/18
switchport access vlan 103
spanning-tree portfast
!
interface FastEthernet0/19
switchport access vlan 103
spanning-tree portfast
!
interface FastEthernet0/20
switchport access vlan 103
spanning-tree portfast
!
interface FastEthernet0/21
switchport access vlan 103
spanning-tree portfast
!
interface FastEthernet0/22
switchport access vlan 103
spanning-tree portfast
!
interface FastEthernet0/23
switchport access vlan 103
spanning-tree portfast
!
interface FastEthernet0/24
switchport access vlan 103
spanning-tree portfast
!
interface Fas spanning-tree portfast
!
interface FastEthernet0/26
spanning-tree portfast
!
interface FastEthernet0/27
spanning-tree portfast
!
interface FastEthernet0/28
spanning-tree portfast
!
interface FastEthernet0/29
spanning-tree portfast
!
interface FastEthernet0/30
spanning-tree portfast
!
interface FastEthernet0/31
spanning-tree portfast
!
interface FastEthernet0/32
spanning-tree portfast
!
interface FastEthernet0/33
spanning-tree portfast
!
interface FastEthernet0/34
spanning-tree portfast
!
interface FastEthernet0/35
spanning-tree portfast
!
interface FastEthernet0/36
spanning-tree portfast
!
interface FastEthernet0/37
spanning-tree portfast
!
interface Fas spanning-tree portfast
!
interface FastEthernet0/39
spanning-tree portfast
!
interface FastEthernet0/40
spanning-tree portfast
!
interface FastEthernet0/41
spanning-tree portfast
!
interface FastEthernet0/42
spanning-tree portfFastEthernet0/43
spanning-tree portfast
!
interface FastEthernet0/44
spanning-tree portfast
!
interface FastEthernet0/45
spanning-tree portfast
!
interface FastEthernet0/46
spanning-tree portfast
!
interface FastEthernet0/47
switchport multi vlan 101-103
spanning-tree portfast
!
interface FastEthernet0/48
switchport multi vlan 101-103
spanning-tree portfast
!
interface GigabitEthernet0/1
port group 1
!
interface GigabitEthernet0/2
port group 1
!
interface VLAN1
ip address 10.254.0.1 255.255.255.0
no ip directed-broadcast
no ip route-cache
!
interface VLAN101
description SOLACEVLAN
ip address 10.0.1.254 255.255.255.0
no ip directed-broadcast
no ip route-cache
shutdown
!
interface VLAN102
description LEETEXVLAN
no ip directed-broadcast
no ip route-cache
shutdown
!
interface VLAN103
description BHCVLAN
no ip directed-broadcast
no ip route-cache
shutdown
!
!
line con 0
exec-timeout 0 0
password 7 *
login
transport input none
stopbits 1
line vty 0 4
password 7 *
login
line vty 5 15
password 7 *
login
!
ntp server 208.69.36.132
ntp server 172.17.127.3
ntp server 172.17.127.2
end

SOLACE-COLO1#~
 
A 3500xl is a layer 2 switch only , it cannot route between vlans, for that you would need a router or a layer 2/3 switch to trunk your vlans to and have it do the routing . Take a look at your config , you made 4 SVI's and notice that 3 are in the shutdown state, this is because the switch can only have 1 address on it because the address is only used to manage the switch remotely and has nothing to do with any routing . The switch can only have 1 active layer 3 SVI and it will automatically shutdown any others. The routing between vlans must be done by a layer 3 device.
 
I'm not really attempting routing. I am just asking for the port to be included in all traffic for the specified VLANs. No layer three function at all really, it's all still pre IP (Layer 1-2).
 
The server would need:
- ethernet interfaces configured as 802.1q trunks with the VLAN IDs specified
- ethernet interfaces with multiple IP addresses, one in each of the VLANs.
 
As Vince said the nics on the server would have to support trunking in order to do what you are asking.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top