Which Cisco IOS command is used to display the current OSPF Hello and dead intervals (other than show running-config)?

A) show ip protocols
B) show ip ospf interface brief
C) show ip protocols interface
D) show ip ospf interface


D
Explanation: D) The show ip ospf interface Cisco IOS command will display the current Hello and dead intervals that are configured for an OSPF interface.

Computer Science & Information Technology

You might also like to view...

Your e-mail account has a unique e-mail ____________________.

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

Computer Science & Information Technology

What is the output of the following code?

``` #include using namespace std; class Foo { public: int x; // data field int y; // data field Foo() { x = 10; y = 10; } void p() { int x = 20; // local variable cout << "x is " << x << " "; cout << "y is " << y << endl; } }; int main() #include using namespace std; class Foo { public: int x; // data field int y; // data field Foo() { x = 10; y = 10; } void p() { int x = 20; // local variable cout << "x is " << x << " "; cout << "y is " << y << endl; } }; int main() { Foo foo; foo.p(); return 0; } ``` a. x is 20 y is 10 b. x is 10 y is 20 c. x is 20 y is 20 d. x is 10 y is 10

Computer Science & Information Technology

A VMware vSphere 6.x administrator sees the following output in esxtop: What does the %RDY column represent?

a. CPU Utlization b. CPU Ready c. CPU Cycle Wait Percentage d. Idle CPU Percentage

Computer Science & Information Technology

______________________________ protocol is a link state algorithm and is still used today by many Internet routers.

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

Computer Science & Information Technology