document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. DHCPDARGS=wlan0; #args for the dhcpd daemon -> limit DHCP to the wlan0 interface
  2. default-lease-time 600;
  3. max-lease-time 7200;
  4.  
  5. option subnet-mask 255.255.255.0;
  6. option broadcast-address 10.0.0.255;
  7. option domain-name "PiFi-Mini-Ad-Hoc";
  8. option routers 10.10.10.1; #default gateway
  9.  
  10. subnet 10.10.10.0 netmask 255.255.255.0 {
  11. range 10.10.10.2 10.10.10.20; #IP range to offer
  12. }
');