1

[edit firewall filter test ]

term 1 {
  from {
    source-address {
      10.0.0.0/8;
    }
  }
  then {
    log;
    next term;
  }
}
term 2 {
  then {
    reject ;
  }
}

How is traffic, sourced from 10.0.0.0/8, treated by the firewall filter shown in the exhibit?

1 Answer 1

1

Term 1 logs all traffic from 10/8, next term means evaluation of firewall filter rules continues. Term 2 rejects all traffic. So traffic gets rejected.

1

Not the answer you're looking for? Browse other questions tagged or ask your own question.