Add BTS side NS check script

This commit is contained in:
Keith Whyte 2021-06-04 08:32:26 +02:00
parent c630031686
commit 1ffc4a47c7
2 changed files with 19 additions and 9 deletions

View file

@ -0,0 +1,11 @@
#!/usr/bin/expect -f
spawn telnet localhost 4240
expect ">"
send "enable\r"
expect "#"
send "show ns\r"
expect "#"
send "exit\r"
expect "#"