Forum Discussion

Chris_Alliey_13's avatar
Chris_Alliey_13
Icon for Nimbostratus rankNimbostratus
Oct 03, 2016

GTM - How do we drop all AAAA requests from our listeners ??

I would like to drop all AAAA requests, or respond with a 'noerror' if possible. I can't seem to find an irules that can be applied to a listener. I can create an irules and assign it to WIPs, but that is doesn't help me stop traffic from going past the listener. I am trying to avoid any traffic for AAAA from going to our pool of DNS servers.

 

Thanks,

 

Chris

 

3 Replies

  • There is a SOL about this:

     

    https://support.f5.com/kb/en-us/solutions/public/7000/800/sol7851.html

     

  • Hi,

    try this irule enabled on the Listener:

    when DNS_REQUEST {
    if {[DNS::question type] equals "AAAA" }{
       DNS::header rcode NOERROR
       DNS::return 
       }   
    }