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.
sreddi
Staff
Staff
Article Id 189743
Description
The article describes  how to add Mac address as source in SD-WAN rule.

Scope
For version 6.4.2 and above.

Solution
Configure the MAC address.
# config firewall address
    edit "mac-add"
        set type mac
        set start-mac 70:4c:a5:86:de:56
        set end-mac 70:4c:a5:86:de:56
    next
end
Configure the SD-WAN rule.
# config system sdwan
    # config service

        edit 1
            set dst "all"
            set src "mac-add"
            set priority-members 1
        next
    end
Similar also to add MAC address in policy route.
# config router policy
    edit 3
        set srcaddr "mac-add"
        set gateway 15.1.1.34
        set output-device ha
    next
end

Contributors