Can't connect to the Internet via router using fixed IP

I’m having problems connecting to the Internet with YaST ifup or Network Manager using a fixed IP. I can only connect using DHCP. Could someone please point me to a tutorial for either method. The router is a Linksys BEFSR41 running on a wire.

Thanks.

Can you ping the router successfully? Have you specified a name server? Check/report the following

ip addr
ip route
grep -i "nameserver" /etc/resolv.conf

Thank you for the speedy response.

:~> ip addr
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN 
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 brd 127.255.255.255 scope host lo
2: eth0: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
    link/ether 00:26:55:36:02:92 brd ff:ff:ff:ff:ff:ff
    inet 192.168.0.100/24 brd 192.168.0.255 scope global eth0


~> ip route
127.0.0.0/8 dev lo  scope link 
169.254.0.0/16 dev eth0  scope link 
192.168.0.0/24 dev eth0  proto kernel  scope link  src 192.168.0.100 


:~> grep -i "nameserver" /etc/resolv.conf
nameserver 208.67.222.222
nameserver 208.67.220.220


~> ip route
127.0.0.0/8 dev lo  scope link 
169.254.0.0/16 dev eth0  scope link 
192.168.0.0/24 dev eth0  proto kernel  scope link  src 192.168.0.100

You haven’t configured a gateway (default route).

Problem fixed. Many thanks.

My pleasure ionmich :slight_smile: