zoukankan      html  css  js  c++  java
  • 思科4431/4331路由器接口下查看通信对流量

    第一步:建立记录

    WH-ZYL-DX#conf t
    WH-ZYL-DX(config)#flow record recordname1
    WH-ZYL-DX(config-flow-record)#match ipv4 source address
    WH-ZYL-DX(config-flow-record)#match ipv4 destination address
    WH-ZYL-DX(config-flow-record)#collect counter packets/bytes long
    WH-ZYL-DX(config-flow-record)#exit

    第二步:建立检测,并关联记录
    WH-ZYL-DX(config)#flow monitor monitorname1
    WH-ZYL-DX(config-flow-monitor)#record recordname1
    WH-ZYL-DX(config-flow-monitor)#cache timeout active 604800
    WH-ZYL-DX(config-flow-monitor)#cache entries 200000
    WH-ZYL-DX(config-flow-monitor)#exit
    WH-ZYL-DX(config)#end

    第三步:接口下调用

    WH-ZYL-DX#conf t
    WH-ZYL-DX(config)#int Se0/1/0
    WH-ZYL-DX(config-if)#ip flow monitor monitorname1
    input Apply Flow Monitor on input traffic
    multicast Apply Flow Monitor on multicast traffic
    output Apply Flow Monitor on output traffic
    sampler Optional Sampler to apply to this Flow Monitor
    unicast Apply Flow Monitor on unicast traffic

    WH-ZYL-DX(config-if)#ip flow monitor monitorname1 input
    WH-ZYL-DX(config-if)#end

    第四步:查看流量情况
    WH-ZYL-DX#sh flow monitor monitorname1 cache

    IPV4 SRC ADDR IPV4 DST ADDR bytes long pkts long
    =============== =============== ==================== ====================
    10.0.3.110 10.11.4.143 4093528 2913
    10.0.3.81 10.11.4.143 1006020 857
    10.0.3.81 10.11.4.127 1745087 1567

  • 相关阅读:
    asp.net 连接 Access 的几种方法
    asp.net 连接 oracle10g 数据库
    Entity Framework实例
    LINQ链接数据库出错(There is already an open DataReader associated with this Command which must be closed first )
    Linq入门实例
    Nibatis实例(2)
    Log4net实例
    图片提交表单方法
    Nibatis实例(1)
    爱情是不离不弃吗?
  • 原文地址:https://www.cnblogs.com/liubenlu/p/13260905.html
Copyright © 2011-2022 走看看