zoukankan      html  css  js  c++  java
  • iptables-过滤61开头的ip数据包

    iptables -F
    root@android:/system/bin # iptables -L -n
    iptables -L -n
    Chain INPUT (policy ACCEPT)
    target     prot opt source               destination
    
    Chain FORWARD (policy ACCEPT)
    target     prot opt source               destination
    
    Chain OUTPUT (policy ACCEPT)
    target     prot opt source               destination
    root@android:/system/bin # iptables -A INPUT -p tcp --sport 80 -s 61.0.0.0/8 -j
    DROP
    -sport 80 -s 61.0.0.0/8 -j DROP                                               <
    protoent* getprotobyname(char const*)(3) is not implemented on Android
    root@android:/system/bin # iptables -L -n
    iptables -L -n
    Chain INPUT (policy ACCEPT)
    target     prot opt source               destination
    DROP       tcp  --  61.0.0.0/8           0.0.0.0/0            tcp spt:80
    
    Chain FORWARD (policy ACCEPT)
    target     prot opt source               destination
    
    Chain OUTPUT (policy ACCEPT)
    target     prot opt source               destination
    root@android:/system/bin # iptables -A OUTPUT -p tcp --dport 80 -s 61.0.0.0/8 -j
     DROP
    --dport 80 -s 61.0.0.0/8 -j DROP                                              <
    protoent* getprotobyname(char const*)(3) is not implemented on Android
    root@android:/system/bin # iptables -L -n
    iptables -L -n
    Chain INPUT (policy ACCEPT)
    target     prot opt source               destination
    DROP       tcp  --  61.0.0.0/8           0.0.0.0/0            tcp spt:80
    
    Chain FORWARD (policy ACCEPT)
    target     prot opt source               destination
    
    Chain OUTPUT (policy ACCEPT)
    target     prot opt source               destination
    DROP       tcp  --  61.0.0.0/8           0.0.0.0/0            tcp dpt:80
    root@android:/system/bin #
  • 相关阅读:
    练字的感悟
    关于简单
    全都是泡沫
    跟着电影环游世界
    12.8《印度之行》
    11.21派生类对基类的访问
    Linux,begin
    如何利用google
    回调函数
    原型对象
  • 原文地址:https://www.cnblogs.com/xunbu7/p/4528535.html
Copyright © 2011-2022 走看看