Tente esta iptables
regra:
$ sudo iptables -t nat -A OUTPUT -p tcp --dport 80 -j DNAT --to-destination IP:80
O acima diz para:
- Adicione a seguinte regra à tabela NAT (
-t nat
).
- Esta regra será anexada (
-A
) ao tráfego de saída ( OUTPUT
).
- Estamos interessados apenas no tráfego TCP (
-p tcp
).
- Estamos interessados apenas no tráfego cuja porta de destino é 80 (
--dport 80
).
- Quando tivermos uma partida, pule para DNAT (
-j DNAT
).
- Roteie esse tráfego para a porta IP @ de outro servidor 80 (
--to-destination IP:80
).
O que é DNAT?
DNAT
This target is only valid in the nat table, in the PREROUTING and OUTPUT
chains, and user-defined chains which are only called from those chains.
It specifies that the destination address of the packet should be modified
(and all future packets in this connection will also be mangled), and
rules should cease being examined.
Referências