cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
559
Views
0
Helpful
2
Replies

vlan issue

ShahabAhmad4412
Level 1
Level 1

Hi......everyone ...my question is related to vlan......i have an cisco switch 2960G and i have configured vlans e.g vlan 100 for wired

networks and vlan 200 foe wireless network......now i want that both  vlans users  are communicate with my media sever with other gigbit port 44 which are not part of these vlan.......??? How it's possible ?help me out please

2 Replies 2

vb10
Level 1
Level 1

Hello,

If users are communicating with server, which is in another VLAN, then it's done via L3 routed interfaces, either on this switch, or on separate device (which is default gateway for your VLANs). 

Hello,

 

vb10 is absolutely right. Your best option is to configure the 2960 for ip routing, below is what it could look like:

 

ip routing
!
interface Vlan 100
description Wired Network
ip address 192.168.100.1 255.255.255.0
!
interface Vlan 200
description Wireless Networks
ip address 192.168.200.1 255.255.255.0
!
interface Vlan 3
description Media Server Network
ip address 192.168.3.1 255.255.255.0
!
interface FastEthernet0/1
description Wired Networks Access Port
switchport mode access
switchport access vlan 100
spanning-tree portfast
!
interface FastEthernet0/2
description Wireless Networks Access Port
switchport mode access
switchport access vlan 200
spanning-tree portfast
!
interface FastEthernet0/3
description Media Server Access Port
switchport mode access
switchport access vlan 3
spanning-tree portfast

Review Cisco Networking products for a $25 gift card