DEV Community

ByteKnight
ByteKnight

Posted on

sshuttle

sshuttle is a handy tool for routing traffic through an SSH server, acting like a lightweight VPN. It’s easy to use and doesn’t require admin rights on the remote host.

Example:

sshuttle -r user@remotehost 0.0.0.0/0
Enter fullscreen mode Exit fullscreen mode

This command forwards all traffic through remotehost via SSH. Just replace user@remotehost with your actual SSH login.

More details here: https://github.com/sshuttle/sshuttle

Top comments (0)