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

一、 组网需求
在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

六、配置文件
●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上收到的报文是送远程管理系统还是送服务器系统。

二、组网图

三、 配置要点
● 将接入设备上的接口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实现互为备份和负载均衡。

二、组网图

三、 配置要点
● 将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方式接入到接入设备。

二、组网图

三、 配置要点
● 将接入设备上的接口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
!

 

海康威视人脸抓拍图片效果异常

一、环境光线影响人脸偏色
依次点击:【配置】→【图像】→【图像调节】界面降低饱和度值来缓解色彩偏差

二、人脸抓拍图片有噪点或图像不清晰

方式一依次点击:【配置】→【图像】→【图像调节】降低锐度值

方式二依次点击:【配置】→【图像】→【曝光】适当降低增益值.

方式三依次点击:【配置】→【图像】→【图像增强】界面降噪中切换为专家降噪模式,适当提高空域降噪

三、人脸运动过快导致抓拍模糊
运动模糊与曝光时间(快门)有关,曝光时间越大(如1/25),人脸抓拍的运动模糊越明显,一般正常行走时的曝光时间为1/100s,如果是非机动车的抓拍人脸,建议设置为1/150s。但曝光时间设置的越小,设备进光量也会越小,环境光线较差时会影响图像质量效果。
依次点击:【配置】→【图像】→【曝光】界面降低曝光时间,比如从1/100s调整至1/150s.

四、环境光线过亮导致人脸过曝不清晰
依次点击:【配置】→【图像】→【日夜切换】 →【灯光控制】中降低红外灯强度(需设备支持)

或者降低【曝光】增益值

五、图像逆光如何调节
1、确认室内光线情况:
若室内光线充足,说明设备有调试空间,可以通过调试提升人脸亮度。具体调试方法:
在图像-显示设置-曝光中,建议手动光圈调试,调试完毕后再改成自动,曝光时间设定1/100。将增益从100调整至50。

若室内光线不足或完全无光,说明设备调试优化程度有限,这时候就需要加室内补光灯。

2、打开宽动态或人脸曝光
偏重人脸效果的话优先开启人脸曝光;如果需要兼顾人脸与环境,建议开启宽动态。

宽动态配置路径:图像-显示设置-背光-打开宽动态。宽动态设置数值说明:

0-40:数字宽动态—通过一次曝光,对亮处进行压制,对暗处提增益。适用场景:逆光程度一般(室内有光),一般建议设置在40以内。

40-100:帧宽动态—对亮出与暗处进行两次曝光,短曝光和长曝光叠加。适用场景:逆光程度严重(室内光很弱,室外强光)

人脸曝光配置路径:

界面1,依次点击:智能分析→高级配置→算法库参数→检测参数中,勾选人脸曝光(摄像机会根据人脸亮度进行调整整体图像亮度。)

界面2,依次点击:配置→人脸抓拍→高级配置,勾选人脸曝光(摄像机会根据人脸亮度进行调整整体图像亮度。)

界面3,依次点击:应用仓库→人脸抓拍→高级参数,勾选人脸曝光(摄像机会根据人脸亮度进行调整整体图像亮度。)

 

退出移动版
ICP备案号:晋ICP备18007549号-1
站长微信:15534641008