路由器端口镜像实验

之前学的一直都是用的交换机来做的端口镜像的实验,最近了解到路由器也可以做端口镜像(实际上就是对数据的再转发)

实验截图

设备一:

#

 sysname AR1

#

interface

gi0/0/0

 ip address 1.1.1.254 255.255.255.0

 mirror to observe-server both  //指定需要镜像的端口

interface

gi0/0/1

 ip address 2.2.2.254 255.255.255.0

#

interface

gi0/0/2

 ip address 12.1.1.1 255.255.255.0

#

observe-server  destination-ip  3.3.3.3  source-ip 12.1.1.1 //数据发往哪里

#

iproute-static 0.0.0.0 0.0.0.0 12.1.1.2   //配置静态路由  

#     

设备二:   //设备2上不需要进行什么特殊的设置                                                            

 sysname AR2                                                 

#                                                                            

interfacegi0/0/1                                               

 ip address 3.3.3.254 255.255.255.0                                            

#    

interfacegi0/0/2                                              

 ip address 12.1.1.2 255.255.255.0   

#

iproute-static 0.0.0.0 0.0.0.0 12.1.1.1  //配置静态路由  

测试

pc1 ping pc2 


在ar2上的g0/0/1接口下能够抓到pc1 ping p2 的包

你可能感兴趣的:(路由器端口镜像实验)