Forum Discussion

shelton_146448's avatar
shelton_146448
Icon for Nimbostratus rankNimbostratus
Sep 22, 2016

named.conf ACL for ipv6

I want to add ipv6(2401:5a01::/32) to named.conf configuaration ACL, is it same as ipv4? For example,

acl "trusted" {

localhost;
202.12.64.0/19;
202.182.253.109;
2401:5a01::/32;

};

Is it right?

1 Reply

  • Should be okay. I found this example.

    acl mynetworks {
        localhost;
        192.168.0.0/16; // your LAN via IPv4 
        2001:XXXX:XXXX:XXXX::/64; // your tunnel IPv6 /64 
        2001:XXXX:XXXX:XXXX::/64; // your routed IPv6 /64 
        2001:XXXX:XXXX::/48; // your routed IPv6 /48, if it exists
    };