Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!


plex on nat vps
New on LowEndTalk? Please Register and read our Community Rules.

All new Registrations are manually reviewed and approved, so a short delay after registration may occur before your account becomes active.

plex on nat vps

eloftyelofty Member

hey,

Does anyone know how to do the putty tunneling to setup plex on a natvps?

Comments

  • WSSWSS Member

    You'll need to bind it to localhost, as it requires the local port to always be 32400. Go ahead and setup your iptables accordingly.

  • PepeSilviaPepeSilvia Member
    edited April 2017

    Why don't you just expose the ports?

    just replace XXXX and YYYY with two of your allocated ports, and INTERNAL_IP with your internal IP.

    iptables -t nat -A PREROUTING -p tcp --dport XXXXX -j REDIRECT --to-port 32400
    iptables -t nat -A PREROUTING -p tcp --dport YYYYY -j DNAT --to-destination INTERNAL_IP:10000
    
    Thanked by 1rivermigue
  • figured it out thanks

Sign In or Register to comment.