- dhcpd.conf
- # A slightly different configuration for an internal subnet.
- subnet 192.168.1.0 netmask 255.255.255.0 {
- range 192.168.1.5 192.168.1.15;
- option domain-name-servers 192.168.1.1;
- option domain-name "frickserver1.lan";
- option routers 192.168.1.1;
- option broadcast-address 192.168.1.255;
- default-lease-time 43200;
- max-lease-time 604800;
- }
-
-
- interface
-
-
- # This file describes the network interfaces available on your system
- # and how to activate them. For more information, see interfaces(5).
-
- # The loopback network interface
- auto lo
- iface lo inet loopback
-
- # The primary network interface
- auto eth0
- iface eth0 inet dhcp
-
- auto wlan0
- iface wlan0 inet manual
- pre-up iw dev wlan0 del
- pre-up iw phy phy0 interface add wlan0 type __ap
-
- auto br0
- iface br0 inet static
- address 192.168.1.1
- network 192.168.1.0
- netmask 255.255.255.0
- broadcast 192.168.1.255
- bridge_ports eth1 eth2 wlan0
|