A network team wants all routers to send log messages to a centralized server at 192.0.2.50. Which command should be added to the router configuration?
Exhibit
Goal: Centralized logging server = 192.0.2.50
Trap 1: snmp-server host 192.0.2.50
This is wrong because SNMP is not the standard command for directing Syslog event messages to a centralized logging host.
Trap 2: archive 192.0.2.50
This is wrong because archive features are not the same as Syslog log forwarding.
Trap 3: ntp server 192.0.2.50
This is wrong because NTP synchronizes device clocks but does not send the logs themselves to a central server.
- A
snmp-server host 192.0.2.50
Why wrong: This is wrong because SNMP is not the standard command for directing Syslog event messages to a centralized logging host.
- B
archive 192.0.2.50
Why wrong: This is wrong because archive features are not the same as Syslog log forwarding.
- C
ntp server 192.0.2.50
Why wrong: This is wrong because NTP synchronizes device clocks but does not send the logs themselves to a central server.
- D
logging host 192.0.2.50
This is correct because `logging host` identifies the destination Syslog server.