Difference between revisions of "OSPF Cisco IOS"

From Teknologisk videncenter
Jump to: navigation, search
(Example 1)
(Example 1)
Line 6: Line 6:
 
[[image:OPSF network 1.png|thumb|500px|none|Example network 1]]
 
[[image:OPSF network 1.png|thumb|500px|none|Example network 1]]
 
<br/>
 
<br/>
==== R1 config ====
+
{|==== R1 config ====
<source lang="text">
+
|<source lang="text">
hostname R1
+
|hostname R1
!
+
|!
interface fastethernet 0/0
+
|interface fastethernet 0/0
  ip address 192.168.0.1 255.255.255.0
+
ip address 192.168.0.1 255.255.255.0
!
+
|!
interface fastethernet 0/1
+
|interface fastethernet 0/1
  ip address 10.0.1.1 255.255.255.0
+
ip address 10.0.1.1 255.255.255.0
!
+
|!
router ospf 88
+
|router ospf 88
  network 192.168.0.0 0.0.0.255
+
network 192.168.0.0 0.0.0.255
  network 10.0.1.0 0.0.0.255
+
network 10.0.1.0 0.0.0.255
</source>
+
|</source>
==== R2 config ====
+
|-
<source lang="text">
+
|==== R2 config ====
hostname R2
+
|<source lang="text">
!
+
|hostname R2
interface fastethernet 0/0
+
|!
  ip address 192.168.0.2 255.255.255.0
+
|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
+
|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
+
|router ospf 77
  network 10.0.2.0 0.0.0.255
+
network 192.168.0.0 0.0.0.255
</source>
+
network 10.0.2.0 0.0.0.255
==== R3 config ====
+
|</source>
 +
|}==== R3 config ====

Revision as of 08:01, 10 February 2009

Single Area configuration

Example 1

Example network 1


|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
|  network 10.0.1.0 0.0.0.255
|
==== 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
|  network 10.0.2.0 0.0.0.255
|
==== R3 config ====