tmy Posted June 11, 2004 Posted June 11, 2004 I was able to set up a batch file to open a telnet session, but I still have to type in my username and password for the session to actually start. Is there any way to set up the batch file to automatically enter my username and password?In other words, I want to login automatically without typing the username and password everytime. (Like loginng in a router via telnet automatically)
LaRcOs Posted June 11, 2004 Posted June 11, 2004 telnet [-a][-e escape char][-f log file][-l user][-t term][host [port]] -a Attempt automatic logon. Same as -l option except uses the currently logged on user's name. -e Escape character to enter telnet client prompt. -f File name for client side logging -l Specifies the user name to log in with on the remote system. Requires that the remote system support the TELNET ENVIRON option. -t Specifies terminal type. Supported term types are vt100, vt52, ansi and vtnt only. host Specifies the hostname or IP address of the remote computer to connect to. port Specifies a port number or service name.Those are the commands for a telnet session - from what it says basically you should be able to use -a or -l to automatically log in - provided the server supports the "TELNET ENVIRON" option - hope this helps
tmy Posted June 11, 2004 Author Posted June 11, 2004 Thanx a lot for your reply!!!!!!!I tried it several times but couldnot be able to get through. Whether I enter the username/password in the bat file or not, it's same I have to enter the username and password everytime whenever i login.Can someone give me a sample telnet batch file?Manual attempt (at command prompt):C:\>telnet XX.XX.XX.XX [enter]after pressing enter it ask for the username (The command prompt windows clears and the Username appear at the top left corner of the command prompt windows, it seems to be a new window only with "Username:" text)Username: XXXXXXAfter entering the Username, it ask for passwordPassword: XXXXXXAfter entering the password the router's info homepage is displayed========================================== RouterVersion: XXXXXXXXModel: XXXXXXXX===========================================>--------------------------------------------------This is my sample session.Batch file which i used earlier:@echo offStart C:\windows\system32\telnet XX.XX.XX.XX===================================I also tried the -l and -a option but it doesn't worked.Can someone guide me in the right direction?Thanks in advance.
LaRcOs Posted June 15, 2004 Posted June 15, 2004 As far as i can see from the doco that i have read.There isnt anything that can automate the password section? - Correct me if im wrong people...Basically, -a will log you will pass your current username...I.E telnet www.blahblahblah.com -aShould pass your username, not a passwordWhereastelnet www.blahblahblah.com -l AdminShould pass the username "admin" and again no password.As far as i can see there isnt much in the way of passing a Password.Sorry i couldnt be of more help.
/\/\o\/\/ Posted June 15, 2004 Posted June 15, 2004 you will need a 3th party Telnetclient, that can be scriptedthere are some share / freeware availablegr /\/\o\/\/
arlanne2 Posted September 22, 2011 Posted September 22, 2011 here you go, copy this text to notepad and save this file to .vbsSet cloner = CreateObject("WScript.Shell")cloner.run"cmd"WScript.Sleep 500cloner.SendKeys"telnet 0.0.0.0"cloner.SendKeys("{Enter}")WScript.Sleep 500cloner.SendKeys"username here"cloner.SendKeys("{Enter}")WScript.Sleep 500cloner.SendKeys"password here"cloner.SendKeys("{Enter}")WScript.Sleep 500cloner.SendKeys"exit"cloner.SendKeys("{Enter}")WScript.Sleep 300cloner.SendKeys"exit"cloner.SendKeys("{Enter}")
louisputtick Posted February 25, 2013 Posted February 25, 2013 here you go, copy this text to notepad and save this file to .vbsSet cloner = CreateObject("WScript.Shell")cloner.run"cmd"WScript.Sleep 500cloner.SendKeys"telnet 0.0.0.0"cloner.SendKeys("{Enter}")WScript.Sleep 500cloner.SendKeys"username here"cloner.SendKeys("{Enter}")WScript.Sleep 500cloner.SendKeys"password here"cloner.SendKeys("{Enter}")WScript.Sleep 500cloner.SendKeys"exit"cloner.SendKeys("{Enter}")WScript.Sleep 300cloner.SendKeys"exit"cloner.SendKeys("{Enter}")Thanks for the vbs, was being dozy and trying to use bat :-)
tain Posted February 25, 2013 Posted February 25, 2013 You could also use Expect or Empty for interactive scripting.
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now