Router2951#configure terminal

//Creating Flow Record
router2951(config)# flow record NTArecord
router2951 (config-flow-record)# match ipv4 source address
router2951 (config-flow-record)# match ipv4 destination address
router2951 (config-flow-record)# match ipv4 protocol
router2951 (config-flow-record)# match transport source-port
router2951 (config-flow-record)# match transport destination-port
router2951 (config-flow-record)# match ipv4 tos
router2951 (config-flow-record)# match interface input
router2951 (config-flow-record)# collect interface output
router2951 (config-flow-record)# collect counter bytes
router2951 (config-flow-record)# collect counter packets //Creating Flow Exporter
router2951(config)# flow exporter NTAexport
router2951 (config-flow-exporter)#destination 172.16.0.117
router2951 (config-flow-exporter)# source vlan1
router2951 (config-flow-exporter)# transport udp 2055
router2951 (config-flow-exporter)# template data timeout 60
//Creating Flow Monitor
router2951(config)# flow monitor NTAmonitor
router2951(config-flow-monitor)# record NTArecord
router2951(config-flow-monitor)# exporter NTAexport
router2951(config-flow-monitor)# cache timeout active 60
router2951(config-flow-monitor)# cache timeout inactive 15 //Associating the Monitor to an Interface
router2951(config)# int FastEthernet0/1
router2951(config-if)# ip flow monitor NTAmonitor input

转载于:https://blog.51cto.com/magic3/1958694

最新文章

  1. GreenPlum高效去除表重复数据
  2. [数据库]cakephp操作ENUM、tinyint等类型的一点说明
  3. Ubuntu 16.04 风扇特别响解决办法
  4. iptables之链之间的跳转
  5. ES6 module export options 模块导出、导入语法
  6. c语言指针占几个字节
  7. MySql目录没有data文件夹怎么办
  8. hdu 1124 Factorial(数论)
  9. nav标签的作用
  10. IOS添加多个按钮在导航栏
  11. VS2008下WinRar源码生成dll和 lib总结
  12. HDU2602 Bone Collector 【01背包】
  13. linux下安装TensorFlow(centos)
  14. CSS常用字体Unicode 编码
  15. 分别用EasyAR和Vuforia开发AR(入门级)
  16. jquery.ajax()详解
  17. 用pyspider爬取并解析json字符串
  18. windows Apache 环境下配置支持HTTPS的SSL证书
  19. Tomcat修改版本号教程(CentOS)
  20. Codeforces 494C - Helping People

热门文章

  1. ERC20代币(ETH)空投工具-创建代币
  2. MTK Android Driver :Key
  3. Linux 磁盘管理篇, 目录管理(二)
  4. 如何关闭php的所有错误提示
  5. React Native简史
  6. 用ASP.NET MVC5 +SQLSERVER2014搭建多层架构的数据库管理系统
  7. Delphi Unicode转中文
  8. 用python爬取之后发现果然如此,都说知乎的小姐姐漂亮
  9. ASE team work proposal
  10. 关于C++线程池的实现的思考