在BeagleBone Black上通过USB上网
我最近在Beagle Bone Black上安装了Ubuntu 13.04。这个图片: https://rcn-ee.net/deb/flasher/raring/BBB-eMMC-flasher-ubuntu-13.04-2013-10-08.img.xz 该微控制器允许通过USB在主机PC(版本12.04(精确)(64位),内核Linux 3.2.0-56-通用)和BeagleBone之间共享Internet连接,因此我将其配置为如下所示: BeagleBone黑色: ifconfig usb0 192.168.7.2 route add default gw 192.168.7.1 主机电脑: sudo su #eth0 is my internet facing interface, eth3 is the BeagleBone USB connection ifconfig eth2 192.168.7.1 iptables --table nat --append POSTROUTING --out-interface eth0 -j MASQUERADE iptables --append FORWARD --in-interface eth2 -j ACCEPT …