Difference between revisions of "Overo Tobi Ethernet"
Aqisecoxefi (Talk | contribs) |
Searchworks (Talk | contribs) (remove spam) |
||
Line 1: | Line 1: | ||
− | |||
[[Category:How_to_-_ethernet]] | [[Category:How_to_-_ethernet]] | ||
Some Overo boards do not properly bring up the eth0 wired Ethernet interface when booting up with the Tobi expansion board. The result is that the Overo will not have a working wired Ethernet connection after booting, even though you may have eth0 properly configured in ''/etc/network/interfaces''. The problem appears to be caused by a version mismatch between the ''dhclient'' and ''ifupdown'' packages on the Overo images. | Some Overo boards do not properly bring up the eth0 wired Ethernet interface when booting up with the Tobi expansion board. The result is that the Overo will not have a working wired Ethernet connection after booting, even though you may have eth0 properly configured in ''/etc/network/interfaces''. The problem appears to be caused by a version mismatch between the ''dhclient'' and ''ifupdown'' packages on the Overo images. | ||
Line 20: | Line 19: | ||
After you have eth0 configured, reboot your Overo. You should see the following messages during boot: | After you have eth0 configured, reboot your Overo. You should see the following messages during boot: | ||
− | + | <pre> | |
Configuring network interfaces... net eth0: SMSC911x/921x identified at 0xd08cc000, IRQ: 336 | Configuring network interfaces... net eth0: SMSC911x/921x identified at 0xd08cc000, IRQ: 336 | ||
eth0 no wireless extensions. | eth0 no wireless extensions. | ||
Line 28: | Line 27: | ||
All rights reserved. | All rights reserved. | ||
For info, please visit http://www.isc.org/sw/dhcp/ | For info, please visit http://www.isc.org/sw/dhcp/ | ||
− | Usage: dhclient [-1dqrx] [-nw] [-p | + | Usage: dhclient [-1dqrx] [-nw] [-p <port>] [-s server] |
[-cf config-file] [-lf lease-file][-pf pid-file] [-e VAR=val] | [-cf config-file] [-lf lease-file][-pf pid-file] [-e VAR=val] | ||
[-sf script-file] [interface] | [-sf script-file] [interface] | ||
Line 50: | Line 49: | ||
Failed to bring up eth0. | Failed to bring up eth0. | ||
done. | done. | ||
− | + | </pre> | |
Even though you have eth0 configured properly, ''ifup'' fails to bring up the eth0 interface. | Even though you have eth0 configured properly, ''ifup'' fails to bring up the eth0 interface. | ||
Line 60: | Line 59: | ||
The ''ifupdown'' package source code has a file named ''inet.defn''. Here are lines 76 through 81 from that file: | The ''ifupdown'' package source code has a file named ''inet.defn''. Here are lines 76 through 81 from that file: | ||
− | + | <pre> | |
76: up | 76: up | ||
77: [[ifconfig %iface% hw %hwaddress%]] | 77: [[ifconfig %iface% hw %hwaddress%]] | ||
78: dhclient3 -pf /var/run/dhclient.%iface%.pid -lf /var/lib/dhcp3/dhclient.%iface%.leases %iface% \ | 78: dhclient3 -pf /var/run/dhclient.%iface%.pid -lf /var/lib/dhcp3/dhclient.%iface%.leases %iface% \ | ||
− | 79: if (execable( | + | 79: if (execable("/sbin/dhclient3")) |
80: dhclient -v -pf /var/run/dhclient.%iface%.pid -lf /var/lib/dhcp/dhclient.%iface%.leases %iface% \ | 80: dhclient -v -pf /var/run/dhclient.%iface%.pid -lf /var/lib/dhcp/dhclient.%iface%.leases %iface% \ | ||
− | 81: elsif (execable( | + | 81: elsif (execable("/sbin/dhclient")) |
− | + | </pre> | |
As you can see, if ''dhclient3'' is not found on the system, then at line 80 ''dhclient'' is invoked with the -v flag. This is the problem, because the Overo image has ''/sbin/dhclient'', not ''/sbin/dhclient3''. The ''dhclient'' version on the Overo image does not support the -v flag, and this is why the error message appears during boot, and the eth0 interface does not get initialized. | As you can see, if ''dhclient3'' is not found on the system, then at line 80 ''dhclient'' is invoked with the -v flag. This is the problem, because the Overo image has ''/sbin/dhclient'', not ''/sbin/dhclient3''. The ''dhclient'' version on the Overo image does not support the -v flag, and this is why the error message appears during boot, and the eth0 interface does not get initialized. | ||
Line 77: | Line 76: | ||
The solution is to create a symlink to trick ''ifup'': | The solution is to create a symlink to trick ''ifup'': | ||
− | + | <pre> | |
ln -s /sbin/dhclient3 /sbin/dhclient | ln -s /sbin/dhclient3 /sbin/dhclient | ||
− | + | </pre> | |
This way, the ''inet.defn'' code will see that ''dhclient3'' is present, and (via the symlink) it will call ''dhclient'' without the troublesome -v flag. | This way, the ''inet.defn'' code will see that ''dhclient3'' is present, and (via the symlink) it will call ''dhclient'' without the troublesome -v flag. | ||
Now when you boot the Overo, you should no longer get the error messages. Instead, eth0 should successfully get an IP address via DHCP and you should have a working wired Ethernet connection. | Now when you boot the Overo, you should no longer get the error messages. Instead, eth0 should successfully get an IP address via DHCP and you should have a working wired Ethernet connection. |
Latest revision as of 16:01, 23 November 2010
Some Overo boards do not properly bring up the eth0 wired Ethernet interface when booting up with the Tobi expansion board. The result is that the Overo will not have a working wired Ethernet connection after booting, even though you may have eth0 properly configured in /etc/network/interfaces. The problem appears to be caused by a version mismatch between the dhclient and ifupdown packages on the Overo images.
Contents
Software
Official Overo pre-built Linux images or developer images have support for wired Ethernet networking and DHCP.
Configuring eth0
Edit /etc/network/interfaces to enable eth0:
auto eth0 iface eth0 inet dhcp
The above configuration should already be there, you would just have to uncomment it.
Boot Messages
After you have eth0 configured, reboot your Overo. You should see the following messages during boot:
Configuring network interfaces... net eth0: SMSC911x/921x identified at 0xd08cc000, IRQ: 336 eth0 no wireless extensions. Internet Systems Consortium DHCP Client V3.1.2p1 Copyright 2004-2009 Internet Systems Consortium. All rights reserved. For info, please visit http://www.isc.org/sw/dhcp/ Usage: dhclient [-1dqrx] [-nw] [-p <port>] [-s server] [-cf config-file] [-lf lease-file][-pf pid-file] [-e VAR=val] [-sf script-file] [interface] If you did not get this software from ftp.isc.org, please get the latest from ftp.isc.org and install that before requesting help. If you did get this software from ftp.isc.org and have not yet read the README, please read it before requesting help. If you intend to request help from the dhcp-server@isc.org mailing list, please read the section on the README about submitting bug reports and requests for help. Please do not under any circumstances send requests for help directly to the authors of this software - please send them to the appropriate mailing list as described in the README file. exiting. Failed to bring up eth0. done.
Even though you have eth0 configured properly, ifup fails to bring up the eth0 interface.
Apparent Version Mismatch Problem
The above errors during boot appear to be caused by some kind of version mismatch between the dhclient and ifupdown packages installed in the Overo images.
The ifupdown package source code has a file named inet.defn. Here are lines 76 through 81 from that file:
76: up 77: [[ifconfig %iface% hw %hwaddress%]] 78: dhclient3 -pf /var/run/dhclient.%iface%.pid -lf /var/lib/dhcp3/dhclient.%iface%.leases %iface% \ 79: if (execable("/sbin/dhclient3")) 80: dhclient -v -pf /var/run/dhclient.%iface%.pid -lf /var/lib/dhcp/dhclient.%iface%.leases %iface% \ 81: elsif (execable("/sbin/dhclient"))
As you can see, if dhclient3 is not found on the system, then at line 80 dhclient is invoked with the -v flag. This is the problem, because the Overo image has /sbin/dhclient, not /sbin/dhclient3. The dhclient version on the Overo image does not support the -v flag, and this is why the error message appears during boot, and the eth0 interface does not get initialized.
Solution
It is possible to manually run dhclient from the command line after you log into the Overo. This should make eth0 get an IP address from DHCP. This solution is fine for development, but it is not acceptable for an embedded computer that is supposed to boot up and get on the network without supervision.
The solution is to create a symlink to trick ifup:
ln -s /sbin/dhclient3 /sbin/dhclient
This way, the inet.defn code will see that dhclient3 is present, and (via the symlink) it will call dhclient without the troublesome -v flag.
Now when you boot the Overo, you should no longer get the error messages. Instead, eth0 should successfully get an IP address via DHCP and you should have a working wired Ethernet connection.