├── .gitignore ├── README.md ├── bgp-mpath ├── arista-ceos │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── bird │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── frr │ ├── daemons │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 ├── nokia-srl │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf └── topology.yml ├── bgp ├── arista-ceos │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ └── rt4.conf ├── bird │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ └── rt4.conf ├── frr │ ├── daemons │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ └── rt4.conf ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ └── rt4.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ └── rt4 ├── nokia-srl │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ └── rt4.conf └── topology.yml ├── bier-ospfv3 ├── Dockerfile ├── README.md ├── click │ ├── r0.click │ ├── r1.click │ ├── r2.click │ ├── r3.click │ ├── r4.click │ └── r5.click ├── holo │ ├── holod.toml │ ├── r0.conf │ ├── r1.conf │ ├── r2.conf │ ├── r3.conf │ ├── r4.conf │ └── r5.conf └── topology.yml ├── is-is ├── arista-ceos │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── frr │ ├── daemons │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 ├── nokia-srl │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf └── topology.yml ├── mpls-ldp ├── arista-ceos │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── frr │ ├── daemons │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 ├── nokia-srl │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf └── topology.yml ├── ospfv2-auth-hmac-sha ├── arista-ceos │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── bird │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 └── topology.yml ├── ospfv2-multi-area ├── arista-ceos │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── bird │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── frr │ ├── daemons │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 ├── nokia-srl │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf └── topology.yml ├── ospfv2-sr ├── frr │ ├── daemons │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 └── topology.yml ├── ospfv2-unnumbered ├── arista-ceos │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── bird │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── frr │ ├── daemons │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 └── topology.yml ├── ospfv2-virtual-link ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 ├── junosevolved │ └── rt5.conf └── topology.yml ├── ospfv2 ├── arista-ceos │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── bird │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── frr │ ├── daemons │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 ├── nokia-srl │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf └── topology.yml ├── ospfv3-auth-trailer ├── bird │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── frr │ ├── daemons │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 └── topology.yml ├── ospfv3-ipv4-sr ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 └── topology.yml ├── ospfv3-ipv4 ├── arista-ceos │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── bird │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 ├── nokia-srl │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf └── topology.yml ├── ospfv3-multi-area ├── arista-ceos │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── bird │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── frr │ ├── daemons │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 ├── nokia-srl │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf └── topology.yml ├── ospfv3-sr ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 └── topology.yml ├── ospfv3-virtual-link ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 ├── junosevolved │ └── rt5.conf └── topology.yml ├── ospfv3 ├── arista-ceos │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── bird │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── frr │ ├── daemons │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 ├── nokia-srl │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf └── topology.yml ├── ripng ├── bird │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── frr │ ├── daemons │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 └── topology.yml ├── ripv2 ├── arista-ceos │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── bird │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── frr │ ├── daemons │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── holo │ ├── rt1.conf │ ├── rt2.conf │ ├── rt3.conf │ ├── rt4.conf │ ├── rt5.conf │ └── rt6.conf ├── interfaces │ ├── rt1 │ ├── rt2 │ ├── rt3 │ ├── rt4 │ ├── rt5 │ └── rt6 └── topology.yml ├── scripts └── start.sh ├── vrrpv2 ├── frr │ ├── daemons │ ├── frr-setup.sh │ ├── rt1.conf │ └── rt2.conf ├── holo │ ├── rt1.conf │ └── rt2.conf ├── interfaces │ ├── rt1 │ └── rt2 ├── keepalived │ ├── rt1.conf │ ├── rt1.sh │ ├── rt2.conf │ └── rt2.sh ├── rare │ ├── rt1.conf │ └── rt2.conf └── topology.yml ├── vrrpv3-ipv4 ├── frr │ ├── daemons │ ├── frr-setup.sh │ ├── rt1.conf │ └── rt2.conf ├── holo │ ├── rt1.conf │ └── rt2.conf ├── interfaces │ ├── rt1 │ └── rt2 ├── rare │ ├── rt1.conf │ └── rt2.conf └── topology.yml └── vrrpv3-ipv6 ├── frr ├── daemons ├── frr-setup.sh ├── rt1.conf └── rt2.conf ├── holo ├── rt1.conf └── rt2.conf ├── interfaces ├── rt1 └── rt2 ├── rare ├── rt1.conf └── rt2.conf └── topology.yml /.gitignore: -------------------------------------------------------------------------------- 1 | *.yml.bak 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/README.md -------------------------------------------------------------------------------- /bgp-mpath/arista-ceos/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/arista-ceos/rt1.conf -------------------------------------------------------------------------------- /bgp-mpath/arista-ceos/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/arista-ceos/rt2.conf -------------------------------------------------------------------------------- /bgp-mpath/arista-ceos/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/arista-ceos/rt3.conf -------------------------------------------------------------------------------- /bgp-mpath/arista-ceos/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/arista-ceos/rt4.conf -------------------------------------------------------------------------------- /bgp-mpath/arista-ceos/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/arista-ceos/rt5.conf -------------------------------------------------------------------------------- /bgp-mpath/arista-ceos/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/arista-ceos/rt6.conf -------------------------------------------------------------------------------- /bgp-mpath/bird/rt1.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bgp-mpath/bird/rt2.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bgp-mpath/bird/rt3.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bgp-mpath/bird/rt4.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bgp-mpath/bird/rt5.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bgp-mpath/bird/rt6.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bgp-mpath/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/frr/daemons -------------------------------------------------------------------------------- /bgp-mpath/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/frr/rt1.conf -------------------------------------------------------------------------------- /bgp-mpath/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/frr/rt2.conf -------------------------------------------------------------------------------- /bgp-mpath/frr/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/frr/rt3.conf -------------------------------------------------------------------------------- /bgp-mpath/frr/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/frr/rt4.conf -------------------------------------------------------------------------------- /bgp-mpath/frr/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/frr/rt5.conf -------------------------------------------------------------------------------- /bgp-mpath/frr/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/frr/rt6.conf -------------------------------------------------------------------------------- /bgp-mpath/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/holo/rt1.conf -------------------------------------------------------------------------------- /bgp-mpath/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/holo/rt2.conf -------------------------------------------------------------------------------- /bgp-mpath/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/holo/rt3.conf -------------------------------------------------------------------------------- /bgp-mpath/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/holo/rt4.conf -------------------------------------------------------------------------------- /bgp-mpath/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/holo/rt5.conf -------------------------------------------------------------------------------- /bgp-mpath/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/holo/rt6.conf -------------------------------------------------------------------------------- /bgp-mpath/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/interfaces/rt1 -------------------------------------------------------------------------------- /bgp-mpath/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/interfaces/rt2 -------------------------------------------------------------------------------- /bgp-mpath/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/interfaces/rt3 -------------------------------------------------------------------------------- /bgp-mpath/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/interfaces/rt4 -------------------------------------------------------------------------------- /bgp-mpath/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/interfaces/rt5 -------------------------------------------------------------------------------- /bgp-mpath/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/interfaces/rt6 -------------------------------------------------------------------------------- /bgp-mpath/nokia-srl/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/nokia-srl/rt1.conf -------------------------------------------------------------------------------- /bgp-mpath/nokia-srl/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/nokia-srl/rt2.conf -------------------------------------------------------------------------------- /bgp-mpath/nokia-srl/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/nokia-srl/rt3.conf -------------------------------------------------------------------------------- /bgp-mpath/nokia-srl/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/nokia-srl/rt4.conf -------------------------------------------------------------------------------- /bgp-mpath/nokia-srl/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/nokia-srl/rt5.conf -------------------------------------------------------------------------------- /bgp-mpath/nokia-srl/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/nokia-srl/rt6.conf -------------------------------------------------------------------------------- /bgp-mpath/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp-mpath/topology.yml -------------------------------------------------------------------------------- /bgp/arista-ceos/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/arista-ceos/rt1.conf -------------------------------------------------------------------------------- /bgp/arista-ceos/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/arista-ceos/rt2.conf -------------------------------------------------------------------------------- /bgp/arista-ceos/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/arista-ceos/rt3.conf -------------------------------------------------------------------------------- /bgp/arista-ceos/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/arista-ceos/rt4.conf -------------------------------------------------------------------------------- /bgp/bird/rt1.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bgp/bird/rt2.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bgp/bird/rt3.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bgp/bird/rt4.conf: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /bgp/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/frr/daemons -------------------------------------------------------------------------------- /bgp/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/frr/rt1.conf -------------------------------------------------------------------------------- /bgp/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/frr/rt2.conf -------------------------------------------------------------------------------- /bgp/frr/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/frr/rt3.conf -------------------------------------------------------------------------------- /bgp/frr/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/frr/rt4.conf -------------------------------------------------------------------------------- /bgp/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/holo/rt1.conf -------------------------------------------------------------------------------- /bgp/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/holo/rt2.conf -------------------------------------------------------------------------------- /bgp/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/holo/rt3.conf -------------------------------------------------------------------------------- /bgp/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/holo/rt4.conf -------------------------------------------------------------------------------- /bgp/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/interfaces/rt1 -------------------------------------------------------------------------------- /bgp/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/interfaces/rt2 -------------------------------------------------------------------------------- /bgp/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/interfaces/rt3 -------------------------------------------------------------------------------- /bgp/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/interfaces/rt4 -------------------------------------------------------------------------------- /bgp/nokia-srl/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/nokia-srl/rt1.conf -------------------------------------------------------------------------------- /bgp/nokia-srl/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/nokia-srl/rt2.conf -------------------------------------------------------------------------------- /bgp/nokia-srl/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/nokia-srl/rt3.conf -------------------------------------------------------------------------------- /bgp/nokia-srl/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/nokia-srl/rt4.conf -------------------------------------------------------------------------------- /bgp/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bgp/topology.yml -------------------------------------------------------------------------------- /bier-ospfv3/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/Dockerfile -------------------------------------------------------------------------------- /bier-ospfv3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/README.md -------------------------------------------------------------------------------- /bier-ospfv3/click/r0.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/click/r0.click -------------------------------------------------------------------------------- /bier-ospfv3/click/r1.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/click/r1.click -------------------------------------------------------------------------------- /bier-ospfv3/click/r2.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/click/r2.click -------------------------------------------------------------------------------- /bier-ospfv3/click/r3.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/click/r3.click -------------------------------------------------------------------------------- /bier-ospfv3/click/r4.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/click/r4.click -------------------------------------------------------------------------------- /bier-ospfv3/click/r5.click: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/click/r5.click -------------------------------------------------------------------------------- /bier-ospfv3/holo/holod.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/holo/holod.toml -------------------------------------------------------------------------------- /bier-ospfv3/holo/r0.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/holo/r0.conf -------------------------------------------------------------------------------- /bier-ospfv3/holo/r1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/holo/r1.conf -------------------------------------------------------------------------------- /bier-ospfv3/holo/r2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/holo/r2.conf -------------------------------------------------------------------------------- /bier-ospfv3/holo/r3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/holo/r3.conf -------------------------------------------------------------------------------- /bier-ospfv3/holo/r4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/holo/r4.conf -------------------------------------------------------------------------------- /bier-ospfv3/holo/r5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/holo/r5.conf -------------------------------------------------------------------------------- /bier-ospfv3/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/bier-ospfv3/topology.yml -------------------------------------------------------------------------------- /is-is/arista-ceos/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/arista-ceos/rt1.conf -------------------------------------------------------------------------------- /is-is/arista-ceos/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/arista-ceos/rt2.conf -------------------------------------------------------------------------------- /is-is/arista-ceos/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/arista-ceos/rt3.conf -------------------------------------------------------------------------------- /is-is/arista-ceos/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/arista-ceos/rt4.conf -------------------------------------------------------------------------------- /is-is/arista-ceos/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/arista-ceos/rt5.conf -------------------------------------------------------------------------------- /is-is/arista-ceos/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/arista-ceos/rt6.conf -------------------------------------------------------------------------------- /is-is/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/frr/daemons -------------------------------------------------------------------------------- /is-is/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/frr/rt1.conf -------------------------------------------------------------------------------- /is-is/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/frr/rt2.conf -------------------------------------------------------------------------------- /is-is/frr/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/frr/rt3.conf -------------------------------------------------------------------------------- /is-is/frr/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/frr/rt4.conf -------------------------------------------------------------------------------- /is-is/frr/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/frr/rt5.conf -------------------------------------------------------------------------------- /is-is/frr/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/frr/rt6.conf -------------------------------------------------------------------------------- /is-is/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/holo/rt1.conf -------------------------------------------------------------------------------- /is-is/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/holo/rt2.conf -------------------------------------------------------------------------------- /is-is/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/holo/rt3.conf -------------------------------------------------------------------------------- /is-is/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/holo/rt4.conf -------------------------------------------------------------------------------- /is-is/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/holo/rt5.conf -------------------------------------------------------------------------------- /is-is/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/holo/rt6.conf -------------------------------------------------------------------------------- /is-is/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/interfaces/rt1 -------------------------------------------------------------------------------- /is-is/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/interfaces/rt2 -------------------------------------------------------------------------------- /is-is/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/interfaces/rt3 -------------------------------------------------------------------------------- /is-is/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/interfaces/rt4 -------------------------------------------------------------------------------- /is-is/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/interfaces/rt5 -------------------------------------------------------------------------------- /is-is/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/interfaces/rt6 -------------------------------------------------------------------------------- /is-is/nokia-srl/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/nokia-srl/rt1.conf -------------------------------------------------------------------------------- /is-is/nokia-srl/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/nokia-srl/rt2.conf -------------------------------------------------------------------------------- /is-is/nokia-srl/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/nokia-srl/rt3.conf -------------------------------------------------------------------------------- /is-is/nokia-srl/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/nokia-srl/rt4.conf -------------------------------------------------------------------------------- /is-is/nokia-srl/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/nokia-srl/rt5.conf -------------------------------------------------------------------------------- /is-is/nokia-srl/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/nokia-srl/rt6.conf -------------------------------------------------------------------------------- /is-is/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/is-is/topology.yml -------------------------------------------------------------------------------- /mpls-ldp/arista-ceos/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/arista-ceos/rt1.conf -------------------------------------------------------------------------------- /mpls-ldp/arista-ceos/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/arista-ceos/rt2.conf -------------------------------------------------------------------------------- /mpls-ldp/arista-ceos/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/arista-ceos/rt3.conf -------------------------------------------------------------------------------- /mpls-ldp/arista-ceos/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/arista-ceos/rt4.conf -------------------------------------------------------------------------------- /mpls-ldp/arista-ceos/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/arista-ceos/rt5.conf -------------------------------------------------------------------------------- /mpls-ldp/arista-ceos/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/arista-ceos/rt6.conf -------------------------------------------------------------------------------- /mpls-ldp/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/frr/daemons -------------------------------------------------------------------------------- /mpls-ldp/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/frr/rt1.conf -------------------------------------------------------------------------------- /mpls-ldp/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/frr/rt2.conf -------------------------------------------------------------------------------- /mpls-ldp/frr/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/frr/rt3.conf -------------------------------------------------------------------------------- /mpls-ldp/frr/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/frr/rt4.conf -------------------------------------------------------------------------------- /mpls-ldp/frr/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/frr/rt5.conf -------------------------------------------------------------------------------- /mpls-ldp/frr/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/frr/rt6.conf -------------------------------------------------------------------------------- /mpls-ldp/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/holo/rt1.conf -------------------------------------------------------------------------------- /mpls-ldp/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/holo/rt2.conf -------------------------------------------------------------------------------- /mpls-ldp/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/holo/rt3.conf -------------------------------------------------------------------------------- /mpls-ldp/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/holo/rt4.conf -------------------------------------------------------------------------------- /mpls-ldp/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/holo/rt5.conf -------------------------------------------------------------------------------- /mpls-ldp/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/holo/rt6.conf -------------------------------------------------------------------------------- /mpls-ldp/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/interfaces/rt1 -------------------------------------------------------------------------------- /mpls-ldp/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/interfaces/rt2 -------------------------------------------------------------------------------- /mpls-ldp/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/interfaces/rt3 -------------------------------------------------------------------------------- /mpls-ldp/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/interfaces/rt4 -------------------------------------------------------------------------------- /mpls-ldp/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/interfaces/rt5 -------------------------------------------------------------------------------- /mpls-ldp/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/interfaces/rt6 -------------------------------------------------------------------------------- /mpls-ldp/nokia-srl/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/nokia-srl/rt1.conf -------------------------------------------------------------------------------- /mpls-ldp/nokia-srl/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/nokia-srl/rt2.conf -------------------------------------------------------------------------------- /mpls-ldp/nokia-srl/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/nokia-srl/rt3.conf -------------------------------------------------------------------------------- /mpls-ldp/nokia-srl/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/nokia-srl/rt4.conf -------------------------------------------------------------------------------- /mpls-ldp/nokia-srl/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/nokia-srl/rt5.conf -------------------------------------------------------------------------------- /mpls-ldp/nokia-srl/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/nokia-srl/rt6.conf -------------------------------------------------------------------------------- /mpls-ldp/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/mpls-ldp/topology.yml -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/arista-ceos/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/arista-ceos/rt1.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/arista-ceos/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/arista-ceos/rt2.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/arista-ceos/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/arista-ceos/rt3.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/arista-ceos/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/arista-ceos/rt4.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/arista-ceos/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/arista-ceos/rt5.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/arista-ceos/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/arista-ceos/rt6.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/bird/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/bird/rt1.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/bird/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/bird/rt2.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/bird/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/bird/rt3.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/bird/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/bird/rt4.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/bird/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/bird/rt5.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/bird/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/bird/rt6.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/holo/rt1.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/holo/rt2.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/holo/rt3.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/holo/rt4.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/holo/rt5.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/holo/rt6.conf -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/interfaces/rt1 -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/interfaces/rt2 -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/interfaces/rt3 -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/interfaces/rt4 -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/interfaces/rt5 -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/interfaces/rt6 -------------------------------------------------------------------------------- /ospfv2-auth-hmac-sha/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-auth-hmac-sha/topology.yml -------------------------------------------------------------------------------- /ospfv2-multi-area/arista-ceos/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/arista-ceos/rt1.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/arista-ceos/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/arista-ceos/rt2.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/arista-ceos/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/arista-ceos/rt3.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/arista-ceos/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/arista-ceos/rt4.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/arista-ceos/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/arista-ceos/rt5.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/arista-ceos/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/arista-ceos/rt6.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/bird/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/bird/rt1.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/bird/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/bird/rt2.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/bird/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/bird/rt3.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/bird/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/bird/rt4.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/bird/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/bird/rt5.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/bird/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/bird/rt6.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/frr/daemons -------------------------------------------------------------------------------- /ospfv2-multi-area/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/frr/rt1.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/frr/rt2.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/frr/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/frr/rt3.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/frr/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/frr/rt4.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/frr/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/frr/rt5.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/frr/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/frr/rt6.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/holo/rt1.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/holo/rt2.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/holo/rt3.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/holo/rt4.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/holo/rt5.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/holo/rt6.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/interfaces/rt1 -------------------------------------------------------------------------------- /ospfv2-multi-area/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/interfaces/rt2 -------------------------------------------------------------------------------- /ospfv2-multi-area/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/interfaces/rt3 -------------------------------------------------------------------------------- /ospfv2-multi-area/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/interfaces/rt4 -------------------------------------------------------------------------------- /ospfv2-multi-area/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/interfaces/rt5 -------------------------------------------------------------------------------- /ospfv2-multi-area/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/interfaces/rt6 -------------------------------------------------------------------------------- /ospfv2-multi-area/nokia-srl/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/nokia-srl/rt1.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/nokia-srl/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/nokia-srl/rt2.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/nokia-srl/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/nokia-srl/rt3.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/nokia-srl/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/nokia-srl/rt4.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/nokia-srl/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/nokia-srl/rt5.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/nokia-srl/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/nokia-srl/rt6.conf -------------------------------------------------------------------------------- /ospfv2-multi-area/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-multi-area/topology.yml -------------------------------------------------------------------------------- /ospfv2-sr/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/frr/daemons -------------------------------------------------------------------------------- /ospfv2-sr/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/frr/rt1.conf -------------------------------------------------------------------------------- /ospfv2-sr/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/frr/rt2.conf -------------------------------------------------------------------------------- /ospfv2-sr/frr/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/frr/rt3.conf -------------------------------------------------------------------------------- /ospfv2-sr/frr/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/frr/rt4.conf -------------------------------------------------------------------------------- /ospfv2-sr/frr/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/frr/rt5.conf -------------------------------------------------------------------------------- /ospfv2-sr/frr/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/frr/rt6.conf -------------------------------------------------------------------------------- /ospfv2-sr/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/holo/rt1.conf -------------------------------------------------------------------------------- /ospfv2-sr/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/holo/rt2.conf -------------------------------------------------------------------------------- /ospfv2-sr/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/holo/rt3.conf -------------------------------------------------------------------------------- /ospfv2-sr/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/holo/rt4.conf -------------------------------------------------------------------------------- /ospfv2-sr/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/holo/rt5.conf -------------------------------------------------------------------------------- /ospfv2-sr/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/holo/rt6.conf -------------------------------------------------------------------------------- /ospfv2-sr/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/interfaces/rt1 -------------------------------------------------------------------------------- /ospfv2-sr/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/interfaces/rt2 -------------------------------------------------------------------------------- /ospfv2-sr/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/interfaces/rt3 -------------------------------------------------------------------------------- /ospfv2-sr/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/interfaces/rt4 -------------------------------------------------------------------------------- /ospfv2-sr/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/interfaces/rt5 -------------------------------------------------------------------------------- /ospfv2-sr/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/interfaces/rt6 -------------------------------------------------------------------------------- /ospfv2-sr/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-sr/topology.yml -------------------------------------------------------------------------------- /ospfv2-unnumbered/arista-ceos/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/arista-ceos/rt1.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/arista-ceos/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/arista-ceos/rt2.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/arista-ceos/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/arista-ceos/rt3.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/arista-ceos/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/arista-ceos/rt4.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/arista-ceos/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/arista-ceos/rt5.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/arista-ceos/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/arista-ceos/rt6.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/bird/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/bird/rt1.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/bird/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/bird/rt2.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/bird/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/bird/rt3.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/bird/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/bird/rt4.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/bird/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/bird/rt5.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/bird/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/bird/rt6.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/frr/daemons -------------------------------------------------------------------------------- /ospfv2-unnumbered/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/frr/rt1.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/frr/rt2.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/frr/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/frr/rt3.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/frr/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/frr/rt4.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/frr/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/frr/rt5.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/frr/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/frr/rt6.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/holo/rt1.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/holo/rt2.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/holo/rt3.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/holo/rt4.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/holo/rt5.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/holo/rt6.conf -------------------------------------------------------------------------------- /ospfv2-unnumbered/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/interfaces/rt1 -------------------------------------------------------------------------------- /ospfv2-unnumbered/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/interfaces/rt2 -------------------------------------------------------------------------------- /ospfv2-unnumbered/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/interfaces/rt3 -------------------------------------------------------------------------------- /ospfv2-unnumbered/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/interfaces/rt4 -------------------------------------------------------------------------------- /ospfv2-unnumbered/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/interfaces/rt5 -------------------------------------------------------------------------------- /ospfv2-unnumbered/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/interfaces/rt6 -------------------------------------------------------------------------------- /ospfv2-unnumbered/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-unnumbered/topology.yml -------------------------------------------------------------------------------- /ospfv2-virtual-link/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-virtual-link/holo/rt1.conf -------------------------------------------------------------------------------- /ospfv2-virtual-link/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-virtual-link/holo/rt2.conf -------------------------------------------------------------------------------- /ospfv2-virtual-link/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-virtual-link/holo/rt3.conf -------------------------------------------------------------------------------- /ospfv2-virtual-link/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-virtual-link/holo/rt4.conf -------------------------------------------------------------------------------- /ospfv2-virtual-link/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-virtual-link/holo/rt5.conf -------------------------------------------------------------------------------- /ospfv2-virtual-link/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-virtual-link/holo/rt6.conf -------------------------------------------------------------------------------- /ospfv2-virtual-link/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-virtual-link/interfaces/rt1 -------------------------------------------------------------------------------- /ospfv2-virtual-link/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-virtual-link/interfaces/rt2 -------------------------------------------------------------------------------- /ospfv2-virtual-link/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-virtual-link/interfaces/rt3 -------------------------------------------------------------------------------- /ospfv2-virtual-link/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-virtual-link/interfaces/rt4 -------------------------------------------------------------------------------- /ospfv2-virtual-link/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-virtual-link/interfaces/rt5 -------------------------------------------------------------------------------- /ospfv2-virtual-link/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-virtual-link/interfaces/rt6 -------------------------------------------------------------------------------- /ospfv2-virtual-link/junosevolved/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-virtual-link/junosevolved/rt5.conf -------------------------------------------------------------------------------- /ospfv2-virtual-link/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2-virtual-link/topology.yml -------------------------------------------------------------------------------- /ospfv2/arista-ceos/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/arista-ceos/rt1.conf -------------------------------------------------------------------------------- /ospfv2/arista-ceos/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/arista-ceos/rt2.conf -------------------------------------------------------------------------------- /ospfv2/arista-ceos/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/arista-ceos/rt3.conf -------------------------------------------------------------------------------- /ospfv2/arista-ceos/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/arista-ceos/rt4.conf -------------------------------------------------------------------------------- /ospfv2/arista-ceos/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/arista-ceos/rt5.conf -------------------------------------------------------------------------------- /ospfv2/arista-ceos/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/arista-ceos/rt6.conf -------------------------------------------------------------------------------- /ospfv2/bird/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/bird/rt1.conf -------------------------------------------------------------------------------- /ospfv2/bird/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/bird/rt2.conf -------------------------------------------------------------------------------- /ospfv2/bird/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/bird/rt3.conf -------------------------------------------------------------------------------- /ospfv2/bird/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/bird/rt4.conf -------------------------------------------------------------------------------- /ospfv2/bird/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/bird/rt5.conf -------------------------------------------------------------------------------- /ospfv2/bird/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/bird/rt6.conf -------------------------------------------------------------------------------- /ospfv2/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/frr/daemons -------------------------------------------------------------------------------- /ospfv2/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/frr/rt1.conf -------------------------------------------------------------------------------- /ospfv2/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/frr/rt2.conf -------------------------------------------------------------------------------- /ospfv2/frr/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/frr/rt3.conf -------------------------------------------------------------------------------- /ospfv2/frr/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/frr/rt4.conf -------------------------------------------------------------------------------- /ospfv2/frr/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/frr/rt5.conf -------------------------------------------------------------------------------- /ospfv2/frr/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/frr/rt6.conf -------------------------------------------------------------------------------- /ospfv2/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/holo/rt1.conf -------------------------------------------------------------------------------- /ospfv2/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/holo/rt2.conf -------------------------------------------------------------------------------- /ospfv2/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/holo/rt3.conf -------------------------------------------------------------------------------- /ospfv2/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/holo/rt4.conf -------------------------------------------------------------------------------- /ospfv2/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/holo/rt5.conf -------------------------------------------------------------------------------- /ospfv2/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/holo/rt6.conf -------------------------------------------------------------------------------- /ospfv2/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/interfaces/rt1 -------------------------------------------------------------------------------- /ospfv2/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/interfaces/rt2 -------------------------------------------------------------------------------- /ospfv2/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/interfaces/rt3 -------------------------------------------------------------------------------- /ospfv2/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/interfaces/rt4 -------------------------------------------------------------------------------- /ospfv2/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/interfaces/rt5 -------------------------------------------------------------------------------- /ospfv2/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/interfaces/rt6 -------------------------------------------------------------------------------- /ospfv2/nokia-srl/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/nokia-srl/rt1.conf -------------------------------------------------------------------------------- /ospfv2/nokia-srl/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/nokia-srl/rt2.conf -------------------------------------------------------------------------------- /ospfv2/nokia-srl/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/nokia-srl/rt3.conf -------------------------------------------------------------------------------- /ospfv2/nokia-srl/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/nokia-srl/rt4.conf -------------------------------------------------------------------------------- /ospfv2/nokia-srl/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/nokia-srl/rt5.conf -------------------------------------------------------------------------------- /ospfv2/nokia-srl/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/nokia-srl/rt6.conf -------------------------------------------------------------------------------- /ospfv2/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv2/topology.yml -------------------------------------------------------------------------------- /ospfv3-auth-trailer/bird/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/bird/rt1.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/bird/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/bird/rt2.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/bird/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/bird/rt3.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/bird/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/bird/rt4.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/bird/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/bird/rt5.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/bird/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/bird/rt6.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/frr/daemons -------------------------------------------------------------------------------- /ospfv3-auth-trailer/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/frr/rt1.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/frr/rt2.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/frr/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/frr/rt3.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/frr/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/frr/rt4.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/frr/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/frr/rt5.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/frr/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/frr/rt6.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/holo/rt1.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/holo/rt2.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/holo/rt3.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/holo/rt4.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/holo/rt5.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/holo/rt6.conf -------------------------------------------------------------------------------- /ospfv3-auth-trailer/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/interfaces/rt1 -------------------------------------------------------------------------------- /ospfv3-auth-trailer/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/interfaces/rt2 -------------------------------------------------------------------------------- /ospfv3-auth-trailer/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/interfaces/rt3 -------------------------------------------------------------------------------- /ospfv3-auth-trailer/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/interfaces/rt4 -------------------------------------------------------------------------------- /ospfv3-auth-trailer/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/interfaces/rt5 -------------------------------------------------------------------------------- /ospfv3-auth-trailer/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/interfaces/rt6 -------------------------------------------------------------------------------- /ospfv3-auth-trailer/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-auth-trailer/topology.yml -------------------------------------------------------------------------------- /ospfv3-ipv4-sr/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4-sr/holo/rt1.conf -------------------------------------------------------------------------------- /ospfv3-ipv4-sr/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4-sr/holo/rt2.conf -------------------------------------------------------------------------------- /ospfv3-ipv4-sr/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4-sr/holo/rt3.conf -------------------------------------------------------------------------------- /ospfv3-ipv4-sr/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4-sr/holo/rt4.conf -------------------------------------------------------------------------------- /ospfv3-ipv4-sr/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4-sr/holo/rt5.conf -------------------------------------------------------------------------------- /ospfv3-ipv4-sr/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4-sr/holo/rt6.conf -------------------------------------------------------------------------------- /ospfv3-ipv4-sr/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4-sr/interfaces/rt1 -------------------------------------------------------------------------------- /ospfv3-ipv4-sr/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4-sr/interfaces/rt2 -------------------------------------------------------------------------------- /ospfv3-ipv4-sr/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4-sr/interfaces/rt3 -------------------------------------------------------------------------------- /ospfv3-ipv4-sr/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4-sr/interfaces/rt4 -------------------------------------------------------------------------------- /ospfv3-ipv4-sr/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4-sr/interfaces/rt5 -------------------------------------------------------------------------------- /ospfv3-ipv4-sr/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4-sr/interfaces/rt6 -------------------------------------------------------------------------------- /ospfv3-ipv4-sr/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4-sr/topology.yml -------------------------------------------------------------------------------- /ospfv3-ipv4/arista-ceos/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/arista-ceos/rt1.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/arista-ceos/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/arista-ceos/rt2.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/arista-ceos/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/arista-ceos/rt3.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/arista-ceos/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/arista-ceos/rt4.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/arista-ceos/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/arista-ceos/rt5.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/arista-ceos/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/arista-ceos/rt6.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/bird/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/bird/rt1.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/bird/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/bird/rt2.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/bird/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/bird/rt3.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/bird/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/bird/rt4.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/bird/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/bird/rt5.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/bird/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/bird/rt6.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/holo/rt1.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/holo/rt2.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/holo/rt3.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/holo/rt4.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/holo/rt5.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/holo/rt6.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/interfaces/rt1 -------------------------------------------------------------------------------- /ospfv3-ipv4/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/interfaces/rt2 -------------------------------------------------------------------------------- /ospfv3-ipv4/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/interfaces/rt3 -------------------------------------------------------------------------------- /ospfv3-ipv4/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/interfaces/rt4 -------------------------------------------------------------------------------- /ospfv3-ipv4/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/interfaces/rt5 -------------------------------------------------------------------------------- /ospfv3-ipv4/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/interfaces/rt6 -------------------------------------------------------------------------------- /ospfv3-ipv4/nokia-srl/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/nokia-srl/rt1.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/nokia-srl/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/nokia-srl/rt2.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/nokia-srl/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/nokia-srl/rt3.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/nokia-srl/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/nokia-srl/rt4.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/nokia-srl/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/nokia-srl/rt5.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/nokia-srl/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/nokia-srl/rt6.conf -------------------------------------------------------------------------------- /ospfv3-ipv4/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-ipv4/topology.yml -------------------------------------------------------------------------------- /ospfv3-multi-area/arista-ceos/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/arista-ceos/rt1.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/arista-ceos/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/arista-ceos/rt2.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/arista-ceos/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/arista-ceos/rt3.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/arista-ceos/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/arista-ceos/rt4.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/arista-ceos/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/arista-ceos/rt5.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/arista-ceos/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/arista-ceos/rt6.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/bird/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/bird/rt1.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/bird/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/bird/rt2.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/bird/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/bird/rt3.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/bird/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/bird/rt4.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/bird/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/bird/rt5.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/bird/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/bird/rt6.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/frr/daemons -------------------------------------------------------------------------------- /ospfv3-multi-area/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/frr/rt1.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/frr/rt2.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/frr/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/frr/rt3.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/frr/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/frr/rt4.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/frr/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/frr/rt5.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/frr/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/frr/rt6.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/holo/rt1.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/holo/rt2.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/holo/rt3.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/holo/rt4.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/holo/rt5.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/holo/rt6.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/interfaces/rt1 -------------------------------------------------------------------------------- /ospfv3-multi-area/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/interfaces/rt2 -------------------------------------------------------------------------------- /ospfv3-multi-area/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/interfaces/rt3 -------------------------------------------------------------------------------- /ospfv3-multi-area/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/interfaces/rt4 -------------------------------------------------------------------------------- /ospfv3-multi-area/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/interfaces/rt5 -------------------------------------------------------------------------------- /ospfv3-multi-area/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/interfaces/rt6 -------------------------------------------------------------------------------- /ospfv3-multi-area/nokia-srl/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/nokia-srl/rt1.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/nokia-srl/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/nokia-srl/rt2.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/nokia-srl/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/nokia-srl/rt3.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/nokia-srl/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/nokia-srl/rt4.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/nokia-srl/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/nokia-srl/rt5.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/nokia-srl/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/nokia-srl/rt6.conf -------------------------------------------------------------------------------- /ospfv3-multi-area/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-multi-area/topology.yml -------------------------------------------------------------------------------- /ospfv3-sr/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-sr/holo/rt1.conf -------------------------------------------------------------------------------- /ospfv3-sr/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-sr/holo/rt2.conf -------------------------------------------------------------------------------- /ospfv3-sr/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-sr/holo/rt3.conf -------------------------------------------------------------------------------- /ospfv3-sr/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-sr/holo/rt4.conf -------------------------------------------------------------------------------- /ospfv3-sr/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-sr/holo/rt5.conf -------------------------------------------------------------------------------- /ospfv3-sr/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-sr/holo/rt6.conf -------------------------------------------------------------------------------- /ospfv3-sr/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-sr/interfaces/rt1 -------------------------------------------------------------------------------- /ospfv3-sr/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-sr/interfaces/rt2 -------------------------------------------------------------------------------- /ospfv3-sr/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-sr/interfaces/rt3 -------------------------------------------------------------------------------- /ospfv3-sr/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-sr/interfaces/rt4 -------------------------------------------------------------------------------- /ospfv3-sr/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-sr/interfaces/rt5 -------------------------------------------------------------------------------- /ospfv3-sr/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-sr/interfaces/rt6 -------------------------------------------------------------------------------- /ospfv3-sr/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-sr/topology.yml -------------------------------------------------------------------------------- /ospfv3-virtual-link/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-virtual-link/holo/rt1.conf -------------------------------------------------------------------------------- /ospfv3-virtual-link/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-virtual-link/holo/rt2.conf -------------------------------------------------------------------------------- /ospfv3-virtual-link/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-virtual-link/holo/rt3.conf -------------------------------------------------------------------------------- /ospfv3-virtual-link/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-virtual-link/holo/rt4.conf -------------------------------------------------------------------------------- /ospfv3-virtual-link/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-virtual-link/holo/rt5.conf -------------------------------------------------------------------------------- /ospfv3-virtual-link/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-virtual-link/holo/rt6.conf -------------------------------------------------------------------------------- /ospfv3-virtual-link/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-virtual-link/interfaces/rt1 -------------------------------------------------------------------------------- /ospfv3-virtual-link/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-virtual-link/interfaces/rt2 -------------------------------------------------------------------------------- /ospfv3-virtual-link/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-virtual-link/interfaces/rt3 -------------------------------------------------------------------------------- /ospfv3-virtual-link/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-virtual-link/interfaces/rt4 -------------------------------------------------------------------------------- /ospfv3-virtual-link/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-virtual-link/interfaces/rt5 -------------------------------------------------------------------------------- /ospfv3-virtual-link/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-virtual-link/interfaces/rt6 -------------------------------------------------------------------------------- /ospfv3-virtual-link/junosevolved/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-virtual-link/junosevolved/rt5.conf -------------------------------------------------------------------------------- /ospfv3-virtual-link/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3-virtual-link/topology.yml -------------------------------------------------------------------------------- /ospfv3/arista-ceos/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/arista-ceos/rt1.conf -------------------------------------------------------------------------------- /ospfv3/arista-ceos/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/arista-ceos/rt2.conf -------------------------------------------------------------------------------- /ospfv3/arista-ceos/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/arista-ceos/rt3.conf -------------------------------------------------------------------------------- /ospfv3/arista-ceos/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/arista-ceos/rt4.conf -------------------------------------------------------------------------------- /ospfv3/arista-ceos/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/arista-ceos/rt5.conf -------------------------------------------------------------------------------- /ospfv3/arista-ceos/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/arista-ceos/rt6.conf -------------------------------------------------------------------------------- /ospfv3/bird/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/bird/rt1.conf -------------------------------------------------------------------------------- /ospfv3/bird/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/bird/rt2.conf -------------------------------------------------------------------------------- /ospfv3/bird/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/bird/rt3.conf -------------------------------------------------------------------------------- /ospfv3/bird/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/bird/rt4.conf -------------------------------------------------------------------------------- /ospfv3/bird/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/bird/rt5.conf -------------------------------------------------------------------------------- /ospfv3/bird/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/bird/rt6.conf -------------------------------------------------------------------------------- /ospfv3/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/frr/daemons -------------------------------------------------------------------------------- /ospfv3/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/frr/rt1.conf -------------------------------------------------------------------------------- /ospfv3/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/frr/rt2.conf -------------------------------------------------------------------------------- /ospfv3/frr/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/frr/rt3.conf -------------------------------------------------------------------------------- /ospfv3/frr/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/frr/rt4.conf -------------------------------------------------------------------------------- /ospfv3/frr/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/frr/rt5.conf -------------------------------------------------------------------------------- /ospfv3/frr/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/frr/rt6.conf -------------------------------------------------------------------------------- /ospfv3/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/holo/rt1.conf -------------------------------------------------------------------------------- /ospfv3/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/holo/rt2.conf -------------------------------------------------------------------------------- /ospfv3/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/holo/rt3.conf -------------------------------------------------------------------------------- /ospfv3/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/holo/rt4.conf -------------------------------------------------------------------------------- /ospfv3/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/holo/rt5.conf -------------------------------------------------------------------------------- /ospfv3/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/holo/rt6.conf -------------------------------------------------------------------------------- /ospfv3/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/interfaces/rt1 -------------------------------------------------------------------------------- /ospfv3/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/interfaces/rt2 -------------------------------------------------------------------------------- /ospfv3/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/interfaces/rt3 -------------------------------------------------------------------------------- /ospfv3/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/interfaces/rt4 -------------------------------------------------------------------------------- /ospfv3/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/interfaces/rt5 -------------------------------------------------------------------------------- /ospfv3/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/interfaces/rt6 -------------------------------------------------------------------------------- /ospfv3/nokia-srl/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/nokia-srl/rt1.conf -------------------------------------------------------------------------------- /ospfv3/nokia-srl/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/nokia-srl/rt2.conf -------------------------------------------------------------------------------- /ospfv3/nokia-srl/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/nokia-srl/rt3.conf -------------------------------------------------------------------------------- /ospfv3/nokia-srl/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/nokia-srl/rt4.conf -------------------------------------------------------------------------------- /ospfv3/nokia-srl/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/nokia-srl/rt5.conf -------------------------------------------------------------------------------- /ospfv3/nokia-srl/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/nokia-srl/rt6.conf -------------------------------------------------------------------------------- /ospfv3/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ospfv3/topology.yml -------------------------------------------------------------------------------- /ripng/bird/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/bird/rt1.conf -------------------------------------------------------------------------------- /ripng/bird/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/bird/rt2.conf -------------------------------------------------------------------------------- /ripng/bird/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/bird/rt3.conf -------------------------------------------------------------------------------- /ripng/bird/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/bird/rt4.conf -------------------------------------------------------------------------------- /ripng/bird/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/bird/rt5.conf -------------------------------------------------------------------------------- /ripng/bird/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/bird/rt6.conf -------------------------------------------------------------------------------- /ripng/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/frr/daemons -------------------------------------------------------------------------------- /ripng/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/frr/rt1.conf -------------------------------------------------------------------------------- /ripng/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/frr/rt2.conf -------------------------------------------------------------------------------- /ripng/frr/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/frr/rt3.conf -------------------------------------------------------------------------------- /ripng/frr/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/frr/rt4.conf -------------------------------------------------------------------------------- /ripng/frr/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/frr/rt5.conf -------------------------------------------------------------------------------- /ripng/frr/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/frr/rt6.conf -------------------------------------------------------------------------------- /ripng/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/holo/rt1.conf -------------------------------------------------------------------------------- /ripng/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/holo/rt2.conf -------------------------------------------------------------------------------- /ripng/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/holo/rt3.conf -------------------------------------------------------------------------------- /ripng/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/holo/rt4.conf -------------------------------------------------------------------------------- /ripng/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/holo/rt5.conf -------------------------------------------------------------------------------- /ripng/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/holo/rt6.conf -------------------------------------------------------------------------------- /ripng/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/interfaces/rt1 -------------------------------------------------------------------------------- /ripng/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/interfaces/rt2 -------------------------------------------------------------------------------- /ripng/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/interfaces/rt3 -------------------------------------------------------------------------------- /ripng/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/interfaces/rt4 -------------------------------------------------------------------------------- /ripng/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/interfaces/rt5 -------------------------------------------------------------------------------- /ripng/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/interfaces/rt6 -------------------------------------------------------------------------------- /ripng/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripng/topology.yml -------------------------------------------------------------------------------- /ripv2/arista-ceos/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/arista-ceos/rt1.conf -------------------------------------------------------------------------------- /ripv2/arista-ceos/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/arista-ceos/rt2.conf -------------------------------------------------------------------------------- /ripv2/arista-ceos/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/arista-ceos/rt3.conf -------------------------------------------------------------------------------- /ripv2/arista-ceos/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/arista-ceos/rt4.conf -------------------------------------------------------------------------------- /ripv2/arista-ceos/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/arista-ceos/rt5.conf -------------------------------------------------------------------------------- /ripv2/arista-ceos/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/arista-ceos/rt6.conf -------------------------------------------------------------------------------- /ripv2/bird/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/bird/rt1.conf -------------------------------------------------------------------------------- /ripv2/bird/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/bird/rt2.conf -------------------------------------------------------------------------------- /ripv2/bird/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/bird/rt3.conf -------------------------------------------------------------------------------- /ripv2/bird/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/bird/rt4.conf -------------------------------------------------------------------------------- /ripv2/bird/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/bird/rt5.conf -------------------------------------------------------------------------------- /ripv2/bird/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/bird/rt6.conf -------------------------------------------------------------------------------- /ripv2/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/frr/daemons -------------------------------------------------------------------------------- /ripv2/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/frr/rt1.conf -------------------------------------------------------------------------------- /ripv2/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/frr/rt2.conf -------------------------------------------------------------------------------- /ripv2/frr/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/frr/rt3.conf -------------------------------------------------------------------------------- /ripv2/frr/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/frr/rt4.conf -------------------------------------------------------------------------------- /ripv2/frr/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/frr/rt5.conf -------------------------------------------------------------------------------- /ripv2/frr/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/frr/rt6.conf -------------------------------------------------------------------------------- /ripv2/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/holo/rt1.conf -------------------------------------------------------------------------------- /ripv2/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/holo/rt2.conf -------------------------------------------------------------------------------- /ripv2/holo/rt3.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/holo/rt3.conf -------------------------------------------------------------------------------- /ripv2/holo/rt4.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/holo/rt4.conf -------------------------------------------------------------------------------- /ripv2/holo/rt5.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/holo/rt5.conf -------------------------------------------------------------------------------- /ripv2/holo/rt6.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/holo/rt6.conf -------------------------------------------------------------------------------- /ripv2/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/interfaces/rt1 -------------------------------------------------------------------------------- /ripv2/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/interfaces/rt2 -------------------------------------------------------------------------------- /ripv2/interfaces/rt3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/interfaces/rt3 -------------------------------------------------------------------------------- /ripv2/interfaces/rt4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/interfaces/rt4 -------------------------------------------------------------------------------- /ripv2/interfaces/rt5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/interfaces/rt5 -------------------------------------------------------------------------------- /ripv2/interfaces/rt6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/interfaces/rt6 -------------------------------------------------------------------------------- /ripv2/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/ripv2/topology.yml -------------------------------------------------------------------------------- /scripts/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/scripts/start.sh -------------------------------------------------------------------------------- /vrrpv2/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv2/frr/daemons -------------------------------------------------------------------------------- /vrrpv2/frr/frr-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv2/frr/frr-setup.sh -------------------------------------------------------------------------------- /vrrpv2/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv2/frr/rt1.conf -------------------------------------------------------------------------------- /vrrpv2/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv2/frr/rt2.conf -------------------------------------------------------------------------------- /vrrpv2/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv2/holo/rt1.conf -------------------------------------------------------------------------------- /vrrpv2/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv2/holo/rt2.conf -------------------------------------------------------------------------------- /vrrpv2/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv2/interfaces/rt1 -------------------------------------------------------------------------------- /vrrpv2/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv2/interfaces/rt2 -------------------------------------------------------------------------------- /vrrpv2/keepalived/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv2/keepalived/rt1.conf -------------------------------------------------------------------------------- /vrrpv2/keepalived/rt1.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv2/keepalived/rt1.sh -------------------------------------------------------------------------------- /vrrpv2/keepalived/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv2/keepalived/rt2.conf -------------------------------------------------------------------------------- /vrrpv2/keepalived/rt2.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv2/keepalived/rt2.sh -------------------------------------------------------------------------------- /vrrpv2/rare/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv2/rare/rt1.conf -------------------------------------------------------------------------------- /vrrpv2/rare/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv2/rare/rt2.conf -------------------------------------------------------------------------------- /vrrpv2/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv2/topology.yml -------------------------------------------------------------------------------- /vrrpv3-ipv4/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv4/frr/daemons -------------------------------------------------------------------------------- /vrrpv3-ipv4/frr/frr-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv4/frr/frr-setup.sh -------------------------------------------------------------------------------- /vrrpv3-ipv4/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv4/frr/rt1.conf -------------------------------------------------------------------------------- /vrrpv3-ipv4/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv4/frr/rt2.conf -------------------------------------------------------------------------------- /vrrpv3-ipv4/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv4/holo/rt1.conf -------------------------------------------------------------------------------- /vrrpv3-ipv4/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv4/holo/rt2.conf -------------------------------------------------------------------------------- /vrrpv3-ipv4/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv4/interfaces/rt1 -------------------------------------------------------------------------------- /vrrpv3-ipv4/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv4/interfaces/rt2 -------------------------------------------------------------------------------- /vrrpv3-ipv4/rare/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv4/rare/rt1.conf -------------------------------------------------------------------------------- /vrrpv3-ipv4/rare/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv4/rare/rt2.conf -------------------------------------------------------------------------------- /vrrpv3-ipv4/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv4/topology.yml -------------------------------------------------------------------------------- /vrrpv3-ipv6/frr/daemons: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv6/frr/daemons -------------------------------------------------------------------------------- /vrrpv3-ipv6/frr/frr-setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv6/frr/frr-setup.sh -------------------------------------------------------------------------------- /vrrpv3-ipv6/frr/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv6/frr/rt1.conf -------------------------------------------------------------------------------- /vrrpv3-ipv6/frr/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv6/frr/rt2.conf -------------------------------------------------------------------------------- /vrrpv3-ipv6/holo/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv6/holo/rt1.conf -------------------------------------------------------------------------------- /vrrpv3-ipv6/holo/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv6/holo/rt2.conf -------------------------------------------------------------------------------- /vrrpv3-ipv6/interfaces/rt1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv6/interfaces/rt1 -------------------------------------------------------------------------------- /vrrpv3-ipv6/interfaces/rt2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv6/interfaces/rt2 -------------------------------------------------------------------------------- /vrrpv3-ipv6/rare/rt1.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv6/rare/rt1.conf -------------------------------------------------------------------------------- /vrrpv3-ipv6/rare/rt2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv6/rare/rt2.conf -------------------------------------------------------------------------------- /vrrpv3-ipv6/topology.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/holo-routing/containerlab-topologies/HEAD/vrrpv3-ipv6/topology.yml --------------------------------------------------------------------------------