> Connecting To 24.211.133.163...Could not open connection to the host, on port 23: Connect failed.
You forgot to specify port, command should be 'telnet 24.211.133.163 8000' (if you're running Django on different port, change 8000 to your port).
> How would I do that?
I believe it was mentioned earlier in this thread: 'python manage.py runserver
0.0.0.0:8000' or 'python manage.py runserver [::]:8000' for ipv6 (probably not your case though).
> I have no machines that are not on my lan.
I've actually tried to connect to your server from my machine:
% telnet 24.211.133.163 80
Trying 24.211.133.163...
telnet: Unable to connect to remote host: Connection refused
% telnet 24.211.133.163 443
Trying 24.211.133.163...
telnet: Unable to connect to remote host: Connection refused
% telnet 24.211.133.163 8000
Trying 24.211.133.163...
<nothing happens>
It seems like your router or Windows firewall (or it may be any antivirus software with embedded firewall installed on your server) is rejecting connections to 8000 port. Unfortunately, I can't help you with any Windows-related issues.
I could try to help you with your router settings, but I think, since this is not about Django anymore, this discussion should not take place in django-users@. Feel free to contact me personally though.
> To unsubscribe from this group and stop receiving emails from it, send an email to
django-users...@googlegroups.com.
> To post to this group, send email to
django...@googlegroups.com.
> To view this discussion on the web visit
https://groups.google.com/d/msgid/django-users/4a92ce05-eee8-038c-b1ef-6dd15e699087%40gmail.com.