Which of the following protocol specification keywords would be needed in an ACL statement to match the RIPv2 protocol with destination address 224.0.0.9?

A) udp
B) osfp
C) eigrp
D) tcp


A
Explanation: A) RIPv2, OSFP, and EIGRP all have special considerations in an ACL. For RIPv2, the keyword udp (port 520 ) should be used.

Computer Science & Information Technology

You might also like to view...

Keyword ________ indicates that an element contains parseable character data.

a) PARSEDATA b) CHARDATA c) CDATA d) PCDATA

Computer Science & Information Technology

If array elements 0 through 4 of array a initially have the values 5, 3, 7 and 1, respectively, after executing the following code they will contain the values:

``` j = UBound( a) While j >= 1 For i = 0 To j - 1 If a( i ).Price > a( i + 1).Price Then Set o = a( i ) Set a( i ) = a( i + 1 ) Set a( i + 1 ) = o Set o = Nothing End If Next j = j – 1 Wend ``` (a) 5, 3, 7 and 1 (b) 7, 5, 3 and 1 (c) 1, 3, 5 and 7 (d) None of the above.

Computer Science & Information Technology

A ________ triangle in the upper left corner of a cell indicates that the formula in the cell is suspect for some reason

A) blue B) red C) orange D) green

Computer Science & Information Technology

Programmers start and end an XHML tag with the { and } characters

Indicate whether the statement is true or false

Computer Science & Information Technology