Hi, I have installed recently the Fedora 8 in a computer and during installation it was set a static IP with the netmask and gateway.
At first it worked well, but after some boots the connection begins to fail.
It seems that the network-manager withdraws the static IP and tries
to get connection via DHCP.
Below is the /var/log/messages file during the failed connection:
Code:
Sep 19 10:36:53 canario avahi-daemon[1695]: Interface eth0.IPv4 no longer relevant for mDNS.
Sep 19 10:36:53 canario avahi-daemon[1695]: Withdrawing address record for fe80::20d:87ff:fe0c:355f on eth0.
Sep 19 10:36:53 canario NetworkManager: <info> SWITCH: terminating current connection 'Auto Ethernet (eth0)' because it's no longer valid.
Sep 19 10:36:53 canario NetworkManager: <info> Deactivating device eth0.
Sep 19 10:37:07 canario system-config-network[2195]: -+ //etc/modprobe.conf #011eth0 alias sis900
Sep 19 10:37:08 canario system-config-network[2195]: chmod 0644 //etc/sysconfig/networking/devices/ifcfg-eth0
Sep 19 10:37:08 canario system-config-network[2195]: chmod 0644 //etc/sysconfig/networking/devices/ifcfg-eth0:1
Sep 19 10:37:08 canario system-config-network[2195]: ln //etc/sysconfig/networking/devices/ifcfg-eth0:1 //etc/sysconfig/networking/profiles//default/ifcfg-eth0:1
Sep 19 10:37:08 canario system-config-network[2195]: ln //etc/sysconfig/networking/devices//ifcfg-eth0:1 //etc/sysconfig/network-scripts//ifcfg-eth0:1
Sep 19 10:37:08 canario system-config-network[2195]: rm //etc/sysconfig/network-scripts//ifcfg-eth0
Sep 19 10:37:08 canario system-config-network[2195]: rm //etc/sysconfig/networking/profiles/default/ifcfg-eth0
Sep 19 10:37:17 canario NetworkManager: <info> SWITCH: no current connection, found better connection 'Auto Ethernet (eth0)'.
Sep 19 10:37:17 canario NetworkManager: <info> Activating device eth0
Sep 19 10:37:17 canario NetworkManager: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) scheduled...
Sep 19 10:37:17 canario NetworkManager: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) started...
Sep 19 10:37:17 canario NetworkManager: <info> Activation (eth0) Stage 2 of 5 (Device Configure) scheduled...
Sep 19 10:37:17 canario NetworkManager: <info> Activation (eth0) Stage 1 of 5 (Device Prepare) complete.
Sep 19 10:37:17 canario NetworkManager: <info> Activation (eth0) Stage 2 of 5 (Device Configure) starting...
Sep 19 10:37:17 canario NetworkManager: <info> Activation (eth0) Stage 2 of 5 (Device Configure) successful.
Sep 19 10:37:17 canario NetworkManager: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) scheduled.
Sep 19 10:37:17 canario NetworkManager: <info> Activation (eth0) Stage 2 of 5 (Device Configure) complete.
Sep 19 10:37:17 canario NetworkManager: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) started...
Sep 19 10:37:17 canario NetworkManager: <info> Activation (eth0) Beginning DHCP transaction.
Sep 19 10:37:17 canario NetworkManager: <info> dhclient started with pid 2339
Sep 19 10:37:17 canario NetworkManager: <info> Activation (eth0) Stage 3 of 5 (IP Configure Start) complete.
Sep 19 10:37:17 canario dhclient: Internet Systems Consortium DHCP Client V3.0.6-Fedora
Sep 19 10:37:17 canario dhclient: Copyright 2004-2007 Internet Systems Consortium.
Sep 19 10:37:17 canario dhclient: All rights reserved.
Sep 19 10:37:17 canario dhclient: For info, please visit http://www.isc.org/sw/dhcp/
Sep 19 10:37:17 canario dhclient:
Sep 19 10:37:17 canario NetworkManager: <info> DHCP: device eth0 state changed normal exit -> preinit
Sep 19 10:37:17 canario dhclient: Listening on LPF/eth0/00:0d:87:0c:35:5f
Sep 19 10:37:17 canario dhclient: Sending on LPF/eth0/00:0d:87:0c:35:5f
Sep 19 10:37:17 canario dhclient: Sending on Socket/fallback
Sep 19 10:37:17 canario dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 8
Sep 19 10:37:19 canario avahi-daemon[1695]: Registering new address record for fe80::20d:87ff:fe0c:355f on eth0.*.
Sep 19 10:37:20 canario kernel: eth0: Media Link On 100mbps full-duplex
Sep 19 10:37:21 canario avahi-daemon[1695]: Joining mDNS multicast group on interface eth0.IPv4 with address 192.168.1.3.
Sep 19 10:37:21 canario avahi-daemon[1695]: New relevant interface eth0.IPv4 for mDNS.
Sep 19 10:37:21 canario avahi-daemon[1695]: Registering new address record for 192.168.1.3 on eth0.IPv4.
Sep 19 10:37:25 canario dhclient: DHCPDISCOVER on eth0 to 255.255.255.255 port 67 interval 13
The output of ifconfig eth0 is
Code:
eth0 Link encap:Ethernet HWaddr 00:0D:87:0C:35:5F
inet addr:169.254.29.218 Bcast:169.254.255.255 Mask:255.255.0.0
inet6 addr: fe80::20d:87ff:fe0c:355f/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:97 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:0 (0.0 b) TX bytes:16969 (16.5 KiB)
Interrupt:11 Base address:0xd400
To solve this problem I
stopped the network-manager and set by hand the network, through the
ifconfig and
route command and editing the
/etc/resolv.conf file.
I would like some guesses about why the network-manager presents such a problem.
Thanks.