From 038486a133e19a481595a2c75571b2e0ce5125ef Mon Sep 17 00:00:00 2001 From: Ivan Pepelnjak Date: Fri, 12 Sep 2025 10:21:06 +0200 Subject: [PATCH 1/6] Fix: Use iterator on ipaddress IPv6 hosts to keep mypy happy mypy release 1.18.1 includes stricter checks of ipaddress return values, so we have to wrap the iterator of IPv6 hosts into another iterator just to keep it happy :( See https://github.com/python/typeshed/pull/14658 for details --- netsim/modules/srv6.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netsim/modules/srv6.py b/netsim/modules/srv6.py index 8dfa653799..f4be9a0da0 100644 --- a/netsim/modules/srv6.py +++ b/netsim/modules/srv6.py @@ -107,7 +107,7 @@ def node_pre_transform(self, node: Box, topology: Box) -> None: node.srv6.locator = locator locator_net = ipaddress.IPv6Network(locator) if node.get('srv6.allocate_loopback'): # Auto-assign a loopback from locator range - first_host = next(locator_net.hosts()) # Use first usable address + first_host = next(iter(locator_net.hosts())) # Use first usable address prefix6 = topology.pools['loopback'].get('prefix6',64) # Use loopback.prefix6, default /64 node.loopback.ipv6 = ipaddress.IPv6Interface((first_host, prefix6)).with_prefixlen From c4eb43a895870dfa76faeb80b6d8dbbb66c3abfb Mon Sep 17 00:00:00 2001 From: Ivan Pepelnjak Date: Fri, 12 Sep 2025 10:37:08 +0200 Subject: [PATCH 2/6] vPTX[B]: Support for vJunosEVO release 24/25 (#2673/#2678) * vPTX: Vagrant/libvirt changes needed to support release 24.1+ * vPTX[B]: Support for vJunosEVO release 24/25 (#2673) Fixes #2644 --------- Co-authored-by: Stefano Sasso <852093+ssasso@users.noreply.github.com> --- docs/caveats.md | 2 +- netsim/devices/vptx.yml | 2 +- netsim/install/libvirt/vptx.xml.j2 | 2 ++ .../templates/provider/libvirt/vptx-domain.j2 | 20 +++++++++---------- 4 files changed, 13 insertions(+), 13 deletions(-) diff --git a/docs/caveats.md b/docs/caveats.md index f4144997ba..ada4ff3b88 100644 --- a/docs/caveats.md +++ b/docs/caveats.md @@ -350,7 +350,7 @@ You can change the license file parameters within a node definition or with **de * *netlab* supports only vJunosEvolved releases that do not require external PFE- and RPIO links. The first vJunosEvolved release implementing internal PFE- and RPIO links is the release 23.2R1-S1.8. * vJunosEvolved software is supposed to be run on an Intel CPU. _netlab_ implements the hacks [suggested by Juniper to run vJunos on an AMD CPU](https://www.juniper.net/documentation/us/en/software/nce/nce-510-virtual-switches-mist-cloud-managed/amd-cpu_unofficial_tweaks.html), but please note that this is not supported. -* _netlab_ can start virtual machines running vJunosEvolved release 23.2 (release 24.1 and later requires UEFI BIOS). Use the vrnetlab-generated container as a workaround if you want to run vJunosEvolved release 24.1 or later. +* _netlab_ can start virtual machines running vJunosEvolved release 24.1+ (which requires UEFI BIOS - previous releases do not work with UEFI BIOS). Use the vrnetlab-generated container as a workaround if you want to run older vJunosEvolved releases. * _netlab_ supports the [vrnetlab-generated](https://containerlab.dev/manual/kinds/vr-vjunosevolved/) vJunosEvolved container, not the cJunosEvolved container. The differences between the two make it impossible to run both container versions as the same virtual device, and cJunosEvolved offers no significant advantages at the moment. * The vJunosEvolved container runs on Intel and AMD CPU. * The virtual MAC address of the anycast gateway is ignored. _netlab_, therefore, does not support the anycast gateway on vPTX. diff --git a/netsim/devices/vptx.yml b/netsim/devices/vptx.yml index 4536a6c352..280cf1dc3f 100644 --- a/netsim/devices/vptx.yml +++ b/netsim/devices/vptx.yml @@ -24,7 +24,7 @@ libvirt: create_template: vptx.xml.j2 clab: - image: vrnetlab/juniper_vjunosevolved:23.4R2-S2.1 + image: vrnetlab/juniper_vjunosevolved:25.2R1.8-EVO build: https://containerlab.dev/manual/kinds/vr-vjunosevolved/ mtu: 1500 node: diff --git a/netsim/install/libvirt/vptx.xml.j2 b/netsim/install/libvirt/vptx.xml.j2 index f321de00ad..e1b28df0e4 100644 --- a/netsim/install/libvirt/vptx.xml.j2 +++ b/netsim/install/libvirt/vptx.xml.j2 @@ -63,6 +63,8 @@ + + diff --git a/netsim/templates/provider/libvirt/vptx-domain.j2 b/netsim/templates/provider/libvirt/vptx-domain.j2 index 54de49fea1..d4ff9531d0 100644 --- a/netsim/templates/provider/libvirt/vptx-domain.j2 +++ b/netsim/templates/provider/libvirt/vptx-domain.j2 @@ -12,14 +12,16 @@ domain.driver = "kvm" domain.nic_model_type = "virtio" domain.graphics_type = "none" + domain.video_type = "none" domain.nested = true - domain.cpu_mode = "custom" - domain.cpu_model = "qemu64" -{% if 'amd' in defaults.processor %} - domain.cpu_feature :name => 'svm', :policy => 'require' -{% else %} - domain.cpu_feature :name => 'vmx', :policy => 'require' -{% endif %} + +{# -- add if condition here for UEFI (rel >24) #} + domain.loader = "/usr/share/OVMF/OVMF_CODE_4M.fd" + domain.nvram = "/var/lib/libvirt/qemu/nvram/{{ name }}.fd" + + domain.machine_type = "q35" + domain.cpu_mode = "host-passthrough" + domain.sysinfo = { "bios": { "vendor": "Bochs", @@ -34,8 +36,4 @@ "manufacturer": "Bochs" } } - - {% if "amd" in defaults.processor|lower %} - domain.cpu_mode = "custom" - {% endif %} end From 30a658ed2a2234c17d51211250bbabb203dc1bba Mon Sep 17 00:00:00 2001 From: Ivan Pepelnjak Date: Fri, 12 Sep 2025 16:42:23 +0200 Subject: [PATCH 3/6] SRLinux: Use Linux-style /etc/hosts files (#2677) We cannot define host-to-IP mappings with the SR Linux CLI because containerlab already defined the hosts in /etc/hosts (see #2676 for details). However, we can create /etc/hosts file in advance, and then containerlab only adds its entries which due to some SRL magic work as expected across multiple network instances. --- netsim/devices/srlinux.yml | 4 +++- .../provider/clab/srlinux/hosts-common.j2 | 1 + netsim/templates/provider/clab/srlinux/hosts.j2 | 15 +++++++++++++++ 3 files changed, 19 insertions(+), 1 deletion(-) create mode 120000 netsim/templates/provider/clab/srlinux/hosts-common.j2 create mode 100644 netsim/templates/provider/clab/srlinux/hosts.j2 diff --git a/netsim/devices/srlinux.yml b/netsim/devices/srlinux.yml index f954044528..3d58460e04 100644 --- a/netsim/devices/srlinux.yml +++ b/netsim/devices/srlinux.yml @@ -25,7 +25,9 @@ clab: image: ghcr.io/nokia/srlinux:25.3.3 node: kind: srl - type: ixrd2 + type: ixr-d2 + config_templates: + hosts: /etc/hosts interface: name: e1-{ifindex} group_vars: diff --git a/netsim/templates/provider/clab/srlinux/hosts-common.j2 b/netsim/templates/provider/clab/srlinux/hosts-common.j2 new file mode 120000 index 0000000000..2681114f09 --- /dev/null +++ b/netsim/templates/provider/clab/srlinux/hosts-common.j2 @@ -0,0 +1 @@ +../../../../ansible/templates/initial/linux/hosts-common.j2 \ No newline at end of file diff --git a/netsim/templates/provider/clab/srlinux/hosts.j2 b/netsim/templates/provider/clab/srlinux/hosts.j2 new file mode 100644 index 0000000000..00476ef7f0 --- /dev/null +++ b/netsim/templates/provider/clab/srlinux/hosts.j2 @@ -0,0 +1,15 @@ +# +# Created by netlab (containerlab Linux host) +# +127.0.0.1 localhost +::1 localhost ip6-localhost ip6-loopback +fe00::0 ip6-localnet +ff00::0 ip6-mcastprefix +ff02::1 ip6-allnodes +ff02::2 ip6-allrouters +# +{% if _hosts_entries is defined %} +{{ _hosts_entries }} +{% else %} +{% include 'hosts-common.j2' %} +{% endif %} From 67187908a0236d00be7703119430da32534f2814 Mon Sep 17 00:00:00 2001 From: Ivan Pepelnjak Date: Fri, 12 Sep 2025 17:28:23 +0200 Subject: [PATCH 4/6] Implement per-VRF control of IGP address families (#2679) This change adds 'af' attribute to isis, ospf, and rip VRF parameters, allowing you to specify which address families you want to run with a VRF IGP instance. Implements #2398 --- docs/module/routing_protocols.md | 8 +++- docs/module/vrf.md | 2 + netsim/modules/_routing.py | 71 +++++++++++++++-------------- netsim/modules/isis.yml | 3 ++ netsim/modules/ospf.yml | 1 + netsim/modules/ripv2.yml | 1 + tests/topology/expected/vrf-igp.yml | 45 ++++++++++++++++++ tests/topology/input/vrf-igp.yml | 2 + 8 files changed, 96 insertions(+), 37 deletions(-) diff --git a/docs/module/routing_protocols.md b/docs/module/routing_protocols.md index a9a7e94f47..1a02ef53ff 100644 --- a/docs/module/routing_protocols.md +++ b/docs/module/routing_protocols.md @@ -37,10 +37,14 @@ nodes: (routing_af)= ## Address Families -Configuration modules for all IGP routing protocols that support multiple address families (IS-IS, EIGRP) or multiple protocol instances (OSPFv2, OSPFv3) support **_protocol_.af** global- or node-level module parameter. The **af** parameter can be a list- or a dictionary of address families. +Configuration modules for all IGP routing protocols that support multiple address families (IS-IS, EIGRP) or multiple protocol instances (OSPFv2, OSPFv3) support **_protocol_.af** global-, node-, or VRF-level module parameter. The **af** parameter can be a list or a dictionary of address families. The default value of the **af** parameter is set based on address families configured on loopback- or physical interfaces -- an address family is enabled within an IGP configuration on a device if at least one interface on that device has an IP address from that address family. +```{warning} +If you decide to set a **‌_protocol_.af** parameter, you MUST specify which address families should be active. Using the **af** parameter just to set an unwanted address family to *False* without enabling any other address family will result in no address families being used. +``` + **Example:** ``` @@ -61,7 +65,7 @@ nodes: r5: ``` -* IS-IS address families are enabled based on configured **isis.af** parameters +* IS-IS address families are enabled based on the configured **isis.af** parameters * **ospf.af** parameter is not set -- OSPFv2 or OSPFv3 are enabled based on address families used on individual nodes The following IS-IS address families are configured on individual routers: diff --git a/docs/module/vrf.md b/docs/module/vrf.md index bedaf83c48..27d8de8256 100644 --- a/docs/module/vrf.md +++ b/docs/module/vrf.md @@ -107,6 +107,8 @@ You can also set these parameters to influence routing protocols within a VRF. * **ospf.area** -- the default OSPF area for the VRF OSPF process (default: node **ospf.area**). It is configured on the VRF loopback interfaces. * **bgp.router_id** -- per-VRF BGP router ID. You have to set this parameter if you want to configure inter-VRF EBGP sessions between interfaces of the same device.[^ELB] * **ospf.router_id** -- per-VRF OSPF router ID. You can use this parameter for the same reasons as **bgp.router_id** or if you want consistent OSPF router IDs on Cisco IOS. +* **_igp_.af** -- specify the [address families](routing_af) you want to use with **isis**, **ospf**, or **rip** VRF instance. +* You can also specify OSPF route redistribution (**import**), **default** route origination, and default OSPF **password** and **timers**. [^ELB]: That's how some people implement inter-VRF route leaking. You don't want to know the details ;) diff --git a/netsim/modules/_routing.py b/netsim/modules/_routing.py index 3f545c8366..bf135809b5 100644 --- a/netsim/modules/_routing.py +++ b/netsim/modules/_routing.py @@ -25,38 +25,38 @@ # * If the address families are not set, calculate them based on interface address families # * Otherwise parse and validate the AF attribute # -def routing_af(node: Box, proto: str, features: typing.Optional[Box] = None) -> None: - if 'af' in node[proto]: # Is the AF attribute set for the routing protocol? - if isinstance(node[proto].af,list): # Turn a list of address families into a dictionary - node[proto].af = { af: True for af in node[proto].af } - - if node[proto].af is None: - node[proto].pop('af',None) - else: - if not isinstance(node[proto].af,dict): - log.error( - f'af attribute for {proto} on node {node.name} has to be a list or a dictionary', - log.IncorrectValue, - proto) - return - - for proto_af in node[proto].af.keys(): - if not proto_af in ('ipv4','ipv6'): - log.error( - f'Routing protocol address family has to be ipv4 and/or ipv6: {proto} on {node.name}', - log.IncorrectValue, - proto) +# Please note that this function could be called with node data (for global routing instance) +# or VRF data (acting as node data) for VRF routing instances +# +def routing_af( + node: Box, # Could also be VRF data + proto: str, # IGP we're checking + n_name: typing.Optional[str] = None, # Name of the object (default: node name) + is_vrf: bool = False, # Are we dealing with a VRF? + features: typing.Optional[Box] = None) -> None: # And finally, the device features + + if n_name is None: + n_name = 'node {node.name}' + if 'af' in node[proto] and node[proto].af is None: + node[proto].pop('af',None) if not 'af' in node[proto]: # No configured AF attribute, calculate it - for af in ['ipv4','ipv6']: - if af in node.get('loopback',{}): # Address family enabled on loopback? - node[proto].af[af] = True # ... we need it in the routing protocol - continue + for af in ['ipv4','ipv6']: # Process the loopback interface + lb_data = node.get('loopback',{}) # Fetch the loopback interface info + if isinstance(lb_data,Box): # ... watch out for bool values + if af in lb_data: # Address family enabled on loopback? + node[proto].af[af] = True # ... we need it in the routing protocol + continue + + # Scan all interfaces -- they could be in node.interfaces or vrf_data.proto.interfaces + if_list = node[proto].get('interfaces',[]) if is_vrf else node.get('interfaces',[]) + for l in if_list: + if 'vrf' in l and not is_vrf: # Skip VRF interfaces when processing global routing instance + continue # VRF instances will only have correct VRF interfaces anyway - for l in node.get('interfaces',[]): # Scan all interfaces - if proto in l and (af in l or af in l.get('dhcp.client',{})) \ - and not 'vrf' in l: # Do we have AF enabled on any global interface? - node[proto].af[af] = True # Found it - we need it the module + # Do we have AF enabled on the global- or VRF interface + if proto in l and (af in l or af in l.get('dhcp.client',{})): + node[proto].af[af] = True # Found the AF - we need it in the routing protocol continue p_features = features.get(proto,{}) if features else {} @@ -68,7 +68,7 @@ def routing_af(node: Box, proto: str, features: typing.Optional[Box] = None) -> if af in p_features and p_features[af] is False: log.error( - f'Device {node.device} (node {node.name}) cannot run {proto} on {af}', + f'{n_name} cannot run {proto} on {af}', log.IncorrectValue, proto) @@ -297,6 +297,7 @@ def build_vrf_interface_list( vrf_unnumbered_check: bool = True) -> None: # Check the source IP VRF for IPv4 unnumbereds unnum_err_list = data.get_empty_box() + features = devices.get_device_features(node,topology.defaults) for l in node.interfaces: if proto not in l: # Not running the protocol on the interface? @@ -346,7 +347,9 @@ def build_vrf_interface_list( f"VRF {vname} on {node.name} has unnumbered interface(s) running {proto} without a VRF loopback", category=log.MissingDependency, module="vrf", - more_data=f"Used on interface(s) {','.join(unnum_err_list[vname])}") + more_data=f"Used on interface(s) {','.join(unnum_err_list[vname])}") + + routing_af(vdata,proto,f'VRF {vname} on {node.name}',is_vrf=True,features=features) # # remove_unaddressed_intf -- remove all interfaces without IPv4 or IPv6 address from IGP @@ -431,6 +434,7 @@ def check_vrf_protocol_support( if not proto in v_data: # Are we running the target protocol in the VRF? continue if af and not af in v_data.af: # Does the VRF use the target address family? + v_data[proto].af.pop(af,None) # Make sure the AF is not set in VRF routing protocol data continue # We found the protocol to check in the current VRF, time to check device features @@ -443,9 +447,6 @@ def check_vrf_protocol_support( module=proto) return - if af: - v_data[proto].af[af] = True # Add the AF to VRF routing protocol data - """ check_intf_support -- check device support for optional interface parameters """ @@ -821,7 +822,7 @@ def igp_post_transform( else: remove_vrf_interfaces(node,proto) - routing_af(node,proto,features) + routing_af(node,proto,f'node {node.name}',features=features) if vrf_aware: remove_vrf_routing_blocks(node,proto) diff --git a/netsim/modules/isis.yml b/netsim/modules/isis.yml index 2d81745d07..b3ea9ef7e1 100644 --- a/netsim/modules/isis.yml +++ b/netsim/modules/isis.yml @@ -28,6 +28,9 @@ attributes: instance: net: net type: + vrf: + active: bool + af: { copy: global } link: metric: { type: int, min_value: 1, max_value: 16777215 } cost: { type: int, min_value: 1, max_value: 16777215 } diff --git a/netsim/modules/ospf.yml b/netsim/modules/ospf.yml index 49419f343f..044617b6bd 100644 --- a/netsim/modules/ospf.yml +++ b/netsim/modules/ospf.yml @@ -54,6 +54,7 @@ attributes: vrf_copy: [ area, router_id, reference_bandwidth ] vrf: active: bool + af: { copy: global } area: { copy: global } import: _r_import default: { copy: node } diff --git a/netsim/modules/ripv2.yml b/netsim/modules/ripv2.yml index cba0b1fddd..6d08f1a10c 100644 --- a/netsim/modules/ripv2.yml +++ b/netsim/modules/ripv2.yml @@ -27,6 +27,7 @@ attributes: timers: copy: global vrf: + af: { copy: global } active: bool timers: copy: global diff --git a/tests/topology/expected/vrf-igp.yml b/tests/topology/expected/vrf-igp.yml index ece5955262..70fca56df8 100644 --- a/tests/topology/expected/vrf-igp.yml +++ b/tests/topology/expected/vrf-igp.yml @@ -29,32 +29,38 @@ links: - ifindex: 1 ifname: eth1 ipv4: 10.1.0.1/30 + ipv6: 2001:db8:3::1/64 node: pe1 - ifindex: 1 ifname: eth1 ipv4: 10.1.0.2/30 + ipv6: 2001:db8:3::2/64 node: pe2 linkindex: 1 node_count: 2 ospf: false prefix: ipv4: 10.1.0.0/30 + ipv6: 2001:db8:3::/64 type: p2p - _linkname: links[2] interfaces: - ifindex: 2 ifname: eth2 ipv4: 10.1.0.5/30 + ipv6: 2001:db8:3:1::1/64 node: pe1 vrf: red - ifindex: 1 ifname: eth1 ipv4: 10.1.0.6/30 + ipv6: 2001:db8:3:1::2/64 node: r2 linkindex: 2 node_count: 2 prefix: ipv4: 10.1.0.4/30 + ipv6: 2001:db8:3:1::/64 role: external type: p2p - _linkname: links[3] @@ -78,11 +84,13 @@ links: - ifindex: 3 ifname: eth3 ipv4: 10.1.0.9/30 + ipv6: 2001:db8:3:2::1/64 node: pe2 vrf: blue - ifindex: 1 ifname: eth1 ipv4: 10.1.0.10/30 + ipv6: 2001:db8:3:2::2/64 node: r3 ospf: area: 0.0.0.1 @@ -90,6 +98,7 @@ links: node_count: 2 prefix: ipv4: 10.1.0.8/30 + ipv6: 2001:db8:3:2::/64 type: p2p - _linkname: links[5] bridge: input_5 @@ -129,7 +138,9 @@ nodes: pe1: af: ipv4: true + ipv6: true vpnv4: true + vpnv6: true bgp: advertise_loopback: true as: 65000 @@ -168,6 +179,7 @@ nodes: - ifindex: 1 ifname: eth1 ipv4: 10.1.0.1/30 + ipv6: 2001:db8:3::1/64 isis: network_type: point-to-point passive: false @@ -176,16 +188,19 @@ nodes: neighbors: - ifname: eth1 ipv4: 10.1.0.2/30 + ipv6: 2001:db8:3::2/64 node: pe2 type: p2p - ifindex: 2 ifname: eth2 ipv4: 10.1.0.5/30 + ipv6: 2001:db8:3:1::1/64 linkindex: 2 name: pe1 -> r2 neighbors: - ifname: eth1 ipv4: 10.1.0.6/30 + ipv6: 2001:db8:3:1::2/64 node: r2 role: external type: p2p @@ -218,6 +233,7 @@ nodes: isis: af: ipv4: true + ipv6: true area: '49.0001' instance: Gandalf net: 49.0001.0000.0000.0001.00 @@ -362,6 +378,7 @@ nodes: red: af: ipv4: true + ipv6: true bgp: import: connected: @@ -369,9 +386,11 @@ nodes: neighbors: - activate: ipv4: true + ipv6: true as: 65001 ifindex: 2 ipv4: 10.1.0.6 + ipv6: 2001:db8:3:1::2 name: r2 type: ebgp export: @@ -384,7 +403,9 @@ nodes: pe2: af: ipv4: true + ipv6: true vpnv4: true + vpnv6: true bgp: advertise_loopback: true as: 65000 @@ -423,6 +444,7 @@ nodes: - ifindex: 1 ifname: eth1 ipv4: 10.1.0.2/30 + ipv6: 2001:db8:3::2/64 isis: network_type: point-to-point passive: false @@ -431,6 +453,7 @@ nodes: neighbors: - ifname: eth1 ipv4: 10.1.0.1/30 + ipv6: 2001:db8:3::1/64 node: pe1 type: p2p - _parent_intf: Loopback1 @@ -451,11 +474,13 @@ nodes: - ifindex: 3 ifname: eth3 ipv4: 10.1.0.9/30 + ipv6: 2001:db8:3:2::1/64 linkindex: 4 name: pe2 -> r3 neighbors: - ifname: eth1 ipv4: 10.1.0.10/30 + ipv6: 2001:db8:3:2::2/64 node: r3 type: p2p vrf: blue @@ -472,6 +497,7 @@ nodes: isis: af: ipv4: true + ipv6: true area: '49.0001' instance: Gandalf net: 49.0001.0000.0000.0002.00 @@ -503,6 +529,7 @@ nodes: blue: af: ipv4: true + ipv6: true bgp: import: connected: @@ -550,6 +577,7 @@ nodes: - ifindex: 3 ifname: eth3 ipv4: 10.1.0.9/30 + ipv6: 2001:db8:3:2::1/64 isis: network_type: point-to-point passive: false @@ -558,6 +586,7 @@ nodes: neighbors: - ifname: eth1 ipv4: 10.1.0.10/30 + ipv6: 2001:db8:3:2::2/64 node: r3 type: p2p vrf: blue @@ -585,6 +614,7 @@ nodes: active: true af: ipv4: true + ipv6: true area: 0.0.0.1 import: bgp: @@ -614,11 +644,13 @@ nodes: - ifindex: 3 ifname: eth3 ipv4: 10.1.0.9/30 + ipv6: 2001:db8:3:2::1/64 linkindex: 4 name: pe2 -> r3 neighbors: - ifname: eth1 ipv4: 10.1.0.10/30 + ipv6: 2001:db8:3:2::2/64 node: r3 ospf: area: 0.0.0.1 @@ -646,6 +678,7 @@ nodes: r2: af: ipv4: true + ipv6: true bgp: advertise_loopback: true as: 65001 @@ -659,13 +692,16 @@ nodes: - standard - extended ipv4: true + ipv6: true neighbors: - _vrf: red activate: ipv4: true + ipv6: true as: 65000 ifindex: 1 ipv4: 10.1.0.5 + ipv6: 2001:db8:3:1::1 name: pe1 type: ebgp next_hop_self: true @@ -678,11 +714,13 @@ nodes: - ifindex: 1 ifname: eth1 ipv4: 10.1.0.6/30 + ipv6: 2001:db8:3:1::2/64 linkindex: 2 name: r2 -> pe1 neighbors: - ifname: eth2 ipv4: 10.1.0.5/30 + ipv6: 2001:db8:3:1::1/64 node: pe1 vrf: red role: external @@ -704,6 +742,7 @@ nodes: r3: af: ipv4: true + ipv6: true vpnv4: true box: none device: none @@ -713,11 +752,13 @@ nodes: - ifindex: 1 ifname: eth1 ipv4: 10.1.0.10/30 + ipv6: 2001:db8:3:2::2/64 linkindex: 4 name: r3 -> pe2 neighbors: - ifname: eth3 ipv4: 10.1.0.9/30 + ipv6: 2001:db8:3:2::1/64 node: pe2 vrf: blue ospf: @@ -766,6 +807,7 @@ nodes: ospf: af: ipv4: true + ipv6: true area: 0.0.0.0 router_id: 10.0.0.4 vrf: @@ -826,6 +868,9 @@ vrfs: id: 3 import: - '65000:3' + isis: + af: + ipv4: true loopback: true ospf: area: 0.0.0.2 diff --git a/tests/topology/input/vrf-igp.yml b/tests/topology/input/vrf-igp.yml index 724c1c2581..b197550494 100644 --- a/tests/topology/input/vrf-igp.yml +++ b/tests/topology/input/vrf-igp.yml @@ -1,6 +1,7 @@ defaults.device: none provider: clab defaults.vrf.warnings.inactive: False +addressing.p2p.ipv6: 2001:db8:3::/48 module: [vrf, bgp, ospf, isis] bgp.as: 65000 @@ -9,6 +10,7 @@ vrfs: red: blue: ospf.area: 0.0.0.2 # Regression test for #494 + isis.af.ipv4: True # No IPv6 IS-IS in blue VRF loopback: true # ... needs a loopback to make sure loopback and phy intf are in the same OSPF area nodes: From d90bcd3bec2993996b6d33242f2a5aae1e100f13 Mon Sep 17 00:00:00 2001 From: Ivan Pepelnjak Date: Sat, 13 Sep 2025 19:05:42 +0200 Subject: [PATCH 5/6] [B] Change the management MAC address pool to locally-administered address (#2682) Collateral damage: * Had to change the MAC addresses in 'duplicate management addresses' error test * All transformation test results have changed due to different mgmt MAC addresses Implements #2607 --- netsim/defaults/addressing.yml | 2 +- tests/errors/dup-mgmt-addr.log | 2 +- tests/errors/dup-mgmt-addr.yml | 4 +-- tests/topology/expected/6pe.yml | 10 +++---- .../expected/addressing-ipv6-only.yml | 8 +++--- .../expected/addressing-ipv6-prefix.yml | 8 +++--- tests/topology/expected/addressing-lan.yml | 8 +++--- tests/topology/expected/addressing-p2p.yml | 4 +-- tests/topology/expected/addressing-prefix.yml | 2 +- tests/topology/expected/anycast-gateway.yml | 14 +++++----- tests/topology/expected/bgp-af-rt-929.yml | 10 +++---- tests/topology/expected/bgp-anycast.yml | 4 +-- tests/topology/expected/bgp-autogroup.yml | 14 +++++----- tests/topology/expected/bgp-community.yml | 6 ++-- tests/topology/expected/bgp-confederation.yml | 10 +++---- tests/topology/expected/bgp-ibgp-localas.yml | 10 +++---- tests/topology/expected/bgp-ibgp.yml | 8 +++--- .../expected/bgp-interface-disable.yml | 4 +-- tests/topology/expected/bgp-members.yml | 12 ++++---- tests/topology/expected/bgp-rs-2as.yml | 8 +++--- tests/topology/expected/bgp-sessions.yml | 6 ++-- .../expected/bgp-unnumbered-dual-stack.yml | 10 +++---- tests/topology/expected/bgp-unnumbered.yml | 6 ++-- tests/topology/expected/bgp-vrf-local-as.yml | 6 ++-- tests/topology/expected/bgp.yml | 14 +++++----- tests/topology/expected/clab-attributes.yml | 2 +- tests/topology/expected/components.yml | 28 +++++++++---------- .../expected/device-module-defaults.yml | 4 +-- .../expected/device-node-defaults.yml | 6 ++-- .../expected/dhcp-server-on-segment.yml | 4 +-- tests/topology/expected/dhcp-vlan.yml | 12 ++++---- tests/topology/expected/dual-stack.yml | 10 +++---- tests/topology/expected/ebgp.utils.yml | 8 +++--- .../topology/expected/eigrp-feature-test.yml | 6 ++-- .../expected/evpn-asymmetric-irb-ospf.yml | 12 ++++---- tests/topology/expected/evpn-hub-spoke.yml | 4 +-- tests/topology/expected/evpn-l3vni-only.yml | 4 +-- tests/topology/expected/evpn-node-vrf.yml | 2 +- tests/topology/expected/evpn-vlan-attr.yml | 2 +- tests/topology/expected/evpn-vxlan.yml | 14 +++++----- tests/topology/expected/extra-attr-link.yml | 6 ++-- tests/topology/expected/fabric-ebgp.yml | 16 +++++------ .../expected/group-ansible-variables.yml | 6 ++-- tests/topology/expected/group-data-vlan.yml | 6 ++-- tests/topology/expected/group-data-vrf.yml | 4 +-- .../topology/expected/groups-auto-create.yml | 8 +++--- tests/topology/expected/groups-hierarchy.yml | 12 ++++---- tests/topology/expected/groups-node-data.yml | 12 ++++---- tests/topology/expected/groups-node.yml | 12 ++++---- tests/topology/expected/groups-simple.yml | 12 ++++---- tests/topology/expected/groups-vlan-vrf.yml | 8 +++--- tests/topology/expected/id.yml | 6 ++-- tests/topology/expected/igp-af.yml | 10 +++---- .../expected/igp-ospf-isis-eigrp-disable.yml | 4 +-- tests/topology/expected/isis-bfd-test.yml | 10 +++---- tests/topology/expected/isis-feature-test.yml | 8 +++--- tests/topology/expected/lag-l2.yml | 4 +-- .../topology/expected/lag-l3-access-vlan.yml | 4 +-- tests/topology/expected/lag-l3.yml | 4 +-- tests/topology/expected/lag-mlag-m_to_m.yml | 12 ++++---- tests/topology/expected/lag-mlag.yml | 12 ++++---- tests/topology/expected/lag-vlan-trunk.yml | 4 +-- .../expected/libvirt-clab-complex.yml | 10 +++---- tests/topology/expected/link-bw.yml | 4 +-- tests/topology/expected/link-empty.yml | 4 +-- tests/topology/expected/link-formats.yml | 6 ++-- tests/topology/expected/link-group.yml | 6 ++-- tests/topology/expected/link-loopback.yml | 6 ++-- tests/topology/expected/link-tunnel.yml | 6 ++-- .../topology/expected/link-without-prefix.yml | 6 ++-- tests/topology/expected/links-as-dict.yml | 6 ++-- .../expected/module-node-global-params.yml | 4 +-- .../topology/expected/module-node-global.yml | 4 +-- tests/topology/expected/module-node-only.yml | 4 +-- .../topology/expected/module-node-params.yml | 6 ++-- tests/topology/expected/module-reorder.yml | 8 +++--- tests/topology/expected/mpls-vpn-simple.yml | 4 +-- tests/topology/expected/mpls.yml | 12 ++++---- tests/topology/expected/node-large-id.yml | 6 ++-- .../expected/node.clone-plugin-lag.yml | 12 ++++---- tests/topology/expected/node.clone-plugin.yml | 12 ++++---- tests/topology/expected/nodes-strings.yml | 6 ++-- tests/topology/expected/null-vrfs.yml | 4 +-- tests/topology/expected/ospf-bfd-test.yml | 6 ++-- tests/topology/expected/ospf.yml | 8 +++--- tests/topology/expected/paths.yml | 2 +- .../expected/removed-attr-inheritance.yml | 6 ++-- tests/topology/expected/rp-aspath-numbers.yml | 4 +-- .../topology/expected/rp-clist-expansion.yml | 2 +- .../topology/expected/rp-normalize-merge.yml | 4 +-- .../topology/expected/rp-prefix-expansion.yml | 4 +-- tests/topology/expected/rp-static-gw.yml | 8 +++--- tests/topology/expected/rp-static.yml | 6 ++-- tests/topology/expected/rt-vlan-anycast.yml | 6 ++-- .../expected/rt-vlan-mode-link-route.yml | 8 +++--- .../expected/rt-vlan-native-routed.yml | 4 +-- .../topology/expected/rt-vlan-no-gateway.yml | 6 ++-- .../expected/rt-vlan-role-unnumbered.yml | 4 +-- .../rt-vlan-trunk-partial-overlap.yml | 6 ++-- tests/topology/expected/stp-port-type.yml | 14 +++++----- tests/topology/expected/stp.yml | 14 +++++----- tests/topology/expected/tools.yml | 2 +- tests/topology/expected/unmanaged-device.yml | 4 +-- tests/topology/expected/unnumbered.yml | 8 +++--- tests/topology/expected/vbox.yml | 6 ++-- tests/topology/expected/vlan-access-links.yml | 8 +++--- .../expected/vlan-access-neighbors.yml | 6 ++-- tests/topology/expected/vlan-access-node.yml | 8 +++--- .../topology/expected/vlan-access-single.yml | 10 +++---- .../expected/vlan-bridge-trunk-router.yml | 10 +++---- tests/topology/expected/vlan-coverage.yml | 8 +++--- .../topology/expected/vlan-mode-priority.yml | 4 +-- .../topology/expected/vlan-native-routed.yml | 6 ++-- .../topology/expected/vlan-routed-access.yml | 6 ++-- .../expected/vlan-routed-multiprovider.yml | 4 +-- tests/topology/expected/vlan-routed-vrf.yml | 14 +++++----- tests/topology/expected/vlan-routed.yml | 6 ++-- tests/topology/expected/vlan-router-stick.yml | 10 +++---- tests/topology/expected/vlan-trunk-native.yml | 14 +++++----- tests/topology/expected/vlan-vrf-lite.yml | 16 +++++------ tests/topology/expected/vlan-vrrp.yml | 8 +++--- tests/topology/expected/vrf-igp.yml | 8 +++--- tests/topology/expected/vrf-leaking-loop.yml | 2 +- tests/topology/expected/vrf-links.yml | 6 ++-- tests/topology/expected/vrf-loopback.yml | 2 +- .../topology/expected/vrf-routing-blocks.yml | 6 ++-- tests/topology/expected/vrf.yml | 6 ++-- .../expected/vrrp-interface-granularity.yml | 4 +-- .../topology/expected/vxlan-router-stick.yml | 6 ++-- tests/topology/expected/vxlan-static.yml | 14 +++++----- tests/topology/expected/vxlan-vrf-lite.yml | 18 ++++++------ 131 files changed, 483 insertions(+), 483 deletions(-) diff --git a/netsim/defaults/addressing.yml b/netsim/defaults/addressing.yml index c12723bfca..4cea7a8837 100644 --- a/netsim/defaults/addressing.yml +++ b/netsim/defaults/addressing.yml @@ -12,7 +12,7 @@ p2p: mgmt: ipv4: 192.168.121.0/24 start: 100 - mac: 08-4F-A9-00-00-00 + mac: CA-FE-00-00-00-00 l2only: vrf_loopback: ipv4: 10.2.0.0/24 diff --git a/tests/errors/dup-mgmt-addr.log b/tests/errors/dup-mgmt-addr.log index 7a5cdbed82..cb05799fbc 100644 --- a/tests/errors/dup-mgmt-addr.log +++ b/tests/errors/dup-mgmt-addr.log @@ -4,5 +4,5 @@ MissingValue in nodes: Node r6 does not have a usable management IP addresss IncorrectValue in nodes: Duplicate management ipv4 address 192.168.121.101 on r2 and r1 IncorrectValue in nodes: Duplicate management ipv4 address 192.168.121.105 on r7 and r5 IncorrectValue in nodes: Duplicate management ipv6 address 2001:db8:cafe::1 on r4 and r3 -IncorrectValue in nodes: Duplicate management mac address 08:4f:a9:02:00:00 on r3 and r2 +IncorrectValue in nodes: Duplicate management mac address ca:fe:00:02:00:00 on r3 and r2 Fatal error in netlab: Cannot proceed beyond this point due to errors, exiting diff --git a/tests/errors/dup-mgmt-addr.yml b/tests/errors/dup-mgmt-addr.yml index f856631ffd..110727b68a 100644 --- a/tests/errors/dup-mgmt-addr.yml +++ b/tests/errors/dup-mgmt-addr.yml @@ -9,7 +9,7 @@ ospf.timers.hello: 1 nodes: r1: mgmt: - mac: 0A:4F:A9:01:00:00 + mac: CA:FE:00:01:00:00 r2: mgmt: @@ -17,7 +17,7 @@ nodes: r3: mgmt: - mac: 08:4F:A9:02:00:00 + mac: CA:FE:00:02:00:00 ipv6: 2001:db8:cafe::1 r4: diff --git a/tests/topology/expected/6pe.yml b/tests/topology/expected/6pe.yml index b4b83945b9..2687282c3c 100644 --- a/tests/topology/expected/6pe.yml +++ b/tests/topology/expected/6pe.yml @@ -185,7 +185,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - bgp name: ce1 @@ -248,7 +248,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - bgp name: ce2 @@ -317,7 +317,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - isis - mpls @@ -429,7 +429,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - isis - bgp @@ -545,7 +545,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - isis - bgp diff --git a/tests/topology/expected/addressing-ipv6-only.yml b/tests/topology/expected/addressing-ipv6-only.yml index 2e3a7dd2ad..c9ee550bcc 100644 --- a/tests/topology/expected/addressing-ipv6-only.yml +++ b/tests/topology/expected/addressing-ipv6-only.yml @@ -256,7 +256,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: - isis - bgp @@ -411,7 +411,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.121 - mac: 08:4f:a9:15:00:00 + mac: ca:fe:00:15:00:00 module: - isis - bgp @@ -544,7 +544,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.142 - mac: 08:4f:a9:2a:00:00 + mac: ca:fe:00:2a:00:00 module: - isis - bgp @@ -661,7 +661,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - isis - bgp diff --git a/tests/topology/expected/addressing-ipv6-prefix.yml b/tests/topology/expected/addressing-ipv6-prefix.yml index 51aa85baa2..370d6477e3 100644 --- a/tests/topology/expected/addressing-ipv6-prefix.yml +++ b/tests/topology/expected/addressing-ipv6-prefix.yml @@ -201,7 +201,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: - isis - bgp @@ -341,7 +341,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.121 - mac: 08:4f:a9:15:00:00 + mac: ca:fe:00:15:00:00 module: - isis - bgp @@ -468,7 +468,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.142 - mac: 08:4f:a9:2a:00:00 + mac: ca:fe:00:2a:00:00 module: - isis - bgp @@ -550,7 +550,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp name: r4 diff --git a/tests/topology/expected/addressing-lan.yml b/tests/topology/expected/addressing-lan.yml index 289a6b47b3..a972a7ada9 100644 --- a/tests/topology/expected/addressing-lan.yml +++ b/tests/topology/expected/addressing-lan.yml @@ -579,7 +579,7 @@ nodes: mgmt: ifname: GigabitEthernet1 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 min_mtu: 1500 name: r1 role: router @@ -817,7 +817,7 @@ nodes: mgmt: ifname: GigabitEthernet1 ipv4: 192.168.121.121 - mac: 08:4f:a9:15:00:00 + mac: ca:fe:00:15:00:00 min_mtu: 1500 name: r2 role: router @@ -1045,7 +1045,7 @@ nodes: mgmt: ifname: GigabitEthernet1 ipv4: 192.168.121.142 - mac: 08:4f:a9:2a:00:00 + mac: ca:fe:00:2a:00:00 min_mtu: 1500 name: r3 role: router @@ -1108,7 +1108,7 @@ nodes: mgmt: ifname: GigabitEthernet1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 min_mtu: 1500 name: r4 role: router diff --git a/tests/topology/expected/addressing-p2p.yml b/tests/topology/expected/addressing-p2p.yml index defaed174f..d983054e80 100644 --- a/tests/topology/expected/addressing-p2p.yml +++ b/tests/topology/expected/addressing-p2p.yml @@ -451,7 +451,7 @@ nodes: mgmt: ifname: GigabitEthernet1 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 min_mtu: 1500 name: r1 role: router @@ -651,7 +651,7 @@ nodes: mgmt: ifname: GigabitEthernet1 ipv4: 192.168.121.121 - mac: 08:4f:a9:15:00:00 + mac: ca:fe:00:15:00:00 min_mtu: 1500 name: r2 role: router diff --git a/tests/topology/expected/addressing-prefix.yml b/tests/topology/expected/addressing-prefix.yml index 15679088b4..484d49f7fe 100644 --- a/tests/topology/expected/addressing-prefix.yml +++ b/tests/topology/expected/addressing-prefix.yml @@ -194,7 +194,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.142 - mac: 08:4f:a9:2a:00:00 + mac: ca:fe:00:2a:00:00 module: - vlan name: r1 diff --git a/tests/topology/expected/anycast-gateway.yml b/tests/topology/expected/anycast-gateway.yml index 0344b9a2f5..5c91beb18e 100644 --- a/tests/topology/expected/anycast-gateway.yml +++ b/tests/topology/expected/anycast-gateway.yml @@ -376,7 +376,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - routing name: h1 @@ -457,7 +457,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - routing name: h2 @@ -520,7 +520,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: - routing name: h3 @@ -678,7 +678,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.113 - mac: 08:4f:a9:0d:00:00 + mac: ca:fe:00:0d:00:00 module: - routing name: h4 @@ -885,7 +885,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - ospf @@ -1099,7 +1099,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan - ospf @@ -1171,7 +1171,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - vlan - ospf diff --git a/tests/topology/expected/bgp-af-rt-929.yml b/tests/topology/expected/bgp-af-rt-929.yml index f46cfe504f..fdf82c2bea 100644 --- a/tests/topology/expected/bgp-af-rt-929.yml +++ b/tests/topology/expected/bgp-af-rt-929.yml @@ -98,7 +98,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp name: lb1 @@ -155,7 +155,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp name: lb2 @@ -203,7 +203,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - bgp name: nl1 @@ -260,7 +260,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - bgp name: nl2 @@ -305,7 +305,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - bgp name: nl3 diff --git a/tests/topology/expected/bgp-anycast.yml b/tests/topology/expected/bgp-anycast.yml index a753653bad..6f617268c7 100644 --- a/tests/topology/expected/bgp-anycast.yml +++ b/tests/topology/expected/bgp-anycast.yml @@ -104,7 +104,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf - bgp @@ -183,7 +183,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - ospf - bgp diff --git a/tests/topology/expected/bgp-autogroup.yml b/tests/topology/expected/bgp-autogroup.yml index ec13f677d9..5e3cfd1410 100644 --- a/tests/topology/expected/bgp-autogroup.yml +++ b/tests/topology/expected/bgp-autogroup.yml @@ -219,7 +219,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - bgp name: a1 @@ -303,7 +303,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - bgp name: a2 @@ -387,7 +387,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: - bgp name: a3 @@ -460,7 +460,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf - bgp @@ -575,7 +575,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - ospf - bgp @@ -672,7 +672,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf - bgp @@ -817,7 +817,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - ospf - bgp diff --git a/tests/topology/expected/bgp-community.yml b/tests/topology/expected/bgp-community.yml index 6b167bd727..52bc9c20ed 100644 --- a/tests/topology/expected/bgp-community.yml +++ b/tests/topology/expected/bgp-community.yml @@ -134,7 +134,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp name: r1 @@ -222,7 +222,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp name: r2 @@ -333,7 +333,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - bgp name: r3 diff --git a/tests/topology/expected/bgp-confederation.yml b/tests/topology/expected/bgp-confederation.yml index d44d077eb5..f23955a3a7 100644 --- a/tests/topology/expected/bgp-confederation.yml +++ b/tests/topology/expected/bgp-confederation.yml @@ -240,7 +240,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp name: dut @@ -339,7 +339,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp name: r2 @@ -437,7 +437,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - bgp name: r3 @@ -508,7 +508,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - bgp name: x1 @@ -579,7 +579,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - bgp name: x2 diff --git a/tests/topology/expected/bgp-ibgp-localas.yml b/tests/topology/expected/bgp-ibgp-localas.yml index 8ce3415565..b307a9e81d 100644 --- a/tests/topology/expected/bgp-ibgp-localas.yml +++ b/tests/topology/expected/bgp-ibgp-localas.yml @@ -238,7 +238,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf - bgp @@ -303,7 +303,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp mtu: 1500 @@ -396,7 +396,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf - bgp @@ -474,7 +474,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - ospf - bgp @@ -550,7 +550,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - ospf - bgp diff --git a/tests/topology/expected/bgp-ibgp.yml b/tests/topology/expected/bgp-ibgp.yml index 9901a1e6a3..11d2b05f43 100644 --- a/tests/topology/expected/bgp-ibgp.yml +++ b/tests/topology/expected/bgp-ibgp.yml @@ -180,7 +180,7 @@ nodes: mgmt: ifname: mgmt0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf - bgp @@ -297,7 +297,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - ospf - bgp @@ -425,7 +425,7 @@ nodes: mgmt: ifname: mgmt0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf - bgp @@ -552,7 +552,7 @@ nodes: mgmt: ifname: mgmt0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - ospf - bgp diff --git a/tests/topology/expected/bgp-interface-disable.yml b/tests/topology/expected/bgp-interface-disable.yml index 82990bbfa7..860146c07f 100644 --- a/tests/topology/expected/bgp-interface-disable.yml +++ b/tests/topology/expected/bgp-interface-disable.yml @@ -149,7 +149,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp name: r1 @@ -236,7 +236,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp name: r2 diff --git a/tests/topology/expected/bgp-members.yml b/tests/topology/expected/bgp-members.yml index 46580484bf..006eaf5d9c 100644 --- a/tests/topology/expected/bgp-members.yml +++ b/tests/topology/expected/bgp-members.yml @@ -184,7 +184,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - bgp name: e1 @@ -240,7 +240,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - bgp name: e2 @@ -346,7 +346,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - bgp name: pe1 @@ -452,7 +452,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - bgp name: pe2 @@ -557,7 +557,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp name: rr1 @@ -662,7 +662,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp name: rr2 diff --git a/tests/topology/expected/bgp-rs-2as.yml b/tests/topology/expected/bgp-rs-2as.yml index 16b69ebe48..aa0cc37200 100644 --- a/tests/topology/expected/bgp-rs-2as.yml +++ b/tests/topology/expected/bgp-rs-2as.yml @@ -127,7 +127,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp name: r1 @@ -205,7 +205,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp name: r2 @@ -284,7 +284,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - bgp name: rs1 @@ -364,7 +364,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - bgp name: rs2 diff --git a/tests/topology/expected/bgp-sessions.yml b/tests/topology/expected/bgp-sessions.yml index 2f4c762556..838a5d2f70 100644 --- a/tests/topology/expected/bgp-sessions.yml +++ b/tests/topology/expected/bgp-sessions.yml @@ -174,7 +174,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - ospf - bgp @@ -270,7 +270,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf - bgp @@ -354,7 +354,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp name: x1 diff --git a/tests/topology/expected/bgp-unnumbered-dual-stack.yml b/tests/topology/expected/bgp-unnumbered-dual-stack.yml index 8bde633a56..493606250c 100644 --- a/tests/topology/expected/bgp-unnumbered-dual-stack.yml +++ b/tests/topology/expected/bgp-unnumbered-dual-stack.yml @@ -316,7 +316,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp name: test @@ -407,7 +407,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp name: x1 @@ -474,7 +474,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - bgp name: x2 @@ -533,7 +533,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - bgp name: x3 @@ -622,7 +622,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - bgp name: x4 diff --git a/tests/topology/expected/bgp-unnumbered.yml b/tests/topology/expected/bgp-unnumbered.yml index 08057eefff..d14d5a5231 100644 --- a/tests/topology/expected/bgp-unnumbered.yml +++ b/tests/topology/expected/bgp-unnumbered.yml @@ -143,7 +143,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp mtu: 1500 @@ -242,7 +242,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp mtu: 1500 @@ -314,7 +314,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - bgp mtu: 1500 diff --git a/tests/topology/expected/bgp-vrf-local-as.yml b/tests/topology/expected/bgp-vrf-local-as.yml index d17a045e0b..fc74d3328b 100644 --- a/tests/topology/expected/bgp-vrf-local-as.yml +++ b/tests/topology/expected/bgp-vrf-local-as.yml @@ -203,7 +203,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - bgp @@ -460,7 +460,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - bgp @@ -665,7 +665,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan - bgp diff --git a/tests/topology/expected/bgp.yml b/tests/topology/expected/bgp.yml index 5346a2414f..d66c3c9ae6 100644 --- a/tests/topology/expected/bgp.yml +++ b/tests/topology/expected/bgp.yml @@ -262,7 +262,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - ospf - bgp @@ -374,7 +374,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - ospf - bgp @@ -417,7 +417,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: [] name: nar role: router @@ -546,7 +546,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf - bgp @@ -683,7 +683,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - ospf - bgp @@ -822,7 +822,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf - bgp @@ -961,7 +961,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - ospf - bgp diff --git a/tests/topology/expected/clab-attributes.yml b/tests/topology/expected/clab-attributes.yml index 543cb2379e..4843ecc2df 100644 --- a/tests/topology/expected/clab-attributes.yml +++ b/tests/topology/expected/clab-attributes.yml @@ -40,7 +40,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 mtu: 1500 name: n role: router diff --git a/tests/topology/expected/components.yml b/tests/topology/expected/components.yml index d6fe64c241..b660a4030e 100644 --- a/tests/topology/expected/components.yml +++ b/tests/topology/expected/components.yml @@ -420,7 +420,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp name: c1 @@ -508,7 +508,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp name: c2 @@ -646,7 +646,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - ospf - bgp @@ -688,7 +688,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - routing mtu: 1500 @@ -850,7 +850,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - ospf - bgp @@ -892,7 +892,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - routing mtu: 1500 @@ -1054,7 +1054,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: - ospf - bgp @@ -1198,7 +1198,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.108 - mac: 08:4f:a9:08:00:00 + mac: ca:fe:00:08:00:00 module: - ospf - bgp @@ -1342,7 +1342,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.110 - mac: 08:4f:a9:0a:00:00 + mac: ca:fe:00:0a:00:00 module: - ospf - bgp @@ -1384,7 +1384,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.109 - mac: 08:4f:a9:09:00:00 + mac: ca:fe:00:09:00:00 module: - routing mtu: 1500 @@ -1546,7 +1546,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.112 - mac: 08:4f:a9:0c:00:00 + mac: ca:fe:00:0c:00:00 module: - ospf - bgp @@ -1588,7 +1588,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.111 - mac: 08:4f:a9:0b:00:00 + mac: ca:fe:00:0b:00:00 module: - routing mtu: 1500 @@ -1750,7 +1750,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.113 - mac: 08:4f:a9:0d:00:00 + mac: ca:fe:00:0d:00:00 module: - ospf - bgp @@ -1894,7 +1894,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.114 - mac: 08:4f:a9:0e:00:00 + mac: ca:fe:00:0e:00:00 module: - ospf - bgp diff --git a/tests/topology/expected/device-module-defaults.yml b/tests/topology/expected/device-module-defaults.yml index 5bce704398..d754143acf 100644 --- a/tests/topology/expected/device-module-defaults.yml +++ b/tests/topology/expected/device-module-defaults.yml @@ -101,7 +101,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp mtu: 1500 @@ -159,7 +159,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp name: l2 diff --git a/tests/topology/expected/device-node-defaults.yml b/tests/topology/expected/device-node-defaults.yml index 9ef6884efc..e2847e5939 100644 --- a/tests/topology/expected/device-node-defaults.yml +++ b/tests/topology/expected/device-node-defaults.yml @@ -73,7 +73,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - routing mtu: 1500 @@ -133,7 +133,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - routing mtu: 1500 @@ -225,7 +225,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf mtu: 1500 diff --git a/tests/topology/expected/dhcp-server-on-segment.yml b/tests/topology/expected/dhcp-server-on-segment.yml index db6225c567..464371573f 100644 --- a/tests/topology/expected/dhcp-server-on-segment.yml +++ b/tests/topology/expected/dhcp-server-on-segment.yml @@ -100,7 +100,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - dhcp - routing @@ -137,7 +137,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - dhcp name: h1 diff --git a/tests/topology/expected/dhcp-vlan.yml b/tests/topology/expected/dhcp-vlan.yml index 11018f0bce..25e379b480 100644 --- a/tests/topology/expected/dhcp-vlan.yml +++ b/tests/topology/expected/dhcp-vlan.yml @@ -288,7 +288,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: - dhcp - routing @@ -359,7 +359,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - dhcp name: h1 @@ -401,7 +401,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - dhcp name: h2 @@ -446,7 +446,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - dhcp name: h3 @@ -496,7 +496,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - dhcp - ospf @@ -682,7 +682,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - dhcp diff --git a/tests/topology/expected/dual-stack.yml b/tests/topology/expected/dual-stack.yml index 617d131780..a835d34dd4 100644 --- a/tests/topology/expected/dual-stack.yml +++ b/tests/topology/expected/dual-stack.yml @@ -131,7 +131,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 name: a_eos role: router c_csr: @@ -188,7 +188,7 @@ nodes: mgmt: ifname: GigabitEthernet1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 min_mtu: 1500 name: c_csr role: router @@ -245,7 +245,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: c_ios role: router c_nxos: @@ -298,7 +298,7 @@ nodes: mgmt: ifname: mgmt0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 name: c_nxos j_vsrx: af: @@ -346,6 +346,6 @@ nodes: mgmt: ifname: fxp0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 name: j_vsrx provider: libvirt diff --git a/tests/topology/expected/ebgp.utils.yml b/tests/topology/expected/ebgp.utils.yml index f63e10238d..778fee586c 100644 --- a/tests/topology/expected/ebgp.utils.yml +++ b/tests/topology/expected/ebgp.utils.yml @@ -283,7 +283,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp - vrf @@ -436,7 +436,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp - vrf @@ -575,7 +575,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - bgp name: r3 @@ -664,7 +664,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - bgp name: rr diff --git a/tests/topology/expected/eigrp-feature-test.yml b/tests/topology/expected/eigrp-feature-test.yml index 10ce0cda60..f1bdfe5dde 100644 --- a/tests/topology/expected/eigrp-feature-test.yml +++ b/tests/topology/expected/eigrp-feature-test.yml @@ -207,7 +207,7 @@ nodes: mgmt: ifname: GigabitEthernet1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 min_mtu: 1500 module: - eigrp @@ -309,7 +309,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - eigrp name: c_ios @@ -397,7 +397,7 @@ nodes: mgmt: ifname: mgmt0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - eigrp name: c_nxos diff --git a/tests/topology/expected/evpn-asymmetric-irb-ospf.yml b/tests/topology/expected/evpn-asymmetric-irb-ospf.yml index 142552b221..6632adab42 100644 --- a/tests/topology/expected/evpn-asymmetric-irb-ospf.yml +++ b/tests/topology/expected/evpn-asymmetric-irb-ospf.yml @@ -189,7 +189,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - routing name: h1 @@ -242,7 +242,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - routing name: h2 @@ -293,7 +293,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - routing name: h3 @@ -344,7 +344,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - routing name: h4 @@ -533,7 +533,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - ospf @@ -861,7 +861,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - ospf diff --git a/tests/topology/expected/evpn-hub-spoke.yml b/tests/topology/expected/evpn-hub-spoke.yml index 324a44d752..49cb29b506 100644 --- a/tests/topology/expected/evpn-hub-spoke.yml +++ b/tests/topology/expected/evpn-hub-spoke.yml @@ -113,7 +113,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp - vrf @@ -209,7 +209,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp - vrf diff --git a/tests/topology/expected/evpn-l3vni-only.yml b/tests/topology/expected/evpn-l3vni-only.yml index 8b518e27b6..9c3e37cec7 100644 --- a/tests/topology/expected/evpn-l3vni-only.yml +++ b/tests/topology/expected/evpn-l3vni-only.yml @@ -158,7 +158,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - ospf @@ -285,7 +285,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - ospf diff --git a/tests/topology/expected/evpn-node-vrf.yml b/tests/topology/expected/evpn-node-vrf.yml index a1cdf6e997..a31dff043b 100644 --- a/tests/topology/expected/evpn-node-vrf.yml +++ b/tests/topology/expected/evpn-node-vrf.yml @@ -114,7 +114,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - bgp diff --git a/tests/topology/expected/evpn-vlan-attr.yml b/tests/topology/expected/evpn-vlan-attr.yml index ba8014c5e0..57cf818313 100644 --- a/tests/topology/expected/evpn-vlan-attr.yml +++ b/tests/topology/expected/evpn-vlan-attr.yml @@ -107,7 +107,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - bgp diff --git a/tests/topology/expected/evpn-vxlan.yml b/tests/topology/expected/evpn-vxlan.yml index f6f10a0ff7..afe85d4033 100644 --- a/tests/topology/expected/evpn-vxlan.yml +++ b/tests/topology/expected/evpn-vxlan.yml @@ -154,7 +154,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - routing name: h1 @@ -210,7 +210,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - routing name: h2 @@ -266,7 +266,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - routing name: h3 @@ -322,7 +322,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: - routing name: h4 @@ -507,7 +507,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - ospf @@ -683,7 +683,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - ospf @@ -843,7 +843,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan - ospf diff --git a/tests/topology/expected/extra-attr-link.yml b/tests/topology/expected/extra-attr-link.yml index cf266b9a07..f93c1e56ed 100644 --- a/tests/topology/expected/extra-attr-link.yml +++ b/tests/topology/expected/extra-attr-link.yml @@ -137,7 +137,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf name: e1 @@ -200,7 +200,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 name: e2 role: router pe1: @@ -253,7 +253,7 @@ nodes: mgmt: ifname: GigabitEthernet1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 min_mtu: 1500 module: - ospf diff --git a/tests/topology/expected/fabric-ebgp.yml b/tests/topology/expected/fabric-ebgp.yml index 242f1d9f05..ef53bbf57b 100644 --- a/tests/topology/expected/fabric-ebgp.yml +++ b/tests/topology/expected/fabric-ebgp.yml @@ -347,7 +347,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - bgp mtu: 1500 @@ -475,7 +475,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - bgp mtu: 1500 @@ -504,7 +504,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: - routing name: h1 @@ -555,7 +555,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.108 - mac: 08:4f:a9:08:00:00 + mac: ca:fe:00:08:00:00 module: - routing name: h2 @@ -674,7 +674,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp name: l1 @@ -771,7 +771,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp name: l2 @@ -854,7 +854,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - bgp name: l3 @@ -937,7 +937,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - bgp name: l4 diff --git a/tests/topology/expected/group-ansible-variables.yml b/tests/topology/expected/group-ansible-variables.yml index 20e1498412..ccbf0894c0 100644 --- a/tests/topology/expected/group-ansible-variables.yml +++ b/tests/topology/expected/group-ansible-variables.yml @@ -26,7 +26,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: h1 netlab_device_type: hx role: host @@ -47,7 +47,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 mtu: 1500 name: h2 netlab_device_type: ac2 @@ -70,7 +70,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 mtu: 1500 name: h3 netlab_device_type: hx diff --git a/tests/topology/expected/group-data-vlan.yml b/tests/topology/expected/group-data-vlan.yml index 41dad06b38..3f91c4dd58 100644 --- a/tests/topology/expected/group-data-vlan.yml +++ b/tests/topology/expected/group-data-vlan.yml @@ -184,7 +184,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - ospf @@ -322,7 +322,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - ospf @@ -439,7 +439,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan - ospf diff --git a/tests/topology/expected/group-data-vrf.yml b/tests/topology/expected/group-data-vrf.yml index b145334863..012dd8f6da 100644 --- a/tests/topology/expected/group-data-vrf.yml +++ b/tests/topology/expected/group-data-vrf.yml @@ -94,7 +94,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf - vrf @@ -225,7 +225,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - ospf - vrf diff --git a/tests/topology/expected/groups-auto-create.yml b/tests/topology/expected/groups-auto-create.yml index f991937751..8b3da5642d 100644 --- a/tests/topology/expected/groups-auto-create.yml +++ b/tests/topology/expected/groups-auto-create.yml @@ -37,7 +37,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 name: c role: router d: @@ -58,7 +58,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 name: d role: router e: @@ -78,7 +78,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 mtu: 1500 name: e f: @@ -98,7 +98,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 mtu: 1500 name: f provider: libvirt diff --git a/tests/topology/expected/groups-hierarchy.yml b/tests/topology/expected/groups-hierarchy.yml index 6c216a37f0..9a3e22bd76 100644 --- a/tests/topology/expected/groups-hierarchy.yml +++ b/tests/topology/expected/groups-hierarchy.yml @@ -106,7 +106,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf mtu: 1500 @@ -135,7 +135,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: [] mtu: 1500 name: b @@ -156,7 +156,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: [] name: c role: router @@ -200,7 +200,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - ospf mtu: 1500 @@ -268,7 +268,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - ospf - bgp @@ -296,7 +296,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: [] mtu: 1500 name: f diff --git a/tests/topology/expected/groups-node-data.yml b/tests/topology/expected/groups-node-data.yml index 6413f6ef49..a950769c1c 100644 --- a/tests/topology/expected/groups-node-data.yml +++ b/tests/topology/expected/groups-node-data.yml @@ -117,7 +117,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp name: a @@ -186,7 +186,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp mtu: 1500 @@ -255,7 +255,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - bgp mtu: 1500 @@ -324,7 +324,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - bgp mtu: 1500 @@ -393,7 +393,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - bgp mtu: 1500 @@ -462,7 +462,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - bgp mtu: 1500 diff --git a/tests/topology/expected/groups-node.yml b/tests/topology/expected/groups-node.yml index 00f7666fbe..e10fbffd01 100644 --- a/tests/topology/expected/groups-node.yml +++ b/tests/topology/expected/groups-node.yml @@ -48,7 +48,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 mtu: 1500 name: a b: @@ -68,7 +68,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 mtu: 1500 name: b c: @@ -88,7 +88,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 mtu: 1500 name: c d: @@ -108,7 +108,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 mtu: 1500 name: d e: @@ -131,7 +131,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 mtu: 1500 name: e f: @@ -153,7 +153,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 mtu: 1500 name: f provider: libvirt diff --git a/tests/topology/expected/groups-simple.yml b/tests/topology/expected/groups-simple.yml index c63e4b7554..9f15301ac7 100644 --- a/tests/topology/expected/groups-simple.yml +++ b/tests/topology/expected/groups-simple.yml @@ -31,7 +31,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 mtu: 1500 name: a b: @@ -51,7 +51,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 mtu: 1500 name: b c: @@ -71,7 +71,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 mtu: 1500 name: c d: @@ -91,7 +91,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 mtu: 1500 name: d e: @@ -111,7 +111,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 mtu: 1500 name: e f: @@ -131,7 +131,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 mtu: 1500 name: f provider: libvirt diff --git a/tests/topology/expected/groups-vlan-vrf.yml b/tests/topology/expected/groups-vlan-vrf.yml index ab750714de..d4d3e7eb3a 100644 --- a/tests/topology/expected/groups-vlan-vrf.yml +++ b/tests/topology/expected/groups-vlan-vrf.yml @@ -181,7 +181,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - routing name: h1 @@ -233,7 +233,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - routing name: h2 @@ -356,7 +356,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan - ospf @@ -594,7 +594,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - vlan - ospf diff --git a/tests/topology/expected/id.yml b/tests/topology/expected/id.yml index 4a4811bd3f..2053fcb10d 100644 --- a/tests/topology/expected/id.yml +++ b/tests/topology/expected/id.yml @@ -101,7 +101,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - ospf mtu: 1500 @@ -160,7 +160,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf mtu: 1500 @@ -218,7 +218,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf mtu: 1500 diff --git a/tests/topology/expected/igp-af.yml b/tests/topology/expected/igp-af.yml index 6810113c84..043ef703aa 100644 --- a/tests/topology/expected/igp-af.yml +++ b/tests/topology/expected/igp-af.yml @@ -177,7 +177,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - isis - ospf @@ -245,7 +245,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - isis - ospf @@ -334,7 +334,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - isis - ospf @@ -423,7 +423,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - isis - ospf @@ -517,7 +517,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - isis - ospf diff --git a/tests/topology/expected/igp-ospf-isis-eigrp-disable.yml b/tests/topology/expected/igp-ospf-isis-eigrp-disable.yml index 66a7c92170..66b8171f56 100644 --- a/tests/topology/expected/igp-ospf-isis-eigrp-disable.yml +++ b/tests/topology/expected/igp-ospf-isis-eigrp-disable.yml @@ -144,7 +144,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - isis - ospf @@ -241,7 +241,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - isis - ospf diff --git a/tests/topology/expected/isis-bfd-test.yml b/tests/topology/expected/isis-bfd-test.yml index 8c7f829934..21d336c498 100644 --- a/tests/topology/expected/isis-bfd-test.yml +++ b/tests/topology/expected/isis-bfd-test.yml @@ -283,7 +283,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - isis name: n4 @@ -341,7 +341,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - isis - bfd @@ -393,7 +393,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - isis - bfd @@ -592,7 +592,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - isis - bfd @@ -791,7 +791,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - isis - bfd diff --git a/tests/topology/expected/isis-feature-test.yml b/tests/topology/expected/isis-feature-test.yml index 3bca00fb58..f5b4819875 100644 --- a/tests/topology/expected/isis-feature-test.yml +++ b/tests/topology/expected/isis-feature-test.yml @@ -413,7 +413,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - isis name: a_eos @@ -565,7 +565,7 @@ nodes: mgmt: ifname: GigabitEthernet1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 min_mtu: 1500 module: - isis @@ -726,7 +726,7 @@ nodes: mgmt: ifname: mgmt0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - isis name: c_nxos @@ -887,7 +887,7 @@ nodes: mgmt: ifname: fxp0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - isis name: j_vsrx diff --git a/tests/topology/expected/lag-l2.yml b/tests/topology/expected/lag-l2.yml index f99b7d61aa..1059279b08 100644 --- a/tests/topology/expected/lag-l2.yml +++ b/tests/topology/expected/lag-l2.yml @@ -233,7 +233,7 @@ nodes: mgmt: ifname: mgmt1/1/1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - lag - vlan @@ -379,7 +379,7 @@ nodes: mgmt: ifname: mgmt1/1/1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - lag - vlan diff --git a/tests/topology/expected/lag-l3-access-vlan.yml b/tests/topology/expected/lag-l3-access-vlan.yml index 5ca221a43f..503583b747 100644 --- a/tests/topology/expected/lag-l3-access-vlan.yml +++ b/tests/topology/expected/lag-l3-access-vlan.yml @@ -133,7 +133,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - lag - vlan @@ -229,7 +229,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - lag - vlan diff --git a/tests/topology/expected/lag-l3.yml b/tests/topology/expected/lag-l3.yml index 1e861ed83b..a80a159400 100644 --- a/tests/topology/expected/lag-l3.yml +++ b/tests/topology/expected/lag-l3.yml @@ -181,7 +181,7 @@ nodes: mgmt: ifname: mgmt1/1/1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - lag - gateway @@ -295,7 +295,7 @@ nodes: mgmt: ifname: mgmt1/1/1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - lag mtu: 1500 diff --git a/tests/topology/expected/lag-mlag-m_to_m.yml b/tests/topology/expected/lag-mlag-m_to_m.yml index 7a575af556..475c433eaf 100644 --- a/tests/topology/expected/lag-mlag-m_to_m.yml +++ b/tests/topology/expected/lag-mlag-m_to_m.yml @@ -355,7 +355,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - lag - vlan @@ -528,7 +528,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - lag - vlan @@ -701,7 +701,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - lag - vlan @@ -887,7 +887,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - lag - vlan @@ -938,7 +938,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - routing name: h1 @@ -1000,7 +1000,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - routing name: h2 diff --git a/tests/topology/expected/lag-mlag.yml b/tests/topology/expected/lag-mlag.yml index 4d28327ad7..540a991af7 100644 --- a/tests/topology/expected/lag-mlag.yml +++ b/tests/topology/expected/lag-mlag.yml @@ -438,7 +438,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - lag - vlan @@ -592,7 +592,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - lag - vlan @@ -876,7 +876,7 @@ nodes: mgmt: ifname: mgmt1/1/1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - lag - vlan @@ -1136,7 +1136,7 @@ nodes: mgmt: ifname: mgmt1/1/1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - lag - vlan @@ -1232,7 +1232,7 @@ nodes: mgmt: ifname: mgmt1/1/1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - lag - vlan @@ -1330,7 +1330,7 @@ nodes: mgmt: ifname: mgmt1/1/1 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - lag - vlan diff --git a/tests/topology/expected/lag-vlan-trunk.yml b/tests/topology/expected/lag-vlan-trunk.yml index 900a87b80c..afdb129025 100644 --- a/tests/topology/expected/lag-vlan-trunk.yml +++ b/tests/topology/expected/lag-vlan-trunk.yml @@ -169,7 +169,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - lag - vlan @@ -308,7 +308,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - lag - vlan diff --git a/tests/topology/expected/libvirt-clab-complex.yml b/tests/topology/expected/libvirt-clab-complex.yml index 6125473057..0407a5523a 100644 --- a/tests/topology/expected/libvirt-clab-complex.yml +++ b/tests/topology/expected/libvirt-clab-complex.yml @@ -179,7 +179,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - routing mtu: 1500 @@ -258,7 +258,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - routing mtu: 1500 @@ -341,7 +341,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf name: r1 @@ -420,7 +420,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - ospf name: r2 @@ -506,7 +506,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf mtu: 1500 diff --git a/tests/topology/expected/link-bw.yml b/tests/topology/expected/link-bw.yml index fd516dfa20..746eb0c776 100644 --- a/tests/topology/expected/link-bw.yml +++ b/tests/topology/expected/link-bw.yml @@ -66,7 +66,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: e1 role: router e2: @@ -106,7 +106,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 name: e2 role: router provider: libvirt diff --git a/tests/topology/expected/link-empty.yml b/tests/topology/expected/link-empty.yml index 5508268474..7f41c03fcc 100644 --- a/tests/topology/expected/link-empty.yml +++ b/tests/topology/expected/link-empty.yml @@ -21,7 +21,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: e1 role: router e2: @@ -41,7 +41,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 name: e2 role: router provider: libvirt diff --git a/tests/topology/expected/link-formats.yml b/tests/topology/expected/link-formats.yml index 86bb8c096e..b01be8a1ff 100644 --- a/tests/topology/expected/link-formats.yml +++ b/tests/topology/expected/link-formats.yml @@ -419,7 +419,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf name: r1 @@ -608,7 +608,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - ospf name: r2 @@ -715,7 +715,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf name: r3 diff --git a/tests/topology/expected/link-group.yml b/tests/topology/expected/link-group.yml index b51cd503b8..636e0defe1 100644 --- a/tests/topology/expected/link-group.yml +++ b/tests/topology/expected/link-group.yml @@ -165,7 +165,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf name: r1 @@ -238,7 +238,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - ospf name: r2 @@ -311,7 +311,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf name: r3 diff --git a/tests/topology/expected/link-loopback.yml b/tests/topology/expected/link-loopback.yml index 52226a65c3..0297516579 100644 --- a/tests/topology/expected/link-loopback.yml +++ b/tests/topology/expected/link-loopback.yml @@ -97,7 +97,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - routing name: h1 @@ -149,7 +149,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: r1 role: router r2: @@ -186,7 +186,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 name: r2 role: router provider: libvirt diff --git a/tests/topology/expected/link-tunnel.yml b/tests/topology/expected/link-tunnel.yml index 5285603af8..a6cb2b5424 100644 --- a/tests/topology/expected/link-tunnel.yml +++ b/tests/topology/expected/link-tunnel.yml @@ -118,7 +118,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: r1 role: router r2: @@ -177,7 +177,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 name: r2 role: router r3: @@ -245,7 +245,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 name: r3 role: router provider: libvirt diff --git a/tests/topology/expected/link-without-prefix.yml b/tests/topology/expected/link-without-prefix.yml index 179800a620..4d9cfedbc0 100644 --- a/tests/topology/expected/link-without-prefix.yml +++ b/tests/topology/expected/link-without-prefix.yml @@ -127,7 +127,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: r1 role: router r2: @@ -190,7 +190,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 name: r2 role: router r3: @@ -235,7 +235,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 name: r3 role: router provider: libvirt diff --git a/tests/topology/expected/links-as-dict.yml b/tests/topology/expected/links-as-dict.yml index 0b827caccc..6b419f05aa 100644 --- a/tests/topology/expected/links-as-dict.yml +++ b/tests/topology/expected/links-as-dict.yml @@ -87,7 +87,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: r1 r2: af: @@ -127,7 +127,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 name: r2 r3: af: @@ -167,6 +167,6 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 name: r3 provider: clab diff --git a/tests/topology/expected/module-node-global-params.yml b/tests/topology/expected/module-node-global-params.yml index 41d637b6a6..0c358e05b3 100644 --- a/tests/topology/expected/module-node-global-params.yml +++ b/tests/topology/expected/module-node-global-params.yml @@ -70,7 +70,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf name: r1 @@ -123,7 +123,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp name: r2 diff --git a/tests/topology/expected/module-node-global.yml b/tests/topology/expected/module-node-global.yml index cebd68ef4f..bc4b63c5bf 100644 --- a/tests/topology/expected/module-node-global.yml +++ b/tests/topology/expected/module-node-global.yml @@ -36,7 +36,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: [] name: r1 role: router @@ -73,7 +73,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp name: r2 diff --git a/tests/topology/expected/module-node-only.yml b/tests/topology/expected/module-node-only.yml index 0b568b0e5f..ac93119c9f 100644 --- a/tests/topology/expected/module-node-only.yml +++ b/tests/topology/expected/module-node-only.yml @@ -42,7 +42,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bfd name: r1 @@ -80,7 +80,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp name: r2 diff --git a/tests/topology/expected/module-node-params.yml b/tests/topology/expected/module-node-params.yml index 53ea7ef42a..c9af703e9c 100644 --- a/tests/topology/expected/module-node-params.yml +++ b/tests/topology/expected/module-node-params.yml @@ -70,7 +70,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf name: r1 @@ -114,7 +114,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp name: r2 @@ -153,7 +153,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf name: r3 diff --git a/tests/topology/expected/module-reorder.yml b/tests/topology/expected/module-reorder.yml index 37ba51a624..c30b88c48d 100644 --- a/tests/topology/expected/module-reorder.yml +++ b/tests/topology/expected/module-reorder.yml @@ -185,7 +185,7 @@ nodes: mgmt: ifname: GigabitEthernet1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 min_mtu: 1500 module: - isis @@ -247,7 +247,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - isis - sr @@ -351,7 +351,7 @@ nodes: mgmt: ifname: GigabitEthernet1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 min_mtu: 1500 module: - isis @@ -469,7 +469,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - isis - bgp diff --git a/tests/topology/expected/mpls-vpn-simple.yml b/tests/topology/expected/mpls-vpn-simple.yml index bce69ee242..c06144e3dd 100644 --- a/tests/topology/expected/mpls-vpn-simple.yml +++ b/tests/topology/expected/mpls-vpn-simple.yml @@ -175,7 +175,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - isis - bgp @@ -310,7 +310,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - isis - bgp diff --git a/tests/topology/expected/mpls.yml b/tests/topology/expected/mpls.yml index 3668e53775..1b29e55d9a 100644 --- a/tests/topology/expected/mpls.yml +++ b/tests/topology/expected/mpls.yml @@ -187,7 +187,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - bgp - mpls @@ -261,7 +261,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - bgp - mpls @@ -353,7 +353,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf - mpls @@ -488,7 +488,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf - bgp @@ -629,7 +629,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - ospf - bgp @@ -747,7 +747,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - ospf - bgp diff --git a/tests/topology/expected/node-large-id.yml b/tests/topology/expected/node-large-id.yml index 3c7f4fd1cd..fceb446c41 100644 --- a/tests/topology/expected/node-large-id.yml +++ b/tests/topology/expected/node-large-id.yml @@ -56,7 +56,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.64.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 name: r1 r2: af: @@ -89,7 +89,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.65.144 - mac: 08:4f:a9:00:01:2c + mac: ca:fe:00:00:01:2c name: r2 r3: af: @@ -122,6 +122,6 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.64.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: r3 provider: libvirt diff --git a/tests/topology/expected/node.clone-plugin-lag.yml b/tests/topology/expected/node.clone-plugin-lag.yml index ab92fa8754..0982b54286 100644 --- a/tests/topology/expected/node.clone-plugin-lag.yml +++ b/tests/topology/expected/node.clone-plugin-lag.yml @@ -288,7 +288,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - lag - vlan @@ -379,7 +379,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - lag - vlan @@ -463,7 +463,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - lag - vlan @@ -557,7 +557,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - lag - vlan @@ -753,7 +753,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - lag - vlan @@ -967,7 +967,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - lag - vlan diff --git a/tests/topology/expected/node.clone-plugin.yml b/tests/topology/expected/node.clone-plugin.yml index 428fdd0f8a..66c1fcecc9 100644 --- a/tests/topology/expected/node.clone-plugin.yml +++ b/tests/topology/expected/node.clone-plugin.yml @@ -255,7 +255,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - vrf @@ -359,7 +359,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan - vrf @@ -413,7 +413,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.110 - mac: 08:4f:a9:0a:00:00 + mac: ca:fe:00:0a:00:00 module: - routing name: host_w_long_n-01 @@ -464,7 +464,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.111 - mac: 08:4f:a9:0b:00:00 + mac: ca:fe:00:0b:00:00 module: - routing name: host_w_long_n-02 @@ -515,7 +515,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.112 - mac: 08:4f:a9:0c:00:00 + mac: ca:fe:00:0c:00:00 module: - routing name: host_w_long_n-03 @@ -752,7 +752,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - vrf diff --git a/tests/topology/expected/nodes-strings.yml b/tests/topology/expected/nodes-strings.yml index 3c3e650a02..d1fe1a4912 100644 --- a/tests/topology/expected/nodes-strings.yml +++ b/tests/topology/expected/nodes-strings.yml @@ -20,7 +20,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: e1 role: router e2: @@ -40,7 +40,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 name: e2 role: router e3: @@ -60,7 +60,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 name: e3 role: router provider: libvirt diff --git a/tests/topology/expected/null-vrfs.yml b/tests/topology/expected/null-vrfs.yml index a15c3fd232..442f698072 100644 --- a/tests/topology/expected/null-vrfs.yml +++ b/tests/topology/expected/null-vrfs.yml @@ -106,7 +106,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp - vrf @@ -193,7 +193,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp - evpn diff --git a/tests/topology/expected/ospf-bfd-test.yml b/tests/topology/expected/ospf-bfd-test.yml index aeb5b42c06..b9e9070f25 100644 --- a/tests/topology/expected/ospf-bfd-test.yml +++ b/tests/topology/expected/ospf-bfd-test.yml @@ -163,7 +163,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf - bfd @@ -255,7 +255,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - ospf - bfd @@ -304,7 +304,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf name: r3 diff --git a/tests/topology/expected/ospf.yml b/tests/topology/expected/ospf.yml index 9f715a8a05..003318c379 100644 --- a/tests/topology/expected/ospf.yml +++ b/tests/topology/expected/ospf.yml @@ -349,7 +349,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf mtu: 1400 @@ -494,7 +494,7 @@ nodes: mgmt: ifname: GigabitEthernet1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 min_mtu: 1500 module: - ospf @@ -649,7 +649,7 @@ nodes: mgmt: ifname: mgmt0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf mtu: 1400 @@ -803,7 +803,7 @@ nodes: mgmt: ifname: fxp0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - ospf mtu: 1400 diff --git a/tests/topology/expected/paths.yml b/tests/topology/expected/paths.yml index ae58195786..573e400187 100644 --- a/tests/topology/expected/paths.yml +++ b/tests/topology/expected/paths.yml @@ -20,6 +20,6 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: dummy provider: libvirt diff --git a/tests/topology/expected/removed-attr-inheritance.yml b/tests/topology/expected/removed-attr-inheritance.yml index 4ead8b7ef5..0410e97563 100644 --- a/tests/topology/expected/removed-attr-inheritance.yml +++ b/tests/topology/expected/removed-attr-inheritance.yml @@ -209,7 +209,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp name: r1 @@ -305,7 +305,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp name: r2 @@ -372,7 +372,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - bgp name: r3 diff --git a/tests/topology/expected/rp-aspath-numbers.yml b/tests/topology/expected/rp-aspath-numbers.yml index a6deda3b39..28428e3f04 100644 --- a/tests/topology/expected/rp-aspath-numbers.yml +++ b/tests/topology/expected/rp-aspath-numbers.yml @@ -113,7 +113,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - routing - bgp @@ -202,7 +202,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - routing - bgp diff --git a/tests/topology/expected/rp-clist-expansion.yml b/tests/topology/expected/rp-clist-expansion.yml index 2c1cff8a49..caf66a096a 100644 --- a/tests/topology/expected/rp-clist-expansion.yml +++ b/tests/topology/expected/rp-clist-expansion.yml @@ -34,7 +34,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - routing name: r1 diff --git a/tests/topology/expected/rp-normalize-merge.yml b/tests/topology/expected/rp-normalize-merge.yml index 8656de1671..861f44a77a 100644 --- a/tests/topology/expected/rp-normalize-merge.yml +++ b/tests/topology/expected/rp-normalize-merge.yml @@ -22,7 +22,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - routing name: r1 @@ -54,7 +54,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - routing name: r2 diff --git a/tests/topology/expected/rp-prefix-expansion.yml b/tests/topology/expected/rp-prefix-expansion.yml index cc25b82288..41703a6f44 100644 --- a/tests/topology/expected/rp-prefix-expansion.yml +++ b/tests/topology/expected/rp-prefix-expansion.yml @@ -24,7 +24,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - routing name: r1 @@ -89,7 +89,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - routing name: r2 diff --git a/tests/topology/expected/rp-static-gw.yml b/tests/topology/expected/rp-static-gw.yml index 45ff166d31..aee19230b9 100644 --- a/tests/topology/expected/rp-static-gw.yml +++ b/tests/topology/expected/rp-static-gw.yml @@ -302,7 +302,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - routing name: h1 @@ -446,7 +446,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - routing name: h2 @@ -640,7 +640,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - gateway name: s1 @@ -808,7 +808,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - gateway name: s2 diff --git a/tests/topology/expected/rp-static.yml b/tests/topology/expected/rp-static.yml index 08e6fb3462..cdf7f4c706 100644 --- a/tests/topology/expected/rp-static.yml +++ b/tests/topology/expected/rp-static.yml @@ -140,7 +140,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - routing - vrf @@ -326,7 +326,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vrf name: p @@ -376,7 +376,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: [] name: x prefix: diff --git a/tests/topology/expected/rt-vlan-anycast.yml b/tests/topology/expected/rt-vlan-anycast.yml index 88ddd36b7d..b26bf53360 100644 --- a/tests/topology/expected/rt-vlan-anycast.yml +++ b/tests/topology/expected/rt-vlan-anycast.yml @@ -130,7 +130,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - routing name: h @@ -238,7 +238,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan name: s1 @@ -311,7 +311,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan - gateway diff --git a/tests/topology/expected/rt-vlan-mode-link-route.yml b/tests/topology/expected/rt-vlan-mode-link-route.yml index 110d6abd2b..0765a7cd44 100644 --- a/tests/topology/expected/rt-vlan-mode-link-route.yml +++ b/tests/topology/expected/rt-vlan-mode-link-route.yml @@ -595,7 +595,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - vlan name: br @@ -678,7 +678,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - routing name: h @@ -841,7 +841,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan name: rt @@ -1133,7 +1133,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan name: sw diff --git a/tests/topology/expected/rt-vlan-native-routed.yml b/tests/topology/expected/rt-vlan-native-routed.yml index fe4c306d6c..e97b794380 100644 --- a/tests/topology/expected/rt-vlan-native-routed.yml +++ b/tests/topology/expected/rt-vlan-native-routed.yml @@ -102,7 +102,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - ospf @@ -195,7 +195,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan name: s1 diff --git a/tests/topology/expected/rt-vlan-no-gateway.yml b/tests/topology/expected/rt-vlan-no-gateway.yml index 3d238cdfff..ff52b44aa0 100644 --- a/tests/topology/expected/rt-vlan-no-gateway.yml +++ b/tests/topology/expected/rt-vlan-no-gateway.yml @@ -81,7 +81,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - routing name: h1 @@ -112,7 +112,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - routing name: h2 @@ -179,7 +179,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan name: s1 diff --git a/tests/topology/expected/rt-vlan-role-unnumbered.yml b/tests/topology/expected/rt-vlan-role-unnumbered.yml index ad985f580c..b8df315849 100644 --- a/tests/topology/expected/rt-vlan-role-unnumbered.yml +++ b/tests/topology/expected/rt-vlan-role-unnumbered.yml @@ -91,7 +91,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan name: host @@ -167,7 +167,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan name: leaf diff --git a/tests/topology/expected/rt-vlan-trunk-partial-overlap.yml b/tests/topology/expected/rt-vlan-trunk-partial-overlap.yml index d76e3a8835..575deea6ed 100644 --- a/tests/topology/expected/rt-vlan-trunk-partial-overlap.yml +++ b/tests/topology/expected/rt-vlan-trunk-partial-overlap.yml @@ -102,7 +102,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan name: s1 @@ -187,7 +187,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan name: s2 @@ -272,7 +272,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan name: s3 diff --git a/tests/topology/expected/stp-port-type.yml b/tests/topology/expected/stp-port-type.yml index 8691ff6417..3a0faef5f5 100644 --- a/tests/topology/expected/stp-port-type.yml +++ b/tests/topology/expected/stp-port-type.yml @@ -269,7 +269,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - routing mtu: 1500 @@ -311,7 +311,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - routing mtu: 1500 @@ -350,7 +350,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - routing mtu: 1500 @@ -389,7 +389,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - routing mtu: 1500 @@ -521,7 +521,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - vlan - stp @@ -673,7 +673,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: - vlan - stp @@ -784,7 +784,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - stp diff --git a/tests/topology/expected/stp.yml b/tests/topology/expected/stp.yml index e4944cd38f..4abe40974c 100644 --- a/tests/topology/expected/stp.yml +++ b/tests/topology/expected/stp.yml @@ -258,7 +258,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - routing mtu: 1500 @@ -302,7 +302,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - routing mtu: 1500 @@ -346,7 +346,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - routing mtu: 1500 @@ -390,7 +390,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - routing mtu: 1500 @@ -520,7 +520,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - stp @@ -665,7 +665,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - stp @@ -802,7 +802,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: - vlan - stp diff --git a/tests/topology/expected/tools.yml b/tests/topology/expected/tools.yml index 4406dbcb1c..142cd43937 100644 --- a/tests/topology/expected/tools.yml +++ b/tests/topology/expected/tools.yml @@ -20,7 +20,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: a_eos role: router provider: libvirt diff --git a/tests/topology/expected/unmanaged-device.yml b/tests/topology/expected/unmanaged-device.yml index 68177a74dc..7d0c4bafa2 100644 --- a/tests/topology/expected/unmanaged-device.yml +++ b/tests/topology/expected/unmanaged-device.yml @@ -60,7 +60,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - routing name: h1 @@ -127,7 +127,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: r1 role: router provider: libvirt diff --git a/tests/topology/expected/unnumbered.yml b/tests/topology/expected/unnumbered.yml index 1730e675e9..acbfd5ff19 100644 --- a/tests/topology/expected/unnumbered.yml +++ b/tests/topology/expected/unnumbered.yml @@ -143,7 +143,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 name: a_eos role: router c_nxos: @@ -212,7 +212,7 @@ nodes: mgmt: ifname: mgmt0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: c_nxos j_vsrx: af: @@ -272,7 +272,7 @@ nodes: mgmt: ifname: fxp0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 name: j_vsrx n_cumulus: af: @@ -328,7 +328,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 mtu: 1500 name: n_cumulus provider: libvirt diff --git a/tests/topology/expected/vbox.yml b/tests/topology/expected/vbox.yml index a829de8749..fd35eb4ad3 100644 --- a/tests/topology/expected/vbox.yml +++ b/tests/topology/expected/vbox.yml @@ -80,7 +80,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 name: a_eos role: router a_eos_2: @@ -114,7 +114,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 name: a_eos_2 role: router c_nxos: @@ -158,6 +158,6 @@ nodes: mgmt: ifname: mgmt0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: c_nxos provider: virtualbox diff --git a/tests/topology/expected/vlan-access-links.yml b/tests/topology/expected/vlan-access-links.yml index 646fafeaf6..8c5c8f1c77 100644 --- a/tests/topology/expected/vlan-access-links.yml +++ b/tests/topology/expected/vlan-access-links.yml @@ -120,7 +120,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - routing mtu: 1500 @@ -186,7 +186,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - routing mtu: 1500 @@ -294,7 +294,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - ospf @@ -397,7 +397,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan - ospf diff --git a/tests/topology/expected/vlan-access-neighbors.yml b/tests/topology/expected/vlan-access-neighbors.yml index 9640d50ea3..271a325977 100644 --- a/tests/topology/expected/vlan-access-neighbors.yml +++ b/tests/topology/expected/vlan-access-neighbors.yml @@ -133,7 +133,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - bgp name: r1 @@ -208,7 +208,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - bgp name: r2 @@ -283,7 +283,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan name: s1 diff --git a/tests/topology/expected/vlan-access-node.yml b/tests/topology/expected/vlan-access-node.yml index 1f37a4c071..06872e9c26 100644 --- a/tests/topology/expected/vlan-access-node.yml +++ b/tests/topology/expected/vlan-access-node.yml @@ -104,7 +104,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - routing name: h1 @@ -157,7 +157,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - routing name: h2 @@ -243,7 +243,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan name: s1 @@ -319,7 +319,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan name: s2 diff --git a/tests/topology/expected/vlan-access-single.yml b/tests/topology/expected/vlan-access-single.yml index b7db22f440..7ded48f0e7 100644 --- a/tests/topology/expected/vlan-access-single.yml +++ b/tests/topology/expected/vlan-access-single.yml @@ -144,7 +144,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - routing mtu: 1500 @@ -215,7 +215,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - routing mtu: 1500 @@ -326,7 +326,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - ospf @@ -432,7 +432,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan - ospf @@ -516,7 +516,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - vlan name: s3 diff --git a/tests/topology/expected/vlan-bridge-trunk-router.yml b/tests/topology/expected/vlan-bridge-trunk-router.yml index 2d7b343f9a..cc2d1e0a83 100644 --- a/tests/topology/expected/vlan-bridge-trunk-router.yml +++ b/tests/topology/expected/vlan-bridge-trunk-router.yml @@ -151,7 +151,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - routing name: h1 @@ -205,7 +205,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - routing name: h2 @@ -279,7 +279,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 name: r1 role: router s1: @@ -376,7 +376,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - vlan name: s1 @@ -492,7 +492,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - vlan name: s2 diff --git a/tests/topology/expected/vlan-coverage.yml b/tests/topology/expected/vlan-coverage.yml index 9cd00b5929..9edb3b9adb 100644 --- a/tests/topology/expected/vlan-coverage.yml +++ b/tests/topology/expected/vlan-coverage.yml @@ -135,7 +135,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - routing name: h1 @@ -202,7 +202,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - routing name: h2 @@ -302,7 +302,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan name: s1 @@ -417,7 +417,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan name: s2 diff --git a/tests/topology/expected/vlan-mode-priority.yml b/tests/topology/expected/vlan-mode-priority.yml index 72646be0ba..28b4dd3980 100644 --- a/tests/topology/expected/vlan-mode-priority.yml +++ b/tests/topology/expected/vlan-mode-priority.yml @@ -239,7 +239,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan name: s1 @@ -422,7 +422,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan name: s2 diff --git a/tests/topology/expected/vlan-native-routed.yml b/tests/topology/expected/vlan-native-routed.yml index ef7e5b45ea..fb8d7f85bf 100644 --- a/tests/topology/expected/vlan-native-routed.yml +++ b/tests/topology/expected/vlan-native-routed.yml @@ -76,7 +76,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - routing name: h1 @@ -195,7 +195,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan name: r1 @@ -313,7 +313,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan name: r2 diff --git a/tests/topology/expected/vlan-routed-access.yml b/tests/topology/expected/vlan-routed-access.yml index aacbf90419..942a435614 100644 --- a/tests/topology/expected/vlan-routed-access.yml +++ b/tests/topology/expected/vlan-routed-access.yml @@ -113,7 +113,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - ospf @@ -176,7 +176,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan - ospf @@ -273,7 +273,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - ospf diff --git a/tests/topology/expected/vlan-routed-multiprovider.yml b/tests/topology/expected/vlan-routed-multiprovider.yml index 40664d78e7..6d11dfcd2b 100644 --- a/tests/topology/expected/vlan-routed-multiprovider.yml +++ b/tests/topology/expected/vlan-routed-multiprovider.yml @@ -98,7 +98,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan name: r @@ -216,7 +216,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan mtu: 1500 diff --git a/tests/topology/expected/vlan-routed-vrf.yml b/tests/topology/expected/vlan-routed-vrf.yml index 0aed4cee74..ebe13e3d7f 100644 --- a/tests/topology/expected/vlan-routed-vrf.yml +++ b/tests/topology/expected/vlan-routed-vrf.yml @@ -199,7 +199,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: [] name: h1 h2: @@ -240,7 +240,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: [] name: h2 h3: @@ -287,7 +287,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: [] name: h3 r1: @@ -417,7 +417,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - vrf @@ -612,7 +612,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - vrf @@ -834,7 +834,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan - vrf @@ -1137,7 +1137,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - vlan - vrf diff --git a/tests/topology/expected/vlan-routed.yml b/tests/topology/expected/vlan-routed.yml index 2f20e01ca1..df497c14c0 100644 --- a/tests/topology/expected/vlan-routed.yml +++ b/tests/topology/expected/vlan-routed.yml @@ -77,7 +77,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - routing name: h1 @@ -128,7 +128,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - routing name: h2 @@ -202,7 +202,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan name: r1 diff --git a/tests/topology/expected/vlan-router-stick.yml b/tests/topology/expected/vlan-router-stick.yml index 00b0450d96..ac2270fd01 100644 --- a/tests/topology/expected/vlan-router-stick.yml +++ b/tests/topology/expected/vlan-router-stick.yml @@ -151,7 +151,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf name: r1 @@ -201,7 +201,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - ospf name: r2 @@ -292,7 +292,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - vlan - ospf @@ -421,7 +421,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan name: s1 @@ -529,7 +529,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan name: s2 diff --git a/tests/topology/expected/vlan-trunk-native.yml b/tests/topology/expected/vlan-trunk-native.yml index f6c7dee00e..58b592f059 100644 --- a/tests/topology/expected/vlan-trunk-native.yml +++ b/tests/topology/expected/vlan-trunk-native.yml @@ -233,7 +233,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - routing name: h1 @@ -289,7 +289,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - routing name: h2 @@ -345,7 +345,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - routing name: h3 @@ -401,7 +401,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - routing name: h4 @@ -457,7 +457,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: - routing name: h5 @@ -697,7 +697,7 @@ nodes: mgmt: ifname: GigabitEthernet0/0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - ospf @@ -907,7 +907,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - ospf diff --git a/tests/topology/expected/vlan-vrf-lite.yml b/tests/topology/expected/vlan-vrf-lite.yml index 833544a7f4..3401b8f4bb 100644 --- a/tests/topology/expected/vlan-vrf-lite.yml +++ b/tests/topology/expected/vlan-vrf-lite.yml @@ -217,7 +217,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - routing name: h1 @@ -269,7 +269,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - routing name: h2 @@ -321,7 +321,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - routing name: h3 @@ -373,7 +373,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: - routing name: h4 @@ -428,7 +428,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.108 - mac: 08:4f:a9:08:00:00 + mac: ca:fe:00:08:00:00 name: h5 role: router r1: @@ -544,7 +544,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - ospf @@ -861,7 +861,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - ospf @@ -1127,7 +1127,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan - ospf diff --git a/tests/topology/expected/vlan-vrrp.yml b/tests/topology/expected/vlan-vrrp.yml index 43f03ad0c1..0749b0dd69 100644 --- a/tests/topology/expected/vlan-vrrp.yml +++ b/tests/topology/expected/vlan-vrrp.yml @@ -190,7 +190,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - routing name: h1 @@ -263,7 +263,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - routing name: h2 @@ -404,7 +404,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - gateway @@ -533,7 +533,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan - gateway diff --git a/tests/topology/expected/vrf-igp.yml b/tests/topology/expected/vrf-igp.yml index 70fca56df8..a98b94e99c 100644 --- a/tests/topology/expected/vrf-igp.yml +++ b/tests/topology/expected/vrf-igp.yml @@ -251,7 +251,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf - isis @@ -515,7 +515,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - ospf - isis @@ -735,7 +735,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - bgp name: r2 @@ -799,7 +799,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - ospf - vrf diff --git a/tests/topology/expected/vrf-leaking-loop.yml b/tests/topology/expected/vrf-leaking-loop.yml index 2f74a86985..6059f155a0 100644 --- a/tests/topology/expected/vrf-leaking-loop.yml +++ b/tests/topology/expected/vrf-leaking-loop.yml @@ -158,7 +158,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - vrf diff --git a/tests/topology/expected/vrf-links.yml b/tests/topology/expected/vrf-links.yml index 007ebb59ee..f5271fe407 100644 --- a/tests/topology/expected/vrf-links.yml +++ b/tests/topology/expected/vrf-links.yml @@ -211,7 +211,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf - bgp @@ -433,7 +433,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - ospf - bgp @@ -623,7 +623,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf - bgp diff --git a/tests/topology/expected/vrf-loopback.yml b/tests/topology/expected/vrf-loopback.yml index 2409a359d6..fa1e937d39 100644 --- a/tests/topology/expected/vrf-loopback.yml +++ b/tests/topology/expected/vrf-loopback.yml @@ -39,7 +39,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vrf name: r1 diff --git a/tests/topology/expected/vrf-routing-blocks.yml b/tests/topology/expected/vrf-routing-blocks.yml index 5ebe30dfd5..a4c1bdb33f 100644 --- a/tests/topology/expected/vrf-routing-blocks.yml +++ b/tests/topology/expected/vrf-routing-blocks.yml @@ -382,7 +382,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf - isis @@ -795,7 +795,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - ospf - isis @@ -1062,7 +1062,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - bgp - vrf diff --git a/tests/topology/expected/vrf.yml b/tests/topology/expected/vrf.yml index 77d3b05f27..e60e37ceb6 100644 --- a/tests/topology/expected/vrf.yml +++ b/tests/topology/expected/vrf.yml @@ -171,7 +171,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - ospf - bgp @@ -354,7 +354,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - bgp - vrf @@ -457,7 +457,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - ospf - vrf diff --git a/tests/topology/expected/vrrp-interface-granularity.yml b/tests/topology/expected/vrrp-interface-granularity.yml index 04fce5ffc2..054d094cc1 100644 --- a/tests/topology/expected/vrrp-interface-granularity.yml +++ b/tests/topology/expected/vrrp-interface-granularity.yml @@ -170,7 +170,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - gateway name: r1 @@ -251,7 +251,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - gateway name: r2 diff --git a/tests/topology/expected/vxlan-router-stick.yml b/tests/topology/expected/vxlan-router-stick.yml index aad9befd11..c3320672aa 100644 --- a/tests/topology/expected/vxlan-router-stick.yml +++ b/tests/topology/expected/vxlan-router-stick.yml @@ -136,7 +136,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan - ospf @@ -267,7 +267,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan name: s1 @@ -381,7 +381,7 @@ nodes: mgmt: ifname: Management0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - vxlan diff --git a/tests/topology/expected/vxlan-static.yml b/tests/topology/expected/vxlan-static.yml index e5f08780c8..d9a06b4191 100644 --- a/tests/topology/expected/vxlan-static.yml +++ b/tests/topology/expected/vxlan-static.yml @@ -165,7 +165,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - routing name: h1 @@ -197,7 +197,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - routing name: h2 @@ -229,7 +229,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - routing name: h3 @@ -261,7 +261,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: - routing name: h4 @@ -364,7 +364,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - vlan - vxlan @@ -508,7 +508,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - vlan - vxlan @@ -604,7 +604,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - vlan - vxlan diff --git a/tests/topology/expected/vxlan-vrf-lite.yml b/tests/topology/expected/vxlan-vrf-lite.yml index b241d33094..8e832a3bf4 100644 --- a/tests/topology/expected/vxlan-vrf-lite.yml +++ b/tests/topology/expected/vxlan-vrf-lite.yml @@ -214,7 +214,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.104 - mac: 08:4f:a9:04:00:00 + mac: ca:fe:00:04:00:00 module: - routing name: bh1 @@ -266,7 +266,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.105 - mac: 08:4f:a9:05:00:00 + mac: ca:fe:00:05:00:00 module: - routing name: bh2 @@ -355,7 +355,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.109 - mac: 08:4f:a9:09:00:00 + mac: ca:fe:00:09:00:00 module: - ospf name: c @@ -390,7 +390,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.101 - mac: 08:4f:a9:01:00:00 + mac: ca:fe:00:01:00:00 module: - routing name: rh1 @@ -442,7 +442,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.102 - mac: 08:4f:a9:02:00:00 + mac: ca:fe:00:02:00:00 module: - routing name: rh2 @@ -494,7 +494,7 @@ nodes: mgmt: ifname: eth0 ipv4: 192.168.121.103 - mac: 08:4f:a9:03:00:00 + mac: ca:fe:00:03:00:00 module: - routing name: rh3 @@ -615,7 +615,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.106 - mac: 08:4f:a9:06:00:00 + mac: ca:fe:00:06:00:00 module: - vlan - ospf @@ -876,7 +876,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.107 - mac: 08:4f:a9:07:00:00 + mac: ca:fe:00:07:00:00 module: - vlan - ospf @@ -1109,7 +1109,7 @@ nodes: mgmt: ifname: Management1 ipv4: 192.168.121.108 - mac: 08:4f:a9:08:00:00 + mac: ca:fe:00:08:00:00 module: - vlan - ospf From 069b15b869c40b45ea3d5f0be3d4a2d95393e411 Mon Sep 17 00:00:00 2001 From: Ivan Pepelnjak Date: Sat, 13 Sep 2025 18:43:08 +0200 Subject: [PATCH 6/6] Fix Cat8000v and IOSvL2 container image names The new image names match the new vrnetlab container naming scheme --- netsim/devices/cat8000v.yml | 2 +- netsim/devices/iosvl2.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/netsim/devices/cat8000v.yml b/netsim/devices/cat8000v.yml index d3cafd0160..e9dadddb82 100644 --- a/netsim/devices/cat8000v.yml +++ b/netsim/devices/cat8000v.yml @@ -4,7 +4,7 @@ parent: csr virtualbox: image: clab: - image: vrnetlab/vr-c8000v:17.13.01a + image: vrnetlab/cisco_c8000v:17.13.01a node: kind: cisco_c8000v interface.name: eth{ifindex-1} diff --git a/netsim/devices/iosvl2.yml b/netsim/devices/iosvl2.yml index 23b4b5deb4..1a2754253a 100644 --- a/netsim/devices/iosvl2.yml +++ b/netsim/devices/iosvl2.yml @@ -31,7 +31,7 @@ clab: ansible_ssh_pass: admin ansible_user: admin netlab_check_retries: 50 - image: vrnetlab/cisco_viosl2:15.2.2020 + image: vrnetlab/cisco_viosl2:15.2 node: kind: linux interface.name: eth{ifindex}