source: freewrt/Docs/nfsroot/sample-dhcpd.conf@ 4c593d5

Last change on this file since 4c593d5 was 4c593d5, checked in by Thorsten Glaser <tg@…>, 18 years ago

these annoy me while tab-completing, use caps for stuff that isn't used by ADK

git-svn-id: svn://www.freewrt.org/trunk/freewrt@2851 afb5a338-a214-0410-bd46-81f09a774fd1

  • Property mode set to 100644
File size: 411 bytes
Line 
1default-lease-time 600;
2max-lease-time 7200;
3ddns-update-style none;
4
5authoritative;
6
7subnet 10.23.42.0 netmask 255.255.255.0 {
8 range 10.23.42.200 10.23.42.250;
9 option routers <YOUR_IP_HERE>;
10 host rb500 {
11 hardware ethernet <CLIENT_MAC_HERE>;
12 next-server <YOUR_IP_HERE>;
13 fixed-address <CLIENT_IP_HERE>;
14 filename "vmlinux";
15 option root-path "<PATH_TO_ROOTFS_HERE>";
16 }
17}
18
Note: See TracBrowser for help on using the repository browser.