Iptables не пробрасывает запросы с порта на порт:
# cat /proc/sys/net/ipv4/ip_forward
1
# iptables -L -v --line-numbers -t nat
Chain PREROUTING (policy ACCEPT 2 packets, 458 bytes)
num pkts bytes target prot opt in out source destination
1 0 0 DNAT tcp -- any any anywhere 192.168.0.180 tcp dpt:8000 to:192.168.3.100:22
Chain INPUT (policy ACCEPT 0 packets, 0 bytes)
num pkts bytes target prot opt in out source destination
Chain OUTPUT (policy ACCEPT 2 packets, 144 bytes)
num pkts bytes target prot opt in out source destination
Chain POSTROUTING (policy ACCEPT 2 packets, 144 bytes)
num pkts bytes target prot opt in out source destination
# service ufw status
ufw start/running
# ufw status
Status: inactive
Напрямую SSH с 192.168.0.180 на 192.168.3.100 работает. Сквозь 192.168.0.180:8000 не хочет.
Где косяк? Или теперь без UFW ничего не форфардится?