Forum Discussion

JWhitesPro_1928's avatar
JWhitesPro_1928
Icon for Cirrostratus rankCirrostratus
Jun 21, 2016
Solved

DNS Whitelist Responses

Does anyone know if an iRule already exists that accomplishes the following:   DNS Request comes in from client If the request matches an entry in a datagroup table the request is allowed to proce...
  • Vernon_97235's avatar
    Jun 21, 2016
    when DNS_REQUEST {
        if { [class match [string tolower [DNS::question name]] equals "dg-allowed-dns-queries"] } {
            reject
        }
    }