Check Point Certified Multi-Domain Security Management Specialist (CCMS) — Question 35
You need to run a kernel debug over a longer period of time as the problem occurs only once or twice a week. Therefore, you need to add a timestamp to the kernel debug and write the output to a file. What is the correct syntax for this?
Answer options
- A. fw ctl debug -T -f > filename.debug
- B. fw ctl kdebug -T -f -o filename.debug
- C. fw ctl kdebug -T > filename.debug
- D. fw ctl kdebug -T -f > filename.debug
Correct answer: D
Explanation
The correct command is D because it includes both the timestamp option (-T) and the file output option (-f), directing the debug output to a specified file. Option A is incorrect as it uses 'fw ctl debug' instead of 'fw ctl kdebug'. Option B is wrong because it includes '-o', which is not the correct flag for output redirection. Option C lacks the '-f' flag to direct the output to a file.