Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

os-bind: dns64 with ability to set ip ranges to exclude #4031

Open
3 tasks done
BPplays opened this issue Jun 6, 2024 · 0 comments
Open
3 tasks done

os-bind: dns64 with ability to set ip ranges to exclude #4031

BPplays opened this issue Jun 6, 2024 · 0 comments

Comments

@BPplays
Copy link

BPplays commented Jun 6, 2024

Important notices
Before you add a new report, we ask you kindly to acknowledge the following:

Is your feature request related to a problem? Please describe.
i want to use bind to do dns64 with an option to exclude ip ranges

Describe the solution you'd like
i would like the option in /ui/bind/general/index to turn on dns64 and to have the option to disable it for specific ip ranges. this abridged named.conf appears to disable dns64 for specified acls in the version that comes with debian 12:

acl rfc1918 {
   10.0.0.0/8;
   172.16.0.0/12;
   192.168.0.0/16;
};

options {
   directory "/var/cache/bind";
   forwarders {
   	2620:fe::fe;
   };
   forward first;
   dnssec-validation auto;
   listen-on-v6 { any; };
   allow-query { any; };

   dns64 64:ff9b::/96 {
       exclude { rfc1918; };
       clients { any; };
       mapped { !rfc1918; any; };
   };
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Development

No branches or pull requests

1 participant