Apply ptunnel patches from #2884

git-svn-id: svn://svn.openwrt.org/openwrt/packages@10160 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
florian 2008-01-10 18:25:04 +00:00
parent 0ac2e92f62
commit b51b3d9c69
3 changed files with 24 additions and 6 deletions

View File

@ -49,6 +49,8 @@ define Package/ptunnel/install
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/ptunnel $(1)/usr/sbin/
$(INSTALL_DIR) $(1)/etc/init.d
$(INSTALL_BIN) ./files/ptunnel.init $(1)/etc/init.d/ptunnel
$(INSTALL_DIR) $(1)/etc/config
$(INSTALL_DATA) ./files/ptunnel.conf $(1)/etc/config/ptunnel
endef
$(eval $(call BuildPackage,ptunnel))

View File

@ -0,0 +1,3 @@
config ptunnel
option interface 'br-lan'

View File

@ -1,14 +1,27 @@
#!/bin/sh /etc/rc.common
# Copyright (C) 2007 OpenWrt.org
START=70
STOP=70
BIN=ptunnel
start() {
iptables -I OUTPUT 1 -p icmp -j ACCEPT
ptunnel -v 1 -c br-lan
config_load ptunnel
config_foreach start_ptunnel ptunnel
}
start_ptunnel() {
local section="$1"
include /lib/network
scan_interfaces
iptables -I OUTPUT 1 -p icmp -j ACCEPT
config_get interface "$section" interface
$BIN -c "$interface" > /dev/null&
}
stop() {
killall ptunnel
ps aux | grep ptunnel | awk '{print }' | \
xargs kill 2> /dev/null
}