Port forwarding with DNAT and Iptables

Sdílet
Vložit
  • čas přidán 6. 01. 2020
  • in this video we will learn how to forward port 80 to port 8080 using DNAT and iptables on linux.
    🏭 Software Architecture Videos
    • Software Architecture
    💾 Database Engineering Videos
    • Database Engineering
    🛰 Network Engineering Videos
    • Network Engineering
    🏰 Load Balancing and Proxies Videos
    • Proxies
    🐘 Postgres Videos
    • PostgresSQL
    🚢Docker
    • Docker
    🧮 Programming Pattern Videos
    • Programming Patterns
    🛡 Web Security Videos
    • Web Security
    🦠 HTTP Videos
    • HTTP
    🐍 Python Videos
    • Python by Example
    🔆 Javascript Videos
    • Javascript by Example
    👾Discord Server / discord
    Support me on PayPal
    bit.ly/33ENps4
    Become a Patreon
    / hnasr
    Stay Awesome,
    Hussein
  • Věda a technologie

Komentáře • 6

  • @MrSunil9999
    @MrSunil9999 Před 2 lety +3

    this channel is learn and fun at the same time

  • @oldicbian
    @oldicbian Před 4 lety +1

    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.

  • @kaotiskhund
    @kaotiskhund Před 2 měsíci

    thanks

  • @DonPierreHalfaway
    @DonPierreHalfaway Před 2 lety +3

    at 2:58 he starts typing

  • @saad.83
    @saad.83 Před 4 lety +1

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

  • @epicblack
    @epicblack Před 4 lety +3

    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
    Plzzzzzzz