mirror of
https://github.com/novatiq/packages.git
synced 2026-04-30 07:28:39 +01:00
redsocks: add new package
Redsocks is a daemon running on the local system, that will transparently tunnel any TCP connection via a remote SOCKS4, SOCKS5 or HTTP proxy server. It uses the system firewall's redirection facility to intercept TCP connections, thus the redirection is system-wide, with fine-grained control, and does not depend on LD_PRELOAD libraries. Signed-off-by: Johannes Morgenroth <jm@m-network.de>
This commit is contained in:
@@ -0,0 +1,56 @@
|
||||
#
|
||||
# Copyright (C) 2014 OpenWrt.org
|
||||
#
|
||||
# This is free software, licensed under the GNU General Public License v2.
|
||||
# See /LICENSE for more information.
|
||||
#
|
||||
|
||||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=redsocks
|
||||
PKG_VERSION:=0.4
|
||||
PKG_RELEASE:=1
|
||||
|
||||
PKG_BUILD_DIR:=$(BUILD_DIR)/$(PKG_NAME)-release-$(PKG_VERSION)
|
||||
PKG_SOURCE:=release-$(PKG_VERSION).tar.gz
|
||||
PKG_SOURCE_URL:=https://github.com/darkk/redsocks/archive/
|
||||
PKG_MD5SUM:=810102ef06a9ea796f310ae811afc6a8
|
||||
PKG_MAINTAINER:=Johannes Morgenroth <jm@m-network.de>
|
||||
PKG_LICENSE:=Apache-2.0
|
||||
|
||||
include $(INCLUDE_DIR)/package.mk
|
||||
|
||||
define Package/redsocks
|
||||
SECTION:=net
|
||||
CATEGORY:=Network
|
||||
DEPENDS:=+libevent2
|
||||
TITLE:=Redirect any TCP connection to a SOCKS or HTTPS proxy server
|
||||
endef
|
||||
|
||||
define Package/redsocks/conffiles
|
||||
/etc/redsocks.conf
|
||||
endef
|
||||
|
||||
define Package/redsocks/description
|
||||
Redsocks is a daemon running on the local system, that will transparently
|
||||
tunnel any TCP connection via a remote SOCKS4, SOCKS5 or HTTP proxy server. It
|
||||
uses the system firewall's redirection facility to intercept TCP connections,
|
||||
thus the redirection is system-wide, with fine-grained control, and does
|
||||
not depend on LD_PRELOAD libraries.
|
||||
|
||||
Redsocks supports tunneling TCP connections and UDP packets. It has
|
||||
authentication support for both, SOCKS and HTTP proxies.
|
||||
|
||||
Also included is a small DNS server returning answers with the "truncated" flag
|
||||
set for any UDP query, forcing the resolver to use TCP.
|
||||
endef
|
||||
|
||||
define Package/redsocks/install
|
||||
$(INSTALL_DIR) $(1)/usr/sbin/
|
||||
$(INSTALL_BIN) $(PKG_BUILD_DIR)/redsocks $(1)/usr/sbin/
|
||||
$(INSTALL_DIR) $(1)/etc/init.d/
|
||||
$(INSTALL_BIN) files/redsocks.init $(1)/etc/init.d/redsocks
|
||||
$(INSTALL_CONF) files/redsocks.conf $(1)/etc/
|
||||
endef
|
||||
|
||||
$(eval $(call BuildPackage,redsocks))
|
||||
Reference in New Issue
Block a user