diff options
Diffstat (limited to 'policies/includes')
| -rw-r--r-- | policies/includes/untrusted-networks-blocking.inc | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/policies/includes/untrusted-networks-blocking.inc b/policies/includes/untrusted-networks-blocking.inc new file mode 100644 index 0000000..c77d064 --- /dev/null +++ b/policies/includes/untrusted-networks-blocking.inc @@ -0,0 +1,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 +} + |
