I've transferred to a foreign country to finish off my undergrad studies, and I've settled in a dorm where we have a wired internet connection.
I'm facing some troubles...some web pages in firefox like (speedtest.net) or some other pages tend not to load...but in Chromium everything works flawlessly. I've contacted the IT staff there and they are saying that they do not block anything or even the ISP doesn't...so it's probably a problem with the networking/configuration.
Also I'm working as a part time freelancer, and developing software for my clients...and the project I'm working on is coded in python and it too seems to have problem resolving the dns...
This is what I get when I type the following commands:
- Code: Select all
# route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default sapsin2-4.mshom 0.0.0.0 UG 0 0 0 eth0
loopback sabayon 255.0.0.0 UG 0 0 0 lo
192.168.0.0 * 255.255.255.0 U 1 0 0 eth0
- Code: Select all
# cat /etc/resolv.conf
# Generated by resolvconf
search mshome.net
nameserver 192.168.0.1
I'm not sure what's the root of the problem but I think may be my linux box is having trouble converting names (gateway) to ip...I'm not sure but let me know what more information I should provide or what you think is the problem here.
Thanks!
Edit:
This is the error that I get when I try to run any python program that tries to connect to the internet:
- Code: Select all
File "/usr/lib/python2.7/socket.py", line 553, in create_connection
for res in getaddrinfo(host, port, 0, SOCK_STREAM):
socket.gaierror: [Errno -2] Name or service not known
