Page Menu
Home
VyOS Platform
Search
Configure Global Search
Log In
Files
F117521208
vrrp.py
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
vrrp.py
View Options
#!/usr/bin/env python3
#
# Copyright (C) 2018 VyOS maintainers and contributors
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License version 2 or later as
# published by the Free Software Foundation.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
#
import
sys
import
time
import
argparse
import
json
import
tabulate
import
vyos.util
from
vyos.ifconfig.vrrp
import
VRRP
from
vyos.ifconfig.vrrp
import
VRRPError
parser
=
argparse
.
ArgumentParser
()
group
=
parser
.
add_mutually_exclusive_group
()
group
.
add_argument
(
"-s"
,
"--summary"
,
action
=
"store_true"
,
help
=
"Print VRRP summary"
)
group
.
add_argument
(
"-t"
,
"--statistics"
,
action
=
"store_true"
,
help
=
"Print VRRP statistics"
)
group
.
add_argument
(
"-d"
,
"--data"
,
action
=
"store_true"
,
help
=
"Print detailed VRRP data"
)
args
=
parser
.
parse_args
()
# Exit early if VRRP is dead or not configured
if
not
VRRP
.
is_running
():
print
(
'VRRP is not running'
)
sys
.
exit
(
0
)
if
args
.
summary
:
print
(
VRRP
.
format
(
VRRP
.
collect
(
'json'
)))
elif
args
.
statistics
:
print
(
VRRP
.
collect
(
'stats'
))
elif
args
.
data
:
print
(
VRRP
.
collect
(
'state'
))
else
:
parser
.
print_help
()
sys
.
exit
(
1
)
File Metadata
Details
Attached
Mime Type
text/x-script.python
Expires
Sat, Sep 26, 2:19 PM (1 d, 12 h)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
4284273
Default Alt Text
vrrp.py (1 KB)
Attached To
Mode
rVYOSONEX vyos-1x
Attached
Detach File
Event Timeline
Log In to Comment