Hi,
I need to configure the ASA HTTP inspection against the http get method with one regex (for level 15). once the policy hit it should make a log. i did foolowing config.
inspection for GET /level/15/exec/-/access-enable HTTP/1.1\r\n.
!
regex LVL15.lev^15
!
class-map type inspect http match-all C_D_HTTP
match request method get
match request url regex LVL15
!
policy-map type inspect http P_D_HTTP
parameters
class C_D_HTTP
log
!
policy-map global_policy
class inspection_default
inspect http P_D_HTTP
!
The above configuration are hitting my policy and i can see the packets counter increments on each turn to access the http. how i can see that it generate the log as well?