我尝试配置无线静态 IP,到目前为止我发现的所有内容都涉及以太网连接。我发现一个有用的指南是这个:
http://www.sudo-juice.com/how-to-set-a-static-ip-in-ubuntu-the-proper-way/
到目前为止,我已经在 /etc/network/interfaces 中写入了以下内容:
iface eth0 inet static
address 192.168.0.108
netmask 255.255.255.0
gateway 192.168.1.1
我该如何修改它来获取无线静态 IP?
编辑:
改成eth0
了wlan0
,但是重启网络就无法连接互联网了。
iface wlan0 inet static
address 192.168.0.108
netmask 255.255.255.0
gateway 192.168.1.1
ifconfig
更改后的输出是:
eth0 Link encap:Ethernet HWaddr f0:76:1c:74:9d:e3
UP BROADCAST MULTICAST MTU:1500 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:1000
RX bytes:0 (0.0 B) TX bytes:0 (0.0 B)
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:65536 Metric:1
RX packets:10049 errors:0 dropped:0 overruns:0 frame:0
TX packets:10049 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:923248 (923.2 KB) TX bytes:923248 (923.2 KB)
wlan0 Link encap:Ethernet HWaddr ac:b5:7d:e9:1a:79
inet addr:192.168.0.108 Bcast:192.168.0.255 Mask:255.255.255.0
UP BROADCAST MULTICAST MTU:1500 Metric:1
RX packets:125998 errors:0 dropped:0 overruns:0 frame:0
TX packets:78544 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:163553553 (163.5 MB) TX bytes:9362435 (9.3 MB)
检查了我的路由(已wlan0
注释掉)并得到了以下信息:
Destination Gateway Genmask Flags Metric Ref Use Iface
0.0.0.0 192.168.1.1 0.0.0.0 UG 0 0 0 wlan0
192.168.1.0 0.0.0.0 255.255.255.0 U 9 0 0 wlan0
答案1
您的接口 wlan0 无法正确连接 192.168。0.108 的网关为 192.168。1.1. 其中之一不正确。我建议您检查同一网络上的其他设备以验证这些详细信息。
此外,任何无线接口都需要网络名称和 WPA 密钥才能关联。我建议您的/etc/网络/接口文件修改为:
auto lo
iface lo inet loopback
auto wlan0
iface wlan0 inet static
address 192.168.1.108
netmask 255.255.255.0
gateway 192.168.1.1
dns-nameservers 192.168.1.1 8.8.8.8
wpa-ssid <your_network>
wpa-psk <your_key>
重启界面:
sudo ifdown wlan0 && sudo ifup -v wlan0
查看:
ping -c3 www.ubuntu.com
当然,请替换上面您已验证的详细信息。