Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Simple Question

Status
Not open for further replies.

nik898

Technical User
Dec 22, 2002
4
US
Hi all,

I gone through the following config.Its using ospf protocol
which enough for routing the data.BUT WHY A STATIC ROUTE HAS BEEN CONFIGURED IN ADDITION TO OSPF.

Pls help.

Cheers,
nik

Using 1143 out of 29688 bytes
!
version 12.0
service timestamps debug uptime
service timestamps log uptime
no service password-encryption
!
hostname xyz
!
enable secret jkvkjfv
!
memory-size iomem 15
ip subnet-zero
!
!
!
!
!
!
!
interface Loopback0
description "Loopback Interface"
ip address x.x.x.x 255.255.255.255
no ip directed-broadcast
!
interface Ethernet0/0
ip address x.x.x.x 255.255.255.240
no ip directed-broadcast
!
interface Ethernet0/1
no ip address
no ip directed-broadcast
shutdown
!
interface Serial1/0

bandwidth 64
ip address x.x.x.x 255.255.255.252
no ip directed-broadcast
no ip mroute-cache
!
interface Serial1/1
no ip address
no ip directed-broadcast
shutdown
!
interface Serial1/2
no ip address
no ip directed-broadcast
shutdown
!
interface Serial1/3
no ip address
no ip directed-broadcast
shutdown
!
router ospf xxxx
network x.x.x.x 0.0.255.255 area xx
!
ip classless
ip route 0.0.0.0 0.0.0.0 Serial1/0
!
!
line con 0
transport input none
line aux 0
line vty 0 4
password xyz
login
!
end
 
not quite sure what the question is here. what interface are you concerned with?
 
The static router of 0.0.0.0 0.0.0.0 serial1/0 means that any packet that the router doesnt have a route for.. even with OSPF, will go out the serial port to the next available router and let it worry about it.

If OSPF were to drop off line for any reason, this would pick up the slack. While OSPF is online, there are route entries which takes precedence over this route unless there is not a match.

MikeS
Find me at
"Take advantage of the enemy's unreadiness, make your way by unexpected routes, and attack unguarded spots."
Sun Tzu
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top