What router command is used to configure a static route for a router?

What will be an ideal response?

ip route [destination] [subnet mask] [next hop

Computer Science & Information Technology

You might also like to view...

Controls such as combo boxes and list boxes are usually added to forms when working in Layout view

Indicate whether the statement is true or false

Computer Science & Information Technology

Which of the following functions can be invoked by an object of class D?

Consider the class inheritance. ``` class B { public: B(); B(int nn); void f(); void g(); private: int n; }; class D: private B { public: D(int nn, float dd); void h(); private: double d; }; ``` a) f() b) g() c) h()

Computer Science & Information Technology