#-------------------------------------------------------------------- # dhcpd.conf -- For transparent Tor gateway (middlebox) # See pf.conf and torrc for routing + rc.conf (NIC) # NetBSD 8.0/arm7 (RPI2 and RPI3) # # Network: 10.199.199.0/24 # Domain name: none # Name servers: 10.199.199.1 (this host) -> Tor network # Default router: 10.199.199.1 (this host) -> Tor network # DHCP span: 10.199.199.190 - 10.199.199.199 # # [2018-05-20 / per.foyer@xyx.se] #-------------------------------------------------------------------- subnet 10.199.199.0 netmask 255.255.255.0 { option routers 10.199.199.1; option domain-name-servers 10.199.199.1; range 10.199.199.190 10.199.199.199; default-lease-time 600; max-lease-time 7200; } #--- EOF ------------------------------------------------------------