इस iptables
नियम का प्रयास करें :
$ sudo iptables -t nat -A OUTPUT -p tcp --dport 80 -j DNAT --to-destination IP:80
उपरोक्त कहता है:
- NAT तालिका में निम्नलिखित नियम जोड़ें (
-t nat
)।
- इस नियम को
-A
आउटबाउंड ट्रैफ़िक ( OUTPUT
) में जोड़ा जाएगा ( )।
- हम केवल TCP ट्रैफ़िक (
-p tcp
) में रुचि रखते हैं ।
- हम केवल ट्रैफ़िक में रुचि रखते हैं, जिसका गंतव्य पोर्ट 80 (
--dport 80
) है।
- जब हमारे पास मैच होता है, तो DNAT (
-j DNAT
) पर जाएं।
- इस ट्रैफ़िक को किसी अन्य सर्वर के IP @ पोर्ट 80 (
--to-destination IP:80
) पर रूट करें ।
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.
संदर्भ