Hi,
i am able to open the default web page from an windows server insight the same subnet.
The docker host is able to ping an connect to our entire network. There is no issue what i see related to network connection.
I am not able to open the webpage for example from my own workstations. This workstation is on an different subnet and also not on the vmware cluster.
I am also able to login with ssh from my client into the server
I am using the default docker network bridge. And i expose only one port with the option -p 8888:8080
It is an ubuntu 19.04 server.
The Firewall isn´t running.
Output of ufw status is inactive
iptables output
sudo iptables -t nat -L -n
Chain PREROUTING (policy ACCEPT)
target prot opt source destination
DOCKER all -- 0.0.0.0/0 0.0.0.0/0 ADDRTYPE match dst-type LOCAL
Chain INPUT (policy ACCEPT)
target prot opt source destination
Chain OUTPUT (policy ACCEPT)
target prot opt source destination
DOCKER all -- 0.0.0.0/0 !127.0.0.0/8 ADDRTYPE match dst-type LOCAL
Chain POSTROUTING (policy ACCEPT)
target prot opt source destination
MASQUERADE all -- 172.17.0.0/16 0.0.0.0/0
MASQUERADE tcp -- 172.17.0.2 172.17.0.2 tcp dpt:8080
Chain DOCKER (2 references)
target prot opt source destination
RETURN all -- 0.0.0.0/0 0.0.0.0/0
DNAT tcp -- 0.0.0.0/0 0.0.0.0/0 tcp dpt:8888 to:172.17.0.2:8080
Thanks
Frank