-
Notifications
You must be signed in to change notification settings - Fork 17
/
bgp.json
46 lines (46 loc) · 1000 Bytes
/
bgp.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"Cisco-IOS-XR-ipv4-bgp-cfg:bgp": {
"instance": [
{
"instance-name": "default",
"instance-as": [
{
"as": {{.LocalASN.X}},
"four-byte-as": [
{
"as": {{.LocalASN.Y}},
"default-vrf": {
"bgp-entity": {
"neighbors": {
"neighbor": [
{
"neighbor-address": "{{.NeighborAddress}}",
"remote-as": {
"as-xx": {{.PeerASN.X}},
"as-yy": {{.PeerASN.Y}}
},
"description": "{{.Description}}",
"update-source-interface": "{{.LocalAddress}}",
"neighbor-afs": {
"neighbor-af": [
{
"af-name": "ipv6-unicast",
"activate": [
null
]
}
]
}
}
]
}
}
}
}
]
}
]
}
]
}
}