CATEGORY::lookup¶
Description¶
This command returns the category of the supplied URL. If SWG is licensed the URL may take the form
scheme://domain:port/path?query_string#fragment_id
scheme://domain:port/
-display
option is used, a category name returned by this command will have a BIG-IP object path prepended, like
/Common/Financial_Data_and_Services
and
SPACE
characters in category names will be replaced by underscores
'_'
request_default_and_custom
to the command. To retrieve only custom categories append
custom
The
-display
option and the custom-categories options only work on TMOS 11.6 and later.
tmsh list sys url-db url-category | grep url-category | cut -d " " -f4
Examples¶
when HTTP_REQUEST {
set this_uri http://[HTTP::host][HTTP::uri]
set reply [CATEGORY::lookup $this_uri]
log local0. "Category lookup for $this_uri give $reply"
}