-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathas65100.conf
More file actions
54 lines (44 loc) · 816 Bytes
/
as65100.conf
File metadata and controls
54 lines (44 loc) · 816 Bytes
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
47
48
49
50
51
52
53
54
router id 169.254.100.0;
protocol static {
route 169.254.0.0/24 unreachable;
route 169.254.1.0/24 unreachable;
}
log syslog all;
graceful restart wait 300;
protocol kernel {
learn;
persist;
scan time 10;
merge paths on;
}
protocol device {
scan time 5;
}
protocol direct {
interface "*";
check link yes;
}
filter DRAIN {
reject;
}
filter ANY {
accept;
}
protocol bgp bio {
keepalive time 10;
hold time 30;
multihop;
local as 65100;
source address 169.254.100.0;
neighbor 169.254.100.1 as 65200;
next hop self;
import filter ANY;
export filter {
bgp_community.add((123,456));
bgp_large_community.add((65300, 1, 1000));
if net = 169.254.1.0/24 then {
bgp_community.add((65535,65281));
}
accept;
};
}