add n2n
git-svn-id: svn://svn.openwrt.org/openwrt/packages@11760 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
5155b19cfc
commit
f99c98092f
53
net/n2n/Makefile
Normal file
53
net/n2n/Makefile
Normal file
@ -0,0 +1,53 @@
|
||||
#
|
||||
## Copyright (C) 2007-2008 OpenWrt.org
|
||||
#
|
||||
## This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_BRANCH:=trunk
|
||||
PKG_SOURCE_URL:=https://svn.ntop.org/svn/ntop/trunk/n2n
|
||||
PKG_REV:=3561
|
||||
|
||||
PKG_NAME:=n2n
|
||||
PKG_VERSION:=$(PKG_REV)
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_SOURCE_SUBDIR:=$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_SOURCE:=$(PKG_SOURCE_SUBDIR).tar.gz
|
||||
PKG_SOURCE_PROTO:=svn
|
||||
PKG_SOURCE_VERSION:=$(PKG_REV)
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-$(PKG_VERSION)
|
||||
PKG_INSTALL_DIR:=$(PKG_BUILD_DIR)
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/n2n
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
TITLE:=VPN tunneling daemon
|
||||
URL:=http://www.ntop.org/n2n/
|
||||
SUBMENU:=VPN
|
||||
DEPENDS:=+libpthread +kmod-tun
|
||||
endef
|
||||
|
||||
define Build/Compile
|
||||
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||||
$(TARGET_CONFIGURE_OPTS) \
|
||||
CFLAGS="$(TARGET_CFLAGS)"
|
||||
endef
|
||||
|
||||
define Package/n2n/install
|
||||
$(INSTALL_DIR) $(1)/sbin
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/edge $(1)/sbin/
|
||||
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/supernode $(1)/sbin/
|
||||
$(INSTALL_DIR) $(1)/etc/config
|
||||
$(INSTALL_DATA) ./files/n2n.config $(1)/etc/config/n2n
|
||||
$(INSTALL_DIR) $(1)/etc/init.d
|
||||
$(INSTALL_BIN) ./files/n2n.init $(1)/etc/init.d/n2n
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,n2n))
|
7
net/n2n/files/n2n.config
Normal file
7
net/n2n/files/n2n.config
Normal file
@ -0,0 +1,7 @@
|
||||
config edge
|
||||
option ipaddr ''
|
||||
option supernode ''
|
||||
option port ''
|
||||
option community ''
|
||||
option key ''
|
||||
option route ''
|
37
net/n2n/files/n2n.init
Normal file
37
net/n2n/files/n2n.init
Normal file
@ -0,0 +1,37 @@
|
||||
#!/bin/sh /etc/rc.common
|
||||
# Copyright (C) 2008 OpenWrt.org
|
||||
START=90
|
||||
|
||||
config_cb() {
|
||||
local cfg="$CONFIG_SECTION"
|
||||
config_get configname "$cfg" TYPE
|
||||
|
||||
case "$configname" in
|
||||
edge)
|
||||
config_get ipaddr "$cfg" ipaddr
|
||||
config_get supernode "$cfg" supernode
|
||||
config_get port "$cfg" port
|
||||
config_get community "$cfg" community
|
||||
config_get key "$cfg" key
|
||||
config_get_bool route "$cfg" route 0
|
||||
[ "$route" = "1" ] && args='-r'
|
||||
if [ "$ipaddr" != "" ]; then
|
||||
edge -f $args -a $ipaddr -c $community -k $key -l ${supernode}:${port}
|
||||
fi
|
||||
;;
|
||||
supernode)
|
||||
config_get port "$cfg" port
|
||||
if [ "$port" != "" ]; then
|
||||
supernode -l $port &
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
}
|
||||
|
||||
start() {
|
||||
config_load n2n
|
||||
}
|
||||
stop() {
|
||||
killall edge
|
||||
killall supernode
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user