11 lines
142 B
Text
11 lines
142 B
Text
#!/usr/bin/expect -f
|
|
|
|
spawn telnet localhost 4240
|
|
expect ">"
|
|
send "enable\r"
|
|
expect "#"
|
|
send "show ns\r"
|
|
expect "#"
|
|
send "exit\r"
|
|
expect "#"
|
|
|