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
|
{
"system-as": "65000",
"parameters": {
"router-id": "192.0.1.1",
"log-neighbor-changes": {},
"bestpath": {
"as-path": "multipath-relax"
},
"confederation": {
"identifier": "100",
"peers": ["65001", "65002"]
}
},
"neighbor": {
"192.0.2.1": {
"remote-as": "65001",
"description": "peer1",
"timers": {
"holdtime": "30",
"keepalive": "10"
},
"address-family": {
"ipv4-unicast": {
"nexthop-self": {}
}
}
},
"192.0.2.2": {
"remote-as": "65002",
"ebgp-multihop": "2",
"update-source": "eth0"
}
},
"peer-group": {
"PG1": {
"remote-as": "65003"
}
}
}
|