2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-31 06:25:31 +00:00

2981. [func] Partial DNS64 support (AAAA synthesis). [RT #21991]

This commit is contained in:
Mark Andrews
2010-12-08 05:01:00 +00:00
parent 69c4159e71
commit b9f2d007c5
11 changed files with 56 additions and 0 deletions

View File

@@ -0,0 +1,3 @@
options {
dns64 ::/0 { };
};

View File

@@ -0,0 +1,3 @@
options {
dns64 ::/96 { suffix ::1; };
};

View File

@@ -0,0 +1,3 @@
options {
dns64 ::/96 { suffix 127.0.0.1; };
};

View File

@@ -0,0 +1,3 @@
options {
dns64 ::/129 { };
};

View File

@@ -0,0 +1,3 @@
options {
dns64 ::/129 { };
};

View File

@@ -0,0 +1,3 @@
options {
dns64 :: { };
};

View File

@@ -0,0 +1,9 @@
acl rfc1918 { 10/8; 192.168/16; 172.16/12; };
options {
/* Well Known Prefix */
dns64 64:FF9B::/96 {
clients { any; };
mapped { !rfc1918; any; };
exclude { ::ffff:0:0/96; };
};
};

View File

@@ -0,0 +1,8 @@
acl rfc1918 { 10/8; 192.168/16; 172.16/12; };
options {
/* Well Known Prefix */
dns64 64:FF9B::/96 {
mapped { !rfc1918; any; };
exclude { ::ffff:0:0/96; };
};
};

View File

@@ -0,0 +1,8 @@
acl rfc1918 { 10/8; 192.168/16; 172.16/12; };
options {
/* Well Known Prefix */
dns64 64:FF9B::/96 {
clients { any; };
exclude { ::ffff:0:0/96; };
};
};

View File

@@ -0,0 +1,8 @@
acl rfc1918 { 10/8; 192.168/16; 172.16/12; };
options {
/* Well Known Prefix */
dns64 64:FF9B::/96 {
clients { any; };
mapped { !rfc1918; any; };
};
};

View File

@@ -0,0 +1,5 @@
acl rfc1918 { 10/8; 192.168/16; 172.16/12; };
options {
/* Well Known Prefix */
dns64 64:FF9B::/96 { };
};