Thursday, May 25, 2006

The dhcpd.conf file

Once again, posted here to be referenced to an Ars Linux Kung Fu post.

option domain-name "mylan.lan";
option domain-name-servers 192.168.0.2 , 192.168.0.20;

max-lease-time 7200;
default-lease-time 600;
log-facility local7;

##################
## FreeBSD opts ##
##################
authoritative;
ddns-update-style none;
# ddns-update-style ad-hoc;


subnet 192.168.0.0 netmask 255.255.255.0 {
range 192.168.0.60 192.168.0.200;
option routers 192.168.0.253;


########################
## Fixed IP addresses ##
########################


host mariomovil {
hardware ethernet 00:80:c8:85:25:34;
fixed-address 192.168.0.6;
}


host xaosmovil {
hardware ethernet 00:00:39:e6:73:92;
fixed-address 192.168.0.11;
}
}



## IPCop firewall - The interface on the IN side of our network
host frwll {
hardware ethernet 00:E0:7D:86:26:13;
fixed-address 192.168.0.253;
}

## The LinkSys Wifi router
host mt-ccs {
hardware ethernet 00:06:25:60:6e:48;
fixed-address 192.168.0.191;
}

## The new DLink Wireless router
host mt {
hardware ethernet 00:13:46:04:47:14;
fixed-address 192.168.0.77;
}



## EOF ##

Labels:

0 Comments:

Post a Comment

<< Home