IPv6 & DNS

< 16 >

named.conf entries

Multiple listen-on-v6 options can be used to listen on multiple ports:

options {
        .....
        listen-on-v6 port   53 { any; };
        listen-on-v6 port 1234 { any; };
        .....
};
To make the server not listen on any IPv6 address (which is the default state), use

options {
        .....
        listen-on-v6 { none; };
        .....
};

THAT'S IT :-)