Thursday, April 25, 2024
 Popular · Latest · Hot · Upcoming
35
rated 0 times [  35] [ 0]  / answers: 1 / hits: 57039  / 3 Years ago, wed, october 13, 2021, 2:36:46

Old Q How do I setup an OpenVPN server without root privileges?



Is there a way to setup an OpenVPN server without root privileges? E.g. with configuration files in my home directory? If yes, how do I set it up?



I'm trying to SSH into a system and set up an OpenVPN server over there for personal use.



EDIT



Since it's apparent that OpenVPN needs root privileges, I am changing the question to routing my internet using SSH which I can easily set up.


More From » networking

 Answers
6

sshuttle is a transparent proxy server that forwards over a SSH connection and sets up a proxy by running Python scripts on the remote server. sshuttle can be run under the following conditions:




  • client machine or router is Linux-based, FreeBSD or Mac OS

  • administrative privileges on client

  • access to remote network via SSH

  • no administrator privileges on remote network

  • availability of Python on remote server



Install sshuttle enter image description here from the Software Center or the Terminal:



sudo apt-get install sshuttle


The basic command for running sshuttle with routing all traffic is:



sshuttle -r username@sshserver:port 0/0


Upon the execution of the command, a sudo password prompt will appear and subsequently the password to SSH account. No other details will appear except for a short message and return to shell upon failure. For more status messages, run sshuttle in verbose mode with the -v flag.



In this example all internet traffic except DNS is routed through the VPN. -r flag denotes the remote hostname and optional username and port that follows in the above example. 0/0 is short for 0.0.0.0/0 that represents the subnets to route over the VPN. The usage of 0/0 routes all the traffic except DNS requests to the remote server. DNS tunelling is possible with the usage of -H flag.



Please read the man page (man sshuttle) for the details of options and modes under which sshuttle can run. For information about the concept and more examples, refer to the project page.


[#44986] Thursday, October 14, 2021, 3 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
theurn

Total Points: 30
Total Questions: 110
Total Answers: 111

Location: Bahrain
Member since Fri, Sep 16, 2022
2 Years ago
;