我有两台 Raspberry Pi 机器D-link DWA-121Wi-Fi 适配器,我正尝试在它们之间建立一个临时网络。
我在 /etc/network/interfaces 中遵循了以下配置示例:
auto lo
iface lo inet loopback
iface eth0 inet dhcp
auto wlan0
iface wlan0 inet static
address 192.168.3.10
netmask 255.255.255.0
wireless-channel 1
wireless-essid wnet
wireless-mode ad-hoc
我使用的是 vanilla Raspbian 2015-01-31,两者的设置相同,除了 IP 地址的最后一位数字外,但我无法在它们之间 ping 通。奇怪的是,如果我将 Android 设备连接到同一个网络,那么它可以 ping 通它们两个。此外,两台 Raspberry Pi 机器都可以 ping 通 Android 设备,但不能互相 ping 通。
这是 ifconfig、iwconfig 和 route 的输出:
pi@CCV2XA:~$ ifconfig wlan0
wlan0 Link encap:Ethernet HWaddr 6c:19:8f:b7:52:a1
inet addr:192.168.3.10 Bcast:192.168.3.255 Mask:255.255.255.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:105 errors:0 dropped:7 overruns:0 frame:0
TX packets:56 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:6852 (6.6 KiB) TX bytes:816 (816.0 B)
pi@CCV2XA:~$ iwconfig wlan0
wlan0 IEEE 802.11bg ESSID:"wnet" Nickname:"<WIFI@REALTEK>"
Mode:Ad-Hoc Frequency:2.412 GHz Cell: 02:11:87:B2:93:FF
Bit Rate:54 Mb/s Sensitivity:0/0
Retry:off RTS thr:off Fragment thr:off
Power Management:off
Link Quality=100/100 Signal level=100/100 Noise level=0/100
Rx invalid nwid:0 Rx invalid crypt:0 Rx invalid frag:0
Tx excessive retries:0 Invalid misc:0 Missed beacon:0
pi@CCV2XA:~$ route
Kernel IP routing table
Destination Gateway Genmask Flags Metric Ref Use Iface
192.168.3.0 * 255.255.255.0 U 0 0 0 wlan0
我是否忘记了 IP 设置中的某些内容?
答案1
Realtek 8192cu Linux 驱动程序似乎存在错误。如果在其中一台机器上使用不同的适配器,则相同的配置可以正常工作。