Advertisement
adamchilcott

null.zone.file

Dec 2nd, 2017
137
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. ; BIND db file for ad servers - point all addresses to localhost
  2. ;
  3. ; This file comes from:
  4. ;
  5. ; https://pgl.yoyo.org/adservers/
  6. ;
  7. ; A site with a list of ad servers and details on how to use it to
  8. ; block ads on the Internet. Plus some BIND stuff and other bits.
  9. ;
  10. ; - pgl@yoyo.org
  11. ;
  12.  
  13. $TTL 86400 ; one day
  14.  
  15. @ IN SOA ns0.example.net. hostmaster.example.net. (
  16. 2002061000 ; serial number YYMMDDNN
  17. 28800 ; refresh 8 hours
  18. 7200 ; retry 2 hours
  19. 864000 ; expire 10 days
  20. 86400 ) ; min ttl 1 day
  21. NS ns0.example.net.
  22. NS ns1.example.net.
  23.  
  24. A 127.0.0.1
  25.  
  26. * IN A 127.0.0.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement