CISCO test record two: the basic operation of the router

A router basic operating requirements

1, set the router local time

2, follow the cursor is enabled

3, the router banners information and description

4, the configuration information for the interface description

5, the interface to quickly restore factory settings

Second, the basic operation command router

1, set the router local time

hehe # clock set 15: 38: 0 13 aug 2019 // Set Time

hehe # show clock // View Time

15:38:3.608 UTC Tue Aug 13 2019

2, follow the cursor is enabled

hehe (config) #line console 0 // set console interface

hehe(config-line)#logging synchronous 

hehe (config) #line vty 0 4 // the VTY interface

hehe(config-line)#logging synchronous 

3, the router banners information and description

hehe(config)#banner motd #

Enter TEXT message. End with the character '#'.

why you are here?#

C:\>telnet 192.168.0.1

Trying 192.168.0.1 ...Open

why you are here?

4, the configuration information for the interface description

hehe(config)#interface gigabitEthernet 0/0/0

hehe(config-if)#description ISP

hehe#show running-config

!

interface GigabitEthernet0/0/0

description ISP

ip address 192.168.0.1 255.255.255.0

duplex auto

speed auto

!

5, the interface to quickly restore factory settings

hehe(config)#default interface gigabitEthernet 0/0/0

hehe#show running-config

!

interface GigabitEthernet0/0/0

no ip address

duplex auto

speed auto

!

Third, the basic operation of the router parses

1, follow the cursor

The cursor will not follow a debug information is generated log or debug command in the input command interruption, off by default

Guess you like

Origin www.cnblogs.com/cation/p/11346513.html