Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Chnroutes | 2,891 | 5 years ago | 48 | Python | ||||||
scripts help chinese netizen, who uses vpn to combat censorship, by modifying the route table so as routing only the censored ip to the vpn | ||||||||||
I2pd | 2,527 | 3 days ago | 90 | bsd-3-clause | C++ | |||||
🛡 I2P: End-to-End encrypted and anonymous Internet | ||||||||||
Badvpn | 1,607 | 2 years ago | 35 | other | C | |||||
NCD scripting language, tun2socks proxifier, P2P VPN | ||||||||||
Vpncloud | 1,518 | 1 | 9 months ago | 14 | December 23, 2021 | 20 | other | Rust | ||
Peer-to-peer VPN | ||||||||||
Weron | 1,325 | 1 | 20 days ago | 7 | April 02, 2023 | agpl-3.0 | Go | |||
Overlay networks based on WebRTC. | ||||||||||
N2n | 853 | 2 years ago | C | |||||||
A development branch of the n2n p2p vpn software | ||||||||||
Opengnb | 852 | a month ago | gpl-3.0 | C | ||||||
GNB is open source de-centralized SDVN to achieve layer3 network via p2p with the ultimate capability of NAT Traversal.GNB是一个开源的去中心化的具有极致内网穿透能力的通过P2P进行三层网络交换的SDVN。 | ||||||||||
Awesome Anti Censorship | 837 | 6 months ago | 5 | mit | ||||||
curated list of open-source anti-censorship tools | ||||||||||
Kairos | 679 | a day ago | 283 | apache-2.0 | Go | |||||
:penguin: The immutable Linux meta-distribution for edge Kubernetes. | ||||||||||
Dappnode | 522 | 2 months ago | 78 | gpl-3.0 | Shell | |||||
General repository of the project dappnode |
This repository has been archived and is not being maintained by the author any longer.
In this project I host some of my open-source networking software. All of the software is written in C and utilizes a custom-developed framework for event-driven programming. The extensive code sharing is the reason all the software is packaged together. However, it is possible to compile only the required components to avoid extra dependencies.
NCD (Network Configuration Daemon) is a daemon and programming/scripting language for configuration of network interfaces and other aspects of the operating system. It implements various functionalities as built-in modules, which may be used from an NCD program wherever and for whatever purpose the user needs them. This modularity makes NCD extremely flexible and extensible. It does a very good job with hotplugging in various forms, like USB network interfaces and link detection for wired devices. New features can be added by implementing statements as C-language modules using a straightforward interface.
The tun2socks program "socksifes" TCP connections at the network layer. It implements a TUN device which accepts all incoming TCP connections (regardless of destination IP), and forwards the connections through a SOCKS server. This allows you to forward all connections through SOCKS, without any need for application support. It can be used, for example, to forward connections through a remote SSH server.
The VPN part of this project implements a Layer 2 (Ethernet) network between the peers (VPN nodes). The peers connect to a central server which acts as a communication proxy allowing the peers to establish direct connections between each other (data connections). These connections are used for transferring network data (Ethernet frames), and can be secured with a multitude of mechanisms. Notable features are:
NCD only works on Linux. Tun2socks works on Linux and Windows. The P2P VPN works on Linux, Windows and FreeBSD (not tested often).
The build system is based on CMake. On Linux, the following commands can be used to build:
cd <badvpn-source-dir>
mkdir build
cd build
cmake .. -DCMAKE_INSTALL_PREFIX=<install-dir>
make install
If you only need tun2socks or udpgw, then add the following arguments to the cmake
command: -DBUILD_NOTHING_BY_DEFAULT=1 -DBUILD_TUN2SOCKS=1 -DBUILD_UDPGW=1
.
Otherwise (if you want the VPN software), you will first need to install the OpenSSL
and NSS libraries and make sure that CMake can find them.
Windows builds are not provided. You can build from source code using Visual Studio by
following the instructions in the file BUILD-WINDOWS-VisualStudio.md
.
The BSD 3-clause license as shown below applies to most of the code.
Copyright (c) 2009, Ambroz Bizjak <[email protected]>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. Neither the name of the author nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
List of third-party code included in the source:
lwip/COPYING