blob: 437b4741533acbfbf3694853874aa4408d7b7d3f (
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
|
!
hostname r1
password zebra
log file /tmp/r1-frr.log
ip forwarding
!
interface r1-eth0
ip address 10.1.1.1/24
ip ospf network broadcast
ip ospf hello-interval 1
ip ospf dead-interval 30
!
interface r1-eth1
ip address 10.1.2.1/24
ip ospf network non-broadcast
ip ospf hello-interval 1
ip ospf dead-interval 30
!
!
interface r1-eth2
ip address 10.1.3.1/24
ip ospf network point-to-point
ip ospf hello-interval 1
ip ospf dead-interval 30
!
interface r1-eth3
ip address 10.1.4.1/24
ip ospf network point-to-multipoint
ip ospf hello-interval 1
ip ospf dead-interval 30
!
interface r1-eth4
ip address 10.1.7.1/24
ip ospf network broadcast
ip ospf hello-interval 1
ip ospf dead-interval 30
!
!
router ospf
ospf router-id 1.1.1.1
distance 20
network 10.1.1.0/24 area 0
network 10.1.2.0/24 area 0
network 10.1.3.0/24 area 0
network 10.1.4.0/24 area 0
network 10.1.7.0/24 area 0
!
|