我有我的/etc/网络/接口文件配置如下
auto lo
iface lo inet loopback
iface eth0 inet static
address 192.168.1.100
netmask 255.255.255.0
gateway 192.168.1.1
allow-hotplug wlan0
iface wlan0 inet static
address 192.168.1.200
netmask 255.255.255.0
gateway 192.168.1.1
wpa-conf /etc/wpa_supplicant/wpa_supplicant.conf
iface default inet dhcp
iface wlan1 inet static
address 192.168.42.1
netmask 255.255.255.0
我收到一条错误,指出eth0 无线局域网0是多个实例匹配同一子网。
这是怎么回事?是否隐式应用了我应该手动创建条目的默认设置?
我尝试过改变地址wlan0 内的条目如下
iface wlan0 inet static
address 192.169.42.1
并且还
iface wlan0 inet static
address 194.169.42.1
但是错误仍然完全相同eth0 无线局域网0-多个实例匹配同一子网
答案1
您不应将同一 IP 子网 192.168.1.0/24 用于多个网络接口。
如果要将接口 wlan0 保留在 192.168.1.0/24 子网中,请将 eth0 静态 IP 和 DHCP 服务器更改为不同的子网 192.168.10.0/24。