summaryrefslogtreecommitdiff
path: root/policies/includes/untrusted-networks-blocking.inc
blob: c77d06450f4797e45b1f84cef5ec620942631fdd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
term deny-from-bogons {
  comment:: "this is a sample edge input filter with a very very very long and
        multi-line comment that"
  comment:: "also has multiple entries."
  source-address:: BOGON
  action:: deny
}

term deny-from-reserved {
  source-address:: RESERVED
  action:: deny
}

term deny-to-rfc1918 {
  destination-address:: RFC1918
  action:: deny
}