3.4 Device Settings Flashcards
Router(config)# hostname [name]
Changes the name of the router.
Router(config)# int serial 0/0
Router(config)# int s0/0
Router(config)# int Ethernet 0
Router(config)# int ether0
Router(config)# int FastEthernet 0/1
Router(config)# int Fa0/1
Router(config)# int Gigabit 0/1
Router(config)# int gi0/1
Enters the interface configuration mode for the first serial interface. You can use abbreviations for the interface type, such as:
fa = FastEthernet
gi = Gigabit
s = Serial
e = Ethernet
Router(config-if)# description [description text]
Sets a description for a specific interface
Router# config t
Router(config)# hostname ATL1
ATL1(config)#
Sets the hostname of the router to ATL1
Router(config)# int ser 0
Router(config-if)# description ATL to NYC
Adds the description ATL to NYC for the first serial interface on the router.
When making configuration changes, the following message is constantly displayed, sometimes as you are typing:
%SYS-5-CONFIG_1: Configured from console by console
Command:
logging synchronous and no logging console
Description:
The logging synchronous command causes logging messages to be displayed above the command line instead of interrupting your requested session output and prompts. You can use the no logging console command to turn off these messages.
The session automatically disconnects at the wrong time.
Command:
exec-timeout min sec
Description:
You want to maintain a session timeout for security reasons. However, if you are frequently getting timeouts while you are working, you may consider extending the timeout period. You can use exec-timeout to configure the time interval that the EXEC command interpreter waits before it disconnects the incoming session when no user input is detected.
When working with the device through a Telnet session, using a debug command displays no output.
Command:
terminal monitor
Description:
The terminal monitor command displays debugging output to the terminal session.
When viewing debug information, you want to review previous information. Or, debug information is shown too quickly for you to examine it.
Command:
logging buffered and show log
Description:
You can send logging information to RAM by entering logging buffered. You can then view the information one screen at a time by entering show log.
banner and banner motd
Sets the message-of-the-day (MOTD) banner. The MOTD banner displays immediately after a connection is made.
banner login
Sets the login banner. The login banner displays after the MOTD banner and before the login prompt.
banner exec
Sets the exec banner. The exec banner displays after a successful login.
banner incoming
Sets the incoming banner. The incoming banner displays for a reverse Telnet session.
no banner type
Removes the specified banner.
You are troubleshooting a router at the console. You issued the following command at the CLI:
pdx#debug arp
You see debug output, but the output scrolls past faster than you can read. What two commands allow you to view debug output one page at a time? (Select two.)
Use the logging buffered command to send debug output to RAM, which you can then view one page at a time with the show log command.