Estoy ejecutando tomcat7 pero no creo que haya ningún problema con la configuración. Puedo conectarme al puerto 8080 desde la máquina local. No puedo conectarme al 8080 desde otras computadoras en la red. No hay ningún firewall en ejecución.
netstat -tulpn | grep LISTEN
tcp 0 0 127.0.0.53:53 0.0.0.0:* LISTEN -
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN -
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN -
tcp6 0 0 :::22 :::* LISTEN -
tcp6 0 0 127.0.0.1:8005 :::* LISTEN -
tcp6 0 0 :::7877 :::* LISTEN -
tcp6 0 0 :::8080 :::* LISTEN -
tcp6 0 0 :::80 :::* LISTEN -
nmap localhost
PORT STATE SERVICE
22/tcp open ssh
80/tcp open http
3306/tcp open mysql
8080/tcp open http-proxy
nmap server (from different computer)
PORT STATE SERVICE
22/tcp open ssh
80/tcp open http
443/tcp closed https
There is no firewall running
sudo ufw status
Status: inactive
Todo lo que veo dice que el firewall es un problema, pero no hay ningún firewall en ejecución. El puerto 80 es visible externamente pero el puerto 8080 no.
Cualquier ayuda sería apreciada.