Advertisement
adamchilcott

null.zone.file

Dec 2nd, 2017
149
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. ;
  11.  
  12. $TTL 86400 ; one day
  13.  
  14. @ IN SOA ns0.example.net. hostmaster.example.net. (
  15. 2002061000 ; serial number YYMMDDNN
  16. 28800 ; refresh 8 hours
  17. 7200 ; retry 2 hours
  18. 864000 ; expire 10 days
  19. 86400 ) ; min ttl 1 day
  20. NS ns0.example.net.
  21. NS ns1.example.net.
  22.  
  23. A 127.0.0.1
  24.  
  25. * IN A 127.0.0.1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement