bump up the default banner timeout to 15 seconds and make it configurable via (undocumented) Transport.banner_timeout
This commit is contained in:
parent
37dd98bc61
commit
6e2f3b6548
|
@ -287,6 +287,7 @@ class Transport (threading.Thread):
|
||||||
self.auth_handler = None
|
self.auth_handler = None
|
||||||
self.global_response = None # response Message from an arbitrary global request
|
self.global_response = None # response Message from an arbitrary global request
|
||||||
self.completion_event = None # user-defined event callbacks
|
self.completion_event = None # user-defined event callbacks
|
||||||
|
self.banner_timeout = 15 # how long (seconds) to wait for the SSH banner
|
||||||
|
|
||||||
# server mode:
|
# server mode:
|
||||||
self.server_mode = False
|
self.server_mode = False
|
||||||
|
@ -1411,9 +1412,10 @@ class Transport (threading.Thread):
|
||||||
def _check_banner(self):
|
def _check_banner(self):
|
||||||
# this is slow, but we only have to do it once
|
# this is slow, but we only have to do it once
|
||||||
for i in range(5):
|
for i in range(5):
|
||||||
# give them 5 seconds for the first line, then just 2 seconds each additional line
|
# give them 15 seconds for the first line, then just 2 seconds
|
||||||
|
# each additional line. (some sites have very high latency.)
|
||||||
if i == 0:
|
if i == 0:
|
||||||
timeout = 5
|
timeout = self.banner_timeout
|
||||||
else:
|
else:
|
||||||
timeout = 2
|
timeout = 2
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in New Issue