QuestionQ15

Advanced Kernel Debugging

You need to run a kernel debug for an extended period because the problem happens only once or twice each week. Therefore, you must add a timestamp to the kernel debug and write its output to a file. What is the correct syntax for this?

  • A fw ctl kdebug -T -f > filename.debug
  • B fw ctl kdebug -T > filename.debug
  • C fw ctl debug -T -f > filename.debug
  • D fw ctl kdebug -T -f -o filename.debug
Explanation

fw ctl kdebug -T -f > filename.debug runs kernel debug collection with microsecond timestamps (-T), continues collecting until it is stopped (-f), and redirects the debug output to the specified file. Check Point documents this exact form for collecting timestamped kernel debug output into a file.

Learn more

Community Discussion

No comments yet. Be the first to start the discussion!