OspfRouter.ned
NED File src/inet/node/ospfv2/OspfRouter.ned
| Name | Type | Description |
|---|---|---|
| OspfRouter | compound module |
A router that uses the Open Shortest Path First version 2 (OSPFv2) routing protocol. It extends the standard Router(1,2) module with OSPF functionality enabled. |
Source code
// // Copyright (C) 2005 Andras Babos // // SPDX-License-Identifier: LGPL-3.0-or-later // package inet.node.ospfv2; import inet.node.inet.Router; // // A router that uses the Open Shortest Path First version 2 (OSPFv2) routing // protocol. It extends the standard Router module with OSPF functionality // enabled. // // OSPF is a link-state routing protocol that operates within a single Autonomous // System (AS). It builds and maintains a link-state database whose information is // used to calculate the shortest path to each destination using Dijkstra's algorithm. // // @see ~RipRouter, ~BgpRouter // module OspfRouter extends Router { parameters: hasOspf = true; }