colorful rat Ratfactor.com > Dave's Repos

pf-bedtime

A pf configuration that enforces bedtime
git clone http://ratfactor.com/repos/pf-bedtime/pf-bedtime.git

pf-bedtime/dhcpd.conf

Download raw file: dhcpd.conf

1 option domain-name "home.ratfactor.com"; 2 3 # subnet and netmask define the network 4 subnet 10.0.0.0 netmask 255.255.255.0 { 5 6 # set the default gateway for clients (me!) 7 option routers 10.0.0.1; 8 9 # advertises DNS resolver for clients (me!) 10 option domain-name-servers 10.0.0.1; 11 12 # dynamic address pool range available 13 range 10.0.0.51 10.0.0.250; 14 15 # We'll see if I end up doing static assignments: 16 # 17 # This makes host <name> { ... } use <name> as the 18 # hostname for that client: 19 # use-host-decl-names on; 20 # 21 # host foobar { 22 # hardware ethernet 11:11:11:aa:aa:aa; 23 # fixed-address 10.0.0.30; 24 # } 25 } 26