Re: External access

2016-11-10 Thread Luis Zárate
First, start testing you machine port is available in your local network run python manage.py runserver 0.0.0.0:8000 In other machine in the same network test it Suppose your django machine has internal ip address 192.168.1.100, then try to access 192.168.1.100:8000 from your web browser in the

Re: External access

2016-11-10 Thread Antonis Christofides
When you reply to a message please include the previous emails of that thread. People who read this list on a mail client might have deleted them and they are probably not going to look them up elsewhere in order to remember what the problem was. So, how are you running the Django development serv

Re: External access

2016-11-09 Thread bob gailer
Here is an update on my situation. Windows firewall - I setup in and outbound rules for port 8000 (UDP and TCP) Router - I set up port forwarding for port 8000 (UDP and TCP) Using example code in the socket module documentation I ram socket_client and socket_server on my local machine with the p

Re: External access

2016-11-07 Thread Thomas Fuller
I don't totally understand how it works under the hood, but using the answer Michal Petrucha provided earlier has worked for me in this situation independent of the OS and any router settings. Run the server using: python manage.py runserver *0.0.0.0:8000 * You'll be able to

Re: External access

2016-11-07 Thread GMail
> 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 mention

Re: External access

2016-11-07 Thread bob gailer
On 11/7/2016 1:23 PM, GMail wrote: Wow... Indeed, in Windows telnet is disabled by default. Here's how you can enable it (first link on Google): https://www.rootusers.com/how-to-enable-the-telnet-client-in-windows-10/ C:\Users\bgailer>telnet 24.211.133.163 Connecting To 24.211.133.163...Could n

Re: External access

2016-11-07 Thread GMail
Wow... Indeed, in Windows telnet is disabled by default. Here's how you can enable it (first link on Google): https://www.rootusers.com/how-to-enable-the-telnet-client-in-windows-10/ I believe the problem is (how somebody

Re: External access

2016-11-07 Thread bob gailer
On 11/7/2016 8:58 AM, Andreas Kuhne wrote: Do you have "ALLOWED_HOSTS" correclty configured in django settings? Thanks - was not aware of that. Now it looks like: ALLOWED_HOSTS = ['209.216.2.211', '209.216.15.70', '24.211.133.163'] The last one is my external ip Adding the ip addresses did not

Re: External access

2016-11-07 Thread Larry Martell
On Mon, Nov 7, 2016 at 1:15 PM, bob gailer wrote: > On 11/7/2016 8:50 AM, Larry Martell wrote: >> >> On Mon, Nov 7, 2016 at 8:48 AM, bob gailer wrote: >>> >>> I am running a the django server, listening at port 8000. I can access >>> the >>> server using localhost. When I try using my external ip

Re: External access

2016-11-07 Thread bob gailer
On 11/7/2016 8:51 AM, GMail wrote: Hi! Seems like port forwarding doesn't work correctly. Do you have any other ports forwarded (like ssh or ftp)? If so, do they work as expected? What is this command's output: telnet 8000 Sorry but I'm running Windows 10 which does not recognize "telnet" Bo

Re: External access

2016-11-07 Thread bob gailer
On 11/7/2016 8:50 AM, Larry Martell wrote: On Mon, Nov 7, 2016 at 8:48 AM, bob gailer wrote: I am running a the django server, listening at port 8000. I can access the server using localhost. When I try using my external ip address I get "The server at 24.211.133.163 is taking too long to respo

Re: External access

2016-11-07 Thread Michal Petrucha
On Mon, Nov 07, 2016 at 08:48:25AM -0500, bob gailer wrote: > I am running a the django server, listening at port 8000. I can access the > server using localhost. When I try using my external ip address I get "The > server at 24.211.133.163 is taking too long to respond." I have port 8000 > forward

Re: External access

2016-11-07 Thread Andreas Kuhne
Do you have "ALLOWED_HOSTS" correclty configured in django settings? Regards, Andréas 2016-11-07 14:48 GMT+01:00 bob gailer : > I am running a the django server, listening at port 8000. I can access the > server using localhost. When I try using my external ip address I get "The > server at 24.

Re: External access

2016-11-07 Thread GMail
Hi! Seems like port forwarding doesn't work correctly. Do you have any other ports forwarded (like ssh or ftp)? If so, do they work as expected? What is this command's output: telnet 8000 > On 7 Nov 2016, at 16:48, bob gailer wrote: > > I am running a the django server, listening at port 8000

Re: External access

2016-11-07 Thread Larry Martell
On Mon, Nov 7, 2016 at 8:48 AM, bob gailer wrote: > I am running a the django server, listening at port 8000. I can access the > server using localhost. When I try using my external ip address I get "The > server at 24.211.133.163 is taking too long to respond." I have port 8000 > forwarded to my