这是我的办公室网络设置
另请注意,AirportExtreme 本身连接到 D-link 路由器,我无法访问其 Web 控制台。
我的技嘉6200使用局域网电缆连接到 Airport Extreme。
Gigabyte Brix 运行的是 14.04 Ubuntu Server(不是带有漂亮 GUI 的桌面)
当我设置/etc/network/interfaces
为
auto eth0
iface eth0 inet dhcp
然后sudo ifdown -v eth0
,sudo ifup -v eth0
我可以ping www.google.com
成功做到
然后ifconfig
给我:
eth0 inetaddr: 192.168.1.39 Bcast: 192.168.1.155 Mask:255.255.255.0
当我设置/etc/network/interfaces
为
auto eth0
iface eth0 inet static
address 192.168.1.39
netmask 255.255.255.0
然后ifconfig
给我:
eth0 inetaddr: 192.168.1.39 Bcast: 192.168.1.155 Mask:255.255.255.0
但
然后sudo ifdown -v eth0
和sudo ifup -v eth0
,我这样做ping www.google.com
并得到未知主机错误
我也尝试过其他 IP 地址。
如何根据我的情况设置静态 IP 地址?