14 lines
531 B
Plaintext
14 lines
531 B
Plaintext
|
# Put your custom commands here that should be executed once
|
||
|
# the system init finished. By default this file does nothing.
|
||
|
|
||
|
/usr/sbin/ebtables -A FORWARD -i phy+ -o phy+ -j DROP
|
||
|
|
||
|
/usr/sbin/ebtables -A FORWARD -i phy+ -s 52:54:00:fc:8b:68 -j DROP
|
||
|
/usr/sbin/ebtables -A FORWARD -i phy+ -s 52:54:00:f0:6b:15 -j DROP
|
||
|
|
||
|
/usr/sbin/ebtables -A FORWARD -i eth+ -o phy+ -s 52:54:00:fc:8b:68 -j ACCEPT
|
||
|
/usr/sbin/ebtables -A FORWARD -i eth+ -o phy+ -s 52:54:00:f0:6b:15 -j ACCEPT
|
||
|
/usr/sbin/ebtables -A FORWARD -i eth+ -o phy+ -j DROP
|
||
|
|
||
|
exit 0
|