]> git.proxmox.com Git - mirror_frr.git/blob - yang/example/ripd.json
ripd: Implement `allow-ecmp X` command
[mirror_frr.git] / yang / example / ripd.json
1 {
2 "frr-interface:lib": {
3 "interface": [
4 {
5 "name": "eth0",
6 "vrf": "default",
7 "description": "engineering",
8 "frr-ripd:rip": {
9 "split-horizon": "poison-reverse",
10 "v2-broadcast": "true",
11 "version-receive": "1",
12 "version-send": "1"
13 }
14 },
15 {
16 "name": "eth1",
17 "vrf": "default",
18 "description": "marketing"
19 }
20 ]
21 },
22 "frr-ripd:ripd": {
23 "instance": [
24 {
25 "vrf": "default",
26 "allow-ecmp": 1,
27 "distance": {
28 "source": [
29 {
30 "distance": "25",
31 "prefix": "172.16.1.0/24"
32 }
33 ]
34 },
35 "redistribute": [
36 {
37 "metric": "3",
38 "protocol": "ospf"
39 }
40 ],
41 "static-route": [
42 "10.0.1.0/24"
43 ]
44 }
45 ]
46 }
47 }