How to Configure a Router Name
To configure a name for router, use hostname command from Global Configuration mode.
Router(config)#hostname Router1
Cisco(config)#
How to Configure a MOTD Banner for Router
Users will be presented with a MOTD (Message of the DAY) banner every time they attempt a connection via the console port, auxiliary port, or a telnet session to router. Use the following commands to configure a MOTD message. Here the "#" character is known as a delimiting character. The banner message should be sorrounded by delimiting character and the message should not contain the delimiting character.
Router(config)#banner motd #Welcome to MyRouter#
Router(config)#
How to enable DNS lookup
Router(config)# ip name-server 200.162.8.5
Router(config)# ip domain-lookup
How to turn off the automatic name resolution
The router is set by default to try to resolve any word that is not a command to a DNS server at address 255.255.255.255. We can turn off this by using the following command.
Router(config)#no ip domain-lookup
Router(config)#
How to assign a Local Name to an IP address
Following command assigns a host name to an IP address. Once this is completed, we can use the configured host name for telnet or ping.
Router(config)#ip host PC001 192.168.100.122
Router(config)#
How to Turn on synchronous logging
If the router sends a message to the console while you're entering a command, by default the router will interrupt your work to show the message.
If you want the information sent to console not interrupt the command you are typing, turn on synchronous logging.
Router(config)#line con 0
Router(config-line)#logging synchronous
How to configure an inactivity time-out for automatic log-off
Sets time limit when console automatically logs off. Set to 0 0 (minutes seconds) means console never logs off.
Router(config)#line con 0
Router(config-line)#exec-timeout 0 0
Router(config-line)#