add chinese for pages.cn/linux/add-apt-respository.md

This commit is contained in:
hugue
2018-12-21 20:04:36 +08:00
committed by Agniva De Sarker
parent 6baf5eaa78
commit 1ce15b00a1
1250 changed files with 26030 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
# sshuttle
> Transparent proxy server that tunnels traffic over an SSH connection.
> Doesn't require admin, or any special setup on the remote SSH server.
- 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:
`sshuttle --dns --remote={{username}}@{{sshserver}} {{0.0.0.0/0}}`
- 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}}`