The system used here is the Debian system.
In order to be beaglebone connected to the network, there are some configurations that need to be used.
Wired connection
If it is a wired connection, it is relatively simple, directly through the RJ45 network cable plug Beaglebone and routers can be, the default is the DHCP mode, can be directly assigned to the IP address.
Wireless connection
If it's a wireless connection, it needs to be configured here.
First plug in the Usb-wifi, it should be noted that the use of 802.11n labeled Usb-wifi may be better, because convenience comes with a few WiFi drivers, the use of other Usb-wifi may need to install the driver itself.
1. Use the sudo lsusb command to view the USB device and, as long as the usb-wifi is plugged in, you should see a 802.11 device. If you do not see this device, indicating that the system has a problem or a usb-wifi problem, restart some systems to try.
2. Use the command ifocnifg–a to see what the newly generated wireless network card is, usually wlan0, or WALN1, wlan2, and so on, to see what the specific situation is.
3. Use the sudo nano/etc/network/interfaces command to configure the wireless card:
Configure the following WiFi according to the wireless card designator in 2, and if it is wlan0, configure it as follows
Locate the configuration side similar to the above, by default, these configurations are commented out by the #, you need to remove the # to enable configuration.
Wpa-ssid behind is the ID of the wireless network; Wpa-psk behind is the password for the wireless network.
My wireless network name and password are robotfish.
Save exit
4. Command sudo/etc/init.d/networking Restart Restart the NIC to complete the configuration
Duanxx's Beaglebone Learning: Wireless network configuration