cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
304
Views
0
Helpful
2
Replies

OSPFv2

Sulaiman Ejaz
Level 1
Level 1

In OSPF v2, when we say net 2.1.1.1 0.0.0.0 ar 0. what this command does? for example on a router, say B, when we advertise this command. what this does?

2 Replies 2

Rolf Fischer
Level 9
Level 9

Hi,

network area

the ip-address/wildcard combination work similar to the pattern matching in ACLs; all the matching IP-interfaces of the router will be advertised by OSPF. Neighbor-discovery will start on broadcast-capable interfaces by sending OSPF hello as well (as long as you don't configure them as passive interfaces).

In your example, router B will advertise the network of the IP interface which has the exact IP address 2.1.1.1 in Area 0 (if such an IP interface exist).

HTH

Rolf

Joseph W. Doherty
Hall of Fame
Hall of Fame

Disclaimer

The   Author of this posting offers the information contained within this   posting without consideration and with the reader's understanding that   there's no implied or expressed suitability or fitness for any purpose.   Information provided is for informational purposes only and should not   be construed as rendering professional advice of any kind. Usage of  this  posting's information is solely at reader's own risk.

Liability Disclaimer

In   no event shall Author be liable for any damages whatsoever (including,   without limitation, damages for loss of use, data or profit) arising  out  of the use or inability to use the posting's information even if  Author  has been advised of the possibility of such damage.

Posting

Hi, I just want to re-emphasis what Rolf already described.  The OSPF network statement doesn't directly advertise a network, it "looks" for "up" interfaces that have an IP that matches against the network statement (als also mentioned by Rolf, somewhat like an ACL).  Once if finds such an interface, that interface will be included in the OSPF.  As Rolf also notes (by default) active OSPF interface are what are used to form adjacencies with neighboring OSPF routers.

Also, when it comes to what network's mask is, that is determined by the interface's IP mask.

The area parameter determine which OSPF area the interface will be part of.

Something else to note, the network statements can overlap in matching, allowing most of an address block to be assigned to one OSPF area, while allowing more specific subnets, within the address block, to be assigned to another OSPF area.

Usually, you'll see network statements that match specific IPs or you'll see a single network statement that matches all (or many) interfaces IPs.

e.g.

int x

ip address 192.168.1.1 255.255.255.0

int y

ip address 192.168.2.1 255.255.255.0

router ospf #

network 192.168.1.1 0.0.0.0 area #

network 192.168.2.1 0.0.0.0 area #

or

router ospf #

network 192.168.0.0 0.0.255.255 area #

Review Cisco Networking for a $25 gift card