11

Why can I see AAAA DNS requests when I run tcpdump on my Scientific Linux PC when I haven't got any IPv6 addresses? I already rebooted after setting NETWORKING_IPV6=no in /etc/sysconfig/network and options ipv6 disable=1 in /etc/modprobe.d/ipv6.conf, but I can still see AAAA requests if I visit a few websites. How can I disable the requesting of AAAA records?

Gilles 'SO- stop being evil'
  • 807,993
  • 194
  • 1,674
  • 2,175
LanceBaynes
  • 39,295
  • 97
  • 250
  • 349

2 Answers2

1

Check if file /etc/resolv.conf has "options inet6". If so, that line should be removed using your favorite editor (invoked via sudo or as root, after making a backup copy). If you are using DHCP, it may get put back in the next time you reboot even if you have no IPv6 in your kernel network stack.

Skaperen
  • 706
  • 1
  • 5
  • 14
0

Try to pass the following option to the kernel, on the Grub stage:

modprobe.blacklist=modname1

Where modname is the module name of ipv6 on Scientific Linux (probably ipv6)

Michael Mrozek
  • 91,316
  • 38
  • 238
  • 232
Hanan
  • 5,631
  • 4
  • 28
  • 30