Difference between revisions of "OSPF Cisco IOS"
From Teknologisk videncenter
(→Example 1) |
(→Example 1) |
||
Line 18: | Line 18: | ||
! | ! | ||
router ospf 88 | router ospf 88 | ||
− | network 192.168.0.0 0.0.0.255 | + | network 192.168.0.0 0.0.0.255 area 0 |
− | network 10.0.1.0 0.0.0.255 | + | network 10.0.1.0 0.0.0.255 area 0 |
</source> | </source> | ||
</div> | </div> | ||
Line 34: | Line 34: | ||
! | ! | ||
router ospf 77 | router ospf 77 | ||
− | network 192.168.0.0 0.0.0.255 | + | network 192.168.0.0 0.0.0.255 area 0 |
− | network 10.0.2.0 0.0.0.255 | + | network 10.0.2.0 0.0.0.255 area 0 |
</source> | </source> | ||
</div> | </div> | ||
Line 53: | Line 53: | ||
! | ! | ||
router ospf 66 | router ospf 66 | ||
− | network 192.168.0.0 0.0.0.255 | + | network 192.168.0.0 0.0.0.255 area 0 |
− | network 10.0.3.0 0.0.0.255 | + | network 10.0.3.0 0.0.0.255 area 0 |
− | network 172.16.0.0 0.0.0.3 | + | network 172.16.0.0 0.0.0.3 area 0 |
</source> | </source> | ||
</div> | </div> | ||
Line 69: | Line 69: | ||
ip address 172.16.0.2 255.255.255.252 | ip address 172.16.0.2 255.255.255.252 | ||
router ospf 66 | router ospf 66 | ||
− | network 172.16.0.0 0.0.0.3 | + | network 172.16.0.0 0.0.0.3 area 0 |
− | network 10.0.4.0 0.0.0.255 | + | network 10.0.4.0 0.0.0.255 area 0 |
</source> | </source> | ||
</div> | </div> |
Revision as of 07:30, 10 February 2009
Contents
Single Area configuration
Example 1
R1 config
hostname R1
!
interface fastethernet 0/0
ip address 192.168.0.1 255.255.255.0
!
interface fastethernet 0/1
ip address 10.0.1.1 255.255.255.0
!
router ospf 88
network 192.168.0.0 0.0.0.255 area 0
network 10.0.1.0 0.0.0.255 area 0
R2 config
hostname R2
!
interface fastethernet 0/0
ip address 192.168.0.2 255.255.255.0
!
interface fastethernet 0/1
ip address 10.0.2.1 255.255.255.0
!
router ospf 77
network 192.168.0.0 0.0.0.255 area 0
network 10.0.2.0 0.0.0.255 area 0
R3 config
hostname R3
!
interface fastethernet 0/0
ip address 192.168.0.3 255.255.255.0
!
interface fastethernet 0/1
ip address 10.0.3.1 255.255.255.0
!
interface serial 0/0
ip address 172.16.0.1 255.255.255.252
!
router ospf 66
network 192.168.0.0 0.0.0.255 area 0
network 10.0.3.0 0.0.0.255 area 0
network 172.16.0.0 0.0.0.3 area 0
R4 config
hostname R4
!
interface fastethernet 0/1
ip address 10.0.4.1 255.255.255.0
!
interface serial 0/0
ip address 172.16.0.2 255.255.255.252
router ospf 66
network 172.16.0.0 0.0.0.3 area 0
network 10.0.4.0 0.0.0.255 area 0