To support application interaction with Junos OS, the JETservice process (jsd), by default, uses TCP port 32767 to listen for and receive requests from applications to execute APIs. Whenever a request comes on the TCP port, jsd creates a separate thread to service the JET application request. The session remains established as long as the client and server are both up and able to communicate with each other. Over the lifetime of a session, jsd can execute many APIs, and it can execute APIs from multiple sessions in parallel. You can have a maximum of 8 active client sessions connected at any given time.
References:
Question 2
Click the Exhibit button.
Exhibit:
Referring to the exhibit, which Python statement selects the element for the user logged in on the pts/2 TTY?
What are two format distinctions to know when using YAML? (Choose two)
Options:
A.
white space indentation sensitive
B.
tab indentation not allowed
C.
tab indentation allowed
D.
white space indentation insensitive
Answer:
A, B
Explanation:
Explanation:
Because YAML is white-space sensitive and indentation is significant (not allowed), you should always use spaces rather than tabs when creating playbooks. In YAML, items preceded by a hyphen (-) are considered list items, and the key:value notation represents a hash.