4210308eb5
Signed-off-by: michu-at-neophob-com git-svn-id: svn://svn.openwrt.org/openwrt/packages@9818 3c298f89-4303-0410-b956-a3cf2f4a3e73
14 lines
200 B
Bash
14 lines
200 B
Bash
#!/bin/sh /etc/rc.common
|
|
# Copyright (C) 2007 OpenWrt.org
|
|
START=70
|
|
STOP=70
|
|
|
|
start() {
|
|
iptables -I OUTPUT 1 -p icmp -j ACCEPT
|
|
ptunnel -v 1 -c br-lan
|
|
}
|
|
|
|
stop() {
|
|
killall ptunnel
|
|
}
|
|
|