blob: fe73bc2ea2442132a0091635cda73d3e1b9e4668 (
plain)
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
|
# $OpenBSD: eigrpd.conf,v 1.2 2015/12/25 21:50:07 gsoares Exp $
# global configuration
# router-id 10.0.0.1
# rdomain 1
# fib-update yes
# fib-priority-internal 28
# fib-priority-external 52
# IPv4
address-family ipv4 {
autonomous-system 1 {
maximum-paths 4
variance 8
default-metric 100000 10 255 1 1500
redistribute default
redistribute connected
redistribute 30.0.1.0/24
interface em1
interface em2 {
hello-interval 3
holdtime 10
delay 20
bandwidth 1000000
}
interface em3 {
passive
}
}
}
# IPv6
address-family ipv6 {
maximum-paths 2
variance 3
bandwidth 100000
delay 10
autonomous-system 1 {
default-metric 100000 10 255 1 1500
redistribute default
interface em1
interface em2
}
autonomous-system 2 {
interface em3
interface em4
}
}
|