Home > Database > Mysql Tutorial > iptables技巧之常用命令

iptables技巧之常用命令

WBOY
Release: 2016-06-07 15:35:31
Original
1189 people have browsed it

1,如何实现基于一个网段的连续的ip的验证? 因为托管机房分配给我们的IP地址通常是连续的,所以会有这个需求 需要使用iprange模块 如下: -A INPUT -m iprange --src-range 192.168.6.106-192.168.6.129 -j ACCEPT 2,备注:2.4核心的iptables不具备这个模块,怎

 1,如何实现基于一个网段的连续的ip的验证?
    因为托管机房分配给我们的IP地址通常是连续的,所以会有这个需求
     需要使用iprange模块
    如下:
     -A INPUT -m iprange --src-range 192.168.6.106-192.168.6.129 -j ACCEPT

2,备注:2.4核心的iptables不具备这个模块,怎么办?
   没办法,只好自己编写子网掩码进行处理了,
   如下:
       -A INPUT -s 192.168.6.128/31 -j ACCEPT
      -A INPUT -s 192.168.6.128/31 -j ACCEPT
      -A INPUT -s 192.168.6.128/30 -j ACCEPT
      -A INPUT -s 192.168.6.128/28 -j ACCEPT

3,如何写一条允许访问web服务器80端口的命令?
    设本地ip为192.168.6.125
      -A INPUT -p tcp --sport 1024:65535 -d 192.168.6.125 --dport 80 -m state --state NEW -j ACCEPT
     这个很常用的,所有的www服务器都会用到

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template