FortiGate
FortiGate Next Generation Firewall utilizes purpose-built security processors and threat intelligence security services from FortiGuard labs to deliver top-rated protection and high performance, including encrypted traffic.
ssanga
Staff & Editor
Staff & Editor
Article Id 381672
Description

This article describes an issue where FortiManager appends the firewall policy ID to the global-label name after upgrading the FortiGate using FortiManager.

Scope

FortiManager v7.4.6, FortiGate v7.4.5, v7.4.6, v7.4.7.

Solution

After upgrading FortiGate following the recommended upgrade path, FortiManager appends the firewall policy ID to the global-label, which affects the 'Sequence Grouping View' display. This issue occurs only when the upgrade is performed via FortiManager.

Before Upgrade:

 

config firewall policy
    edit 21
        set name "DENY-ALL"
        set srcintf "port2"
        set dstintf "port3"
        set srcaddr "all"
        set dstaddr "all"
        set schedule "always"
        set service "ALL"
        set logtraffic disable
        set global-label "DENY-RULES"
    next
end

beforeupgrade.png

After the upgrade:


config firewall policy
    edit 21
        set name "DENY-ALL"
        set srcintf "port2"
        set dstintf "port3"
        set srcaddr "all"
        set dstaddr "all"
        set schedule "always"
        set service "ALL"
        set logtraffic disable
        set global-label "DENY-RULES(21)"
    next
end

 

afterupgrade.png

 

Despite the change, the correct global-label remains visible under Policy & Objects → Policy Package → Select Policy → Edit → Advanced Options of FortiManager.

This issue has been resolved in FortiManager v7.4.7 and v7.6.3.

Workaround.

Manually correct the global-label using the CLI:


config firewall policy
    edit <ID>
        set global-label <label>
end