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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
#!/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 os
import time
import ipaddress
from vyos.config import Config
from vyos.util import ConfigError
config_file = r'/etc/ntp.conf'
def get_config():
ntp = {}
conf = Config()
conf.set_level('system ntp')
if not conf.exists(''):
return ntp
if conf.exists('allow-clients address'):
ntp.setdefault('allow-networks', [])
networks = []
networks = conf.return_values('allow-clients address')
for network in networks:
ntp['allow-networks'].append(network)
if conf.exists('server'):
ntp.setdefault('servers', [])
for node in conf.list_nodes('server'):
server = {
"name": node,
"dynamic": False,
"noselect": False,
"preempt": False,
"prefer": False,
}
if conf.exists('server {0} dynamic'.format(node)):
server['dynamic'] = True
if conf.exists('server {0} noselect'.format(node)):
server['noselect'] = True
if conf.exists('server {0} preempt'.format(node)):
server['preempt'] = True
if conf.exists('server {0} prefer'.format(node)):
server['prefer'] = True
ntp['servers'].append(server)
return ntp
def verify(ntp):
if 'allow-networks' in ntp.keys():
for network in ntp['allow-networks']:
try:
addr = ipaddress.ip_network(network)
except ValueError:
raise ConfigError("{0} does not appear to be a valid IPv4 or IPv6 network, check host bits.".format(network))
return None
def generate(ntp):
config_header = '### Autogenerated by vyos-config-ntp.py on {tm} ###\n'.format(tm=time.strftime("%a, %d %b %Y %H:%M:%S", time.localtime()))
# write new configuration file
f = open(config_file, 'w')
f.write(config_header)
f.write('\n')
f.write('driftfile /var/lib/ntp/ntp.drift\n')
f.write('\n')
f.write('# By default, only allow ntpd to query time sources, ignore any incoming requests\n')
f.write('restrict default ignore\n')
f.write('\n')
f.write('# Local users have unrestricted access, allowing reconfiguration via ntpdc\n')
f.write('restrict 127.0.0.1\n')
f.write('restrict -6 ::1\n')
f.write('\n')
if 'servers' in ntp.keys():
for server in ntp['servers']:
opt = ['dynamic', 'noselect', 'preempt', 'prefer']
f.write('# Server configuration for: {0}\n'.format(server['name']))
f.write('server {0} iburst {1}\n'.format(server['name'], '{0}'.format(' '.join(str(o) for o in opt if server[o]))))
f.write('restrict {0} nomodify notrap nopeer noquery\n'.format(server['name']))
f.write('\n')
if 'allow-networks' in ntp.keys():
for network in ntp['allow-networks']:
addr = ipaddress.ip_network(network)
f.write('# Client configuration for network: {0}\n'.format(network))
f.write('restrict {0} mask {1} nomodify notrap nopeer\n'.format(addr.network_address, addr.netmask))
f.write('\n')
f.close()
return None
def apply(ntp):
if len(ntp) == 0:
cmd = "sudo /usr/sbin/invoke-rc.d ntp stop"
else:
cmd = "sudo /usr/sbin/invoke-rc.d ntp force-reload"
os.system(cmd)
return None
if __name__ == '__main__':
try:
c = get_config()
verify(c)
generate(c)
apply(c)
except ConfigError as e:
print(e)
sys.exit(1)
|