텔넷에 접속해서 명령어를 입력하는 VB 스크립트
[test.vbs]
#$language = "VBScript"
#$interface = "1.0"
Sub main
Dim telnetpt
Dim loginpt
Dim passpt
Dim prompt
Dim exitpt
loginpt = "ogin: "
passpt = "assword:"
prompt = "$ "
exitpt = "exit" & VbCr
telnet1 = "telnet IP_Address " & VbCr
' turn on synchronous mode so we don't miss any data
crt.Screen.Synchronous = True
crt.Screen.WaitForString prompt
crt.Screen.Send telnet1
' Wait for a string that looks like "login: " or "Login: "
crt.Screen.WaitForString loginpt
' Send your username followed by a carriage return
crt.Screen.Send "userid" & VbCr
' Wait for a tring that looks like "password: " or "Password: "
crt.Screen.WaitForString passpt
' Send your password followed by a carriage return
crt.Screen.Send "userpw" & VbCr
' Send your password followed by a carriage return
crt.Screen.WaitForString prompt
crt.Screen.Send "pwd " & VbCr
crt.Screen.WaitForString prompt
crt.Screen.Send exitpt
' turn off synchronous mode to restore normal input processing
crt.Screen.Synchronous = False
End Sub
'Devlopment > Web' 카테고리의 다른 글
request.getRemoteAddr()가 0:0:0:0:0:0:0:1이 나오는 이유 (0) | 2011.08.31 |
---|---|
iPhone Web App 만들기 (0) | 2011.06.15 |
Mobile용 Meta Tag (2) | 2011.06.15 |
서버사이드 자바스크립트 기술 (0) | 2011.06.14 |
이클립스, 톰캣 개발 환경 구축 (0) | 2010.12.22 |
try문 안에서 변수 값 (0) | 2010.06.04 |
원래 창 페이지 이동 (0) | 2009.03.05 |
substring (1) | 2008.09.17 |
PHP 문자셋 바꾸기 (0) | 2008.08.25 |
시간 체크 (0) | 2008.07.21 |