xref: /openbsd/etc/examples/eigrpd.conf (revision b99221d0)
1# $OpenBSD: eigrpd.conf,v 1.2 2015/12/25 21:50:07 gsoares Exp $
2
3# global configuration
4# router-id 10.0.0.1
5# rdomain 1
6# fib-update yes
7# fib-priority-internal 28
8# fib-priority-external 52
9
10# IPv4
11address-family ipv4 {
12	autonomous-system 1 {
13		maximum-paths 4
14		variance 8
15
16		default-metric 100000 10 255 1 1500
17		redistribute default
18		redistribute connected
19		redistribute 30.0.1.0/24
20
21		interface em1
22		interface em2 {
23			hello-interval 3
24			holdtime 10
25			delay 20
26			bandwidth 1000000
27		}
28		interface em3 {
29			passive
30		}
31	}
32}
33
34# IPv6
35address-family ipv6 {
36	maximum-paths 2
37	variance 3
38	bandwidth 100000
39	delay 10
40
41	autonomous-system 1 {
42		default-metric 100000 10 255 1 1500
43		redistribute default
44
45		interface em1
46		interface em2
47	}
48	autonomous-system 2 {
49		interface em3
50		interface em4
51	}
52}
53