First page Back Continue Last page Overview Graphics
If Serving DHCP Into Your DMZ:
If Serving DHCP Into Your DMZ:
- Then you need/want separate IP space for your DMZ hosts. This requires manually editing the /etc/dhcpd.conf file. Here's mine as an example (also not static (non-dynamic) machine listing at bottom):
- # to restart DNS on Devil Linux:
- # /etc/init.d/dhcpd stop
- # /etc/init.d/dhcpd start
- #
- authoritative;
- default-lease-time 14400;
- max-lease-time 14400;
- get-lease-hostnames false;
- use-host-decl-names on;
- ddns-update-style none;
- option domain-name "example.com";
- option subnet-mask 255.255.255.0;
- #########################################
- ### This is my LAN on 192.168.0.0/24
- #########################################
- subnet 192.168.0.0 netmask 255.255.255.0 {
- option domain-name-servers 192.168.0.1;
- option routers 192.168.0.1;
- option broadcast-address 192.168.0.255;
- range 192.168.0.20 192.168.0.250;
- }