nerdexam
Citrix

1Y0-250 · Question #5

Scenario: An administrator plans to implement NetScaler to load balance Web Interface traffic. The Web Interface servers are using standard non-secure ports. Company policy states that all external…

The correct answer is C. HTTP; SSL virtual server. See the full explanation below for the reasoning.

Question

Scenario: An administrator plans to implement NetScaler to load balance Web Interface traffic. The Web Interface servers are using standard non-secure ports. Company policy states that all external traffic must be secure. The administrator has added the servers for the Web Interface under Load Balancing. In order to load balance the Web Interface traffic and comply with company policy, the administrator should add services for __________ and create an __________. (Choose the correct set of options to complete the sentence.)

Options

  • ASSL; SSL virtual server
  • BSSL; HTTP virtual server
  • CHTTP; SSL virtual server
  • DHTTP; HTTP virtual server

How the community answered

(15 responses)
  • A
    13% (2)
  • B
    7% (1)
  • C
    80% (12)

Community Discussion

8
Grace U.Grace U.Jun 27, 2026

The correct answer is C, HTTP services with an SSL virtual server, and once you see the logic it really does click into place. The services in NetScaler describe how the appliance talks to your backend servers, and since those Web Interface servers are sitting on standard non-secure ports, you define them as HTTP services, plain and simple. The virtual server, on the other hand, is what your external clients connect to, so that one needs to be SSL to satisfy the company policy requiring secure external traffic. What NetScaler is doing here is SSL offloading, accepting the encrypted connection from the outside world, terminating it, and then passing plain HTTP back to your servers, which is exactly why the two pieces do not have to match. The trap in this question is assuming the service type and the virtual server type must be the same, but they do not, because they represent two completely different legs of the connection.

22
Bao N.Bao N.Jun 28, 2026

SSL offload is the key insight you nailed, though worth adding that if your backend Web Interface servers ever get moved to HTTPS you would flip those services to SSL-Bridge and the vserver type stays the same, so knowing which leg you are configuring matters more than memorizing C for this question.

0
Bao N.Bao N.Jun 27, 2026

HTTP services to the real servers, SSL vserver facing the outside, C is right.

4
Samuel O.Samuel O.Jun 27, 2026

The wording trips people up here because "secure" makes you want to pick SSL everywhere, so A looks appealing at first glance. But the servers themselves are running plain HTTP on standard ports, so you define HTTP services to match what the backend is actually listening on, and then you put an SSL virtual server out front to handle the encrypted external traffic, which is exactly what C says.

3
Bao N.Bao N.Jun 27, 2026

The only thing I would add is that once you have done enough practice questions you start recognizing that the distractor is almost always the option that conflates what the client sees with what the backend actually runs on, so flagging that mental split early saves a lot of second-guessing later.

0
Hiroshi T.Hiroshi T.Jun 27, 2026

C is correct, and the Citrix documentation on SSL offload makes the logic airtight. The services you add under Load Balancing represent what the backend servers actually speak, which is HTTP on a standard port, so you bind HTTP services to those Web Interface nodes. The SSL virtual server sits in front and terminates the encrypted session from the client, then forwards plain HTTP internally, which is exactly how NetScaler handles SSL offload per the NetScaler Traffic Management guide. I hit this same scenario on my 1Y0-250 sitting and almost second-guessed myself into B because I conflated "secure external traffic" with needing SSL services on the backend, but the offload architecture is the whole point, and once I recalled that services describe the server side while the vserver describes the client-facing side, C locked in clean.

2
Viktor S.Viktor S.Jun 21, 2026

C is right. The backend servers run plain HTTP so you define HTTP services for them, but the virtual server facing the outside world must be SSL to satisfy the policy that external traffic be encrypted, and NetScaler handles the SSL offload in between.

1
Hiroshi T.Hiroshi T.Jun 24, 2026

Viktor is correct on the offload point, but to be precise the external virtual server needs an SSL profile bound to it, not just an SSL service type, since the Citrix ADC documentation distinguishes between the vServer serviceType and the actual SSL policy/certificate binding that enforces the encryption.

0
Full 1Y0-250 Practice