树莓派自带一个网口(eth0), 我买了一个EDUP 8188CUS 垃圾无线网卡(说它垃圾是因为默认无法启动监听模式,得重编译核,很折腾)
eth0口我想让它连接 内网1 (192.168.2.0)
wlan1口我想让它连接 内网2 (192.168.1.0)
是这样配置 /etc/network/interfaces 的
auto lo iface lo inet loopback iface eth0 inet static address 192.168.2.166 netmask 255.255.255.0 gateway 192.168.2.1 auto wlan1 allow-hotplug wlan1 iface wlan1 inet dhcp wpa-ssid "wifihotsphot" wpa-psk "xxxxx"
sudo service networking restart 重启之后
只有wlan1 连接上无线网了,并且获得ip为 inet addr:192.168.1.156
但eth0 连没有获得ip,日了狗了,这是啥原因,我都给它配置了静态ip了,居然不生效?
google之后发现有人和我遇到类似的问题,他是情况是 eth0 有ip, wlan0 无ip, 正好和我相反
他的解决办法就是再执行下边两条命令:
sudo ifplugd eth0 --kill
sudo ifup wlan0
我正好和他相反,所以我的情况是:
sudo ifplugd wlan0 --kill
sudo ifup eth0
为了让它每次自动生效,得加入到 /etc/rc.local 中
参考连接:
http://raspberrypi.stackexchange.com/questions/8851/setting-up-wifi-and-ethernet
时间: 2024-10-11 01:11:19