List the commands to configure the IP address for the default interface VLAN 1. The IP address should be set to 10.10.20.1 with subnet mask 255.255.255.0.

What will be an ideal response?

Switch# configure terminal
Switch(config)# interface Vlan1
Switch(config-if)# ip address 10.10.20.1 255.255.255.0.

Computer Science & Information Technology

You might also like to view...

In the following declaration, what is the data type of the elements in the array? Declare Integer numbers[SIZE]

a. SIZE b. Integer c. numbers d. cannot tell from the declaration

Computer Science & Information Technology

What is the output of the following code fragement?

double size, volume=16.0; size = sqrt(sqrt(volume)) / 3; cout.setf(ios::fixed) cout.setf(ios::showpoint); cout.precision(2); cout << size; a. 0.67 b. 0.6666667 c. 0.00 d. 0

Computer Science & Information Technology