A good thing about the Cisco IOS is that it works quite similarly on both the routers as well as switches. However, there is a difference in the commands that we use for each one of them. For example, some specific commands are meant only for the switches while others for routers as per the device’s functionality.

In this lab we will assign IP address to the Vlan1 interface and we will configure default gateway on the switch. We will also perform some basic configuration which will help us when configuring the device.

Switch config

Basic Switch configuration

To assign an IP address to the VLAN1 interface, we have to enter into interface configuration mode. While configuring switch for basic functionality, we should also assign a default gateway to the switch. It is important to remember that the VLAN1 interface and default gateway IP address must be on the same network. This enables the switch to redirect traffic to other networks.

Vlan1interface allow us to connect with the switch remotely via telnet, we can use the telnet client to remotely manage and configure switch.

To save configuration on Cisco devices we can type the command ‘write’. It copies running config to the startup config alternatively we can also use command ‘copy running config startup config’ to save the running configuration of the device.

While configuring Cisco devices, it’s common to make typing mistakes. If we mistype a command then Cisco device will try to resolve the name to the IP address. This makes Cisco devices to freeze for about 60 seconds as it resolves IP address in the background. One minute is the maximum time taken by the device. Now, we have to wait until the device allows us to type something again. This can be very annoying. It happens because the domain name lookup is enabled by default in Cisco devices. Hence, to solve this problem we can disable domain lookup by entering the command ‘No IP Domain Lookup’.

Now, let us talk about the status messages received on Cisco devices. When we receive status messages on Cisco devices the message kind-of mixes with the text that we type on the CLI. This can also be very confusing sometimes. So, to solve this problem we can type the command ‘logging synchronous’. This command synchronizes the status messages. Hence, the message does not interfere with our typing.

 

Lab tasks

  1. Assign IP address of the switch – 192.168.4.2/24
  2. Set default gateway of the switch to 192.168.4.1
  3. Save configuration
  4. Disable domain lookup
  5. Synchronize switch’s status messages

Lab Configuration

Task 1

Switch(config)#interface vlan 1

Switch(config-if)#ip address 192.168.4.2 255.255.255.0

Task 2

Switch(config)#ip default-gateway 192.168.4.1

Task 3

Switch#write

Task 4

Router(config)#no ip domain lookup

Task 5

Switch(config)#line con 0

Switch(config-line)#logging synchronous