1、瞭解GVRP
GVRP(GARP VLAN Registration Protocol),稱爲VLAN註冊協議,是用來維護交換機中的VLAN動態註冊信息,並傳播該信息到其餘交換機中,避免了咱們手工一個個去配置靜態VLAN,進而提升工做效率。
GVRP的註冊模式包括:Normal,fixed和forbidden
fixed:不容許動態VLAN在端口上註冊或者註銷,且只發送靜態VLAN的聲明消息。
forbidden:不容許動態VLAN在端口上進行註冊,同時刪除端口上除了VLAN1外的全部VLAN
Normal:容許靜態和動態VLAN註冊,同時發送靜態VLAN和動態VLAN的信息,缺省狀況下,gvrp接口註冊的模式爲normalide
2、簡單配置ui
配置思路:首先開啓全局gvrp,而後配置交換機之間的trunk鏈路,並容許全部VLAN經過,開啓接口gvrp。注意:gvrp註冊是單向註冊,因此配置gvrp時須要雙向配置。orm
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,此命令可不敲
quitblog
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
quitit
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 io
3、驗證
在s1和s4上分別建立VLAN十、VLAN20、VLAN30,在S2和S3上使用display vlan 命令查看
class
GVRP查看命令:
display gvrp status命令,驗證GVRP的配置,能夠查看交換機是否使能了GVRP
display gvrp statistics命令,能夠查看GVRP中活動接口的信息。效率