examplescript
上传用户:shbosideng
上传日期:2013-05-04
资源大小:1555k
文件大小:1k
源码类别:

SNMP编程

开发平台:

C/C++

  1. #!/bin/bash
  2. rsh x.x.x.x sh access-list 102 | grep icmp | grep matches | grep x.x.x.x | awk ' { print $8 }' | sed s/(//
  3. echo "0"
  4. #The first line will rsh into the router and display access-list number 102 (this will change
  5. depending on your config), it will grep the access-list entry type in this case 'icmp', it
  6. will also grep the ip of the machine in question, and output the relevant information.
  7. Eg:
  8. 10
  9. 0
  10. 10 = the number of times the ACL has matched.
  11. Remember you can change this to whatever you want.