- OSPF프로토콜 설정

#conf t
(config)#router ospf process-id
(config-router)#network network-number area

예제)

#conf t
(config)#router ospf 1
(config-router)#network 10.1.1.0 0.0.0.255 area 0

- Frame-relay와 같이 비브로트케스트망에서 OSPF설정

#conf t
(config)#int lo 0
(config-if)#ip address 10.1.10.1 255.255.255.0
(config-if)#ip ospf network point-to-point
(config-if)#exit
(config)#int s0
(config-if)#encapsulation frame-relay
(config-if)#ip address 10.1.1.1 255.255.255.0
(config-if)#no shut
(config-if)#exit
(config)#router ospf 1
(config-router)#network 10.1.0.0 0.0.255.255 area 0
(config-router)#neighbor 10.1.1.2
(config-router)#neighbor 10.1.1.3

'공부방 > 네트워크' 카테고리의 다른 글

라우터에서 DHCP서버 구축하기  (0) 2009.05.22
라우터에서 EIGRP 설정  (0) 2009.05.22
라우터에서 프레임 릴레이 설정  (0) 2009.05.15
라우터에서 PPP모드 사용하기  (0) 2009.05.15
VLAN 설정하기  (0) 2009.05.15

+ Recent posts