Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

embedding an expect in a tcl script to read the state of a modem

Status
Not open for further replies.

vsandilya

Technical User
Oct 17, 2012
1
US
Hello

I have a very simple tcl script which embeds expect to spawn a telnet to a modem and read its state.

Here it is

#!/usr/bin/tclsh
package require Expect
set modem "192.168.13.31"
proc state{arg} {
if {arg == 1} {
puts "modem will reboot"
send "atz\r"
close
}
if {arg == 0} {
puts 'modem is ready, nothing to do"
close
}
}
spawn telnet $modem 2332
expect "\nPassword: "
send "12345\r"
expect "\nOK"
send "at*netstate?\r"
expect {
"*Ready*" {[state 1]}
"*Dormant*" {[state 0]}
}
#end of script

What I am trying to accomplish is to establish a connection to the modem, read its state by sending "at*netstate?\r" and depending on what the state is, call proc state to either reset the modem or not. I can't seem to get this to work. Is what I am doing even legitimate? Should I be using interact with -o and -re options to raed from a spawned process instead?

Thanks for any help.




 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top