From 3d599ab9a94742432aa7d4578630f19af1700716 Mon Sep 17 00:00:00 2001 From: J vanBemmel Date: Tue, 5 Nov 2024 12:31:02 -0600 Subject: [PATCH] OS10: Disable ipv6 on loopback if not configured --- netsim/ansible/templates/initial/dellos10.j2 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/netsim/ansible/templates/initial/dellos10.j2 b/netsim/ansible/templates/initial/dellos10.j2 index e00d8a6532..fbd1980143 100644 --- a/netsim/ansible/templates/initial/dellos10.j2 +++ b/netsim/ansible/templates/initial/dellos10.j2 @@ -22,6 +22,8 @@ interface loopback0 {% endif %} {% if 'ipv6' in loopback %} ipv6 address {{ loopback.ipv6 }} +{% else %} + no ipv6 enable {% endif %} ! interface {{ mgmt.ifname|default('mgmt1/1/1') }}