1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
|
#!/usr/bin/env python3
#
# Copyright (C) 2020-2023 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 argparse
from vyos.config import Config
from vyos.utils.process import popen
from vyos.utils.process import run
cmd_dict = {
'cmd_base' : '/usr/bin/accel-cmd -p 2002 ',
'selector' : ['if', 'username', 'sid'],
'actions' : {
'show_sessions' : 'show sessions',
'show_stat' : 'show stat',
'terminate' : 'teminate'
}
}
def is_ipoe_configured():
if not Config().exists_effective('service ipoe-server'):
print("Service IPoE is not configured")
sys.exit(1)
def main():
#parese args
parser = argparse.ArgumentParser()
parser.add_argument('--action', help='Control action', required=True)
parser.add_argument('--selector', help='Selector username|ifname|sid', required=False)
parser.add_argument('--target', help='Target must contain username|ifname|sid', required=False)
args = parser.parse_args()
# Check is IPoE configured
is_ipoe_configured()
if args.action == "restart":
run(cmd_dict['cmd_base'] + "restart")
sys.exit(0)
if args.action in cmd_dict['actions']:
if args.selector in cmd_dict['selector'] and args.target:
run(cmd_dict['cmd_base'] + "{0} {1} {2}".format(args.action, args.selector, args.target))
else:
output, err = popen(cmd_dict['cmd_base'] + cmd_dict['actions'][args.action], decode='utf-8')
if not err:
print(output)
else:
print("IPoE server is not running")
if __name__ == '__main__':
main()
|