最佳答案
(0)
可以通过debug的方式查看吗?
交换机是硬件转发,流量是不上CPU的,所以debug不了,且不建议用debug方式,会把CPU冲挂的,还是用我发的两种方式吧,解决请采纳
Device通过端口GigabitEthernet1/0/1和GigabitEthernet1/0/2分别连接市场部和技术部,并通过端口GigabitEthernet1/0/3连接Server。
通过配置源端口方式的本地端口镜像,使Server可以监控所有进、出市场部和技术部的报文。
# 创建本地镜像组1。
<Device> system-view
[Device] mirroring-group 1 local
# 配置本地镜像组1的源端口为GigabitEthernet1/0/1和GigabitEthernet1/0/2,对源端口收发的报文都进行镜像,目的端口为GigabitEthernet1/0/3。
[Device] mirroring-group 1 mirroring-port gigabitethernet 1/0/1 gigabitethernet 1/0/2 both
[Device] mirroring-group 1 monitor-port gigabitethernet 1/0/3
# 在目的端口GigabitEthernet1/0/3上关闭生成树协议。
[Device] interface gigabitethernet 1/0/3
[Device-GigabitEthernet1/0/3] undo stp enable
[Device-GigabitEthernet1/0/3] quit
# 显示所有镜像组的配置信息。
[Device] display mirroring-group all
Mirroring group 1:
Type: Local
Status: Active
Mirroring port:
GigabitEthernet1/0/1 Both
GigabitEthernet1/0/2 Both
Monitor port: GigabitEthernet1/0/3
配置完成后,用户可以通过Server监控所有进、出市场部和技术部的报文。
(0)
或者流统计看报文进入设备个数,一般定位丢包位置使用:debug内容较多 11.4 流量统计典型配置举例 11.4.1 流量统计基本组网配置举例 1. 组网需求 用户网络描述如下:Host通过接口GigabitEthernet1/0/1接入设备Device。 配置流量统计功能,对接口GigabitEthernet1/0/1接收的源IP地址为1.1.1.1/24的报文进行统计。 2. 组网图 图11-1 流量统计基本组网图 3. 配置步骤 # 定义基本ACL 2000,对源IP地址为1.1.1.1的报文进行分类。 <Device> system-view [Device] acl basic 2000 [Device-acl-ipv4-basic-2000] rule permit source 1.1.1.1 0 [Device-acl-ipv4-basic-2000] quit # 定义类classifier_1,匹配基本ACL 2000。 [Device] traffic classifier classifier_1 [Device-classifier-classifier_1] if-match acl 2000 [Device-classifier-classifier_1] quit # 定义流行为behavior_1,动作为流量统计。 [Device] traffic behavior behavior_1 [Device-behavior-behavior_1] accounting packet [Device-behavior-behavior_1] quit # 定义策略policy,为类classifier_1指定流行为behavior_1。 [Device] qos policy policy [Device-qospolicy-policy] classifier classifier_1 behavior behavior_1 [Device-qospolicy-policy] quit # 将策略policy应用到端口GigabitEthernet1/0/1的入方向上。 [Device] interface gigabitethernet 1/0/1 [Device-GigabitEthernet1/0/1] qos apply policy policy inbound [Device-GigabitEthernet1/0/1] quit # 查看配置后流量统计的情况。 [Device] display qos policy interface gigabitethernet 1/0/1 Interface: GigabitEthernet1/0/1 Direction: Inbound Policy: policy Classifier: classifier_1 Operator: AND Rule(s) : If-match acl 2000 Behavior: behavior_1 Accounting enable: 28529 (Packets)
可以通过debug的方式查看吗?
或者流统计看报文进入设备个数,一般定位丢包位置使用:debug内容较多 11.4 流量统计典型配置举例 11.4.1 流量统计基本组网配置举例 1. 组网需求 用户网络描述如下:Host通过接口GigabitEthernet1/0/1接入设备Device。 配置流量统计功能,对接口GigabitEthernet1/0/1接收的源IP地址为1.1.1.1/24的报文进行统计。 2. 组网图 图11-1 流量统计基本组网图 3. 配置步骤 # 定义基本ACL 2000,对源IP地址为1.1.1.1的报文进行分类。 <Device> system-view [Device] acl basic 2000 [Device-acl-ipv4-basic-2000] rule permit source 1.1.1.1 0 [Device-acl-ipv4-basic-2000] quit # 定义类classifier_1,匹配基本ACL 2000。 [Device] traffic classifier classifier_1 [Device-classifier-classifier_1] if-match acl 2000 [Device-classifier-classifier_1] quit # 定义流行为behavior_1,动作为流量统计。 [Device] traffic behavior behavior_1 [Device-behavior-behavior_1] accounting packet [Device-behavior-behavior_1] quit # 定义策略policy,为类classifier_1指定流行为behavior_1。 [Device] qos policy policy [Device-qospolicy-policy] classifier classifier_1 behavior behavior_1 [Device-qospolicy-policy] quit # 将策略policy应用到端口GigabitEthernet1/0/1的入方向上。 [Device] interface gigabitethernet 1/0/1 [Device-GigabitEthernet1/0/1] qos apply policy policy inbound [Device-GigabitEthernet1/0/1] quit # 查看配置后流量统计的情况。 [Device] display qos policy interface gigabitethernet 1/0/1 Interface: GigabitEthernet1/0/1 Direction: Inbound Policy: policy Classifier: classifier_1 Operator: AND Rule(s) : If-match acl 2000 Behavior: behavior_1 Accounting enable: 28529 (Packets)
亲~登录后才可以操作哦!
确定你的邮箱还未认证,请认证邮箱或绑定手机后进行当前操作
举报
×
侵犯我的权益
×
侵犯了我企业的权益
×
抄袭了我的内容
×
原文链接或出处
诽谤我
×
对根叔社区有害的内容
×
不规范转载
×
举报说明
交换机是硬件转发,流量是不上CPU的,所以debug不了,且不建议用debug方式,会把CPU冲挂的,还是用我发的两种方式吧,解决请采纳