我的 Orange Pi wifi 连接遇到了一些问题。
我的发行版是 Orange Pi ubuntu 服务器 16.04。
当我 ping wlan0 ip 地址时,只有添加连接的 eth0 电缆时它才有效。当我拔下它时,eth0 ip ping 和 wlan0 ip ping 都停止响应。
我还注意到,我的电脑没有通过 wlan0 的路由。所以我认为我的 ping 是从我的 pi 通过 eth0 接口返回的。
我尝试通过 wlan0 添加一个具有更高度量的路由,但效果似乎并不好。当我拔掉电源时,两个都断了。
我已经/etc/network/interfaces
按原样配置了我的文件:
# The loopback network interface
auto lo
iface lo inet loopback
# wired network interface
auto eth0
iface eth0 inet dhcp
# wireless network interface
auto wlan0
iface wlan0 inet dhcp
wpa-ssid "my_ssid"
wpa-psk "my_pwd"
当我arp -a
在电脑上执行此操作时,我有:
Interface : 192.168.0.24 --- 0x8
Adresse Internet Adresse physique Type
192.168.0.36 f6-6d-bf-6f-1c-04 dynamique
192.168.0.47 f6-6d-bf-6f-1c-04 dynamique
192.168.0.254 f4-ca-e5-5e-b2-37 dynamique
请注意,ip eth0 和 ip wlan0 的 MAC 地址相同。
当我ifconfig
在橙色派上执行此操作时,我有:
eth0 Link encap:Ethernet HWaddr f6:6d:bf:6f:1c:04
inet addr:192.168.0.36 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: 2a01:e35:8ab3:590:f46d:bfff:fe6f:1c04/64 Scope:Global
inet6 addr: fe80::f46d:bfff:fe6f:1c04/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:821 errors:0 dropped:0 overruns:0 frame:0
TX packets:672 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:68083 (68.0 KB) TX bytes:58029 (58.0 KB)
Interrupt:114
lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
inet6 addr: ::1/128 Scope:Host
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:0 errors:0 dropped:0 overruns:0 frame:0
TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
wlan0 Link encap:Ethernet HWaddr f4:6d:bf:6f:1c:05
inet addr:192.168.0.47 Bcast:192.168.0.255 Mask:255.255.255.0
inet6 addr: 2a01:e35:8ab3:590:f064:ea1c:6039:579a/64 Scope:Global
inet6 addr: 2a01:e35:8ab3:590:f66d:bfff:fe6f:1c05/64 Scope:Global
inet6 addr: fe80::f66d:bfff:fe6f:1c05/64 Scope:Link
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:135 errors:0 dropped:0 overruns:0 frame:0
TX packets:12 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:26368 (26.3 KB) TX bytes:1621 (1.6 KB)
当我route
在橙色派上执行此操作时,我有:
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
default 192.168.0.254 0.0.0.0 UG 0 0 0 eth0
192.168.0.0 * 255.255.255.0 U 0 0 0 eth0
192.168.0.0 * 255.255.255.0 U 0 0 0 wlan0