nerdexam
Fortinet

NSE4_FGT-6.2 · Question #13

Examine this PAC file configuration. `` function FindProxyForURL(url, host) { if (shExpMatch(url, ".fortinet.com/")) { return "DIRECT"; } else if (isInNet(host, "172.25.120.0", "255.255.255.0")) {…

The correct answer is A. Browsers can be configured to retrieve this PAC file from FortiGate. D. Any web request sent to fortinet.com is allowed to bypass the proxy through altproxy.corp.com: 8060. See the full explanation below for the reasoning.

Question

Examine this PAC file configuration.
function FindProxyForURL(url, host) {
 if (shExpMatch(url, "*.fortinet.com/*")) {
 return "DIRECT";
 } else if (isInNet(host, "172.25.120.0", "255.255.255.0")) {
 return "PROXY altproxy.corp.com: 8060";
 }
 return "PROXY proxy.corp.com:8090";
}
Which of the following statements are true? (Choose two.)

Options

  • ABrowsers can be configured to retrieve this PAC file from FortiGate.
  • BAny web request sent to the 172.25.120.0/24 subnet is allowed to bypass the proxy.
  • CAll requests to fortinet.com are allowed to bypass the proxy.
  • DAny web request sent to fortinet.com is allowed to bypass the proxy through altproxy.corp.com: 8060.

How the community answered

(18 responses)
  • A
    78% (14)
  • B
    17% (3)
  • C
    6% (1)

Community Discussion

No community discussion yet for this question.

Full NSE4_FGT-6.2 Practice