Describe the Routing Information Protocol version 2.

What will be an ideal response?


RIPv2 is not a totally new protocol. In reality, it is a set of extensions to RIPv1. As such, it is still a distance-vector routing protocol that uses the normal measures of hold-down timers and split horizon to prevent routing loops. It also suffers from RIPv1's major drawback, in that it only supports a maximum of 15 hops. The major change is RIPv2's ability to carry subnet mask information and a difference in the way it sends out routing table updates. Unlike RIPv1, which broadcasts routing table updates every 30 seconds, RIPv2 multicasts its updates using the multicast address of 224.0.0.9. This feature saves bandwidth on the network, as devices not running RIPv2 do not have to process unnecessary broadcast traffic. Additionally, RIPv2 provides a way to authenticate routing peers to provide enhanced security to a network.

Computer Science & Information Technology

You might also like to view...

Given the following program:

``` public class Test { public static void main(String[] args) { for (int i = 0; i < args.length; i++) { System.out.print(args[i] + " "); } } } ``` What is the output, if you run the program using java Test 1 2 3 a. 3 b. 1 c. 1 2 3 d. 1 2

Computer Science & Information Technology

A ____ button sends the form data to the location you designated for processing.

A. Send B. Process C. Submit D. Reset

Computer Science & Information Technology

If the user forgets to fill out a portion of a form, it is an easy task for JavaScript to detect the absence of required data and alert the user accordingly.

Answer the following statement true (T) or false (F)

Computer Science & Information Technology

You can use the _______________ command in the Dreamweaver site menu to generate HTML reports for a current document.

Fill in the blank(s) with the appropriate word(s).

Computer Science & Information Technology