diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-07-04 20:23:27 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-07-04 20:23:27 +0200 |
commit | 6732df1edd632b56d3d02970939f51d05d4262e9 (patch) | |
tree | c79a000f0b75334cbf9fb4e30056ac6f1b0693a3 /src | |
parent | 6bcb2b15babbb2a580439aad2463b1b18d5508a9 (diff) | |
download | vyos-1x-6732df1edd632b56d3d02970939f51d05d4262e9.tar.gz vyos-1x-6732df1edd632b56d3d02970939f51d05d4262e9.zip |
ntp: T4456: support listening on specified interface
When clients only use DHCP for interface addressing we can not bind NTPd to
an address - as it will fail if the address changes. This commit adds support
to bind ntpd to a given interface in addition to a given address.
set system ntp interface <name>
Diffstat (limited to 'src')
-rwxr-xr-x | src/conf_mode/ntp.py | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/src/conf_mode/ntp.py b/src/conf_mode/ntp.py index 0d6ec9ace..7be150ed2 100755 --- a/src/conf_mode/ntp.py +++ b/src/conf_mode/ntp.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -# Copyright (C) 2018-2021 VyOS maintainers and contributors +# Copyright (C) 2018-2022 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 @@ -18,9 +18,11 @@ import os from vyos.config import Config from vyos.configverify import verify_vrf -from vyos import ConfigError +from vyos.configverify import verify_interface_exists from vyos.util import call +from vyos.util import get_interface_config from vyos.template import render +from vyos import ConfigError from vyos import airbag airbag.enable() @@ -48,6 +50,19 @@ def verify(ntp): if 'allow_clients' in ntp and 'server' not in ntp: raise ConfigError('NTP server not configured') + if 'interface' in ntp: + # If ntpd should listen on a given interface, ensure it exists + for interface in ntp['interface']: + verify_interface_exists(interface) + + # If we run in a VRF, our interface must belong to this VRF, too + if 'vrf' in ntp: + tmp = get_interface_config(interface) + vrf_name = ntp['vrf'] + if 'master' not in tmp or tmp['master'] != vrf_name: + raise ConfigError(f'NTP runs in VRF "{vrf_name}" - "{interface}" '\ + f'does not belong to this VRF!') + verify_vrf(ntp) return None |