summaryrefslogtreecommitdiffstats
path: root/sshuttle/options.py
diff options
context:
space:
mode:
authorJulian Wollrath <jwollrath@web.de>2018-03-04 17:32:08 +0100
committerBrian May <brian@linuxpenguins.xyz>2018-03-13 07:36:00 +1100
commit1940b524f16940d21c703b858e7ac78daa450446 (patch)
tree92e53db1d027845b709f92541f4d2d4e56633885 /sshuttle/options.py
parentd11f5b9d16e1d5b30c63a1bf2801c459492cf6e4 (diff)
Add nat-like method using nftables instead of iptables
Diffstat (limited to 'sshuttle/options.py')
-rw-r--r--sshuttle/options.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/sshuttle/options.py b/sshuttle/options.py
index b88b0e8..6810f3c 100644
--- a/sshuttle/options.py
+++ b/sshuttle/options.py
@@ -160,7 +160,7 @@ parser.add_argument(
parser.add_argument(
"--method",
- choices=["auto", "nat", "tproxy", "pf", "ipfw"],
+ choices=["auto", "nat", "nft", "tproxy", "pf", "ipfw"],
metavar="TYPE",
default="auto",
help="""
@@ -230,7 +230,7 @@ parser.add_argument(
metavar="HOSTNAME[,HOSTNAME]",
default=[],
help="""
- comma-separated list of hostnames for initial scan (may be used with
+ comma-separated list of hostnames for initial scan (may be used with
or without --auto-hosts)
"""
)