Question 7 of 1,000
Firewall Policies and NATeasyMultiple ChoiceObjective-mapped

Quick Answer

The answer is Virtual IP (VIP). A Virtual IP object is the correct choice because it performs inbound destination NAT (DNAT) by mapping a specific public IP and port, such as 203.0.113.5:22, to a private IP and port like 10.0.1.10:22, allowing external SSH traffic to reach the internal server. On the Fortinet NSE 4 Network Security Professional exam, this scenario tests your understanding of the distinct roles between Virtual IP, IP Pool, and Central NAT: VIP handles inbound traffic translation, IP Pool manages source NAT for outbound traffic, and Central NAT provides a centralized policy-based alternative. A common trap is confusing VIP with IP Pool, but remember that VIP is for destination translation (inbound), while IP Pool is for source translation (outbound). Memory tip: VIP = "Visitor Inbound" — it invites external traffic into your private network.

NSE4 Firewall Policies and NAT Practice Question

This NSE4 practice question tests your understanding of firewall policies and nat. This is a configuration task: choose the command set that satisfies every stated requirement. Small differences — like 'secret' vs 'password' or 'transport input ssh' vs 'all' — change whether the answer is correct. After answering, compare your reasoning against the explanation and wrong-answer breakdown below. Once you have made your selection, read the full explanation to reinforce the concept and understand why each distractor is designed to mislead on exam day.

A FortiGate administrator needs to allow inbound SSH access from the internet to a single internal server at IP 10.0.1.10. The public IP on the WAN interface is 203.0.113.5. Which type of object should be configured to map the public IP and port to the internal server?

Question 1easymultiple choice
Full question →

Answer choices

Why each option matters

Answer the question above first, then reveal the full breakdown to understand why each option is right or wrong.

Correct answer & explanation

Virtual IP (VIP)

A Virtual IP (VIP) object is the correct choice because it specifically maps a public IP and port (203.0.113.5:22) to a private IP and port (10.0.1.10:22) for inbound destination NAT (DNAT). This allows external SSH traffic to reach the internal server by translating the destination address and port at the FortiGate WAN interface.

Key principle: Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Answer analysis

Option-by-option breakdown

For each option: why learners choose it and why it is or isn't the right answer here.

  • IP Pool

    Why it's wrong here

    IP Pools are used for source NAT (SNAT), not destination NAT.

  • Central NAT policy

    Why it's wrong here

    Central NAT policies can define NAT rules but are not the object type for mapping; a VIP must be used.

  • Virtual IP (VIP)

    Why this is correct

    A VIP maps a public IP and port to an internal IP and port for inbound traffic.

    Related concept

    Read the scenario before looking for a memorised answer.

  • Address object

    Why it's wrong here

    Address objects define IP ranges but do not perform any translation.

Common exam traps

Common exam trap: answer the scenario, not the keyword

The trap here is that candidates often confuse IP Pools (used for source NAT) with Virtual IPs (used for destination NAT), leading them to select Option A when the question clearly requires inbound mapping.

Detailed technical explanation

How to think about this question

Under the hood, a VIP creates a static one-to-one mapping in the FortiGate's NAT table, allowing traffic destined to 203.0.113.5:22 to be rewritten to 10.0.1.10:22. This is essential for services like SSH where the destination port must be preserved or optionally changed. In real-world scenarios, multiple VIPs can be used to map different public ports to different internal servers on the same public IP, enabling efficient use of limited public addresses.

KKey Concepts to Remember

  • Read the scenario before looking for a memorised answer.
  • Find the constraint that changes the correct option.
  • Eliminate answers that are true in general but not in this case.

TExam Day Tips

  • Watch for words such as best, first, most likely and least administrative effort.
  • Review why wrong options are wrong, not only why the correct option is correct.

Key takeaway

Answer the scenario, not the keyword: identify the specific constraint before choosing the most familiar-sounding option.

Real-world example

How this comes up in practice

A small business has 20 workstations on the 192.168.1.0/24 network and one public IP from its ISP. The router uses PAT (NAT overload) so all 20 devices share one public address using different source ports. NAT questions test whether you understand the four address terms and which direction each translation applies.

What to study next

Got this wrong? Here's your next step.

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

Related practice questions

Related NSE4 practice-question pages

Use these pages to review the topic behind this question. This is how one missed question becomes focused revision.

Practice this exam

Start a free NSE4 practice session

Short sessions build daily habit. Longer sessions build exam-day stamina. Try a timed session to simulate real conditions.

FAQ

Questions learners often ask

What does this NSE4 question test?

Firewall Policies and NAT — This question tests Firewall Policies and NAT — Read the scenario before looking for a memorised answer..

What is the correct answer to this question?

The correct answer is: Virtual IP (VIP) — A Virtual IP (VIP) object is the correct choice because it specifically maps a public IP and port (203.0.113.5:22) to a private IP and port (10.0.1.10:22) for inbound destination NAT (DNAT). This allows external SSH traffic to reach the internal server by translating the destination address and port at the FortiGate WAN interface.

What should I do if I get this NSE4 question wrong?

Identify which exam domain this question belongs to, review the core concept, then practise similar questions from the same domain.

What is the key concept behind this question?

Read the scenario before looking for a memorised answer.

About these practice questions

Courseiva creates original exam-style practice questions with explanations and wrong-answer analysis. It does not publish real exam questions, exam dumps, or protected exam content. Learn why practice questions differ from exam dumps →

How Courseiva writes practice questions · Editorial policy

Same concept, more angles

2 more ways this is tested on NSE4

These questions test the same concept from different angles. Work through them to make sure you can recognise it however the exam phrases it.

Variation 1. An administrator wants to allow SSH access from the internet to a server inside the network at 192.168.1.10. Which NAT configuration is needed?

easy
  • A.Use policy-based routing to forward SSH traffic
  • B.Create a VIP mapping public IP:22 to private IP:22 and an allow policy from WAN to DMZ
  • C.Configure source NAT on the outbound policy from DMZ to WAN
  • D.Enable NAT on the WAN interface

Why B: Option B is correct because to allow inbound SSH access from the internet to an internal server, you need a Virtual IP (VIP) that maps a public IP and port (e.g., 203.0.113.5:22) to the private IP and port (192.168.1.10:22), combined with a firewall policy from the WAN zone to the DMZ zone that permits SSH traffic. This is Destination NAT (DNAT), which translates the destination address of incoming packets so they are routed to the internal server.

Variation 2. An administrator wants to allow access to an internal web server from the internet using a public IP address 203.0.113.10. The internal server has IP 10.0.0.5. Which FortiGate feature should be configured to translate the destination IP?

easy
  • A.Virtual IP (VIP)
  • B.Central SNAT
  • C.Policy-based routing
  • D.IP Pool

Why A: Destination NAT (DNAT) is used to translate the destination IP of incoming traffic. Virtual IP (VIP) is the FortiGate object for DNAT. Option B is correct.

Last reviewed: Jun 24, 2026

Question Discussion

Share a tip, memory trick, or ask about the reasoning behind this question. Do not post real exam questions, leaked content, braindumps, or copyrighted exam material. Comments are moderated and may be removed without notice.

Loading comments…

Sign in to join the discussion.

This NSE4 practice question is part of Courseiva's free Fortinet certification practice question bank. Courseiva provides original exam-style practice questions with explanations, topic-based practice, mock exams, readiness tracking, and study analytics to help learners prepare for the NSE4 exam.