锐捷网管交换机【配置流量平衡模式】配置举例

一、 组网需求
在IPv4网络上创建2台的AP互联,且配置静态AP,启用流量均衡功能。

二、组网图
组网图

三、 配置要点
● 将DeviceA上的接口GigabitEthernet 0/1和GigabitEthernet 0/2加入到静态AP 3中。
● 将DeviceB上的接口GigabitEthernet 0/1和GigabitEthernet 0/2加入到静态AP 3中。
● 在DeviceA上配置全局的AP流量均衡模式为基于源MAC地址的流量均衡方式。
● 在DeviceB上配置全局的AP流量均衡模式为基于目的MAC地址的流量均衡方式。

四、 配置步骤
# DeviceA配置。
DeviceA# configure terminal
DeviceA(config)# interface range GigabitEthernet 0/1-2
DeviceA(config-if-range)# port-group 3
DeviceA(config-if-range)# exit
DeviceA(config)# aggregateport load-balance src-mac

# DeviceB配置。
DeviceB# configure terminal
DeviceB(config)# interface range GigabitEthernet 0/1-2
DeviceB(config-if-range)# port-group 3
DeviceB(config-if-range)# exit
DeviceB(config)# aggregateport load-balance dst-mac

五、验证配置结果
# 通过show aggregateport load-balance查看AP的流量均衡算法配置是否正确。
DeviceA# show aggregatePort load-balance
Load-balance : Source MAC
DeviceB# show aggregatePort load-balance
Load-balance : Destination MAC

六、配置文件
●Device A的配置文件
!
interface GigabitEthernet 0/1
port-group 3
!
interface GigabitEthernet 0/2
port-group 3
!
interface AggregatePort 3
!
aggregateport load-balance src-mac
!
●Device B的配置文件
!
interface GigabitEthernet 0/1
port-group 3
!
interface GigabitEthernet 0/2
port-group 3
!
interface AggregatePort 3
!
aggregateport load-balance dst-mac
!

七、常见错误
用户配置了对称哈希因子后,show running发现没有显示配置,原因是某些产品对称哈希功能默认开启,关闭功
能时显示。

锐捷网管交换机【链路聚合口哈希流量均衡控制】配置举例

一、 组网需求
在IPv4网络上创建2台的AP互联。

二、组网图
组网图

三、 配置要点
● 将DeviceA上的接口GigabitEthernet 0/1和GigabitEthernet 0/2加入到静态AP 3中。
● 将DeviceB上的接口GigabitEthernet 0/1和GigabitEthernet 0/2加入到静态AP 3中。
● 在DeviceA上取消对称哈希因子FCOE。
● 在DeviceB上取消对称哈希因子FCOE。
● 在DeviceA上配置哈希扰动因子A。
● 在DeviceB上配置哈希扰动因子B。

四、 配置步骤
# 在DeviceA配置如下。
DeviceA# configure terminal
DeviceA(config)# interface range GigabitEthernet 0/1-2
DeviceA(config-if-range)# port-group 3
DeviceA(config-if-range)# exit
DeviceA(config)# load-balance-profile default
DeviceA(config-load-balance-profile)# no hash-symmetrical fcoe
DeviceA(config-load-balance-profile)# hash-disturb A
DeviceA(config-load-balance-profile)# exit

# 在DeviceB上配置如下。
DeviceB# configure terminal
DeviceB(config)# interface range GigabitEthernet 0/1-2
DeviceB(config-if-range)# port-group 3
DeviceB(config-if-range)# exit
DeviceB(config)# load-balance-profile default
DeviceB(config-load-balance-profile)# no hash-symmetrical fcoe
DeviceA(config-load-balance-profile)# hash-disturb B
DeviceB(config-load-balance-profile)# exit

五、验证配置结果
# 通过show running查看是否正确。

六、配置文件
●Device A的配置文件
!
load-balance-profile default
no hash-symmetrical fcoe
hash-disturb A
!
interface GigabitEthernet 0/1
port-group 3
!
interface GigabitEthernet 0/2
port-group 3
!
●Device B的配置文件
!
load-balance-profile default
no hash-symmetrical fcoe
hash-disturb B
!
interface GigabitEthernet 0/1
port-group 3
!
interface GigabitEthernet 0/2
port-group 3
!

七、常见错误
用户配置了对称哈希因子后,show running发现没有显示配置,原因是某些产品对称哈希功能默认开启,关闭功能时显示。

锐捷网管交换机【 链路聚合口AP 的容量模式】配置举例

一、 组网需求
在IPv4网络上创建2台的AP互联。

二、组网图
组网图

三、 配置要点
● 将DeviceA上的接口GigabitEthernet 0/1和GigabitEthernet 0/2加入到静态AP 3中。
● 将DeviceB上的接口GigabitEthernet 0/1和GigabitEthernet 0/2加入到静态AP 3中。
● 将DeviceA上的AP容量模式配置为128*8模式。
● 将DeviceB上的AP容量模式配置为16*64模式。

四、 配置步骤
# 在DeviceA上配置如下。
DeviceA# configure terminal
DeviceA(config)# interface range GigabitEthernet 0/1-2
DeviceA(config-if-range)# port-group 3
DeviceA(config-if-range)# exit
DeviceA(config)# aggregateport capacity mode 128*8

# 在DeviceB上配置如下。
DeviceB# configure terminal
DeviceB(config)# interface range GigabitEthernet 0/1-2
DeviceB(config-if-range)# port-group 3
DeviceB(config-if-range)# exit
DeviceB(config)# aggregateport capacity mode 16*64

五、验证配置结果
# 通过show aggregateport capacity查看AP的容量模式是否正确。
DeviceA# show aggregatePort capacity
通过show aggregateport capacity查看AP的容量模式是否正确

六、配置文件
●Device A的配置文件
!
aggregateport capacity mode 128*8
!
interface GigabitEthernet 0/1
port-group 3
!
interface GigabitEthernet 0/2
port-group 3
!
● Device B的配置文件
!
aggregateport capacity mode 16*64
!
interface GigabitEthernet 0/1
port-group 3
!
interface GigabitEthernet 0/2
port-group 3
!
interface AggregatePort 3
!

锐捷网管交换机【 配置成员接口开启 BFD 检测】配置举例

一、 组网需求
在IPv4网络上创建2台的AP互联。

二、组网图
组网图

三、 配置要点
● 将DeviceA上的接口GigabitEthernet 0/1和GigabitEthernet 0/2开启LACP,加入到LACP AP 3中。
● 将DeviceB上的接口GigabitEthernet 0/1和GigabitEthernet 0/2开启LACP,加入到LACP AP 3中。
● 将DeviceA上的AP 3配置IP地址1.0.0.1,并开启IPv4 BFD检测。
● 将DeviceB上的AP 3配置IP地址1.0.0.2,并开启IPv4 BFD检测。

四、 配置步骤
# DeviceA配置。
DeviceA# configure terminal
DeviceA(config)# interface range GigabitEthernet 0/1-2
DeviceA(config-if-range)# no switchport
DeviceA(config-if-range)# port-group 3 mode active
DeviceA(config-if-range)# exit
DeviceA(config)# interface aggregateport 3
DeviceA(config-if-Aggregateport 3)# ip address 1.0.0.1 255.255.255.0
DeviceA(config-if-Aggregateport 3)# aggregate bfd-detect ipv4 1.0.0.1 1.0.0.2
DeviceA(config-if-Aggregateport 3)# bfd interval 50 min_rx 50 multiplier 3

# DeviceB配置。
DeviceB# configure terminal
DeviceB(config)# interface range GigabitEthernet 0/1-2
DeviceB(config-if-range)# no switchport
DeviceB(config-if-range)# port-group 3 mode active
DeviceB(config-if-range)# exit
DeviceB(config)# interface aggregateport 3
DeviceB(config-if-Aggregateport 3)# ip address 1.0.0.2 255.255.255.0
DeviceB(config-if-Aggregateport 3)# aggregate bfd-detect ipv4 1.0.0.2 1.0.0.1
DeviceB(config-if-Aggregateport 3)# bfd interval 50 min_rx 50 multiplier 3

五、验证配置结果
# 通过show run查看配置是否正确。
# 通过show interface aggregateport 命令查看聚合接口下的优选口。
DeviceA# show run | include AggregatePort 3
验证配置结果

DeviceB# show run | include AggregatePort 3
验证配置结果

六、配置文件
●Device A的配置文件
!
interface GigabitEthernet 0/1
no switchport
port-group 3 mode active
!
interface GigabitEthernet 0/2
no switchport
port-group 3 mode active
!
interface AggregatePort 3
no switchport
aggregate bfd-detect ipv4 1.0.0.1 1.0.0.2
ip address 1.0.0.1 255.255.255.0
bfd interval 50 min_rx 50 multiplier 3
!
●Device B的配置文件
!
interface GigabitEthernet 0/1
no switchport
port-group 3 mode active
!
interface GigabitEthernet 0/2
no switchport
port-group 3 mode active
!
interface AggregatePort 3
no switchport
aggregate bfd-detect ipv4 1.0.0.2 1.0.0.1
ip address 1.0.0.2 255.255.255.0
bfd interval 50 min_rx 50 multiplier 3
!

七、常见错误
● 配置了聚合接口开启BFD检测,但没有配置BFD检测参数,这时候BFD没有真正生效。
● 聚合接口上开启BFD检测,BFD检测邻居必须是直连的对端AP,中间不能跨设备,且对端也需要开启BFD检测。

 

锐捷网管交换机【链路聚合口LACP AP 优选口对接双网卡服务】配置举例

一、 组网需求
服务器具备双管理系统,远程管理OS以及服务器OS,两个系统互相独立,在服务器OS重启过程中,依然能正常
访问远程管理OS。远程管理OS专门用于管理服务器系统,使用网卡1作为通讯口,接入到接入设备(如下图中的
Gigabitethernet0/1)。划分特定的VLAN,比如VLAN 10。服务器OS用于处理日常生产业务,使用网卡1和网卡2做
通讯口,网卡1和网卡2启用LACP 聚合,采用聚合链路的方式接入到接入设备。该系统划分除管理VLAN以外的其
他VLAN。服务器网卡1既用于做远程管理系统的通讯口,也用于服务器系统的通讯口,服务器根据流量携带的VLAN
标签来决定从网卡1上收到的报文是送远程管理系统还是送服务器系统。

二、组网图
配置 LACP AP 优选口对接双网卡服务器组网图

三、 配置要点
● 将接入设备上的接口GigabitEthernet 0/1和GigabitEthernet 0/2开启LACP,加入到LACP AP 3中。
● 将接入设备上配置GigabitEthernet 0/1为优选口。
● 将接入设备上VLAN 10配置为管理VLAN。

四、 配置步骤
# 创建LACP AP 3口,并把AP3加入到trunk模式
DeviceA# configure terminal
DeviceA(config)# interface range GigabitEthernet 0/1-2
DeviceA(config-if-range)# port-group 3 mode active
DeviceA(config-if-range)# exit
DeviceA(config)# interface aggregateport 3
DeviceA(config-if-Aggregateport 3)# switchport mode trunk
DeviceA(config-if-Aggregateport 3)# exit

# 配置VLAN 10为管理VLAN
DeviceA(config)# aggregateport-admin vlan 10

# 配置gigabitEthernet 0/1为优选口
DeviceA(config)# interface gigabitEthernet 0/1
DeviceA(config-if-GigabitEthernet 0/1) aggregateport primary-port

五、验证配置结果
# 通过show run查看配置是否正确。
# 通过show interface aggregateport 命令查看聚合接口下的优选口。
DeviceA# show run | include aggregateport-admin
验证配置结果

六、配置文件
●Device A的配置文件
!
aggregateport-admin vlan 10
!
interface GigabitEthernet 0/1
port-group 3 mode active
aggregateport primary-port
!
interface GigabitEthernet 0/2
port-group 3 mode active
!
interface AggregatePort 3
switchport mode trunk
!

 

锐捷网管交换机【链路聚合口LACP AP 优选口实现服务器自动部署】配置举例

一、 组网需求
服务器有两个网卡,两个网卡和Switch A通过LACP AP相连,服务器可以通过网卡1完成正常装机,装机完成后,
管理数据流量可以通过网卡1和网卡2实现互为备份和负载均衡。

二、组网图
配置 LACP AP 优选口实现服务器自动部署组网图

三、 配置要点
● 将DeviceA上的接口GigabitEthernet 0/1和GigabitEthernet 0/2开启LACP,加入到LACP AP 3中。
●将DeviceA上配置GigabitEthernet 0/1为优选口。

四、 配置步骤
# 创建LACP AP 3口
DeviceA# configure terminal
DeviceA(config)# interface range GigabitEthernet 0/1-2
DeviceA(config-if-range)# port-group 3 mode active
DeviceA(config-if-range)# exit

# 配置gigabitEthernet 0/1为优选口
DeviceA(config)# interface gigabitEthernet 0/1
DeviceA(config-if-GigabitEthernet 0/1) aggregateport primary-port

五、验证配置结果
# 通过show run查看配置是否正确。
# 通过show interface aggregateport 命令查看聚合接口下的优选口。
DeviceA# show run | include GigabitEthernet 0/1
验证配置结果

六、配置文件
●Device A的配置文件
!
interface GigabitEthernet 0/1
port-group 3 mode active
aggregateport primary-port
!
interface GigabitEthernet 0/2
port-group 3 mode active
!
interface AggregatePort 3
!

 

锐捷网管交换机配置聚合接口的成员接口最小数目【成员接口个数小于成员接口最小数目】

一、 组网需求
在IPv4网络上创建2台的AP互联,且配置成员接口个数小于成员接口最小数目。

二、组网图
配置聚合接口的成员接口最小数目

三、 配置要点
● 将DeviceA上的接口GigabitEthernet 0/1和GigabitEthernet 0/2开启LACP,加入到LACP AP 3中。
● 将DeviceB上的接口GigabitEthernet 0/1和GigabitEthernet0/2开启LACP,加入到LACP AP 3中。
● 将DeviceA上的AP 3配置成员接口最小数目为3。

四、 配置步骤
# 在DeviceA上配置如下。
DeviceA# configure terminal
DeviceA(config)# interface range GigabitEthernet 0/1-2
DeviceA(config-if-range)# no switchport
DeviceA(config-if-range)# port-group 3 mode active
DeviceA(config-if-range)# exit
DeviceA(config)# interface aggregateport 3
DeviceA(config-if-Aggregateport 3)# aggregateport member minimum 3

# 在DeviceB上配置如下。
DeviceB# configure terminal
DeviceB(config)# interface range GigabitEthernet 0/1-2
DeviceB(config-if-range)# no switchport
DeviceB(config-if-range)# port-group 3 mode active
DeviceB(config-if-range)# exit
DeviceB(config)# interface aggregateport 3
DeviceB(config-if-Aggregateport 3)# aggregateport member minimum 3

五、验证配置结果
# 通过show run查看配置是否正确。
# 通过show lacp summery 查看聚合接口下每个成员接口聚合状态。
DeviceA# show LACP summary 3
验证配置结果

六、配置文件
●DeviceA的配置文件
!
interface GigabitEthernet 0/1
no switchport
port-group 3 mode active
!
interface GigabitEthernet 0/2
no switchport
port-group 3 mode active
!
interface AggregatePort 3
no switchport
aggregateport member minimum 3
!
● DeviceB的配置文件
!
interface GigabitEthernet 0/1
no switchport
port-group 3 mode active
!
interface GigabitEthernet 0/2
no switchport
port-group 3 mode active
!
interface AggregatePort 3
no switchport
aggregateport member minimum 3
!

 

锐捷网管交换机配置聚合接口的成员接口最小数目【成员接口个数不小于成员接口最小数目】

一、 组网需求
在IPv4网络上创建2台的AP互联,且配置成员接口个数不小于成员接口最小数目。

二、组网图
配置聚合接口的成员接口最小数目

三、 配置要点
● 将DeviceA上的接口GigabitEthernet 0/1、GigabitEthernet 0/2、GigabitEthernet 0/3开启LACP,加入到LACP AP 3中。
● 将DeviceB上的接口GigabitEthernet 0/1、GigabitEthernet0/2、GigabitEthernet 0/3开启LACP,加入到LACP AP 3中。
● 将DeviceA上的AP 3配置成员接口最小数目为2。

四、 配置步骤
# 在DeviceA上配置如下。
DeviceA# configure terminal
DeviceA(config)# interface range GigabitEthernet 0/1-3
DeviceA(config-if-range)# no switchport
DeviceA(config-if-range)# port-group 3 mode active
DeviceA(config-if-range)# exit
DeviceA(config)# interface aggregateport 3
DeviceA(config-if-Aggregateport 3)# aggregateport member minimum 2

# 在DeviceB上配置如下。
DeviceB# configure terminal
DeviceB(config)# interface range GigabitEthernet 0/1-3
DeviceB(config-if-range)# no switchport
DeviceB(config-if-range)# port-group 3 mode active
DeviceB(config-if-range)# exit
DeviceB(config)# interface aggregateport 3
DeviceB(config-if-Aggregateport 3)# aggregateport member minimum 2

五、验证配置结果
# 通过show run查看配置是否正确。
# 通过show lacp summery 查看聚合接口下每个成员接口聚合状态。
DeviceA# show LACP summary 3
验证配置结果

六、配置文件
●DeviceA的配置文件
!
interface GigabitEthernet 0/1
no switchport
port-group 3 mode active
!
interface GigabitEthernet 0/2
no switchport
port-group 3 mode active
!
interface GigabitEthernet 0/3
no switchport
port-group 3 mode active
!
interface AggregatePort 3
no switchport
aggregateport member minimum 2
!
●DeviceA的配置文件
!
interface GigabitEthernet 0/1
no switchport
port-group 3 mode active
!
interface GigabitEthernet 0/2
no switchport
port-group 3 mode active
!
interface GigabitEthernet 0/3
no switchport
port-group 3 mode active
!
interface AggregatePort 3
no switchport
aggregateport member minimum 2
!

 

锐捷网管交换机链路聚合口【配置 LACP 独立口】功能举例

一、 组网需求
双网卡服务器使用网卡1和网卡2做通讯口,接入到接入设备Gigabitethernet0/1和Gigabitethernet0/2。
Gigabitethernet0/1和Gigabitethernet0/2加入LACP聚合组,比如AP3,划分特定的VLAN,比如VLAN 10。
Gigabitethernet0/1和Gigabitethernet0/2配置LACP独立口功能。服务器启机未安装系统,与接入设备LACP协商失
败,接入设备Gigabitethernet0/1和Gigabitethernet0/2转换成普通物理口,自动划分进VLAN10,服务器使用网卡1
或网卡2与远程装机设备通信。装机结束后,服务器重新启用LACP方式接入到接入设备。

二、组网图
配置 LACP 独立口功能

三、 配置要点
● 将接入设备上的接口GigabitEthernet 0/1和GigabitEthernet 0/2开启LACP,加入到LACP AP 3中。
●将接入设备上的接口GigabitEthernet 0/1和GigabitEthernet 0/2配置LACP独立口功能。
● 将接入设备上的AP3划分VLAN10。

四、 配置步骤
# 在DeviceA上面创建聚合接口。
DeviceA# configure terminal
DeviceA(config)# interface range GigabitEthernet 0/1-2
DeviceA(config-if-range)# port-group 3 mode active
DeviceA(config-if-range)# lacp individual-port enable
DeviceA(config-if-range)# exit
DeviceA(config)# interface aggregateport 3
DeviceA(config-if-Aggregateport 3)# switch access vlan 10

五、验证配置结果
# 通过show run查看配置是否正确。
# 通过show lacp summery 查看聚合接口下每个成员接口聚合状态。
DeviceA# show LACP summary 3
验证配置结果

六、配置文件
●Device A的配置文件
!
interface GigabitEthernet 0/1
port-group 3 mode active
lacp individual-port enable
!
interface GigabitEthernet 0/2
port-group 3 mode active
lacp individual-port enable
!
interface AggregatePort 3
switchport access vlan 10
!

 

锐捷网管交换机OSPF v3 路由聚合配置举例

一、 组网需求
Device A和Device B位于OSPFv3 Area 0,Device A和Decice C位于OSPFv3 Area 1。在Device C上引入2条静态
路由。为减小路由条目,Device C会将引入的静态路由聚合成为2001:3::/32后发布到OSPFv3域,Decice A将
Area 1路由汇聚成2001:13::/32后,通告给OSPFv3邻居。

二、组网图
OSPFv3 路由聚合配置举例组网图

三、 配置要点
● 所有设备接口配置IPv6。
● 所有设备配置OSPFv3基本功能。
●Device C重分发两条静态路由,并配置域外路由汇聚。
● Device A对Area 1路由进行汇聚。

四、 配置步骤
(1) OSPFv3基本功能配置。

(2) Device C重分发静态路由,并将重分发路由汇聚成2001:3::/32。
Device C> enable
Device C# configure terminal
Device C(config)# ipv6 router ospf 1
Device C(config-router)# redistribute static
Device C(config-router)# summary-prefix 2001:3::/32

(3) Device A将Area 1路由汇聚成2001:13::/32。
Device A> enable
Device A# configure terminal
Device A(config)# ipv6 router ospf 1
Device A(config-router)# area 1 range 2001:13::/32

五、验证配置结果
●Device A上查看OSPFv3路由,只能查看到汇聚的静态路由,查看不到明细静态路由信息。
Device A# show ipv6 route ospf
Device A上查看OSPFv3路由

● Device B上查看OSPFv3路由,只能查看到Area 1汇聚后的路由信息,查看不到明细路由信息。
Device B# show ipv6 route ospf
Device B上查看OSPFv3路由

六、配置文件
●Device A的配置文件。
!
router-id 1.1.1.1
graceful-restart
area 1 range 2001:13::/32
!
● Device C的配置文件。
!
router-id 3.3.3.3
graceful-restart
redistribute static
summary-prefix 2001:3::/32
!

 

ICP备案号:晋ICP备18007549号-1
站长微信:15534641008