“Iptables Localhost Umleitung” Code-Antworten

Iptables Localhost Umleitung

sudo iptables -t nat -A PREROUTING -p tcp -m tcp -s 192.168.4.0/24 --dport 80 -j DNAT --to-destination 192.168.2.4

sudo iptables -t nat -A PREROUTING -p tcp -m tcp -s 192.168.4.0/24 --dport 443 -j DNAT --to-destination 192.168.2.4
Fierce Fly

Iptables Localhost Umleitung

 sudo iptables -t nat -A PREROUTING -p tcp -m multiport --dports 443,80 -j DNAT --to-destination 192.168.2.4:80


 iptables -t nat -A POSTROUTING -j MASQUERADE
Fierce Fly

Ähnliche Antworten wie “Iptables Localhost Umleitung”

Fragen ähnlich wie “Iptables Localhost Umleitung”

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen