config
unittest
yaml
test_bondethernet.yaml
test_bridgedomain.yaml
test_interface.yaml
test_lcp.yaml
test_loopback.yaml
test_vxlan_tunnel.yaml
vpp
.gitignore
LICENSE
README.md
example.yaml
schema.yaml
tests.py
vppcfg
vppcfg.spec
13 lines
354 B
YAML
13 lines
354 B
YAML
loopbacks:
|
|
loop0:
|
|
description: "Loopback, no config"
|
|
loop1:
|
|
description: "Loopback, both LCP and address"
|
|
mtu: 2000
|
|
lcp: "loop56789012345"
|
|
addresses: [ 192.0.2.1/29, 2001:db8::1/64 ]
|
|
loop2:
|
|
description: "Loopback, invalid because it has an address but no LCP"
|
|
mtu: 2000
|
|
addresses: [ 192.0.2.9/29, 2001:db8:1::1/64 ]
|