I am running Ubuntu 16.04 on a desktop. I just wanted make a simple server to share some files with other systems on my home network so here is what I used
Code:
python -m SimpleHTTPServer 8000
and what I get
Code:
Serving HTTP on 0.0.0.0 port 8000 ...
If I access 0.0.0.0:8000 on firefox on my Ubuntu machine that is running the server I get access to the files exactly as expected however if I try from any other laptop or my Android phone I get "ERR_CONNECTION_REFUSED." I suspect that something is blocking the connection so I checked the firewall
Code:
sudo ufw status
Status: inactive
I imagine that it is my wireless router blocking the port or I just do not know the proper syntax to access this server. I tried using 0.0.0.0:8000 as well as my machines IP address at port 8000 and even me routers IP address at port 8000. Any help would be appreciated as it's clear I am missing something fundamental.
Bookmarks