來源自 這裡
Preface:
How do I block port number with iptables under Linux operating systems? Port numbers which are recognized by Internet and other network protocols, enabling the computer to interact with others. Each Linux server has a port number (see /etc/services file). For example:
Block Incoming Port:
The syntax is as follows to block incoming port using IPtables:
To block port 80 (
HTTP server), enter (or add to your iptables shell script):
Block Incomming Port 80 except for IP Address 1.2.3.4
Block Outgoing Port:
The syntax is as follows:
To block outgoing port # 25, enter:
You can block port # 1234 for IP address 192.168.1.2 only:
How Do I Log Dropped Port Details?
Use the following syntax:
How Do I Block Cracker (IP: 123.1.2.3) Access To UDP Port # 161?
Preface:
How do I block port number with iptables under Linux operating systems? Port numbers which are recognized by Internet and other network protocols, enabling the computer to interact with others. Each Linux server has a port number (see /etc/services file). For example:
Block Incoming Port:
The syntax is as follows to block incoming port using IPtables:
- /sbin/iptables -A INPUT -p tcp --destination-port {PORT-NUMBER-HERE} -j DROP
- ### interface section use eth1 ###
- /sbin/iptables -A INPUT -i eth1 -p tcp --destination-port {PORT-NUMBER-HERE} -j DROP
- ### only drop port for given IP or Subnet ##
- /sbin/iptables -A INPUT -i eth0 -p tcp --destination-port {PORT-NUMBER-HERE} -s {IP-ADDRESS-HERE} -j DROP
- /sbin/iptables -A INPUT -i eth0 -p tcp --destination-port {PORT-NUMBER-HERE} -s {IP/SUBNET-HERE} -j DROP
Block Incomming Port 80 except for IP Address 1.2.3.4
Block Outgoing Port:
The syntax is as follows:
- /sbin/iptables -A OUTPUT -p tcp --dport {PORT-NUMBER-HERE} -j DROP
- ### interface section use eth1 ###
- /sbin/iptables -A OUTPUT -i eth1 -p tcp --dport {PORT-NUMBER-HERE} -j DROP
- ### only drop port for given IP or Subnet ##
- /sbin/iptables -A OUTPUT -i eth0 -p tcp --destination-port {PORT-NUMBER-HERE} -s {IP-ADDRESS-HERE} -j DROP
- /sbin/iptables -A OUTPUT -i eth0 -p tcp --destination-port {PORT-NUMBER-HERE} -s {IP/SUBNET-HERE} -j DROP
You can block port # 1234 for IP address 192.168.1.2 only:
How Do I Log Dropped Port Details?
Use the following syntax:
- # Logging #
- ### If you would like to log dropped packets to syslog, first log it ###
- /sbin/iptables -A INPUT -m limit --limit 5/min -j LOG --log-prefix "PORT 80 DROP: " --log-level 7
- ### now drop it ###
- /sbin/iptables -A INPUT -p tcp --destination-port 80 -j DROP
- /sbin/iptables -A INPUT -s 123.1.2.3 -i eth1 -p udp -m state --state NEW -m udp --dport 161 -j DROP
- # drop students 192.168.1.0/24 subnet to port 80
- /sbin/iptables -A INPUT -s 192.168.1.0/24 -i eth1 -p tcp -m state --state NEW -m tcp --dport 80 -j DROP
在 Linux 用 iptables 封鎖 ip:
在 Linux 下如果要封鎖 ip 的網路流量, 可以透過 iptables 實現, 指令如下:
只要將想封鎖的 ip 方法上面的 IP_ADDRESS 位置便可以了.
有一種情況是不想將某個 ip 的全部流量封鎖, 只想封鎖指定的 port 埠號, 可以這樣做:
以上指令透過 iptables 的 --destination-port 選項, 指令只封鎖 port 25 的流量.
但如果只是簡單的輸入 iptables 封鎖 IP, 當主機 reboot 或者重新啟動 iptables 後, 所加入的規則便會全部刪除, 在 Redhat/Centos 下可以用以下指令將規則儲存到 config file 內:
如果想刪除封鎖的話, 只要將上面 iptables 指令的 -A 改成 -D 便可以了, 例如:
如果你要 block 是一個 IP 的 range 如 221.0.0.0-221.255.255.255 , 則可以使用下面範例:
在 Linux 下如果要封鎖 ip 的網路流量, 可以透過 iptables 實現, 指令如下:
只要將想封鎖的 ip 方法上面的 IP_ADDRESS 位置便可以了.
有一種情況是不想將某個 ip 的全部流量封鎖, 只想封鎖指定的 port 埠號, 可以這樣做:
以上指令透過 iptables 的 --destination-port 選項, 指令只封鎖 port 25 的流量.
但如果只是簡單的輸入 iptables 封鎖 IP, 當主機 reboot 或者重新啟動 iptables 後, 所加入的規則便會全部刪除, 在 Redhat/Centos 下可以用以下指令將規則儲存到 config file 內:
如果想刪除封鎖的話, 只要將上面 iptables 指令的 -A 改成 -D 便可以了, 例如:
如果你要 block 是一個 IP 的 range 如 221.0.0.0-221.255.255.255 , 則可以使用下面範例:
沒有留言:
張貼留言