summaryrefslogtreecommitdiff
path: root/src/conf_mode/vrf.py
diff options
context:
space:
mode:
authorChristian Poessinger <christian@poessinger.com>2022-03-31 21:21:39 +0200
committerGitHub <noreply@github.com>2022-03-31 21:21:39 +0200
commit86168af4b95c64452e3f049e4f4c15cbaf55caff (patch)
tree5309ccac8b067407b49e89499a3768580bb936b0 /src/conf_mode/vrf.py
parent77f9fc8e9358d5e1d3bbf700b31865e4dc266491 (diff)
parenta33b737b753843501c86eee744aef75137d2b64e (diff)
downloadvyos-1x-86168af4b95c64452e3f049e4f4c15cbaf55caff.tar.gz
vyos-1x-86168af4b95c64452e3f049e4f4c15cbaf55caff.zip
Merge pull request #1258 from c-po/t4319-disable-ipv6
T4319: bugfixes for disabled IPv6 (current)
Diffstat (limited to 'src/conf_mode/vrf.py')
-rwxr-xr-xsrc/conf_mode/vrf.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/src/conf_mode/vrf.py b/src/conf_mode/vrf.py
index 6a521a0dd..c3e2d8efd 100755
--- a/src/conf_mode/vrf.py
+++ b/src/conf_mode/vrf.py
@@ -30,6 +30,7 @@ from vyos.util import get_interface_config
from vyos.util import popen
from vyos.util import run
from vyos.util import sysctl_write
+from vyos.util import is_ipv6_enabled
from vyos import ConfigError
from vyos import frr
from vyos import airbag
@@ -215,10 +216,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', ''))