xref: /titanic_44/usr/src/cmd/ipf/examples/example.9 (revision 0dc2366f7b9f9f36e10909b1e95edbf2a261c2ac)
1#
2# drop all packets without IP security options
3#
4block in all
5pass in all with opt sec
6#
7# only allow packets in and out on le1 which are top secret
8#
9block out on le1 all
10pass out on le1 all with opt sec-class topsecret
11block in on le1 all
12pass in on le1 all with opt sec-class topsecret
13