repo.or.cz
/
ferm.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix previous NEWS commit, oops
[ferm.git]
/
examples
/
arptables.ferm
blob
7e9dc98501b9b2f0b32825900270558c3650a887
1
# -*- shell-script -*-
2
#
3
# Ferm example script
4
#
5
# arptables demo.
6
#
7
# Author: Max Kellermann <max@duempel.org>
8
#
9
10
domain arp chain INPUT {
11
policy DROP;
12
13
interface eth0 ACCEPT;
14
15
interface eth1 {
16
source-mac 00:00:de:ad:be:ef ACCEPT;
17
}
18
}