标签:一个 vlan 51cto 上进 分享 cto roc ima 静态vlan
一、了解GVRP二、简单配置
配置思路:首先开启全局gvrp,然后配置交换机之间的trunk链路,并允许所有VLAN通过,开启接口gvrp。注意:gvrp注册是单向注册,所以配置gvrp时需要双向配置。
S1:
sys
sysn S1
gvrp //开启全局gvrp
int g0/0/1
port link-type trunk
port trunk allow-pass vlan all
gvrp //开启接口gvrp
gvrp registration normal // 配置gvrp注册模式为normal,默认为normal,此命令可不敲
quit
S4:
sys
sysn S4
gvrp
int g0/0/1
port link-type trunk
port trunk allow-pass vlan all
gvrp
quit
S2:
sys
sysn S2
gvrp
int g0/0/1
port link-type trunk
port trunk allow-pass vlan all
gvrp
int g0/0/2
port link-type trunk
port trunk allow-pass vlan all
gvrp
quit
S3:
sys
sysn S3
gvrp
int g0/0/1
port link-type trunk
port trunk allow-pass vlan all
gvrp
int g0/0/2
port link-type trunk
port trunk allow-pass vlan all
gvrp
quit
三、验证
在s1和s4上分别创建VLAN10、VLAN20、VLAN30,在S2和S3上使用display vlan 命令查看
GVRP查看命令:
display gvrp status命令,验证GVRP的配置,可以查看交换机是否使能了GVRP
display gvrp statistics命令,可以查看GVRP中活动接口的信息。
标签:一个 vlan 51cto 上进 分享 cto roc ima 静态vlan
原文地址:http://blog.51cto.com/12184141/2149744