1. Link State 알고리즘
각각의 라우터는 각 인터페이스의 정보를 포함한 접속정보를
생성, 유지하여 한 AS내의 모든 라우터에게 접속정보를 전달한다. 그 결과 라우터들은 고유의 데이타베이스를 작성하여 가지게 된다.
모든 라우터는 최단경로 알고리즘으로 동작하고, 접속정보를 기초로 하여 최단 경로를 설정할 수 있다.
이러한 OSPF의 많은 장점으로 인하여 대부분의 라우터
밴더들은 OSPF를 지원 할 것이고, 점차 RIP에서 OSPF로 전환하는 추세이며 많은 네트워크 구성에 있어서 RIP를 대신 할
것이다.
2. OSPF PROTOCOL의 Setting 방법
RTA,RTB,RTC,RTD는 Area 0.0.0.0 에서 동일한
Ethernet에 연결되어 있고 RTA는 Area 1에도 연결되어 있다. RTA와 RTB는 Process-id 10을 가지고
OSPF로 통신을 한다. 다음은 RTA와 RTB에 대한 셋팅값이며, RTC와 RTD도 RTB와 비슷하게 설정된다.
RTA# conf t
Enter
configuration commands, one per line. End with CNTL/Z.
RTA# (config)#router
ospf 10
RTA#(config-router)#network 203.250.13.1 0.0.0.0 area
1
RTA#(config-router)#network 203.250.0.0 0.0.255.255 area
0.0.0.0
RTA#(config-router)# ^Z
RTA#copy run start
Destination filename [startup-config]?
Building
configuration...
[OK]
hostname
RTA
interface loopback 0
ip address 203.250.13.41
255.255.255.0
interface ethernet 0
ip address 203.250.14.1
255.255.255.0
router ospf 10
network 203.250.13.1 0.0.0.0 area
1
network 203.250.0.0 0.0.255.255 area 0.0.0.0
RTB# conf t
Enter
configuration commands, one per line. End with CNTL/Z.
RTB#(config)#router
ospf 10
RTB#(config-router)# network 203.250.0.0 0.0.255.255
area 0.0.0.0
RTB#(config-router)# ^Z
RTB#copy run start
Destination filename [startup-config]?
Building configuration...
[OK]
hostname RTB
interface ethernet 0
ip
address 203.250.14.2 255.255.255.0
router ospf 10
network
203.250.0.0 0.0.255.255 area 0.0.0.0