blob: 2c6587ae0cb4a7e554ceb684270f10db292ac731 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
help: Show currently monitored services
run: echo "------------------------------"
echo "Background monitoring sessions"
echo "------------------------------"
${vyatta_bindir}/vyatta-monitor-list
echo
echo "------------------------------"
echo " Protocol monitoring status"
echo "------------------------------"
for proto in bgp ospf rip ospfv3 ripng; do
show monitoring protocols $proto
done
|