Bu iptables
kuralı deneyin :
$ sudo iptables -t nat -A OUTPUT -p tcp --dport 80 -j DNAT --to-destination IP:80
Yukarıda belirtilenler:
- NAT tablosuna (
-t nat
) aşağıdaki kuralı ekleyin .
- Bu kural
-A
giden trafiğe ( OUTPUT
) eklenecektir .
- Yalnızca TCP trafiğiyle (
-p tcp
) ilgileniyoruz .
- Yalnızca hedef limanın 80 (
--dport 80
) olduğu trafikle ilgileniyoruz .
- Bir karşılaşmamız olduğunda DNAT (
-j DNAT
) ' a atlayın .
- Bu trafiği başka bir sunucunun IP @ bağlantı noktası 80 (
--to-destination IP:80
) 'ne yönlendirin.
DNAT nedir?
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.
Referanslar