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

SNMP编程

开发平台:

C/C++

  1. #!/bin/bash
  2. #--- sample ipchains rules for accounting
  3. # Flush the rules in case they exist already
  4. /sbin/ipchains -F acctin
  5. /sbin/ipchains -F acctout
  6. # add the new rule chains
  7. /sbin/ipchains -N acctin
  8. /sbin/ipchains -N acctout
  9. # add empty rules to the new chains just for accounting
  10. /sbin/ipchains -A acctin
  11. /sbin/ipchains -A acctout
  12. # insert rules into the input and output streams.
  13. # Packets will first pass through these rules before
  14. # returning to the other rules in the chains
  15. # You might not want this if you are trying to 
  16. # completely ignore certain hosts.
  17. /sbin/ipchains -I input -j acctin
  18. /sbin/ipchains -I output -j acctout
  19. # if you wanted to narrow the accouting to a single IP
  20. # you could do these lines instead of the above 2 (not tested)
  21. # (assuming your IP address was 192.168.1.1)
  22. #/sbin/ipchains -I input -d 192.168.1.1 -j acctin
  23. #/sbin/ipchains -I output -s 192.168.1.1 -j acctout
  24. # By changing the rules, you can make it filter only exactly
  25. # what you want as long as it jumps to acctin, or acctout.
  26. # Be careful not to double count packets though.
  27. #----------- end ---------------