Q58
Single choice
An LTM Specialist must log all HTTP requests that contain the string "cmd=" in the URI to an external syslog server.
Which iRule achieves this goal most efficiently?
when HTTP_REQUEST {
if {[string tolower [HTTP::uri]] contains "cmd="} {
HSL::send $hsl "[HTTP::uri] from [IP::client_addr]"
}
}
Where should $hsl be defined?