-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparse-simple-v4.conf
37 lines (36 loc) · 1004 Bytes
/
parse-simple-v4.conf
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
neighbor 127.0.0.1 {
description "a quagga test peer";
router-id 10.0.0.2;
local-address 127.0.0.1;
local-as 65533;
peer-as 65533;
hold-time 180;
static {
}
static {
route 10.0.1.0/24 {
next-hop 10.0.255.254;
community [ 0 ];
}
route 10.0.2.0/24 {
next-hop 10.0.255.254;
community 30740:30740;
}
route 10.0.3.0/24 {
next-hop 10.0.255.254;
community [ 30740:30740 30740:0 ];
}
route 10.0.4.0/24 {
next-hop 10.0.255.254;
local-preference 200;
}
route 10.0.5.0/24 next-hop 10.0.255.254 local-preference 200;
route 10.0.6.0/24 next-hop 10.0.255.254 community 30740:30740;
route 10.0.7.0/24 next-hop 10.0.255.254 local-preference 200 community 30740:30740;
route 10.0.8.0/24 next-hop 10.0.255.254 community 30740:30740 local-preference 200;
route 10.0.7.0/24 next-hop 10.0.255.254 local-preference 200 community [30740:0 30740:30740];
route 10.0.8.0/24 next-hop 10.0.255.254 community [30740:0 30740:30740] local-preference 200;
}
static {
}
}