赞
踩
1:掌握VLAN基本配置
2:掌握access接口和trunk接口的使用
3:掌握hybrid接口的使用
1:配置各PC的IP地址
2:使用access接口和trunk接口的配置方式完成广播域的分割
S1:
通过display vlan命令查看vlan的基本信息,发现设备中默认存在一个vlan1且所有接口默认都在vlan1中,并对vlan1的数据做untag转发。
vlan batch 10 20
interface Ethernet0/0/2
port link-type access
port default vlan 10
interface Ethernet0/0/3
port link-type access
port default vlan 20
创建VLAN并将相应接口加入vlan,验证效果
interface Ethernet0/0/1
port link-type trunk
将接口启用trunk,使用display port vlan查看接口的vlan信息,看到接口1只传输vlan1,因此必须设置允许传输的vlan的列表
port trunk allow-pass vlan 10 20设置允许传输相应vlan
S2:
与S1相同
interface Ethernet0/0/1
port link-type trunk
port trunk allow-pass vlan 10 20
vlan batch 10 20
interface Ethernet0/0/2
port link-type access
port default vlan 10
interface Ethernet0/0/3
port link-type access
port default vlan 20
测试效果:
PC1可以和PC3通信和其他都不可以通信
Trunk接口的PVID(native vlan本征vlan)是不带tag的vlan,两端必须一致,如果不一致会出现不同vlan互通现象,测试如下:
S1:
interface Ethernet0/0/1
port link-type trunk
port trunk pvid vlan 10
port trunk allow-pass vlan 10 20
S2:
interface Ethernet0/0/1
port link-type trunk
port trunk pvid vlan 20
port trunk allow-pass vlan 10 20
关注不迷路!!!
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。