Which port on the firewall must be open to ALLOW VNC traffic?
A. 5900
B. 3788
C. 2008
D. 7638
A
Explanation: Keep in mind when using VNC that any connections that go through a firewall will be on port 5900. It may necessary to add a rule to the firewall to allow this traffic.
You might also like to view...
What should you list in the pre-condition of a template function?
a. what happens after the function is executed. b. any functionality that the instantiating class must implement (like <) c. what must be true before the function executes d. all of the above e. A and B f. B and C
Answer the following statements true (T) or false (F)
1. Enumerated type variables can not be read or written directly. 2. The ordinal value of the first value listed in the declaration of an enumerated type is 1. 3. An enumeration type variable can be a loop-control variable for a counter-controlled loop. 4. Given the declaration enum logical {false, true}; the expression true < false is false. 5. The declaration const long int large = 8476399; is valid.