![]() |
Available news archives:
comp.lang.tcl
-
comp.lang.python
-
comp.security.firewalls
-
sci.crypt -
comp.lang.php -
comp.lang.javascript
|
|
comp.lang.python archiveRe: telnetlib problems
From: <vercingetorix52@yahoo.com>
Date: Tue Feb 28 2006 - 20:28:12 CET
I just hit upon something that seems to work...
##########################
tn = telnetlib.Telnet('192.168.100.11')
tn.read_until('login: ', 5)
tn.read_until('Password: ', 5)
tn.read_until('bash-2.05$ ', 5)
If anyone sees any potential problems with this, I would appreciate it.
|