Estou usando o raspbian e vi um problema ao usar o isc-dhcp-server .
O problema parece surgir quando eu mudo a ordem dos blocos dentro do meu arquivo etc / network / interfaces
Por exemplo, a seguinte ordem de blocos funciona bem.
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
iface default inet dhcp
iface wlan1 inet static
address 192.168.42.1
netmask 255.255.255.0
No entanto, se os alterarmos da seguinte forma
auto lo
iface lo inet loopback
iface wlan1 inet static
address 192.168.42.1
netmask 255.255.255.0
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
iface default inet dhcp
Percebo que o isc-dhcp-server retorna um erro no arquivo / var / sys / log que declara
Multiple interfaces match the same subnet: wlan0 eth0
Como os blocos de reordenamento causam isso? É um bug?