I am looking for some suggestion on using a dialog popup to request user name and password, then insert them into my script to log into a remote system. Currently I use this and have to manually have users change the 12345 to username and 67890 to their password.
Any suggestion would be great!
proc login
dialnumber TELNET "1.1.1.1"
waitfor "^@login: "
transmit "12345^M"
waitfor "Password: "
transmit "67890^M"
endproc
Any suggestion would be great!
proc login
dialnumber TELNET "1.1.1.1"
waitfor "^@login: "
transmit "12345^M"
waitfor "Password: "
transmit "67890^M"
endproc