GVRP 动态注册vlan 配置
GVRP配置
(Generic Attribute Registration Protocol,通用属性注册协议)
三种注册模式
1.Normal 模式:允许接口动态注册、注销VLAN传播动态VLAN及静态VLAN。
2.Fixed 模式:禁止接口动态注册、注销VLAN,不传播任何VLAN1以外的信息。
3.Forbidden模式:禁止接口动态注册、注销VLAN,禁止传播VLAN1意外的任何VLAN信息。
注:接口启用GVRP协议默认Normal模式,如更改其他模式可在接口模式下通过命令gvrp registration fixed或forbidden。
Fixed可以通过手动创建VLAN允许其他VLAN信息通过,Forbidden模式下禁止除VLAN1以外所有VLAN通过,手动添加依然不会传递其他VLAN。
Normal模式下命令:
命令:
S1
sys
sysname S1
vlan batch 10 20
int e0/0/1
port link-type access
port default vlan 10
int e0/0/2
port link-type access
port default vlan 20
int g0/0/1
port link-type trunk
port trunk all vlan all
S2
sys
sysname S2
gvrp
int g0/0/2
port link-type trunk
port trunk allow-pass vlan all
gvrp
int g0/0/1
port link-type trunk
port trunk allow-pass vlan all
gvrp
S3
sys
sysname 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
S4
sys
sysname S4
gvrp
vlan batch vlan 10 20
int g0/0/1
port link-type trunk
port trunk allow-pass vlan all
gvrp
int e0/0/1
port link-type access
port default vlan 10
int e0/0/2
port link-type access
port default vlan 20
测试PC1与PC3、PC2与PC4连通性