source: freewrt/docs/nfsroot/sample-dhcpd.conf@ f70586d

Last change on this file since f70586d was f70586d, checked in by Phil Sutter <n0-1@…>, 19 years ago
  • target/linux/Config.in ; package/pcmcia-cs/Config.in -> fixed some dependency mistakes -> pcmcia-cs now is no longer dependant to the used hardware,

but to the use of the pcmcia kernel module

  • target/image/rb/Makefile ; scripts/* ; docs/* -> finished the nfsroot-target


  • target/linux/rb-2.4/{ext2,ext2-cf} ; mk/targets.mk -> fixed this naming error

git-svn-id: svn://www.freewrt.org/trunk/freewrt@947 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.