mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-25 09:23:48 +01:00
Merge pull request #544 from skuhl/fix-no-remote
Allow no remote to work.
This commit is contained in:
commit
ac3ccb769a
@ -569,9 +569,9 @@ def main(listenip_v6, listenip_v4,
|
|||||||
user, sudo_pythonpath):
|
user, sudo_pythonpath):
|
||||||
|
|
||||||
if not remotename:
|
if not remotename:
|
||||||
# XXX: We can't make it required at the argparse level,
|
print("WARNING: You must specify -r/--remote to securely route "
|
||||||
# because sshuttle calls out to itself in FirewallClient.
|
"traffic to a remote machine. Running without -r/--remote "
|
||||||
raise Fatal("You must specify -r/--remote.")
|
"is only recommended for testing.")
|
||||||
|
|
||||||
if daemon:
|
if daemon:
|
||||||
try:
|
try:
|
||||||
|
@ -43,6 +43,8 @@ def parse_hostport(rhostport):
|
|||||||
"""
|
"""
|
||||||
# leave use of default port to ssh command to prevent overwriting
|
# leave use of default port to ssh command to prevent overwriting
|
||||||
# ports configured in ~/.ssh/config when no port is given
|
# ports configured in ~/.ssh/config when no port is given
|
||||||
|
if rhostport is None or len(rhostport) == 0:
|
||||||
|
return None, None, None, None
|
||||||
port = None
|
port = None
|
||||||
username = None
|
username = None
|
||||||
password = None
|
password = None
|
||||||
|
Loading…
Reference in New Issue
Block a user