OSPF over Frame-Relay - Part 3: Point-To-Point

http://ipexpert.ccieblog.com/ |  Networking, frame relay, OSPF Add a new comment

In our last two installments we looked at the non-broadcast and broadcast network types for OSPF over frame-relay. In this article we will be taking a look at the point-to-point network type. One thing I always remember regarding frame-relay and OSPF is that a network type of "point-to-ANYTHING" does NOT have a DR/BDR. So, point-to-point, point-to-multipoint, and point-to-multipoint non-broadcast will NEVER have a DR. With the point-to-point network type we will have "fast" timers of 10/40 seconds.

Point-to-point sub-interfaces have a default network type of point-to-point in OSPF. With this kind of setup, pretty much everything is done for you. Point-to-point subinterfaces can already pass broadcast/multicast traffic, so we don’t need to worry about neighbor commands. Also, as we already mentioned, there is no DR needed. Why? Well, it is designed for use on a point-to-point link. With only two possible endpoints, it doesn’t make sense to have a DR responsible for everything going on like in an Ethernet environment. One thing to keep in mind is that a point-to-point OSPF network type is only designed to have a single neighbor. If we were to put point-to-point on the spokes, but try to change our multipoint sub-interface on the hub to a point-to-point OSPF network type we’d run into all sorts of fun problems.

We have two ways to demonstrate point-to-point network types over frame-relay. The first way is how it is "supposed" to work. Very simple…we have two point-to-point sub-interfaces setup on the hub (will default to OSPF network type point-to-point) and we will leave our physical interfaces on the spokes and change them to network type point-to-point (remember the default is non-broadcast). This should work nicely.

The other option I will show here is to leave the hub as a frame-relay multipoint sub-interface. Because point-to-point networks in OSPF are only designed to have a single neighbor, we will have to make the hub a point-to-multipoint network type. This gets a little into the troubleshooting section, and tweaking timers that we will get into in detail in the last part of this blog series on troubleshooting mismatched network types, but I will wet your appetite here J

OK, so let's get the easy part out of the way. First we will setup two separate subnets: One going from the hub to one spoke, and another going to the other spoke. On the hub, the OSPF network type will automatically be point-to-point because we will be using point-to-point sub-interfaces. On the spokes, we will specify the network type as point-to-point since we are using physical interfaces. Here is the diagram and configuration!

R2(config)#int s0/1/0.25 point-to-point

R2(config-subif)#frame-relay interface-dlci 205

R2(config-fr-dlci)#ip address 100.100.25.2 255.255.255.0

R2(config-subif)#int s0/1/0.26 point

R2(config-subif)#frame-relay interface-dlci 206

R2(config-fr-dlci)#ip address 100.100.26.2 255.255.255.0

R2(config-subif)#router ospf 1

R2(config-router)#network 100.100.25.2 0.0.0.0 area 0

R2(config-router)#network 100.100.26.2 0.0.0.0 area 0

R5(config-if)#int s0/1/0

R5(config-if)#ip add 100.100.25.5 255.255.255.0

R5(config-if)#ip ospf network point-to-point

R5(config)#router ospf 1

R5(config-router)#network 100.100.25.5 0.0.0.0 area 0

R6(config)#int s0/1/0

R6(config-if)#ip add 100.100.26.6 255.255.255.0

R6(config-if)#ip ospf network point-to-point

R6(config-if)#router ospf 1

R6(config-router)#network 100.100.26.6 0.0.0.0 area 0

Sweet. Let’s verify on R2…

R2(config-router)#do sh ip ospf neigh

Neighbor ID Pri State Dead Time Address Interface

100.100.26.6 0 FULL/ - 00:00:34 100.100.26.6 Serial0/1/0.26

100.100.25.5 0 FULL/ - 00:00:30 100.100.25.5 Serial0/1/0.25

Our neighbors are up and we are rocking and rolling! Notice that the priority field is "0" and the state is "Full/ -" If we know our technology this should make sense. There is no priority because there is no DR election. The state is simply FULL meaning the adjacency is up, but again no indication of a DR here. Perfect. Now, we could have also used point-to-point sub-interfaces on the spokes. This goes to show that we can have a physical interface but a point-to-point network type. The interface type does not necessarily have to equal the OSPF network type.

To finish up, let's change everything back to a single subnet (100.100.100.0/24), and make R2 a multipoint sub-interface and see how we can make this work.

R5(config-router)#int s0/1/0

R5(config-if)#ip add 100.100.100.5 255.255.255.0

R5(config-if)#router ospf 1

*Jun 27 13:27:55.911: %OSPF-5-ADJCHG: Process 1, Nbr 100.100.26.2 on Serial0/1/0 from FULL to DOWN, Neighbor Down: Interface down or detached

R5(config-router)#no network 100.100.25.5 0.0.0.0 area 0

R5(config-router)#network 100.100.100.5 0.0.0.0 area 0

R6(config-router)#int s0/1/0

R6(config-if)#ip add 100.100.100.6 255.255.255.0

R6(config-if)#router ospf 1

*Jul 27 23:01:21.211: %OSPF-5-ADJCHG: Process 1, Nbr 100.100.26.2 on Serial0/1/0 from FULL to DOWN, Neighbor Down: Interfae down or detached

R6(config-router)#no network 100.100.26.6 0.0.0.0 area 0

R6(config-router)#network 100.100.100.6 0.0.0.0 area 0

R2(config-router)#no int s0/1/0.25

Not all config may be removed and may reappear after reactivating the sub-interface

R2(config)#no int s0/1/0.26

Not all config may be removed and may reappear after reactivating the sub-interface

R2(config)#int s0/1/0.256

R2(config-subif)#ip add 100.100.100.2 255.255.255.0

R2(config-subif)#frame map ip 100.100.100.5 205 broad

R2(config-subif)#frame map ip 100.100.100.6 206 broad

R2(config-subif)#frame map ip 100.100.100.2 206

R2(config-subif)#ip ospf network point-to-multipoint

R2(config-subif)#

R2(config-subif)#router ospf 1

R2(config-router)#no network 100.100.25.2 0.0.0.0 area 0

R2(config-router)#no network 100.100.26.2 0.0.0.0 area 0

R2(config-router)#network 100.100.100.2 0.0.0.0 area 0

R2(config-router)#do sh ip ospf neigh

Hmmmmmm…it's been a while and we still see no neighbors. Let's hit our basic checklist: Do both sides agree on the presence of a DR? Let’s see…the spokes are point-to-point, and the hub is point-to-multipoint. Neither need a DR, so we are good there. Do we need neighbor commands? Nope, we can multicast here no problem. What about timers? Ahhhhhhh timers. Point-to-point network type uses “fast” timers and point-to-multipoint uses "slow" times. So let’s tweak the timers on the hub!

R2(config-router)#int s0/1/0.256

R2(config-subif)#ip ospf hello

R2(config-subif)#ip ospf hello-interval 10

*Jun 27 13:38:18.355: %OSPF-5-ADJCHG: Process 1, Nbr 100.100.26.6 on Serial0/1/0.256 from LOADING to FULL, Loading Done

*Jun 27 13:38:18.471: %OSPF-5-ADJCHG: Process 1, Nbr 100.100.25.5 on Serial0/1/0.256 from LOADING to FULL, Loading Done

Awesome! Now that we have matched timers we can establish an adjacency and everything is FINE. Whenever you run into issues like this, go over your checklist. DR? Neighbor? Timers? Boom. That is it for point-to-point network type in OSPF!

Tune in next time for point-to-multipoint!!!

Thanks!

Joe (Post contributed by Joe Astorino - CCIE #24347 R&S)

    Add a comment

    Post a comment using one of these accounts
    Or join now
    At least 6 characters

    Note: Comment will appear soon after you have activated your account.
    Obscene/spam comments will be removed and accounts suspended.
    The information you submit is subject to our Privacy Policy and Terms of Service.

    ITworld LIVE

    NetworkingWhite Papers & Webcasts

    White Paper

    HP X5000 G2 Network Storage System Data Sheet

    The new HP X5000 G2 Network Storage Systems is ideal for midsize companies. The solution is a two-node Network Attached Storage (NAS) cluster with shared storage built on HP BladeSystem technology. In this datasheet, you will find a in-depth look into the HP X5000 G2 Network Storage Systems including key features and benefits that set this unit apart from the rest of those in the market.

    White Paper

    HP X5000 G2 Network Storage System Quickspecs

    The new HP X5000 G2 Network Storage Systems powered by Microsoft Windows Storage Server 2008 R2 Enterprise edition are Network Attached Storage (NAS), with two-node integrated into a converged 3U chassis, that are designed for a better file serving experience. In this quickspecs flyer, you will explore a view of the key features and benefits that set this unit apart from the rest of those in the market.

    White Paper

    HP X5000 G2 Network Storage System Ease of Use, High-Availability, Performance, and Interoperability Evaluation

    Today's small and medium-size businesses (SMBs) have ever-growing storage needs. This often translates into a requirement for terabytes of storage and a level of high-availability typically associated with large-scale, enterprise deployments, managed without having a large IT staff. Given IT staffing constraints, storage solutions for SMBs must be easily installed and managed by existing IT staff, which is why HP introduced the new HP X5000 G2 Network Storage Systems, powered by Intel® Xeon® Processors. Independent tests show the HP X5520 G2 Network Storage System can be installed out-of-the-box to a fully-functional, high availability system joined to a Microsoft domain in less than 90 minutes with the help of an automated HP Configuration Tasks Tool guide.

    White Paper

    Optimizing Enterprise WLAN Performance

    This white paper reviews business and technology trends impacting enterprise wireless networks and describes how HP Mobility Solutions in general and HP Mobility Traffic Manager in particular enable the industry's most scalable, cost-effective and manageable wireless network deployments.

    White Paper

    The Cost Advantages of Using a Hosted Unified Communications Service: A TCO Guide for SMBs

    A challenge for small and mid-sized businesses (SMBs) is the cost of scaling their communications systems to rival the rich functionality and flexibility of bigger competitors with dedicated IT staffs. Upfront capital costs and the requirement for on-site staff to manage equipment and applications have fueled interest in hosted unified communications (UC) services, which allow smaller organizations to use a third-party provider's UC infrastructure in the cloud and enjoy the economies of scale of very large organizations.

    See more White Papers | Webcasts

    Ask a question

    Ask a Question