1984tech.ini 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586
  1. ; full filesystem path to 1984tech directory
  2. BASE_PATH="/home/nightfly/dev/1984tech/"
  3. ; HTTP URL or full filesystem path to list of blocked domains
  4. DOMAINS_LIST="http://ubilling.net.ua/1984tech/domains.txt"
  5. ; bind zones config path which must be included into named.conf.
  6. ; If option empty - zones file will not be generated.
  7. DNS_ZONES="named/1984tech.conf"
  8. ; unbound zones config path which must be included into unbound.conf.
  9. ; If option empty - zones file will not be generated.
  10. UNBOUND_DNS_ZONES="unbound/1984tech.conf"
  11. ; unbound default host IP to redirect blocked domains
  12. UNBOUND_REDIRECT_HOST="127.0.0.1"
  13. ; static domains redirect zone file
  14. DNS_REDIRECTS="/etc/namedb/master/1984tech.db"
  15. ; RPZ BIND9 zone file
  16. RPZ_ZONE_FILE="/etc/bind/rpz/db.rpz.local"
  17. ; RPZ BIND9 zone name
  18. RPZ_ZONE_NAME="rpz.local"
  19. ; ACLs for allow-query bind option
  20. DNS_ACL="any;"
  21. ; DNS servers which will be used for domains IP resolving. Coma separated.
  22. DNS_RESOLVER_SERVERS="8.8.8.8, 8.8.4.4"
  23. ; ipfw command path
  24. IPFW_PATH="/sbin/ipfw"
  25. ; ipfw table number to store IPs
  26. IPFW_TABLE="42"
  27. ; ipfw path variable name for scripts generation
  28. IPFW_MACRO="FwCMD"
  29. ; ipfw script generation path
  30. IPFW_SCRIPT_PATH="/tmp/blocks_update.sh"
  31. ; Mikrotik blocking address-list name
  32. MT_LISTNAME="block"
  33. ; Mikrotik address list update script
  34. MT_SCRIPT_PATH="/tmp/mt_updatescript";
  35. ; Mikrotik static DNS default IP to point the domains to
  36. MT_DNSSTATIC_IP="127.0.0.1"
  37. ; Mikrotik static DNS default TTL for added DNS records
  38. MT_DNSSTATIC_TTL="00:30:00"
  39. ; Mikrotik static DNS script path
  40. MT_DNSSTATIC_SCRIPT_PATH="/tmp/mt_dnsstatic_script";
  41. ; Mikrotik domains list file chunks path. NO trailing slash is needed.
  42. MT_DNSSTATIC_CHUNKS_PATH="/tmp"
  43. ; PDNSD script path
  44. PDNSD_SCRIPT_PATH="/tmp/pdnsd_script";
  45. ; ipset binary path
  46. IPSET_PATH="/sbin/ipset"
  47. ; ipset blacklist name. Must be created earlier.
  48. IPSET_LISTNAME="blacklist"
  49. ; iptables binary path
  50. IPTABLES_PATH="/sbin/iptables"
  51. ; iptables rules chain
  52. IPTABLES_CHAIN="FORWARD"
  53. ; Squid directory path
  54. SQUID_PATH="squid"
  55. ;JunOS prefix list name
  56. JUN_LISTNAME="blacklist-ip"
  57. ;Cisco access-list number
  58. CIS_LISTNUM="101"