下面是网络拓卜图
为了使得不同交换机上相同的VLAN可以通信,需要交换机间的链路可以承载所有VLAN数据。Trunk链路不属于任何VLAN,但是可以承载所有VLAN通信。
tarena-sw1(config)#interface fastEthernet 0/24
tarena-sw1(config-if)#switchport mode trunk
tarena-sw1(config-if)#
tarena-sw2(config)#interface fastEthernet 0/24
tarena-sw2(config-if)#switchport mode trunk
tarena-sw2(config-if)#
tarena-sw1(config)#vlan 5
tarena-sw1(config-vlan)#name HR
tarena-sw1(config-vlan)#exit
tarena-sw1(config)#vlan 10
tarena-sw1(config-vlan)#name Sales
tarena-sw1(config-vlan)#exit
tarena-sw1(config)#
tarena-sw2(config)#vlan 5
tarena-sw2(config-vlan)#name HR
tarena-sw2(config-vlan)#exit
tarena-sw2(config)#vlan 10
tarena-sw2(config-vlan)#name Sales
tarena-sw2(config-vlan)#exit
tarena-sw2(config)#
把交换机端口加入到VLAN时,也可以不指定switchport mode access,但是有些交换机的端口默认是企望或自动状态。如果该端口所连用户通过软件协商成中继状态,那么他就可以向任何VLAN发送数据,对安全产生威胁。因此,强烈建议设置switchport mode access语句。
tarena-sw1(config)#interface fastEthernet 0/1
tarena-sw1(config-if)#switchport mode access
tarena-sw1(config-if)#switchport access vlan 5
tarena-sw1(config-if)#exit
tarena-sw1(config)#interface fastEthernet 0/2
tarena-sw1(config-if)#switchport mode access
tarena-sw1(config-if)#switchport access vlan 10
tarena-sw1(config-if)#exit
tarena-sw1(config)#
tarena-sw2(config)#interface fastEthernet 0/3
tarena-sw1(config-if)#switchport mode access
tarena-sw2(config-if)#switchport access vlan 5
tarena-sw2(config-if)#exit
tarena-sw2(config)#interface fastEthernet 0/4
tarena-sw1(config-if)#switchport mode access
tarena-sw2(config-if)#switchport access vlan 10
tarena-sw2(config-if)#exit
tarena-sw2(config)#
交换机所有端口默认都属于VLAN1,VLAN1是交换机预设VLAN,它还有一些特殊应用,不能被删除。
tarena-sw1#show vlan brief
VLAN Name Status Ports
---- -------------------------------- --------- ---------------------
1 default active Fa0/3, Fa0/4, Fa0/5, Fa0/6
Fa0/7, Fa0/8, Fa0/9, Fa0/10
Fa0/11, Fa0/12, Fa0/13, Fa0/14
Fa0/15, Fa0/16, Fa0/17, Fa0/18
Fa0/19, Fa0/20, Fa0/21, Fa0/22
Fa0/23
5 HR active Fa0/1
10 Sales active Fa0/2
1002 fddi-default active
1003 token-ring-default active
1004 fddinet-default active
1005 trnet-default active
tarena-sw1#
tarena-sw2#show vlan brief
VLAN Name Status Ports
---- -------------------------------- ---------------------------------
1 default active Fa0/1, Fa0/2, Fa0/5, Fa0/6
Fa0/7, Fa0/8, Fa0/9, Fa0/10
Fa0/11, Fa0/12, Fa0/13, Fa0/14
Fa0/15, Fa0/16, Fa0/17, Fa0/18
Fa0/19, Fa0/20, Fa0/21, Fa0/22
Fa0/23
5 HR active Fa0/3
10 Sales active Fa0/4
1002 fddi-default active
1003 token-ring-default active
1004 fddinet-default active
1005 trnet-default active
tarena-sw2#
结果显示已经将端口加入到相应VLAN中
注意端口的Administrative Mode和Operational Mode,管理模式Administrative Mode是指该端口配置模式,而操作模式Operational Mode才是真正生效的模式。比如端口的管理模式Administrative Mode有可能是动态企望dynamic desireble模式,但操作模式Operational Mode是中继trunk。
tarena-sw1#show interfaces fastEthernet 0/24 switchport
Name: Fa0/24
Switchport: Enabled
Administrative Mode: trunk
Operational Mode: trunk
Administrative Trunking Encapsulation: dot1q
Operational Trunking Encapsulation: dot1q
Negotiation of Trunking: On
Access Mode VLAN: 1 (default)
Trunking Native Mode VLAN: 1 (default)
Voice VLAN: none
Administrative private-vlan host-association: none
Administrative private-vlan mapping: none
Administrative private-vlan trunk native VLAN: none
Administrative private-vlan trunk encapsulation: dot1q
Administrative private-vlan trunk normal VLANs: none
Administrative private-vlan trunk private VLANs: none
Operational private-vlan: none
Trunking VLANs Enabled: ALL
Pruning VLANs Enabled: 2-1001
Capture Mode Disabled
Capture VLANs Allowed: ALL
Protected: false
Appliance trust: none
tarena-sw1#
结果显示tarena-sw1的f0/24端口当前为中继链路,采用了802.1q的封装
PC>ping 192.168.5.20
Pinging 192.168.5.20 with 32 bytes of data:
Reply from 192.168.5.20: bytes=32 time=27ms TTL=128
Reply from 192.168.5.20: bytes=32 time=22ms TTL=128
Reply from 192.168.5.20: bytes=32 time=22ms TTL=128
Reply from 192.168.5.20: bytes=32 time=5ms TTL=128
Ping statistics for 192.168.5.20:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 5ms, Maximum = 27ms, Average = 19ms
PC>
结果表明两台处于相同VLAN的PC可以互通。不同VLAN的主机,即使IP地址在相同网络也不能通信。如果想实现VLAN间的互通,需要用到后面的“VLAN间路由”知识。
PC>ping 192.168.10.20
Pinging 192.168.10.20 with 32 bytes of data:
Reply from 192.168.10.20: bytes=32 time=25ms TTL=128
Reply from 192.168.10.20: bytes=32 time=11ms TTL=128
Reply from 192.168.10.20: bytes=32 time=13ms TTL=128
Reply from 192.168.10.20: bytes=32 time=12ms TTL=128
Ping statistics for 192.168.10.20:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 11ms, Maximum = 25ms, Average = 15ms
PC>
结果表明两台处于相同VLAN的PC可以互通