Manage configurations via the TCP/IP network Flashcards

1
Q

What is the command to copy the running configuration to a TFTP server?

A

copy running-config tftp:

You will be prompted to enter the IP address of the TFTP server and the filename to save the configuration.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

How do you restore a configuration from a TFTP server to a Cisco device?

A

copy tftp: running-config

You will need to provide the TFTP server’s IP address and the configuration file name.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What is the command to enable SCP server on a Cisco device?

A

ip scp server enable

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

How do you configure a Cisco device to accept SSH connections?

A

Generate RSA keys:
crypto key generate rsa

Configure the SSH version:
ip ssh version 2

Enable SSH on the VTY lines:
line vty 0 4
transport input ssh
login local

Create local user accounts:
username [username] password [password]

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you configure a Cisco device to use an SNMP server for configuration management?

A

Enable SNMP on the device:
snmp-server community [community-string] RO

How well did you know this?
1
Not at all
2
3
4
5
Perfectly