minicom script를 만들었는데 에러가 나는군요.
goto GetPromptGetPrompt:
send ""
expect {
">" send "enable"
"word:" send "0000"
"config)#" goto addlist1
"config-if)#" send "exit"
"#" send "config terminal"
}addlist1:
send "access-list 100 deny tcp host 111.111.111.111 eq 10 host 111.111.111.1"
expect {
"config)#" goto addlist2
timeout 3 exit
}addlist2:
send "access-list 100 deny udp any 1.1.1.1 0.0.0.0"
expect {
"config)#" goto addlist3
timeout 3 exit
}addlist3:
send "access-list 100 deny udp any 1.1.1.1 0.0.0.0"
expect {
"config)#" goto add_end
timeout 3 exit
}add_end:
send "access-list 100 permit ip any any"
expect {
"config)#" goto interface
timeout 3 exit
}interface:
send "interface serial 0"
expect {
"config-if)#" goto access-group
timeout 3 exit
}access-group:
send "ip access-group 100 in"
expect {
"config-if)#" goto killall
timeout 3 exit
}killall:
! killall -9 minicom
exit
failed:
print \nLogin Failed
exit
시스코 1721 라우터를 콘솔로 제어하기 위해 스크립트를 테스트 해봤는데요.
문제는 addlist1: 부분에서 에러가 납니다.
send <string>에서 string 길이가 좀 길어지니깐 여지없이 에러를 일으키는군요.
Welcome to minicom 2.00.0
OPTIONS: History Buffer, F-key Macros, Search History Buffer, I18n
Compiled on Sep 12 2003, 17:27:02.Press CTRL-A Z for help on special keys
Cisco1721(config)#script "CiscoSerialInsertTemplate": syntax error in line 14 (word contains ESC or quote)
뭐가 문젠지 감이 안잡히네요...
minicom에서 script 쓰신분들 좀 알려주세요~
Re: minicom script를 만들었는데 에러가 나는군요.
14번째 줄을 보니..
큰따옴표가 안닫혀 있네요.
복사 하다가 끊어졌군요...
복사 하다가 끊어졌군요...
따옴표는 들어가 있습니다 ^^;;;; 죄송..
댓글 달기