diff options
author | Christian Poessinger <christian@poessinger.com> | 2022-03-30 19:19:24 +0200 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2022-03-30 23:10:16 +0200 |
commit | 138d8ecd528ea0104b2194af0a1e8b330438da8f (patch) | |
tree | d686edf39465e9656e156dd7bbed4854c67a8540 | |
parent | e3626da307d66c34e4ce12c7c38cdb8fa5da9889 (diff) | |
download | vyos-1x-138d8ecd528ea0104b2194af0a1e8b330438da8f.tar.gz vyos-1x-138d8ecd528ea0104b2194af0a1e8b330438da8f.zip |
vrf: T4319: do not add IPv6 localhost address if IPv6 is disabled
(cherry picked from commit c33a96f6f0f0259808992b246b1a550fcf9a454a)
-rwxr-xr-x | src/conf_mode/vrf.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/conf_mode/vrf.py b/src/conf_mode/vrf.py index dd1739087..fb2182fff 100755 --- a/src/conf_mode/vrf.py +++ b/src/conf_mode/vrf.py @@ -27,6 +27,7 @@ from vyos.util import call from vyos.util import cmd from vyos.util import dict_search from vyos.util import sysctl_write +from vyos.util import is_ipv6_enabled from vyos import ConfigError from vyos import airbag airbag.enable() @@ -194,10 +195,11 @@ def apply(vrf): # set VRF description for e.g. SNMP monitoring vrf_if = Interface(name) - # We also should add proper loopback IP addresses to the newly - # created VRFs for services bound to the loopback address (SNMP, NTP) + # We also should add proper loopback IP addresses to the newly added + # VRF for services bound to the loopback address (SNMP, NTP) vrf_if.add_addr('127.0.0.1/8') - vrf_if.add_addr('::1/128') + if is_ipv6_enabled(): + vrf_if.add_addr('::1/128') # add VRF description if available vrf_if.set_alias(config.get('description', '')) |