156-586 Exam QuestionsBrowse all questions from this exam

156-586 Exam - Question 49


Which Daemon should be debugged for HTTPS Inspection related issues?

Show Answer
Correct Answer: B

The WSTLSD daemon is responsible for handling SSL handshakes in HTTPS Inspected connections. When debugging HTTPS Inspection related issues, focusing on the WSTLSD daemon is essential as it directly manages the secure connection processes involved.

Discussion

2 comments
Sign in to comment
SakanOption: B
Dec 19, 2023

The WSTLSD daemon handles the SSL handshake for HTTPS Inspected connections. To start the debug of the WSTLSD daemon. Run: # for PROC in $(pidof wstlsd) ; do fw debug $PROC on TDERROR_ALL_ALL=6 ; echo Enabling debug wstlsd PID $PROC; done To stop the debug of the WSTLSD daemon: # for PROC in $(pidof wstlsd) ; do fw debug $PROC off TDERROR_ALL_ALL=0 ; echo Disabling debug wstlsd PID $PROC; done To collect the WSTLSD daemon log files: $FWDIR/log/wstlsd.elg*

babochnik
May 9, 2024

this was a real question on the updated PearsonVUE exam (R81.20), passed on May 9th.