An administrator suspects that an interface is flapping but the router is remote and the connection is intermittent. The administrator wants to monitor the interface status without maintaining an SSH session. Which approach should be used?
Trap 1: Use 'monitor interface ge-0/0/0' and rely on terminal persistence
Terminal persistence is unreliable for intermittent connections.
Trap 2: Use 'monitor start' to capture logs
Still requires an active SSH session to receive the output.
Trap 3: Schedule a cron job to run 'show interfaces ge-0/0/0' every minute…
Requires SSH access and may miss events between polls.
- A
Configure event-options to trigger on interface down and send syslog
Logs events remotely without requiring an active SSH session.
- B
Use 'monitor interface ge-0/0/0' and rely on terminal persistence
Why wrong: Terminal persistence is unreliable for intermittent connections.
- C
Use 'monitor start' to capture logs
Why wrong: Still requires an active SSH session to receive the output.
- D
Schedule a cron job to run 'show interfaces ge-0/0/0' every minute and log output
Why wrong: Requires SSH access and may miss events between polls.