2016-01-17 06:16:36 +01:00
|
|
|
sshuttle
|
|
|
|
========
|
2010-11-09 10:59:03 +01:00
|
|
|
|
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
Synopsis
|
|
|
|
--------
|
2021-06-01 05:33:55 +02:00
|
|
|
**sshuttle** [*options*] **-r** *[username@]sshserver[:port]* \<*subnets* ...\>
|
2010-11-09 10:59:03 +01:00
|
|
|
|
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
Description
|
|
|
|
-----------
|
|
|
|
:program:`sshuttle` allows you to create a VPN connection from your
|
2020-10-21 07:05:21 +02:00
|
|
|
machine to any remote server that you can connect to via ssh, as long
|
|
|
|
as that server has a sufficiently new Python installation.
|
2010-11-09 10:59:03 +01:00
|
|
|
|
|
|
|
To work, you must have root access on the local machine,
|
|
|
|
but you can have a normal account on the server.
|
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
It's valid to run :program:`sshuttle` more than once simultaneously on
|
2010-11-09 10:59:03 +01:00
|
|
|
a single client machine, connecting to a different server
|
|
|
|
every time, so you can be on more than one VPN at once.
|
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
If run on a router, :program:`sshuttle` can forward traffic for your
|
2010-11-09 10:59:03 +01:00
|
|
|
entire subnet to the VPN.
|
|
|
|
|
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
Options
|
|
|
|
-------
|
|
|
|
.. program:: sshuttle
|
2010-11-09 10:59:03 +01:00
|
|
|
|
2019-12-13 05:53:55 +01:00
|
|
|
.. option:: <subnets>
|
2016-01-17 06:16:36 +01:00
|
|
|
|
|
|
|
A list of subnets to route over the VPN, in the form
|
2020-10-21 07:05:21 +02:00
|
|
|
``a.b.c.d[/width][port[-port]]``. Valid examples are 1.2.3.4 (a
|
|
|
|
single IP address) and 1.2.3.4/32 (equivalent to 1.2.3.4),
|
|
|
|
1.2.3.0/24 (a 24-bit subnet, ie. with a 255.255.255.0 netmask).
|
|
|
|
Specify subnets 0/0 to match all IPv4 addresses and ::/0 to match
|
|
|
|
all IPv6 addresses. Any of the previous examples are also valid if
|
|
|
|
you append a port or a port range, so 1.2.3.4:8000 will only
|
|
|
|
tunnel traffic that has as the destination port 8000 of 1.2.3.4
|
|
|
|
and 1.2.3.0/24:8000-9000 will tunnel traffic going to any port
|
|
|
|
between 8000 and 9000 (inclusive) for all IPs in the 1.2.3.0/24
|
|
|
|
subnet. A hostname can be provided instead of an IP address. If
|
|
|
|
the hostname resolves to multiple IPs, all of the IPs are
|
|
|
|
included. If a width is provided with a hostname, the width is
|
|
|
|
applied to all of the hostnames IPs (if they are all either IPv4
|
|
|
|
or IPv6). Widths cannot be supplied to hostnames that resolve to
|
|
|
|
both IPv4 and IPv6. Valid examples are example.com,
|
|
|
|
example.com:8000, example.com/24, example.com/24:8000 and
|
|
|
|
example.com:8000-9000.
|
2010-11-09 10:59:03 +01:00
|
|
|
|
2020-10-23 02:17:03 +02:00
|
|
|
.. option:: --method <auto|nat|nft|tproxy|pf|ipfw>
|
2016-01-20 11:19:44 +01:00
|
|
|
|
|
|
|
Which firewall method should sshuttle use? For auto, sshuttle attempts to
|
|
|
|
guess the appropriate method depending on what it can find in PATH. The
|
|
|
|
default value is auto.
|
|
|
|
|
2019-12-13 05:53:55 +01:00
|
|
|
.. option:: -l <[ip:]port>, --listen=<[ip:]port>
|
2016-01-17 06:16:36 +01:00
|
|
|
|
|
|
|
Use this ip address and port number as the transparent
|
|
|
|
proxy port. By default :program:`sshuttle` finds an available
|
2011-01-01 06:21:17 +01:00
|
|
|
port automatically and listens on IP 127.0.0.1
|
|
|
|
(localhost), so you don't need to override it, and
|
|
|
|
connections are only proxied from the local machine,
|
|
|
|
not from outside machines. If you want to accept
|
|
|
|
connections from other machines on your network (ie. to
|
2016-01-17 06:16:36 +01:00
|
|
|
run :program:`sshuttle` on a router) try enabling IP Forwarding in
|
|
|
|
your kernel, then using ``--listen 0.0.0.0:0``.
|
Adds support for tunneling specific port ranges (#144)
* Adds support for tunneling specific port ranges
This set of changes implements the ability of specifying a port or port
range for an IP or subnet to only tunnel those ports for that subnet.
Also supports excluding a port or port range for a given IP or subnet.
When, for a given subnet, there are intercepting ranges being added and
excluded, the most specific, i.e., smaller range, takes precedence. In
case of a tie the exclusion wins.
For different subnets, the most specific, i.e., largest swidth, takes
precedence independent of any eventual port ranges.
Examples:
Tunnels all traffic to the 188.0.0.0/8 subnet except those to port 443.
```
sshuttle -r <server> 188.0.0.0/8 -x 188.0.0.0/8:443
```
Only tunnels traffic to port 80 of the 188.0.0.0/8 subnet.
```
sshuttle -r <server> 188.0.0.0/8:80
```
Tunnels traffic to the 188.0.0.0/8 subnet and the port range that goes
from 80 to 89.
```
sshuttle -r <server> 188.0.0.0/8:80-89 -x 188.0.0.0/8:80-90
```
* Allow subnets to be specified with domain names
Simplifies the implementation of address parsing by using
socket.getaddrinfo(), which can handle domain resolution, IPv4 and IPv6
addresses. This was proposed and mostly implemented by @DavidBuchanan314
in #146.
Signed-off-by: David Buchanan <DavidBuchanan314@users.noreply.github.com>
Signed-off-by: João Vieira <vieira@yubo.be>
* Also use getaddrinfo for parsing listen addr:port
* Fixes tests for tunneling a port range
* Updates documentation to include port/port range
Adds some examples with subnet:port and subnet:port-port.
Also clarifies the versions of Python supported on the server while
maintaining the recommendation for Python 2.7, 3.5 or later.
Mentions support for pfSense.
* In Py2 only named arguments may follow *expression
Fixes issue in Python 2.7 where *expression may only be followed by
named arguments.
* Use right regex to extract ip4/6, mask and ports
* Tests for parse_subnetport
2017-05-07 05:18:13 +02:00
|
|
|
You can use any name resolving to an IP address of the machine running
|
|
|
|
:program:`sshuttle`, e.g. ``--listen localhost``.
|
2016-01-17 06:16:36 +01:00
|
|
|
|
2021-02-15 17:53:04 +01:00
|
|
|
For the nft, tproxy and pf methods this can be an IPv6 address. Use
|
|
|
|
this option with comma separated values if required, to provide both
|
2020-10-23 02:17:03 +02:00
|
|
|
IPv4 and IPv6 addresses, e.g. ``--listen 127.0.0.1:0,[::1]:0``.
|
2016-01-17 08:34:10 +01:00
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
.. option:: -H, --auto-hosts
|
2010-11-09 10:59:03 +01:00
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
Scan for remote hostnames and update the local /etc/hosts
|
2010-11-09 10:59:03 +01:00
|
|
|
file with matching entries for as long as the VPN is
|
|
|
|
open. This is nicer than changing your system's DNS
|
|
|
|
(/etc/resolv.conf) settings, for several reasons. First,
|
|
|
|
hostnames are added without domain names attached, so
|
2016-01-17 06:16:36 +01:00
|
|
|
you can ``ssh thatserver`` without worrying if your local
|
|
|
|
domain matches the remote one. Second, if you :program:`sshuttle`
|
2010-11-09 10:59:03 +01:00
|
|
|
into more than one VPN at a time, it's impossible to
|
|
|
|
use more than one DNS server at once anyway, but
|
2016-01-17 06:16:36 +01:00
|
|
|
:program:`sshuttle` correctly merges /etc/hosts entries between
|
2010-11-09 10:59:03 +01:00
|
|
|
all running copies. Third, if you're only routing a
|
|
|
|
few subnets over the VPN, you probably would prefer to
|
|
|
|
keep using your local DNS server for everything else.
|
2014-11-28 06:08:31 +01:00
|
|
|
|
2021-06-02 20:10:41 +02:00
|
|
|
:program:`sshuttle` tries to store a cache of the hostnames in
|
|
|
|
~/.sshuttle.hosts on the remote host. Similarly, it tries to read
|
|
|
|
the file when you later reconnect to the host with --auto-hosts
|
|
|
|
enabled to quickly populate the host list. When troubleshooting
|
|
|
|
this feature, try removing this file on the remote host when
|
|
|
|
sshuttle is not running.
|
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
.. option:: -N, --auto-nets
|
|
|
|
|
|
|
|
In addition to the subnets provided on the command
|
2010-11-09 10:59:03 +01:00
|
|
|
line, ask the server which subnets it thinks we should
|
|
|
|
route, and route those automatically. The suggestions
|
|
|
|
are taken automatically from the server's routing
|
|
|
|
table.
|
2014-11-28 06:08:31 +01:00
|
|
|
|
2020-10-23 02:17:03 +02:00
|
|
|
This feature does not detect IPv6 routes. Specify IPv6 subnets
|
|
|
|
manually. For example, specify the ``::/0`` subnet on the command
|
|
|
|
line to route all IPv6 traffic.
|
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
.. option:: --dns
|
|
|
|
|
|
|
|
Capture local DNS requests and forward to the remote DNS
|
2018-01-03 12:51:09 +01:00
|
|
|
server. All queries to any of the local system's DNS
|
2021-02-15 17:53:04 +01:00
|
|
|
servers (/etc/resolv.conf and, if it exists,
|
2020-10-25 17:29:32 +01:00
|
|
|
/run/systemd/resolve/resolv.conf) will be intercepted and
|
2018-01-03 12:51:09 +01:00
|
|
|
resolved on the remote side of the tunnel instead, there
|
2019-12-13 05:53:55 +01:00
|
|
|
using the DNS specified via the :option:`--to-ns` option,
|
2020-10-25 17:29:32 +01:00
|
|
|
if specified. Only plain DNS traffic sent to these servers
|
|
|
|
on port 53 are captured.
|
2018-01-03 12:51:09 +01:00
|
|
|
|
2019-12-13 05:53:55 +01:00
|
|
|
.. option:: --ns-hosts=<server1[,server2[,server3[...]]]>
|
2018-01-03 12:51:09 +01:00
|
|
|
|
|
|
|
Capture local DNS requests to the specified server(s)
|
|
|
|
and forward to the remote DNS server. Contrary to the
|
|
|
|
:option:`--dns` option, this flag allows to specify the
|
|
|
|
DNS server(s) the queries to which to intercept,
|
|
|
|
instead of intercepting all DNS traffic on the local
|
|
|
|
machine. This can be useful when only certain DNS
|
|
|
|
requests should be resolved on the remote side of the
|
|
|
|
tunnel, e.g. in combination with dnsmasq.
|
|
|
|
|
2019-12-13 05:53:55 +01:00
|
|
|
.. option:: --to-ns=<server>
|
2018-01-03 12:51:09 +01:00
|
|
|
|
|
|
|
The DNS to forward requests to when remote DNS
|
|
|
|
resolution is enabled. If not given, sshuttle will
|
|
|
|
simply resolve using the system configured resolver on
|
|
|
|
the remote side (via /etc/resolv.conf on the remote
|
|
|
|
side).
|
2014-11-28 06:08:31 +01:00
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
.. option:: --python
|
|
|
|
|
2020-10-23 02:17:03 +02:00
|
|
|
Specify the name/path of the remote python interpreter. The
|
|
|
|
default is to use ``python3`` (or ``python``, if ``python3``
|
|
|
|
fails) in the remote system's PATH.
|
2010-11-09 10:59:03 +01:00
|
|
|
|
2019-12-13 05:53:55 +01:00
|
|
|
.. option:: -r <[username@]sshserver[:port]>, --remote=<[username@]sshserver[:port]>
|
2016-01-17 06:16:36 +01:00
|
|
|
|
|
|
|
The remote hostname and optional username and ssh
|
2014-11-28 06:08:31 +01:00
|
|
|
port number to use for connecting to the remote server.
|
2010-11-09 10:59:03 +01:00
|
|
|
For example, example.com, testuser@example.com,
|
2020-10-21 07:05:21 +02:00
|
|
|
testuser@example.com:2222, or example.com:2244. This
|
|
|
|
hostname is passed to ssh, so it will recognize any
|
|
|
|
aliases and settings you may have configured in
|
|
|
|
~/.ssh/config.
|
2010-11-09 10:59:03 +01:00
|
|
|
|
2019-12-13 05:53:55 +01:00
|
|
|
.. option:: -x <subnet>, --exclude=<subnet>
|
2016-01-17 06:16:36 +01:00
|
|
|
|
|
|
|
Explicitly exclude this subnet from forwarding. The
|
|
|
|
format of this option is the same as the ``<subnets>``
|
2010-11-09 10:59:03 +01:00
|
|
|
option. To exclude more than one subnet, specify the
|
2016-01-17 06:16:36 +01:00
|
|
|
``-x`` option more than once. You can say something like
|
|
|
|
``0/0 -x 1.2.3.0/24`` to forward everything except the
|
2010-11-09 10:59:03 +01:00
|
|
|
local subnet over the VPN, for example.
|
|
|
|
|
2019-12-13 05:53:55 +01:00
|
|
|
.. option:: -X <file>, --exclude-from=<file>
|
2016-01-17 06:16:36 +01:00
|
|
|
|
|
|
|
Exclude the subnets specified in a file, one subnet per
|
2011-04-19 14:19:06 +02:00
|
|
|
line. Useful when you have lots of subnets to exclude.
|
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
.. option:: -v, --verbose
|
|
|
|
|
|
|
|
Print more information about the session. This option
|
2010-11-09 10:59:03 +01:00
|
|
|
can be used more than once for increased verbosity. By
|
2016-01-17 06:16:36 +01:00
|
|
|
default, :program:`sshuttle` prints only error messages.
|
|
|
|
|
|
|
|
.. option:: -e, --ssh-cmd
|
2014-11-28 06:08:31 +01:00
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
The command to use to connect to the remote server. The
|
|
|
|
default is just ``ssh``. Use this if your ssh client is
|
2010-11-09 10:59:03 +01:00
|
|
|
in a non-standard location or you want to provide extra
|
2016-01-17 06:16:36 +01:00
|
|
|
options to the ssh command, for example, ``-e 'ssh -v'``.
|
|
|
|
|
2024-07-16 20:08:36 +02:00
|
|
|
.. option:: --remote-shell
|
|
|
|
|
|
|
|
For Windows targets, specify configured remote shell program alternative to defacto posix shell.
|
|
|
|
It would be either ``cmd`` or ``powershell`` unless something like git-bash is in use.
|
|
|
|
|
2024-07-02 04:42:51 +02:00
|
|
|
.. option:: --no-cmd-delimiter
|
|
|
|
|
|
|
|
Do not add a double dash (--) delimiter before invoking Python on
|
|
|
|
the remote host. This option is useful when the ssh command used
|
|
|
|
to connect is a custom command that does not interpret this
|
|
|
|
delimiter correctly.
|
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
.. option:: --seed-hosts
|
2010-11-09 10:59:03 +01:00
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
A comma-separated list of hostnames to use to
|
|
|
|
initialize the :option:`--auto-hosts` scan algorithm.
|
2021-06-02 20:10:41 +02:00
|
|
|
:option:`--auto-hosts` does things like poll netstat output
|
2010-11-09 10:59:03 +01:00
|
|
|
for lists of local hostnames, but can speed things up
|
|
|
|
if you use this option to give it a few names to start
|
|
|
|
from.
|
2014-11-28 06:08:31 +01:00
|
|
|
|
2016-05-03 06:40:53 +02:00
|
|
|
If this option is used *without* :option:`--auto-hosts`,
|
|
|
|
then the listed hostnames will be scanned and added, but
|
|
|
|
no further hostnames will be added.
|
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
.. option:: --no-latency-control
|
|
|
|
|
|
|
|
Sacrifice latency to improve bandwidth benchmarks. ssh
|
2011-01-26 06:30:29 +01:00
|
|
|
uses really big socket buffers, which can overload the
|
|
|
|
connection if you start doing large file transfers,
|
|
|
|
thus making all your other sessions inside the same
|
2016-01-17 06:16:36 +01:00
|
|
|
tunnel go slowly. Normally, :program:`sshuttle` tries to avoid
|
2011-01-26 06:30:29 +01:00
|
|
|
this problem using a "fullness check" that allows only
|
|
|
|
a certain amount of outstanding data to be buffered at
|
|
|
|
a time. But on high-bandwidth links, this can leave a
|
|
|
|
lot of your bandwidth underutilized. It also makes
|
2016-01-17 06:16:36 +01:00
|
|
|
:program:`sshuttle` seem slow in bandwidth benchmarks (benchmarks
|
|
|
|
rarely test ping latency, which is what :program:`sshuttle` is
|
2011-01-26 06:30:29 +01:00
|
|
|
trying to control). This option disables the latency
|
|
|
|
control feature, maximizing bandwidth usage. Use at
|
|
|
|
your own risk.
|
2014-11-28 06:08:31 +01:00
|
|
|
|
2019-10-29 01:47:45 +01:00
|
|
|
.. option:: --latency-buffer-size
|
|
|
|
|
|
|
|
Set the size of the buffer used in latency control. The
|
|
|
|
default is ``32768``. Changing this option allows a compromise
|
|
|
|
to be made between latency and bandwidth without completely
|
|
|
|
disabling latency control (with :option:`--no-latency-control`).
|
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
.. option:: -D, --daemon
|
|
|
|
|
|
|
|
Automatically fork into the background after connecting
|
|
|
|
to the remote server. Implies :option:`--syslog`.
|
|
|
|
|
2020-10-19 13:35:03 +02:00
|
|
|
.. option:: -s <file>, --subnets=<file>
|
|
|
|
|
|
|
|
Include the subnets specified in a file instead of on the
|
|
|
|
command line. One subnet per line.
|
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
.. option:: --syslog
|
2014-11-28 06:08:31 +01:00
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
after connecting, send all log messages to the
|
|
|
|
:manpage:`syslog(3)` service instead of stderr. This is
|
|
|
|
implicit if you use :option:`--daemon`.
|
2014-11-28 06:08:31 +01:00
|
|
|
|
2019-12-13 05:53:55 +01:00
|
|
|
.. option:: --pidfile=<pidfilename>
|
2016-01-17 06:16:36 +01:00
|
|
|
|
|
|
|
when using :option:`--daemon`, save :program:`sshuttle`'s pid to
|
|
|
|
*pidfilename*. The default is ``sshuttle.pid`` in the
|
2011-01-01 09:32:37 +01:00
|
|
|
current directory.
|
2010-11-09 10:59:03 +01:00
|
|
|
|
2016-01-17 08:34:10 +01:00
|
|
|
.. option:: --disable-ipv6
|
|
|
|
|
2022-02-04 21:27:48 +01:00
|
|
|
Disable IPv6 support for methods that support it (nat, nft,
|
|
|
|
tproxy, and pf).
|
2016-01-17 08:34:10 +01:00
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
.. option:: --firewall
|
|
|
|
|
|
|
|
(internal use only) run the firewall manager. This is
|
|
|
|
the only part of :program:`sshuttle` that must run as root. If
|
|
|
|
you start :program:`sshuttle` as a non-root user, it will
|
|
|
|
automatically run ``sudo`` or ``su`` to start the firewall
|
|
|
|
manager, but the core of :program:`sshuttle` still runs as a
|
2010-11-09 10:59:03 +01:00
|
|
|
normal user.
|
2014-11-28 06:08:31 +01:00
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
.. option:: --hostwatch
|
|
|
|
|
|
|
|
(internal use only) run the hostwatch daemon. This
|
2010-11-09 10:59:03 +01:00
|
|
|
process runs on the server side and collects hostnames for
|
2016-01-17 06:16:36 +01:00
|
|
|
the :option:`--auto-hosts` option. Using this option by itself
|
|
|
|
makes it a lot easier to debug and test the :option:`--auto-hosts`
|
2010-11-09 10:59:03 +01:00
|
|
|
feature.
|
|
|
|
|
2019-12-12 22:15:31 +01:00
|
|
|
.. option:: --sudoers-no-modify
|
|
|
|
|
2022-03-04 18:15:24 +01:00
|
|
|
sshuttle prints a configuration to stdout which allows a user to
|
|
|
|
run sshuttle without a password. This option is INSECURE because,
|
|
|
|
with some cleverness, it also allows the user to run any command
|
|
|
|
as root without a password. The output also includes a suggested
|
|
|
|
method for you to install the configuration.
|
2019-12-12 22:15:31 +01:00
|
|
|
|
2022-03-04 18:15:24 +01:00
|
|
|
Use --sudoers-user to modify the user that it applies to.
|
2019-12-12 22:15:31 +01:00
|
|
|
|
2022-03-04 18:15:24 +01:00
|
|
|
.. option:: --sudoers-user
|
2019-12-12 22:15:31 +01:00
|
|
|
|
2022-03-04 18:15:24 +01:00
|
|
|
Set the user name or group with %group_name for passwordless
|
|
|
|
operation. Default is the current user. Set to ALL for all users
|
|
|
|
(NOT RECOMMENDED: See note about security in --sudoers-no-modify
|
|
|
|
documentation above). Only works with the --sudoers-no-modify
|
|
|
|
option.
|
2019-12-12 22:15:31 +01:00
|
|
|
|
2021-05-27 22:21:42 +02:00
|
|
|
.. option:: -t <mark>, --tmark=<mark>
|
2020-12-06 18:23:15 +01:00
|
|
|
|
2021-05-27 22:21:42 +02:00
|
|
|
An option used by the tproxy method: Use the specified traffic
|
|
|
|
mark. The mark must be a hexadecimal value. Defaults to 0x01.
|
2020-12-06 18:23:15 +01:00
|
|
|
|
2018-11-28 19:11:28 +01:00
|
|
|
.. option:: --version
|
|
|
|
|
|
|
|
Print program version.
|
|
|
|
|
2010-11-09 10:59:03 +01:00
|
|
|
|
2018-01-28 18:55:54 +01:00
|
|
|
Configuration File
|
|
|
|
------------------
|
|
|
|
All the options described above can optionally be specified in a configuration
|
|
|
|
file.
|
|
|
|
|
2018-06-06 16:41:50 +02:00
|
|
|
To run :program:`sshuttle` with options defined in, e.g., `/etc/sshuttle.conf`
|
2018-01-28 18:55:54 +01:00
|
|
|
just pass the path to the file preceded by the `@` character, e.g.
|
2019-12-13 05:53:55 +01:00
|
|
|
`@/etc/sshuttle.conf`.
|
2018-01-28 18:55:54 +01:00
|
|
|
|
2018-12-03 02:44:17 +01:00
|
|
|
When running :program:`sshuttle` with options defined in a configuration file,
|
2018-01-28 18:55:54 +01:00
|
|
|
options can still be passed via the command line in addition to what is
|
|
|
|
defined in the file. If a given option is defined both in the file and in
|
|
|
|
the command line, the value in the command line will take precedence.
|
|
|
|
|
|
|
|
Arguments read from a file must be one per line, as shown below::
|
|
|
|
|
|
|
|
value
|
|
|
|
--option1
|
|
|
|
value1
|
|
|
|
--option2
|
|
|
|
value2
|
|
|
|
|
2020-10-21 07:05:21 +02:00
|
|
|
The configuration file supports comments for human-readable
|
|
|
|
annotations. For example::
|
2021-02-15 18:01:11 +01:00
|
|
|
|
|
|
|
# company-internal API
|
|
|
|
8.8.8.8/32
|
|
|
|
# home IoT
|
|
|
|
192.168.63.0/24
|
|
|
|
|
2018-01-28 18:55:54 +01:00
|
|
|
|
2023-08-09 03:50:34 +02:00
|
|
|
Environment Variable
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
You can specify command line options with the `SSHUTTLE_ARGS` environment
|
|
|
|
variable. If a given option is defined in both the environment variable and
|
|
|
|
command line, the value on the command line will take precedence.
|
|
|
|
|
|
|
|
For example::
|
|
|
|
|
|
|
|
SSHUTTLE_ARGS="-e 'ssh -v' --dns" sshuttle -r example.com 0/0
|
|
|
|
|
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
Examples
|
|
|
|
--------
|
2010-11-09 10:59:03 +01:00
|
|
|
|
2020-10-21 07:05:21 +02:00
|
|
|
Use the following command to route all IPv4 TCP traffic through remote
|
|
|
|
(-r) host example.com (and possibly other traffic too, depending on
|
|
|
|
the selected --method). The 0/0 subnet, short for 0.0.0.0/0, matches
|
|
|
|
all IPv4 addresses. The ::/0 subnet, matching all IPv6 addresses could
|
|
|
|
be added to the example. We also exclude (-x) example.com:22 so that
|
|
|
|
we can establish ssh connections from our local machine to the remote
|
|
|
|
host without them being routed through sshuttle. Excluding the remote
|
|
|
|
host may be necessary on some machines for sshuttle to work properly.
|
|
|
|
Press Ctrl+C to exit. To also route DNS queries through sshuttle, try
|
|
|
|
adding --dns. Add or remove -v options to see more or less
|
|
|
|
information::
|
|
|
|
|
|
|
|
$ sshuttle -r example.com -x example.com:22 0/0
|
|
|
|
|
|
|
|
Starting sshuttle proxy (version ...).
|
2021-09-22 14:13:22 +02:00
|
|
|
[local sudo] Password:
|
2020-10-21 07:05:21 +02:00
|
|
|
fw: Starting firewall with Python version 3.9.5
|
|
|
|
fw: ready method name nat.
|
|
|
|
c : IPv6 disabled since it isn't supported by method nat.
|
|
|
|
c : Method: nat
|
|
|
|
c : IPv4: on
|
|
|
|
c : IPv6: off (not available with nat method)
|
|
|
|
c : UDP : off (not available with nat method)
|
|
|
|
c : DNS : off (available)
|
|
|
|
c : User: off (available)
|
|
|
|
c : Subnets to forward through remote host (type, IP, cidr mask width, startPort, endPort):
|
|
|
|
c : (<AddressFamily.AF_INET: 2>, '0.0.0.0', 0, 0, 0)
|
|
|
|
c : Subnets to exclude from forwarding:
|
|
|
|
c : (<AddressFamily.AF_INET: 2>, '...', 32, 22, 22)
|
|
|
|
c : (<AddressFamily.AF_INET: 2>, '127.0.0.1', 32, 0, 0)
|
|
|
|
c : TCP redirector listening on ('127.0.0.1', 12299).
|
|
|
|
c : Starting client with Python version 3.9.5
|
|
|
|
c : Connecting to server...
|
2021-09-22 14:13:22 +02:00
|
|
|
user@example.com's password:
|
2020-10-21 07:05:21 +02:00
|
|
|
s: Starting server with Python version 3.6.8
|
|
|
|
s: latency control setting = True
|
|
|
|
s: auto-nets:False
|
|
|
|
c : Connected to server.
|
|
|
|
fw: setting up.
|
|
|
|
fw: iptables -w -t nat -N sshuttle-12299
|
|
|
|
fw: iptables -w -t nat -F sshuttle-12299
|
|
|
|
...
|
|
|
|
Accept: 192.168.42.121:60554 -> 77.141.99.22:22.
|
2010-11-09 10:59:03 +01:00
|
|
|
^C
|
|
|
|
c : Keyboard interrupt: exiting.
|
2020-10-21 07:05:21 +02:00
|
|
|
c : SW'unknown':Mux#1: deleting (1 remain)
|
|
|
|
c : SW#7:192.168.42.121:60554: deleting (0 remain)
|
2010-11-09 10:59:03 +01:00
|
|
|
|
|
|
|
|
2020-10-21 07:05:21 +02:00
|
|
|
Connect to a remote server, with automatic hostname
|
|
|
|
and subnet guessing::
|
2010-11-09 10:59:03 +01:00
|
|
|
|
2020-10-21 07:05:21 +02:00
|
|
|
$ sshuttle -vNHr example.com -x example.com:22
|
|
|
|
Starting sshuttle proxy (version ...).
|
2021-09-22 14:13:22 +02:00
|
|
|
[local sudo] Password:
|
2020-10-21 07:05:21 +02:00
|
|
|
fw: Starting firewall with Python version 3.9.5
|
|
|
|
fw: ready method name nat.
|
|
|
|
c : IPv6 disabled since it isn't supported by method nat.
|
|
|
|
c : Method: nat
|
|
|
|
c : IPv4: on
|
|
|
|
c : IPv6: off (not available with nat method)
|
|
|
|
c : UDP : off (not available with nat method)
|
|
|
|
c : DNS : off (available)
|
|
|
|
c : User: off (available)
|
|
|
|
c : Subnets to forward through remote host (type, IP, cidr mask width, startPort, endPort):
|
|
|
|
c : NOTE: Additional subnets to forward may be added below by --auto-nets.
|
|
|
|
c : Subnets to exclude from forwarding:
|
|
|
|
c : (<AddressFamily.AF_INET: 2>, '...', 32, 22, 22)
|
|
|
|
c : (<AddressFamily.AF_INET: 2>, '127.0.0.1', 32, 0, 0)
|
|
|
|
c : TCP redirector listening on ('127.0.0.1', 12300).
|
|
|
|
c : Starting client with Python version 3.9.5
|
|
|
|
c : Connecting to server...
|
2021-09-22 14:13:22 +02:00
|
|
|
user@example.com's password:
|
2020-10-21 07:05:21 +02:00
|
|
|
s: Starting server with Python version 3.6.8
|
|
|
|
s: latency control setting = True
|
|
|
|
s: auto-nets:True
|
|
|
|
c : Connected to server.
|
|
|
|
c : seed_hosts: []
|
2010-11-09 10:59:03 +01:00
|
|
|
s: available routes:
|
|
|
|
s: 77.141.99.0/24
|
2020-10-21 07:05:21 +02:00
|
|
|
fw: setting up.
|
|
|
|
fw: iptables -w -t nat -N sshuttle-12300
|
|
|
|
fw: iptables -w -t nat -F sshuttle-12300
|
|
|
|
...
|
2011-01-01 05:53:42 +01:00
|
|
|
c : Accept: 192.168.42.121:60554 -> 77.141.99.22:22.
|
2010-11-09 10:59:03 +01:00
|
|
|
^C
|
|
|
|
c : Keyboard interrupt: exiting.
|
2020-10-21 07:05:21 +02:00
|
|
|
c : SW'unknown':Mux#1: deleting (1 remain)
|
|
|
|
c : SW#7:192.168.42.121:60554: deleting (0 remain)
|
2010-11-09 10:59:03 +01:00
|
|
|
|
2018-01-28 18:55:54 +01:00
|
|
|
Run :program:`sshuttle` with a `/etc/sshuttle.conf` configuration file::
|
|
|
|
|
|
|
|
$ sshuttle @/etc/sshuttle.conf
|
|
|
|
|
|
|
|
Use the options defined in `/etc/sshuttle.conf` but be more verbose::
|
|
|
|
|
|
|
|
$ sshuttle @/etc/sshuttle.conf -vvv
|
|
|
|
|
|
|
|
Override the remote server defined in `/etc/sshuttle.conf`::
|
|
|
|
|
|
|
|
$ sshuttle @/etc/sshuttle.conf -r otheruser@test.example.com
|
|
|
|
|
|
|
|
Example configuration file::
|
|
|
|
|
|
|
|
192.168.0.0/16
|
|
|
|
--remote
|
|
|
|
user@example.com
|
|
|
|
|
2010-11-09 10:59:03 +01:00
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
Discussion
|
|
|
|
----------
|
|
|
|
When it starts, :program:`sshuttle` creates an ssh session to the
|
2021-06-01 05:33:55 +02:00
|
|
|
server specified by the ``-r`` option.
|
2010-11-09 10:59:03 +01:00
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
After connecting to the remote server, :program:`sshuttle` uploads its
|
2010-11-09 10:59:03 +01:00
|
|
|
(python) source code to the remote end and executes it
|
2016-01-17 06:16:36 +01:00
|
|
|
there. Thus, you don't need to install :program:`sshuttle` on the
|
|
|
|
remote server, and there are never :program:`sshuttle` version
|
2010-11-09 10:59:03 +01:00
|
|
|
conflicts between client and server.
|
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
Unlike most VPNs, :program:`sshuttle` forwards sessions, not packets.
|
2010-11-09 10:59:03 +01:00
|
|
|
That is, it uses kernel transparent proxying (`iptables
|
2015-12-06 01:33:52 +01:00
|
|
|
REDIRECT` rules on Linux) to
|
2010-11-09 10:59:03 +01:00
|
|
|
capture outgoing TCP sessions, then creates entirely
|
|
|
|
separate TCP sessions out to the original destination at
|
|
|
|
the other end of the tunnel.
|
|
|
|
|
|
|
|
Packet-level forwarding (eg. using the tun/tap devices on
|
|
|
|
Linux) seems elegant at first, but it results in
|
|
|
|
several problems, notably the 'tcp over tcp' problem. The
|
|
|
|
tcp protocol depends fundamentally on packets being dropped
|
2022-06-14 20:02:12 +02:00
|
|
|
in order to implement its congestion control algorithm; if
|
2010-11-09 10:59:03 +01:00
|
|
|
you pass tcp packets through a tcp-based tunnel (such as
|
|
|
|
ssh), the inner tcp packets will never be dropped, and so
|
|
|
|
the inner tcp stream's congestion control will be
|
|
|
|
completely broken, and performance will be terrible. Thus,
|
|
|
|
packet-based VPNs (such as IPsec and openvpn) cannot use
|
|
|
|
tcp-based encrypted streams like ssh or ssl, and have to
|
|
|
|
implement their own encryption from scratch, which is very
|
|
|
|
complex and error prone.
|
|
|
|
|
2016-01-17 06:16:36 +01:00
|
|
|
:program:`sshuttle`'s simplicity comes from the fact that it can
|
2010-11-09 10:59:03 +01:00
|
|
|
safely use the existing ssh encrypted tunnel without
|
|
|
|
incurring a performance penalty. It does this by letting
|
|
|
|
the client-side kernel manage the incoming tcp stream, and
|
|
|
|
the server-side kernel manage the outgoing tcp stream;
|
|
|
|
there is no need for congestion control to be shared
|
|
|
|
between the two separate streams, so a tcp-based tunnel is
|
|
|
|
fine.
|
|
|
|
|
2016-01-20 11:19:44 +01:00
|
|
|
.. seealso::
|
2010-11-09 10:59:03 +01:00
|
|
|
|
2016-01-20 11:19:44 +01:00
|
|
|
:manpage:`ssh(1)`, :manpage:`python(1)`
|