puppet/modules/rhizo_base/files/SysmoBTS/mgr

23 lines
352 B
Text

#!/usr/bin/expect -f
spawn telnet localhost 4252
expect ">"
send "enable\r"
expect "#"
send "logging enable\r"
expect "#"
send "logging level all everything\r"
expect "#"
send "logging print category 1\r"
expect "#"
send "logging level set-all error\r"
expect "#"
send "logging filter all 1\r"
expect "#"
send "show manager\r"
expect "#"
interact