mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-11-01 19:28:00 +00:00
Clean up login
This commit is contained in:
@@ -397,10 +397,10 @@ def main():
|
|||||||
found_escape = False
|
found_escape = False
|
||||||
#9800 series
|
#9800 series
|
||||||
if args.series == "9800":
|
if args.series == "9800":
|
||||||
while logged_in_9800 == False and loop_count <= 2:
|
while logged_in_9800 == False and loop_count <= 7:
|
||||||
loop_count += 1
|
loop_count += 1
|
||||||
#logg.info("9800 establishing Telnet egg {} ".format(egg))
|
#logg.info("9800 establishing Telnet egg {} ".format(egg))
|
||||||
sleep(2)
|
#sleep(2)
|
||||||
egg.sendline(CR)
|
egg.sendline(CR)
|
||||||
sleep(0.4)
|
sleep(0.4)
|
||||||
try:
|
try:
|
||||||
@@ -417,6 +417,56 @@ def main():
|
|||||||
#egg.sendline(CR)
|
#egg.sendline(CR)
|
||||||
found_escape = True
|
found_escape = True
|
||||||
sleep(0.1)
|
sleep(0.1)
|
||||||
|
|
||||||
|
if i == 1:
|
||||||
|
logg.info("9800 found WLC> will elevate loging i:{} before {} after {}".format(i,egg.before,egg.after))
|
||||||
|
egg.sendline("en")
|
||||||
|
sleep(0.1)
|
||||||
|
|
||||||
|
if i == 2:
|
||||||
|
logg.info("9800 found WLC# i:{} before {} after {}".format(i,egg.before,egg.after))
|
||||||
|
logged_in_9800 = True
|
||||||
|
sleep(0.1)
|
||||||
|
|
||||||
|
if i == 3:
|
||||||
|
logg.info("9800 found User will put in args.user {} i:{} before {} after {}".format(args.user,i,egg.before,egg.after))
|
||||||
|
egg.sendline(args.user)
|
||||||
|
sleep(0.1)
|
||||||
|
|
||||||
|
if i == 4:
|
||||||
|
logg.info("9800 received password prompt will send password: {} i:{} before {} after {}".format(args.passwd,i, egg.before,egg.after))
|
||||||
|
egg.sendline(args.passwd)
|
||||||
|
sleep(0.1)
|
||||||
|
|
||||||
|
if i == 5:
|
||||||
|
logg.info("9800 received WLC(config)# prompt doing some cleanup")
|
||||||
|
egg.sendline("end")
|
||||||
|
sleep(0.1)
|
||||||
|
|
||||||
|
if i == 7 or i == 6:
|
||||||
|
logg.info("9800 Timed out waiting for initial prompt send logout loop_count: {} i: {} before {} after {}".format(loop_count, i, egg.before,egg.after))
|
||||||
|
logg.info("9800 Closing the connection and try to re-establish, ")
|
||||||
|
egg.close(force = True)
|
||||||
|
sleep(0.4)
|
||||||
|
#egg.close(force = True)
|
||||||
|
#sleep(0.2)
|
||||||
|
|
||||||
|
# re establish telnet
|
||||||
|
cmd = "telnet %s %d"%(host, port)
|
||||||
|
logg.info("Spawn: "+cmd+NL)
|
||||||
|
egg = pexpect.spawn(cmd)
|
||||||
|
egg.logfile = FileAdapter(logg)
|
||||||
|
time.sleep(2)
|
||||||
|
logged_in_9800 = False
|
||||||
|
found_escape = False
|
||||||
|
|
||||||
|
|
||||||
|
#####################################
|
||||||
|
'''if i == 0:
|
||||||
|
logg.info("9800 found Escape character is '^] i:{} before: {} after: {}".format(i,egg.before,egg.after))
|
||||||
|
#egg.sendline(CR)
|
||||||
|
found_escape = True
|
||||||
|
sleep(0.1)
|
||||||
j = egg.expect_exact(["WLC>","WLC#","User:","Password:",pexpect.TIMEOUT],timeout=3)
|
j = egg.expect_exact(["WLC>","WLC#","User:","Password:",pexpect.TIMEOUT],timeout=3)
|
||||||
sleep(0.1)
|
sleep(0.1)
|
||||||
if j == 0:
|
if j == 0:
|
||||||
@@ -625,9 +675,9 @@ def main():
|
|||||||
egg.logfile = FileAdapter(logg)
|
egg.logfile = FileAdapter(logg)
|
||||||
time.sleep(2)
|
time.sleep(2)
|
||||||
logged_in_9800 = False
|
logged_in_9800 = False
|
||||||
found_escape = False
|
found_escape = False'''
|
||||||
|
|
||||||
if loop_count >= 3:
|
if loop_count >= 6:
|
||||||
if found_escape == True:
|
if found_escape == True:
|
||||||
logg.info("9800 there may be another prompt present that not aware of")
|
logg.info("9800 there may be another prompt present that not aware of")
|
||||||
logg.info("9800 will send escape to close telnet")
|
logg.info("9800 will send escape to close telnet")
|
||||||
|
|||||||
Reference in New Issue
Block a user