1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2024-10-28 23:17:58 +01:00

sshuttle: add exclude example (#3093)

This commit is contained in:
Starbeamrainbowlabs 2019-06-07 11:39:34 +01:00 committed by Marco Bonelli
parent 697da66044
commit 6d353cf60a

View file

@ -1,16 +1,20 @@
# sshuttle
> Transparent proxy server that tunnels traffic over an SSH connection.
> Doesn't require admin, or any special setup on the remote SSH server.
> Doesn't require root or any special setup on the remote SSH server, though root access on the local machine is prompted for.
- Forward all IPv4 TCP traffic via a remote SSH server:
`sshuttle --remote={{username}}@{{sshserver}} {{0.0.0.0/0}}`
- Forward all IPv4 TCP and DNS traffic:
- Also forward all DNS traffic to the server's default DNS resolver:
`sshuttle --dns --remote={{username}}@{{sshserver}} {{0.0.0.0/0}}`
- Forward all traffic except that which is bound for a specific subnet:
`sshuttle --remote={{username}}@{{sshserver}} {{0.0.0.0/0}} --exclude {{192.168.0.1/24}}`
- Use the tproxy method to forward all IPv4 and IPv6 traffic:
`sudo sshuttle --method=tproxy --remote={{username}}@{{sshserver}} {{0.0.0.0/0}} {{::/0}} --exclude={{your_local_ip_address}} --exclude={{ssh_server_ip_address}}`
`sshuttle --method=tproxy --remote={{username}}@{{sshserver}} {{0.0.0.0/0}} {{::/0}} --exclude={{your_local_ip_address}} --exclude={{ssh_server_ip_address}}`