amuck-landowner

Multiple VPN linking/randomizer

MannDude

Just a dude
vpsBoard Founder
Moderator
I've been a fan of SSHuttle (https://github.com/apenwarr/sshuttle) for a long time, I think @KMyers introduced me to it a couple years ago. At one point I do recall having two servers in the middle without issue, which led me to become curious about a wider setup.

Curious if there is any opensource or publicly available tools that would allow linking multiple servers, from as little as 1 to as many as.. however many, to tunnel traffic through and have the data requested by random end servers.

Sounds a tad bit like the TOR network, except a little more hands on and without the affiliation while also being in control of the servers in between.

Does such a solution exist?
 

wlanboy

Content Contributer
That would be possible.

  1. Proxy way
    Use ssh to create socks proxy and use a load balancer to cast your request to the different proxies.
     
  2. sshuttle way
    Run more than one instance of sshuttle and define the target block.

    This creates a transparent proxy server on your local machine for
    all IP addresses that match 0.0.0.0/0.
    (You can use more specific IP addresses if you want;
    use any number of IP addresses or subnets
    to change which addresses get proxied. Using 0.0.0.0/0 proxies everything,
    which is interesting if you don't trust the people on your local network.)

    So you can limit one transparent proxy to a defined subnet.
     
  3. Tor way
    If you would run your own Tor index servers and if you would configure your Tor client to use them (instead of the official ones) you would be able to create your own private Tor network.
     
  4. I2P way
    Basically the same - run your own reseed servers.
 
Top
amuck-landowner