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 #
  • 相关阅读:
    RedissonConfProperty
    IdGenerator(雪花)
    Btrace和arthas地址
    SqlFilter
    AuthorityFilter
    111
    分布式数据库-杂记
    站点集群
    分布式精华文章
    高并发
  • 原文地址:https://www.cnblogs.com/xunbu7/p/4528535.html
Copyright © 2011-2022 走看看