~# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- 123.124.125.126 anywhere state NEW tcp dpt:32808
REJECT tcp -- anywhere anywhere state NEW tcp dpt:32808 reject-with icmp-port-unreachable
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
~# iptables -L
Chain INPUT (policy ACCEPT)
target prot opt source destination
ACCEPT tcp -- 123.124.125.126 anywhere state NEW tcp dpt:32808
REJECT tcp -- anywhere anywhere state NEW tcp dpt:32808 reject-with icmp-port-unreachable
Chain FORWARD (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
-A INPUT -s 123.124.125.126/32 -p tcp -m state --state NEW -m tcp --dport 32808 -j ACCEPT
-A INPUT -p tcp -m state --state NEW -m tcp --dport 32808 -j REJECT --reject-with icmp-port-unreachable
123.124.125.124
123.124.125.125
123.124.125.126
123.124.125.127
123.124.125.128
И дело в том, что правила работают с 123.124.125.124, но не работаю ни с одним из следующих IP.