Creating an RPZ with BIND9
// | |
// Do any local configuration here | |
// | |
zone "rpz" { | |
type master; | |
file "/etc/bind/db.rpz"; | |
}; |
options { | |
directory "/var/cache/bind"; | |
forwarders { | |
a.b.c.d; | |
e.f.g.h; | |
}; | |
... | |
response-policy { zone "rpz"; }; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment