My goal is to build a transparent bridge over the Internet. The PPtP tunnel is only needed in order to add encryption, since EoIP is not an encrypted tunnel. In this configuration, there are several parts, which we will discuss […]
Technology
How to initialize a GIT repository
I order to initialize a git repository you have to perform the following steps: $ cd /path/to/project $ git init $ git remote add origin https://xxxxx.com/repo $ git add . $ git commit -m ‘initial commit’ $ git push origin […]
Route traffic to specific IP(s) through a VPN connection
The use-case is considering two networks in two different location communicating over Internet, having the same IP class (but it could be extrapolated for two different classes) are the static IPs are configured without collisions. Install a VPN server in […]