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