Curiously if I tell ifconfig to assign an IP address to the interface I can get ip networking to work:
[root@template network-scripts]# ifconfig eth0 192.168.1.153
[root@template network-scripts]# ifconfig
eth0 Link encap:Ethernet HWaddr 00:22:22:24:6D:FB
inet addr:192.168.1.153 Bcast:192.168.1.255 Mask:255.255.255.0
inet6 addr: fe80::222:22ff:fe24:6dfb/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:81 errors:0 dropped:0 overruns:0 frame:0
TX packets:7 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:4860 (4.7 KiB) TX bytes:510 (510.0 b)
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:177 errors:0 dropped:0 overruns:0 frame:0
TX packets:177 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:31799 (31.0 KiB) TX bytes:31799 (31.0 KiB)
[root@template network-scripts]# ping 192.168.1.1
PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
64 bytes from
192.168.1.1: icmp_seq=1 ttl=64 time=1.61 ms
64 bytes from
192.168.1.1: icmp_seq=2 ttl=64 time=0.715 ms
64 bytes from
192.168.1.1: icmp_seq=3 ttl=64 time=0.692 ms
--- 192.168.1.1 ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2000ms
rtt min/avg/max/mdev = 0.692/1.008/1.619/0.433 ms
The results are the same regardless of whether I assign a static IP or use DHCP on boot. Any ideas how I can get the networking scripts to bond to the dom0 interface on boot?
j.