topspeed 发表于 2014-11-27 18:03:10

usb转网口的静态IP不稳定问题

本帖最后由 topspeed 于 2014-11-27 18:06 编辑

请教各位一个问题,我用树老大推荐的usb hub,及usb转网口,在hub上挂了2个usb转的网口,为eth1和eth2,树莓派自带的为eth0。
在dhcp动态配置IP情况下,都可以上网。但我现在需要设置静态IP,设置方法如下:
通过/etc/network/interfaces配置静态IP,把iface eth0inet dhcp中的dhcp换成static,代码如下:
auto lo
iface lo inet loopback

auto eth0iface eth0 inet staticaddress 192.168.1.20
netmask 255.255.255.0
auto eth1iface eth1 inet staticaddress 192.168.1.21
netmask 255.255.255.0
auto eth2iface eth0 inet staticaddress 192.168.1.22
netmask 255.255.255.0
allow-hotplug wlan0
iface wlan0 inet manual
wpa-roam /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp

现在遇到的问题是:有时候开机能分配IP,有时候eth0,或eth1就没有分配IP,尤其是在这个网口有网线连接到其他设备时。我用lsusb 查看,ifconfig查看,都是能看到所有的网口的,说明是发现了物理网口的,但为什么有时候静态IP却无法分配呢?
多谢!


页: [1]
查看完整版本: usb转网口的静态IP不稳定问题