I am trying to access a django app in port 8000 of a linux VPS from my local machine.
Port 8000 is already open
public (active)
target: default
icmp-block-inversion: no
interfaces: eth0
sources:
services: cockpit dhcpv6-client ftp http https ssh
ports: 5432/tcp 8080/tcp **8000/tcp**
protocols:
masquerade: no
forward-ports:
source-ports:
icmp-blocks:
rich rules:
I started django server using
python3 manage.py runserver 74.208.210.200:8000
and tried to access it in my local machine using my server's public ip address
74.208.210.200:8000
however, the only thing I see is CONNECTION TIME_OUT
the only way I can access this django app in port 8000 is from localhost
If I run netstat -tulnp I see the following:
`tcp 0 0 74.208.210.200:8000 0.0.0.0:* LISTEN 684680/python3 ``
Please help!