- How to deploy a testbed to experiment routing protocols for UnetStack acoustic modems communication in an underwater network?
- Which modem (model) is more suitable for this experiment?
UnetStack - Routing Protocols
271 Views Asked by B R Chandavarkar At
1
Answer to Q1
The default stack when you boot up a Unet simulator or a modem with UnetStack support has two agents that relate to routing protocols.
The
router
agent (org.arl.unet.net.Router
) does packet routing based on its routing tables. Theroutes
,addroute
,delroute
,delroutesto
anddelroutes
closures allow you to manually modify the routing tables. Just typehelp router
in the Unet shell to get more information:The
rdp
agent (org.arl.unet.net.RouteDiscoveryProtocol
) populates the routing table for therouter
agent. Therreq
andtrace
closures allow you to interact with this agent. Typehelp rdp
for more information:If you want to implement your own routing protocol, the easiest option is to create your own agent that populates the routing table for
router
. This is done by sendingRouteDiscoveryNtf
messages to therouter
agent. For many routing protocols, this is sufficient, and easy to do.If your routing protocol is more complicated and cannot be implemented by changing routing tables dynamically, you can remove the default
router
agent (frometc/setup.groovy
file) and add your own routing agent implementation instead. Your routing agent must support the Routing service: A routing agent essentially accepts datagrams for any destination and sends them on the next hop. The agent also listens to datagram notifications from the Link agent, and forwards them on the next hop, if they are meant to be packets to be routed. Typically, a routing agent will have to add its own headers to know which packets are to be routed and to where, based on the protocol being implemented.Answer to Q2
Any modem that supports UnetStack should work. Here's a list of known modems that currently support UnetStack.