Port forwarding with DNAT and Iptables

preview_player
Показать описание
in this video we will learn how to forward port 80 to port 8080 using DNAT and iptables on linux.

🏭 Software Architecture Videos

💾 Database Engineering Videos

🛰 Network Engineering Videos

🏰 Load Balancing and Proxies Videos

🐘 Postgres Videos

🚢Docker

🧮 Programming Pattern Videos

🛡 Web Security Videos

🦠 HTTP Videos

🐍 Python Videos

🔆 Javascript Videos

Support me on PayPal

Become a Patreon

Stay Awesome,
Hussein
Рекомендации по теме
Комментарии
Автор

this channel is learn and fun at the same time

MrSunil
Автор

Exactly the video I was looking. Just implemented port forwarding in windows using netsh interface portproxy command. I did to access my portal for arcgis (installed in my local VM) through my mobile device. Looking to do some testing with apps (collector, survey, etc). Thanks Hussein.

oldicbian
Автор

Thank you! Can you drop a video regarding Linux routing table ip route? Thanks

saad.
Автор

iptables -A FORWARD -p udp --dport 53 -j ACCEPT
iptables -A FORWARD -p udp --sport 53 -j ACCEPT
iptables -t nat -A PREROUTING -p tcp --dport 80 -j DNAT --to-destination 192.168.55.1
iptables -P FORWARD DROP

Bro tell me how to do these setup in android phone
In Detail

epicblack