-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
9588a40
commit 5b5ef28
Showing
4 changed files
with
26 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
table bridge filter { | ||
chain INPUT { | ||
type filter hook input priority filter; policy accept; | ||
} | ||
|
||
chain FORWARD { | ||
type filter hook forward priority filter; policy accept; | ||
ether daddr 01:80:c2:00:00:00 counter packets 0 bytes 0 drop | ||
ether type arp counter packets 0 bytes 0 drop | ||
ether type vlan vlan type 0x0806 counter packets 0 bytes 0 drop | ||
ether daddr & 01:00:00:00:00:00 == 01:00:00:00:00:00 counter packets 0 bytes 0 drop | ||
} | ||
|
||
chain OUTPUT { | ||
type filter hook output priority filter; policy accept; | ||
} | ||
} |