mirror of https://github.com/dirtbags/moth.git
28 lines
447 B
Plaintext
28 lines
447 B
Plaintext
|
#! /bin/sh /etc/rc.common
|
||
|
|
||
|
START=45
|
||
|
STOP=89
|
||
|
|
||
|
VLANS=48
|
||
|
|
||
|
start () {
|
||
|
stop
|
||
|
|
||
|
iptables -P INPUT ACCEPT
|
||
|
iptables -P OUTPUT ACCEPT
|
||
|
iptables -P FORWARD ACCEPT
|
||
|
|
||
|
iptables -A INPUT -p udp --dport 67 -j ACCEPT
|
||
|
iptables -A INPUT -p icmp --icmp-type echo-request -j ACCEPT
|
||
|
iptables -A INPUT -s 10.0.0.0/16 -j ACCEPT
|
||
|
iptables -A INPUT -j REJECT
|
||
|
}
|
||
|
|
||
|
stop () {
|
||
|
iptables -F INPUT
|
||
|
iptables -F OUTPUT
|
||
|
iptables -F FORWARD
|
||
|
}
|
||
|
|
||
|
|