FLEXLINE 0 Posted November 24, 2019 Posted November 24, 2019 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
Luke 42085 Posted November 24, 2019 Posted November 24, 2019 Hi there, have you checked out our Connectivity guide? https://github.com/MediaBrowser/Wiki/wiki/Connectivity
FLEXLINE 0 Posted November 24, 2019 Author Posted November 24, 2019 si ya probé las opciones de la guia y no puedo
Luke 42085 Posted November 24, 2019 Posted November 24, 2019 Can you try the default port and not 80? How does that compare?
Tenguman 4 Posted October 14, 2022 Posted October 14, 2022 (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 October 15, 2022 by Tenguman 1
Tenguman 4 Posted October 24, 2022 Posted October 24, 2022 (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 October 24, 2022 by Tenguman 1
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now