Cisco设备做流量监控的方法

SPAN (就是大家常说得 Port Mirror 或者 Port Monitor
1
Cat2900XL/3500XL
2900XL(config)#interface fastethernet 0/24   //
进入接口配置模式下
2900XL(config)#port monito
r fastethernet 0/1  //
配置 f0/1 为被监视得端口
2900XL(config)#port monitor fastethernet 0/2  //
配置 f0/2 为被监视得端口
通过上面得配置就可以把进出 f0/1 f0/2 两个端口得流量镜像到 f0/24
通过 show port monitor 可以参看交换机得 SPAN 配置情况

2
Cat2950/3550/3750
3550(config)#monitor session 1 source interface f0/1 - 3 rx  
//
指定 SPAN session 组号为 1 ,源端口为 f0/1-f0/3 ,对进这三个端口的流量
//rx-->
指明是进端口得流量, tx--> 出端口得流量 both 进出得流量
3550(config)#monitor session 1 destination interface f0/4
//
指定监视端口为 f0/4

3
Cat4000/6500  with CatOS
set span
命令
cat4k#set span 1/2 1/3
//
1/2 得流量镜像到 1/3

4
Cat4500/6500 with IOS
2--Cat2950/3550/3750

方法四 :VACL
VACL=VLAN ACL=Security ACL
只能在 Cat6500 上使用
CatOS

c6509 (enable) set security acl ip MyCap permit tcp any any eq 443
c6509 (enable) set security acl ip MyCap permit tcp any eq 443 any
c6509 (enable) set security acl ip MyCap permit ip any any capture
//
排除所有访问 443 端口的流量,其他流量都是感兴趣的
c6509 (enable) commit security acl MyCap
//
定义一个 security ACL name
c6509 (enable) set security acl map MyCap 100,101
//
security ACL 应用到 vlan 100 101
c6509 (enable) set security acl capture-ports 3/1
//
capture 的流量镜像到 3/1 端口上

IOS

c6509(config)# access-list 100 permit ip any any
c6509(config)# vlan access-map MyCap 10
c6509(config-access-map)# match ip address 100
c6509(config-access-map)# action forward capture
c6509(config)# vlan filter MyCap vlan-list 200 , 201
c6509(config)# interface gi3/1
c6509(config-if)# switchport capture

你可能感兴趣的:(网络,职场,Cisco,休闲,交换)