Advertisement
awalece

Configure DNS64 in Bind9 on Ubuntu

Apr 16th, 2019
899
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VIM 0.33 KB | None | 0 0
  1. vim /etc/bind/named.conf.options
  2.  
  3. options {
  4.         ...
  5.         ...
  6.         listen-on-v6 { any; };
  7.         allow-query { 2401:ed80:1000::/48; };
  8.         recursion yes;
  9.         dns64 64:ff9b::/96 {
  10.                clients { any; };
  11.                mapped { any; };
  12.                exclude {0::/3; 2001:db8::/32;};
  13.                };
  14.         };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement