Ich verwende Tomcat7, aber ich glaube nicht, dass es ein Problem mit der Einrichtung gibt. Ich kann vom lokalen Computer aus eine Verbindung zu Port 8080 herstellen. Von anderen Computern im Netzwerk aus kann ich keine Verbindung zu 8080 herstellen. Es läuft keine Firewall.
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
Alles, was ich sehe, besagt, dass die Firewall ein Problem darstellt, aber es läuft keine Firewall. Port 80 ist extern sichtbar, Port 8080 jedoch nicht.
Jede Hilfe wäre willkommen.