I am trying to access one of my host VMs using a browser on a specific port (8200 - duplicati) but it is not working. I have tried using nmap from a remote host (192.168.0.10) to see what ports are open and I get the following output:
# sudo nmap 192.168.0.123
...
PORT STATE SERVICE
22/tcp open ssh
25/tcp open smtp
80/tcp open http
110/tcp open pop3
143/tcp open imap
443/tcp open https
587/tcp open submission
993/tcp open imaps
995/tcp open pop3s
If I execute the same command on the host in question (192.168.0.123), I get the following output:
$sudo nmap 192.168.0.123
...
PORT STATE SERVICE
22/tcp open ssh
25/tcp open smtp
80/tcp open http
110/tcp open pop3
111/tcp open rpcbind
143/tcp open imap
443/tcp open https
587/tcp open submission
993/tcp open imaps
995/tcp open pop3s
8200/tcp open trivnet1
which shows port 8200 is open. I am not running a firewall on the host. I have duplicati running on another VM that I am able to access via a web browser using port 8200, and if I do the same thing and run nmap remotely and locally, it shows port 8200 open in both cases.
If I run netstat -lntu
I see the following entry on both hosts:
Active Internet connections (only servers)
Proto Recv-Q Send-Q Local Address Foreign Address State
tcp 0 0 0.0.0.0:8200 0.0.0.0:* LISTEN
...
I'm not sure what to look at or try next, so any suggestions would be appreciated.