Hello,
I am using the Squidge distribution of OpenWRT and it has been working well since I had to restart a system configuration from scratch.
I am using OpenWRT on an ADM-5120-based router board and I use this platform for SSH tunneling.
SSH setup is working and I can connect my board from other places using PUTTY.
My problem is that I can ping IP's from my router using SSH but not addresses, so I assume there is a problem with my DNS configuration and that is why I could use some help to solve this.
Network parameters :
The OpenWRT-running router is set to IP 192.168.0.99.
My Internet-providing box is set to 192.168.0.1, and also set in my OpenWRT router as default gateway.
This is my /etc/config/network file :
root@OpenWrt:~# cat /etc/config/network
# Copyright (C) 2006 OpenWrt.org
config interface loopback
option ifname lo
option proto static
option ipaddr 127.0.0.1
option netmask 255.0.0.0
config interface lan
option ifname eth0
option type bridge
option proto static
option ipaddr 192.168.0.99
option netmask 255.255.255.0
option gateway 192.168.0.1
option dns 192.168.0.1
And this is my /etc/resolv.conf file :
root@OpenWrt:~# cat /etc/resolv.conf
nameserver 192.168.0.1
nameserver 194.2.0.50
So far I recall, I made no other configuration on DNS before I had to set up everything again, yet wget http://www.google.com gives me :
root@OpenWrt:~# wget http://www.google.com
wget: bad address 'www.google.com'
My DNS servers addresses are some used by the internet providers in France, where I live.
(http://www.commentcamarche.net/faq/suje … cipaux-fai)
I tried several addresses but things do not work either.
Does someone have an idea?
Shinkel