A network administrator needs to automate the backup of router configuration files to a remote server over the internet. The backup must be encrypted and authenticated. Which protocol should the administrator use in the automated script?
SCP (Secure Copy Protocol) is the most appropriate choice because it leverages SSH (Secure Shell) for both data encryption and strong authentication. This ensures that router configuration files are transferred securely over an untrusted network, protecting sensitive data from eavesdropping and tampering. Its widespread support on network devices makes it ideal for automated, script-based backups to a remote server.
Why this answer
SCP (Secure Copy Protocol) is the correct choice because it provides both encryption and authentication by operating over SSH (Secure Shell), which encrypts the entire session and verifies the server's identity using public-key cryptography. This makes it suitable for automating secure backups of router configuration files to a remote server over the internet, as it supports scripting with tools like expect or SSH keys without interactive password prompts.
Exam trap
The N10-009 exam often tests the distinction between secure and insecure file transfer protocols, and the trap here is that candidates may confuse FTP with SFTP or FTPS, assuming FTP itself provides encryption, or they may choose TFTP because it is commonly used for router backups in lab environments, forgetting that the question specifies 'over the internet' and requires encryption and authentication.
Why the other options are wrong
TFTP lacks encryption and authentication, making it unsuitable for secure backups over the internet.
FTP transmits data in plaintext, including authentication credentials, and does not provide encryption or authentication for the backup files, failing the security requirements.
HTTP does not provide encryption or authentication by default; it transmits data in plaintext, making it unsuitable for secure backup of router configurations over the internet.
When would these options actually be correct?
A network administrator needs to quickly transfer a router configuration file to a local TFTP server on the same LAN segment, with no security requirements.
An administrator needs to transfer files within a trusted local network where security is not a concern, and the devices support FTP for simple file transfers without encryption overhead.
Why candidates pick the wrong answer
Candidates may associate TFTP with router configuration backup due to its simplicity and common use in local network environments, overlooking the security requirements for internet-based transfers.
Candidates may associate FTP with file transfer automation and overlook its lack of encryption, assuming it is sufficient for remote backups over the internet.
Candidates may confuse HTTP with HTTPS, assuming it provides security, or think that web-based management is sufficient for automated backups without considering encryption requirements.