Forum Discussion

3 Replies

  • Willy's avatar
    Willy
    Icon for Nimbostratus rankNimbostratus

    I was looking on how to inculde a netwerk instead of a host in the next rule.

    when CLIENT_ACCEPTED {
        if { ( [IP::addr [IP::client_addr] equals "11.22.33.44%232"] )
          or ( [IP::addr [IP::client_addr] equals "22.22.22.22%232"] ) 
          or ( [IP::addr [IP::client_addr] equals "33.33.33.33%232"] ) } then {
             Allow the request
        } else {
            log local0. "request rejected from ( IP::addr [IP::client_addr] ) "
            reject
        }
    }
    
  • Willy's avatar
    Willy
    Icon for Nimbostratus rankNimbostratus

    Found in the meantime i just need to add the mask to extend from host to network.

    [IP::addr [IP::client_addr] equals "11.11.0.0%228 mask 255.255.0.0"]
    
    
  • Willy's avatar
    Willy
    Icon for Nimbostratus rankNimbostratus

    Found in the meantime i just need to add the mask to extend from host to network.

    [IP::addr [IP::client_addr] equals "11.11.0.0%228 mask 255.255.0.0"]