Tag: practice questions

  • Fortinet NSE Exam Practice Questions – FortiGate FortiOS 7.6 – Set 2

    These practice questions are original and hand-written as a personal aid while studying for the Fortinet NSE8 exam. Content may or may not be applicable to any specific exam levels, but may be useful for the NSE4, NSE7, NSE8, FCP, or FCSS FortiGate exams. No questions are pulled from actual exams. Content is sourced from and fact-checked via official Fortinet Documentation.

    Question 1

    What will happen to traffic matching the following route?
    config router policy
    edit 1
    set src "10.250.4.5/255.255.255.255"
    set dst "142.251.111.0/255.255.255.0"
    set action deny
    next
    end

    ← Back

    Thank you for your response. ✨

    Choose one option(required)

    Show Answer and Explanation

    Answer:
    The standard routing table (RIB) will be used to evaluate the traffic

    Explanation:
    The deny action, depicted in the Policy-Based Route GUI by the Stop Policy Routing Action, and when applied to a policy, will force any matched traffic to stop being evaluated by any policy routing (PBRs, ISDB Static Routes, or SD-WAN rules) and go straight to being evaluated by the standard routing table (RIB).

    Question 2

    BGP isn’t coming up between your two FortiGates that are connected via an IPsec tunnel called “Hub-and-Spoke”, which has been verified as up and able to pass traffic. What can be configured to bring BGP up between the two FortiGates?

    Firewall 1 (AzFW01) Configurations and Diagnostics:
    AzFW01 (10.100.1.1/32) # show
    config system interface
    edit "10.100.1.1/32"
    set vdom "root"
    set vrf 20
    set ip 10.100.1.1 255.255.255.255
    set allowaccess ping
    set type loopback
    set role lan
    next
    end


    AzFW01 (bgp) # show
    config router bgp
    set as 100
    config neighbor
    edit "10.200.1.1"
    set soft-reconfiguration enable
    set interface "10.100.1.1/32"
    set remote-as 100
    set update-source "10.100.1.1/32"
    next
    end
    config network
    edit 1
    set prefix 10.250.0.0 255.255.0.0
    next
    edit 2
    set prefix 10.100.1.1 255.255.255.255
    next
    end


    Firewall 2 (AzFW02) Configurations and Diagnostics:
    AzFW02 (BGP Loopback) # show
    config system interface
    edit "BGP Loopback"
    set vdom "root"
    set vrf 20
    set ip 10.200.1.1 255.255.255.255
    set allowaccess ping
    set type loopback
    set role lan
    next
    end


    AzFW02 (bgp) # show
    config router bgp
    set as 100
    config neighbor
    edit "10.100.1.1"
    set soft-reconfiguration enable
    set interface "BGP Loopback"
    set remote-as 100
    set update-source "BGP Loopback"
    next
    end
    config network
    edit 1
    set prefix 10.251.0.0 255.255.0.0
    next
    edit 2
    set prefix 10.200.1.1 255.255.255.255
    next
    end

    ← Back

    Thank you for your response. ✨

    Choose up to five options(required)

    Show Answer and Explanation

    Answer:
    On both FortiGates’ BGP loopback interfaces (labeled “10.100.1.1/32 and BGP Loopback), set vrf 0

    Explanation:
    Out of all the listed options, the answer above is the only change that will allow BGP to come up between the FortiGates. The base issue is that the BGP loopback interfaces (“10.100.1.1/32” and “BGP Loopback”, sorry for the confusing names here, they’re both functioning as BGP loopbacks) on both FortiGates cannot reach each other. The question states that the devices are connected via an IPsec tunnel called Hub-and-Spoke, which from the routing table on both FortiGates show, resides in VRF 0. The BGP loopback interfaces themselves reside in VRF 20.

    On both FortiGates, a static route via Hub-and-Spoke to the peer’s loopback IP
    This is already configured on both FortiGates, as seen by the route table entries for 10.100.1.1/32 and 10.200.1.1/32 in VRF 0.

    BGP VRF route leaking from VRF 0 into VRF 20
    This would add the single VRF 0 routes into the VRF 20 routing table, but only once BGP is up.

    On both FortiGates, set ebgp-enforce-multihop enable on the neighbor configuration, change AzFW02’s AS to 200, and AzFW01’s neighbor AS to 100

    These steps would configure eBGP, but the eBGP peering would still not come up due to the VRF issue.

    On both FortiGates, enabling the redistribution of all static and connected routes into BGP
    This would allow each FortiGate’s static and connected routes to be redistributed into BGP, but because BGP is not up and sharing routes, no redistribution would yet occur.





    Question 3

    Which of the following interfaces will be used for traffic to 55.55.55.55/32?

    ← Back

    Thank you for your response. ✨

    Choose one option(required)

    Show Answer and Explanation

    Answer:
    Proxy-VLAN

    Explanation:
    This is a simple administrative distance (AD) and static route priority order question. All routes are identical in destination, so the route with the lowest AD will be selected. As a tiebreaker between static routes with the same AD, the route with the lowest priority will be selected. If two static routes share the same destination, AD, and priority, they will be ECMP load-balanced.
    With this said, the order of priority for the listed routes is:
    Proxy-VLAN > asymVPN > Captive > 10.200.2.1/24

    Question 4

    Your FortiGate has the following configurations. Which of the following packet types will be evaluated by firewall policies and require an allow policy match to pass through the FortiGate?
    config system settings
    set asymroute enable

    set asymroute-icmp enable
    end

    ← Back

    Thank you for your response. ✨

    Choose up to six options(required)

    Show Answer and Explanation

    Answer:
    TCP SYN packets
    UDP packets

    Explanation:
    TCP SYN packets are not part of an existing session and will always require a firewall policy to pass.
    UDP packets are always checked by firewall policies, regardless of whether they’re part of an existing session or not.
    The asymroute and asymroute-icmp configurations do not change either of the above facts.

    TCP non-SYN packets that are part of an existing session, by the nature of stateful firewalls like FortiGate, do not require a firewall policy match to pass.
    TCP non-SYN packets that are NOT part of an existing session, when asymroute is enabled, are punted to the CPU and no firewall or security inspection will occur.
    ICMP packets that are part of an existing session, by the nature of stateful firewalls like FortiGate, do not require a firewall policy to pass.
    ICMP packets that are NOT part of an existing session, when asymroute-icmp is enabled, are punted to the CPU and no firewall or security inspection will occur.

    Question 5

    With the policy route and full routing table shown in the images below, users are reporting that App Store web traffic is failing. Which of the following configurations is most likely to remediate the issue?

    ← Back

    Thank you for your response. ✨

    Choose up to five options(required)

    Show Answer and Explanation

    Answer:
    Adding a default static route via the Outside interface

    Explanation:
    Policy-based routes, like SD-WAN routes, are only functional if there is a route in the RIB via the specified outgoing interface. The route table shows no routes to public/internet IPs. Adding a default route (0.0.0.0/0) via the Outside interface would allow for the policy-based route to function.

    Setting the gateway address on the policy-based route to the Outside interface’s WAN gateway is not required for a policy-based route to function. When only the outgoing interface is specified, FortiGate will do a RIB lookup for the gateway address matching interface.

    Removing the Apple-App.Store internet service and instead specifying the Apple App Store well known FQDNs as the destination address will have no effect on the functionality of the policy route, other than changing which destinations are matched. Traffic will still not be able to reach the Apple App Store without a route to the public internet.

    Changing the source port to 443 and destination port to 0 – 65535 will break the functionality of this policy-based route even further. Port 443 for web/HTTPS traffic is a destination port. When packets are sent for HTTPS web traffic, they are destined to 443 and sourced from a random ephemeral port (typically between 49152 and 65535). With 443 set as the source port, this PBR will only match when the random source port happens to be 443, which it never would.


    Question 6

    With the following configurations, you notice that SNMP polling and testing via SNMP walks is failing. You’ve verified your SNMP server is configured correctly to point to 10.250.4.4 and your SNMP community string matches. Which of the following changes are most likely to fix the SNMP issue?

    config system ha
    set mode a-p
    set group-name "HA"
    set password ENC [Redacted Password]
    set hbdev "port2" 0
    set override enable
    set priority 255

    set ha-mgmt-status enable
    config ha-mgmt-interface
    edit 1
    set interface port2
    next
    end
    end
    config system interface
    edit "port2"
    set vdom "root"
    set ip 10.250.4.4 255.255.255.0
    set allowaccess ping https ssh fgfm fabric snmp
    set type physical
    next
    end
    config system snmp sysinfo
    set status enable
    set description "AzFW01"
    end
    config system snmp community
    edit 1
    set name "Monitoring"
    config hosts
    edit 1
    set ip 192.168.50.10 255.255.255.255
    next
    end

    next
    end

    ← Back

    Thank you for your response. ✨

    Choose one option(required)

    Show Answer and Explanation

    Answer:
    In the SNMP host 1 settings, set ha-direct enable

    Explanation:
    The configuration in the question shows port2 acting as both the HA management interface and the target interface for SNMP polling. When ha-mgmt-status is enable and an HA management interface specified, that interface will not allow SNMP polling against it, unless ha-direct has been enabled on either the global HA settings or the SNMP host settings.

    Question 7

    You notice that the following session is not being offloaded to hardware like it’s supposed to be. Which configuration change should you make to resolve this?

    ← Back

    Thank you for your response. ✨

    Choose one option(required)

    Show Answer and Explanation

    Answer:
    config vpn ipsec phase1-interface
    edit Dial-Up
    set npu-offload enable
    next
    end


    Explanation:
    The key out from the session table list here is no_ofld_reason: disabled-by-policy. This offload failure reason will only appear when auto-asic-offload is disabled. Re-enabling the setting will resolve the offload failure reason.

    set npu-offload disable on the Phase 1 VPN configuration would create the npu-flag-off offload failure reason. Therefore set npu-offload enable would not resolve the offload failure reason.

    set np-accel-mode none would disable NTurbo and would not produce the disabled-by-policy offload failure reason. Therefore set np-accel-mode basic would not resolve the offload failure reason.

    set cp-accel-mode none would disable IPSA and would not produce the disabled-by-policy offload failure reason. Therefore set cp-accel-mode basic would not resolve the offload failure reason.

    Question 8

    Based on the following session information, which of the following is configured on this FortiGate?

    session info: proto=6 proto_state=02 duration=10 expire=2 timeout=3600 refresh_dir=both flags=00000000 socktype=0 sockport=0 av_idx=0 use=3
    origin-shaper=
    reply-shaper=
    per_ip_shaper=
    class_id=0 ha_id=0 policy_dir=0 tunnel=/ tun_id=0.0.0.0/172.203.132.222 vlan_cos=0/255
    state=log may_dirty f00 f02
    statistic(bytes/packets/allow_err): org=180/3/1 reply=0/0/0 tuples=2
    tx speed(Bps/kbps): 0/0 rx speed(Bps/kbps): 0/0
    orgin->sink: org pre->post, reply pre->post dev=19->4/4->19 gwy=0.0.0.0/0.0.0.0
    hook=pre dir=org act=noop 172.20.0.1:2067->10.251.4.5:139(0.0.0.0:0)
    hook=post dir=reply act=noop 10.251.4.5:139->172.20.0.1:2067(0.0.0.0:0)
    pos/(before,after) 0/(0,0), 0/(0,0)
    misc=0 policy_id=7 pol_uuid_idx=15878 auth_info=0 chk_client_info=0 vd=0
    serial=00003299 tos=ff/ff app_list=0 app=0 url_cat=0
    rpdb_link_id=00000000 ngfwid=n/a
    npu_state=0x000100
    no_ofld_reason: npu-flag-off
    hrx info: valid=0/0, qid=0/0, npuid=0/0, sublink=0/0
    reflect info 0:
    dev=19->4/4->19
    npu_state=0x000400
    npu info: flag=0x91/0x00, offload=8/0, ips_offload=0/0, epid=129/0, ipid=142/0, vlan=0x0017/0x0000
    vlifid=142/0, vtag_in=0x0017/0x0000 in_npu=1/0, out_npu=1/0, fwd_en=0/0, qid=4/0
    total reflect session num: 1

    ← Back

    Thank you for your response. ✨

    Choose one option(required)
    Show Answer and Explanation


    Answer:
    config system setting
    set auxiliary-session enable
    end


    Explanation:
    The key word from the diag sys session list output above is reflect. When auxiliary-session is enabled and created for a session, the session will be tagged as a reflect session.

    None of the other three configurations are indicated by the diagnostic output.

    Question 9

    Which of the routes listed above will be ECMP load-balanced with the route via Proxy-VLAN?

    ← Back

    Thank you for your response. ✨

    Choose one option(required)

    Show Answer and Explanation

    Answer:
    None of the above

    Explanation:
    For ECMP load-balancing to occur with static routes on FortiGate, the routes must have the same Distance (AD) and Priority. The question asks which route will be load-balanced with the first route, which carries an AD of 10 and Priority of 10. None of the listed routes also have an AD of 10 and Priority of 10.

    Question 10

    You configure the following policy-based route to use port1 for your FortiGate’s FortiGuard ISDB update traffic. After analyzing logs and hit count on the configured policy route, you determine that outbound traffic is still using the incorrect interface. What is the best reason as to why this is occurring?

    ← Back

    Thank you for your response. ✨

    Choose one option(required)

    Show Answer and Explanation

    Answer:
    Local-out traffic is not evaluated by policy-based routes

    Explanation:
    The above answer is the best reason the policy-based route is not being used, and will never be used. FortiGate FortiGuard ISDB updates are considered local-out traffic and will never match a PBR. The FortiGate’s local-out settings should be used to customize the outbound interface for this traffic.

    There is no incoming interface set
    An incoming interface on a PBR is not required to match traffic.

    There is not a RIB entry to FortiGuard servers via port1
    This would break traffic matching this PBR, but the PBR will never be matched because local-out traffic is not evaluated by PBRs.

    The firewall is not licensed to download ISDB updates from FortiGuard
    This would stop ISDB updates from succeeding, but not the policy from matching.

  • Fortinet NSE Exam Practice Questions – FortiGate FortiOS 7.6 – Set 1

    These practice questions are original and hand-written as a personal aid while studying for the Fortinet NSE8 exam. Content may or may not be applicable to any specific exam levels, but may be useful for the NSE4, NSE7, NSE8, FCP, or FCSS FortiGate exams. No questions are pulled from actual exams. Content is sourced from and fact-checked via official Fortinet Documentation.

    Question 1

    You have a multicast source that hops through your FortiGate firewalls before reaching the receiver device. The source and receiver devices are not in the same broadcast domain. You notice that multicast packets are being dropped before reaching their final destination. On your FortiGate, you run a packet sniffer specific to your multicast traffic and see the following output. Which configuration below, applied to your FortiGates, will allow traffic to reach its final destination?

    ← Back

    Thank you for your response. ✨

    Choose one option(required)

    Show Answer and Explanation

    Answer:
    config system settings
    set multicast-ttl-notchange enable
    end


    Explanation:
    The screenshot shows captured packets with a TTL of 1 when they pass through the FortiGate. When packets pass through FortiGate, the TTL will decrement by 1, therefore if a packet doesn’t have a TTL of 2 or higher when it reaches the FortiGate, it will be dropped. Multicast packets will sometimes source with a TTL of 1, common with link-local multicast traffic. The multicast-ttl-notchange setting, when enabled, will not decrement the TTL from 1 to 0, which would have caused the packet to be dropped. Assuming the multicast packet continues to flow through routers that do not decrement TTL, or the next hop is the multicast destination itself, the packet will reach the destination.

    None of the other listed options will fix the TTL=1 issue.
    set multicast-routing enable is a pre-requisite for multicast traffic to traverse broadcast domains, but does not fix the TTL issue causing traffic to be dropped.
    set multicast-forward enable allows multicast forwarding, which doesn’t apply since the source and receiver are on different broadcast domains.
    set ses-denied-multicast-traffic disable will have FortiGate not create sessions for denied multicast traffic. This setting is enabled to reduce CPU usage and improve performance, but does not affect the TTL=1 issue.

    Question 2

    You have configured SLAAC for IPv6 addressing to a downstream device, but the device is not receiving an IPv6 address. You have verified all device-level network settings are correct. Your SLAAC-serving interface is configured as follows:
    config system interface
    edit "port2"
    set vdom "root"
    set type physical
    set description "internal"
    set alias "Inside"
    config ipv6
    set ip6-address fd00:c74c:7fe5::4/128

    set ip6-mode static
    set ip6-allowaccess ping
    set ip6-send-adv disable
    set ip6-other-flag enable
    config ip6-prefix-list
    edit fd00:c74c:7fe5:3::/96
    next
    end
    end
    What two configurations need to be made to allow the downstream device to receive an IPv6 address?

    ← Back

    Thank you for your response. ✨

    Choose up to five options(required)

    Show Answer and Explanation

    Answer:
    Replace fd00:c74c:7fe5:3::/96 with fd00:c74c:7fe5:3::/64
    and
    set ip6-send-adv enable


    Explanation:
    You must replace fd00:c74c:7fe5:3::/96 with fd00:c74c:7fe5:3::/64 as SLAAC only works when the prefix is a /64.
    set ip6-send-adv enable is the required line of configuration for SLAAC on FortiGate.

    None of the other options will affect SLAAC.
    set dhcp6-relay-service enable configures the interface to relay DHCPv6 requests from clients to a DHCPv6 server outside of the interface. This is the IPv6 equivalent to the IPv4 DHCP relay configuration, set dhcp-relay-service enable.
    set ip6-mode dhcp configures the interface to act as a DHCPv6 client. this is the IPv6 equivalent to the IPv4 interface addressing configuration, set mode dhcp.

    Question 3

    A firewall policy is matched with the following configurations. What session TTL will be applied to the matching session?
    config firewall policy
    edit 3
    set name "Policy 3"
    set srcintf "any"
    set dstintf "any"
    set action accept
    set srcaddr "all"
    set dstaddr "10.0.0.0/8"
    set schedule "always"
    set service "TCP 433"
    set utm-status enable
    set ssl-ssh-profile "certificate-inspection"
    set application-list "default"
    set logtraffic all
    set session-ttl 1200
    next
    end


    config application list
    edit "default"
    config entries
    edit 1
    set action pass
    set session-ttl 1500
    next
    end
    end


    config firewall service custom
    edit "TCP 433"
    set tcp-portrange 433
    set session-ttl 900
    next
    end

    config system session-ttl
    set default 3600
    end

    ← Back

    Thank you for your response. ✨

    Choose one option(required)

    Show Answer and Explanation

    Answer:
    1500 seconds

    Explanation:
    The configurations shown are the four places you can customize a session’s TTL. The configurations take higher priority in the following order:
    1) Application Control Profile Session TTL
    2) Custom Service Session TTL
    3) Firewall Policy Session TTL
    4) Global Session TTL

    All four configurations apply to the listed firewall policy, including the “default” Application Control Profile, which has a custom session TTL set to 1500 seconds.

    Question 4

    An IPsec tunnel connects two FortiGate firewalls. You are trying to bring up an OSPF adjacency between the firewalls, but it’s showing the following state and won’t progress past it. What configuration change should you make to bring the adjacency up?

    On FortiGate-A:
    config router ospf
    set router-id 10.100.1.1
    config area
    edit 0.0.0.0
    next
    end
    config ospf-interface
    edit "Hub-and-Spoke"
    set interface "Hub-and-Spoke"
    set authentication message-digest
    set keychain "ospf"
    set dead-interval 40
    set hello-interval 10
    set mtu 1400
    set network-type point-to-multipoint
    next
    end
    config network
    edit 1
    set prefix 10.100.1.1 255.255.255.255
    next
    edit 2
    set prefix 172.20.0.0 255.255.255.252
    next
    end

    On FortiGate-B:
    config router ospf
    set router-id 10.200.1.1
    config area
    edit 0.0.0.0
    next
    end
    config ospf-interface
    edit "Hub-and-Spoke"
    set interface "Hub-and-Spoke"
    set authentication message-digest
    set keychain "ospf"
    set dead-interval 40
    set hello-interval 10
    set mtu-ignore enable
    set network-type point-to-point
    next
    end
    config network
    edit 1
    set prefix 10.200.1.1 255.255.255.255
    next
    edit 2
    set prefix 172.20.0.0 255.255.255.252
    next
    end

    ← Back

    Thank you for your response. ✨

    Choose up to six options(required)

    Show Answer and Explanation

    Answer:
    On FortiGate-A, set mtu-ignore enable

    Explanation:
    OSPF coming up to the Exchange start (ExStart) state, but not moving further, is a classic MTU mismatch problem. By default, OSPF routers connected by an IPsec tunnel will have an MTU of 1420 on both IPsec interfaces. In the question config, FortiGate-A’s OSPF interface has a custom MTU of 1400 set, mismatching with FortiGate-B’s default 1420.
    On FortiGate-A, the set mtu-ignore enable configuration will tell OSPF to ignore the MTU mismatch and bring the OSPF adjacency up anyways.

    None of the other answers will bring the OSPF adjacency up.
    On FortiGate-A, set network-type point-to-point will not bring up the adjacency as a point-to-multipoint and point-to-point interface are compatible.
    On FortiGate-A, set mtu 1500 will not bring up the adjacency as the FortiGate-A MTU will still not match the default IPsec interface MTU on FortiGate-B of 1420.
    On FortiGate-B, edit1, set prefix 10.100.1.1 255.255.255.255 will not bring up the adjacency, it will just change the advertised network to FortiGate-A.

    Question 5

    Which of the following networks will be advertised to BGP peer, 10.100.1.1?

    On AzFW02 (root):
    config router bgp
    set as 100
    set ebgp-multipath enable
    config neighbor
    edit "10.100.1.1"
    set ebgp-enforce-multihop enable
    set soft-reconfiguration enable
    set interface "BGP Loopback"
    set remote-as 100
    set update-source "BGP Loopback"
    next
    end
    config network
    edit 1
    set prefix 10.251.0.0 255.255.0.0
    next
    edit 2
    set prefix 10.200.1.1 255.255.255.255
    next
    edit 3
    set prefix 55.55.55.55 255.255.255.255
    next
    end
    config redistribute "connected"
    end
    config redistribute "static"
    set status enable
    end

    end

    ← Back

    Thank you for your response. ✨

    Choose up to five options(required)

    Show Answer and Explanation

    Answer:
    10.251.0.0/16
    10.200.1.1/32
    172.20.0.1/32


    Explanation:
    10.251.0.0/16 and 10.200.1.1/32 will be advertised because they are configured within the BGP networks list and there are routes to both subnets in AzFW02’s route table.
    172.20.0.1/32 will be advertised because it is a static type route and BGP is configured to redistribute static routes. The subnet is also present in AzFW02’s route table.
    10.101.1.0/24 will not be advertised as BGP is not configured to redistribute connected routes nor is the subnet configured within the BGP networks list.
    55.55.55.55/32 is configured within the BGP networks list, but there is not a route to the subnet within AzFW02’s route table.


    Question 6

    A FortiGate is seeing much higher CPU usage than usual after a junior admin made multiple configuration changes, leading to performance throttling. Which changes, if reverted, should improve steady-state performance conditions?

    ← Back

    Thank you for your response. ✨

    Choose one option(required)

    Show Answer and Explanation

    Answer:
    config system global
    set check-protocol-header strict
    end


    config system global
    set tcp-timewait-timer 0
    end


    Explanation:
    Setting check-protocol-header to strict disables all hardware offloading, increasing CPU usage.
    Setting the tcp-timewait-timer to 0 sets an unlimited TCP time wait after TCP handshakes have closed, leaving all TCP sessions in the session table indefinitely, increasing CPU usage.

    The IPS setting set fail-open enable will allow flow-based sessions to continue to flow while the FortiGate is in memory conserve mode. This will not directly lead to high CPU usage in steady-state.
    The IPS setting set socket-size 512 will allow for additional data to be passed by the kernel to the IPS engine each time the engine samples packets. Raising this value from the previous value of 256 may lead to high memory issue but does not directly impact CPU usage in stead-state.

    Question 7

    You have two FortiGates configured in FGCP HA mode. Your primary FortiGate has the following config:
    config system ha
    set group-name "HA"
    set mode a-p
    set password ENC [REDACTED PASSWORD HASH]
    set hbdev "port2" 0
    set override enable

    set session-pickup enable
    set priority 255
    end

    During a routine failover test from your active to passive unit, you notice that the following traffic flow takes a long time to reconnect after the failover.

    What can be configured in your HA settings to speed up recovery of the traffic flow?

    ← Back

    Thank you for your response. ✨

    Choose one option(required)

    Show Answer and Explanation

    Answer:
    set session-pickup-connectionless enable

    Explanation:
    set session-pickup-connectionless enable enables session synchronization of UDP and ICMP sessions, allowing for the maintenance of the UDP (proto=6) session seen in the diagnostic output above.
    set backup-hbdev port1 is a setting that assigns port1 to be the backup heartbeat interface. This will not improve session failover times.
    set gratuitous-arps disable stops the sending of gratuitous ARP packets during HA failover events. Gratuitous ARP assists in the updating of connected devices’ MAC forwarding tables during failover. Disabling this setting will not improve session failover times, it will likely extend them.
    set sync-config disable will stop the automated synchronization of configurations between HA devices. This will not improve session failover times.

    Question 8

    You log into your FortiGate device and navigate to the Automation page to configure an Automation Stitch, but are presented with this message:

    Which of the following should be set on the FortiGate you’re currently logged into in order to allow you to create an Automation Stitch?

    ← Back

    Thank you for your response. ✨

    Choose one option(required)
    Show Answer and Explanation


    Answer:
    config system setting
    set auxiliary-session enable
    end


    Explanation:
    The key word from the diag sys session list output above is reflect. When auxiliary-session is enabled and created for a session, the session will be tagged as a reflect session.

    None of the other three configurations are indicated by the diagnostic output.

    Question 9

    Assuming full functionality and that these options are being directly compared, which of the following routes will be used for Gmail traffic? For reference, Google-Gmail’s internet service ID is 65646.

    ← Back

    Thank you for your response. ✨

    Choose one option(required)

    Show Answer and Explanation

    Answer:
    config router policy
    edit 2
    set output-device “port2”
    set internet-service-id 65646
    next
    end


    Explanation:
    All three routes are valid. The listed route types are evaluated in the following order:
    Policy-Based Routes > ISDB Routes > SD-WAN Routes
    config router policy is a policy-based route configuration, therefore it is the right answer.
    config system sdwan is an SD-WAN route rule configuration, less preferred than the policy-based route.
    config router static is an ISDB route configuration, less preferred than the policy-based route.

    Question 10

    Which of the following CLI configurations would you find for this VPN tunnel under config vpn ipsec phase1-interface?

    ← Back

    Thank you for your response. ✨

    Choose one option(required)

    Show Answer and Explanation

    Answer:
    set childless-ike enable

    Explanation:
    We know that childless-ike is enabled because of the presence of PQC-KEM (IKE): yes. childless-ike is a required configuration for IKE PQC.

    We know that set mode aggressive is disabled because of the presence of version: 2. Setting the phase 1 mode is only applicable when IKE is set to version 1.
    We know that set nattraversal is enabled because of the presence of peer within the nat: me peer line as well as transport: UDP. If NAT-T was disabled, we would not be able to traverse NAT on the peer end, and transport would not take place over UDP. We can additionally see port 4500 in use, associated with NAT-T.
    We know that set auto-discovery-receiver is not enabled and is actually disabled because of the line auto-discovery: 1 sender. This tells us that only auto-discovery-sender is enabled.
    We know that set interface “Hub-and-Spoke” is not set because of the line interface: port1 4. This tells us that port1 is the interface binding for this tunnel.