bonjour,
je me demande comment configurer les fichiers de conf /etc/dhcp/dhcpd.conf DHCP sur vlan
j’ai une LiveBox avec passerelle 192.168.1.1, une borne wifi sur lequel un SSID fonctionne avec un VLAN 3, j’ai une carte réseau sur lequel le ETH0 est en DHCP fourni par la LiveBox, je veux isolé le wifi du réseau 192.168.1.x et que le DHCP sur vlan 3 puisse attribué une IP exp: 172.16.1.10 .24
je voudrais aussi un routage du reseau wifi vers la live box,
avez vous une config qui fonctionne ?
—/etc/network/interfaces------------------------------------------
auto lo
iface lo inet loopback
#Onboard NIC connecting to the Internet
auto eth0
iface eth0 inet dhcp
#vlan 3
auto eth0.1
iface eth1 inet static
address 172.16.0.1
netmask 255.255.255.0
network 172.16.0.0
broadcast 172.16.0.255
gateway 172.16.0.1
-----/etc/dhcp/dhcpd.conf--------------------
If this DHCP server is the official DHCP server for the local
network, the authoritative directive should be uncommented.
authoritative;
subnet 172.16.0.0 netmask 255.255.255.0 {
range 172.16.0.20 172.16.0.50;
option broadcast-address 172.16.0.255;
option routers 172.16.0.1;
default-lease-time 600;
max-lease-time 7200;
option domain-name “local”;
option domain-name-servers 8.8.8.8, 8.8.4.4;
quand pensez vous ?
merci a tous