Selective DNS Persistence on GTM
The world of DNS is an interesting one to me. So much of what transpires on the internet these days relies on it, heavily, to connect from point A to B with ease, and yet it remains relatively unchan...
Published Jun 24, 2008
Version 1.0Colin_Walker_12
Historic F5 Account
Joined May 12, 2005
Colin_Walker_12
Historic F5 Account
Joined May 12, 2005
JRahm
Jun 17, 2010Admin
This can now be done in v10+ with one wideIP and a slightly altered iRule:
rule "SelectivePersist-rule" {
when DNS_REQUEST {
if { [IP::addr [IP::client_addr]/16 equals "10.1.0.0"] \
or [IP::addr [IP::client_addr]/16 equals "10.2.0.0"] } {
persist disable
}
}
}