Forum Discussion
Leslie_South_55
Nimbostratus
18 years agoMultiple matchclass + "if" AND "if not"
I am trying to use both an 'if' and an 'if not' statement where both statements are looking at 2 different external class files. Here is the rule:
when HTTP_REQUEST {
log local0 "requeste...
hoolio
Cirrostratus
18 years agoCan you try wrapping the conditional test you're not'ing in parens?
when HTTP_REQUEST {
log local0 "requested [HTTP::uri]"
if {not ([matchclass [string tolower [HTTP::uri]] contains $::uri_block])} {
if {[matchclass [IP::client_addr] equals $::allowed] } {
log local0. "Valid Packet: [IP::client_addr] - [HTTP::uri] forwarding traffic"
} else {
log local0. "Invalid Packet: [IP::client_addr] - [HTTP::uri] discarding"
discard
}
}
}Aaron