I think that the Port 8000 is currently used by your external IP. I would suggest you check if the process is running or not, if it is running then kill it.
You can check that by opening the ports with:
netstat -a
In Debian you will get the PID with:
netstat -tulpn | grep 8000
The last line will show you something like 1234/python. Now kill it with:
kill 1234
The other option will just restart your system.