Jump to content

Recommended Posts

Posted

BUEN DIA SOY NUEVO EN EMBY Y ME GUSTARIA SABER COMO ENTRAR REMOTAMENTE DESDE OTRO LUGAR 

AL SERVIDOR, E INTENTADO QUE ENTRAR POR LOS PUERTOS POR DEFAUL Y NO PUEDO,

PODRIAN AYUDARME CON UNOS CONSEJOS O COMO PUEDO HACER QUE SALGA POR EL PUERTO 80.

 

LES AGRADEZCO SU APOYO

Posted

si ya probé las opciones de la guia y no puedo

Posted

Can you try the default port and not 80? How does that compare?

  • 2 years later...
Posted (edited)
in ubuntu, just create a Chain Prerouting for redirect port 80 to 8096, with the code:

iptables -t nat -A PREROUTING -p tcp --dport 80 -j REDIRECT --to-port 8096

Check for the changes with:

iptables -t nat --line-numbers -n -L

 

Edited by Tenguman
  • Thanks 1
  • 2 weeks later...
Posted (edited)

For a https conection, redirect port 443 to 8920 with the code

iptables -t nat -A PREROUTING -p tcp --dport 443 -j REDIRECT --to-port 8920

and dont forget open ports 8096 and 8920 in firewall

ufw allow 8096

ufw allow 8920

ufw disable

ufw enable

check for firewall info with

ufw status

 

Edited by Tenguman
  • Thanks 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...