文档适用产品型号:M6100,M7100
在二层网络,可以通过生成树(STP)避免环路。但STP会把部分端口阻塞,导致这一部分的链路的带宽造成浪费。而且当某些链路中断而导致拓扑改变的时候可能导致网络振荡,这个中断的时间从几毫秒到十几秒不等。
使用MLAG技术可以使所有的链路都得以利用,而且在链路中断导致拓扑改变的时候不会导致网络的震荡。MLAG可以是多台交换机上的端口组成一个LAG组,对端设备会认为自己的LAG组连接的对端是同一台设备,这样可以利用LAG的特性的有点做到上文说所的链路的充分利用和无间断转发。
MLAG又称为vPC。
目前Netgear的交换机当中,M6100和M7100可以支持MLAG。
本文档以两台M6100为例,说明如何配置MLAG,拓扑图如下:
- 开启MLAG功能
- 配置LAG1作为peer-link
interface lag 1
no spanning-tree port mode
vpc peer-link
exit
interface 1/0/41
udld enable
addport lag 1
exit
interface 1/0/42
udld enable
addport lag 1
exit |
- 配置keepalive
interface vlan 1
ip address 192.168.1.1 255.255.255.0
exit
vpc domain 1
peer-keepalive enable
peer-keepalive destination 192.168.1.2 source 192.168.1.1
peer detection enable
exit |
- 将LAG2和LAG3设置成MLAG链路
interface lag 2
vpc 1
exit
interface lag 3
vpc 2
exit |
- 查看MLAG状态
(M6100-3S) #show vpc brief
VPC domain ID.................................. 1
VPC admin status............................... Enabled
Keep-alive admin status........................ Enabled
VPC operational status......................... Enabled
Self role...................................... Primary
Peer role...................................... Secondary
Peer detection admin status.................... Peer not detected, VPC Operational
Operational VPC MAC............................ C0:FF:D4:A7:DA:01
Operational VPC system priority................ 32767
Peer-Link details
-----------------
Interface...................................... lag 1
Peer-link admin status......................... Up
Peer-link STP admin status..................... Disabled
Configured VLANs............................... 1
Egress tagged VLANs............................ none
VPC Details
-----------
Number of VPCs configured...................... 2
Number of VPCs operational..................... 2
VPC id# 1
-----------
Interface...................................... lag 2
Configured VLANs............................... 1
VPC interface state............................ Active
Local Members Status
----------------- ------
1/0/1 Up
Peer Members Status
---------------- ------
1/0/1 Up
VPC id# 2
-----------
Interface...................................... lag 3
Configured VLANs............................... 2
VPC interface state............................ Active
Local Members Status
----------------- ------
1/0/2 Up
Peer Members Status
---------------- ------
1/0/2 Up |
另外一台的M6100的配置除了peer-keepalive的源IP和目的IP对调以外,其他配置均一样,这里就不在重复。
序号 |
日期 |
跟进人 |
内容摘要 |
1 |
2015-11-23 |
Jackie |
文档创建 |