#config-version=FGT100F-7.0.5-FW-build0303-220217:opmode=0:vdom=0
config system global
    set hostname "DC-FW-01"
    set admin-https-redirect enable
end

config system admin
    edit "admin"
        set password ""
        set accprofile "super_admin"
    next
end

config system snmp community
    edit 1
        set name "public"
        config hosts
            edit 1
                set ip 10.99.0.20 255.255.255.255
            next
        end
    next
end

config system interface
    edit "mgmt1"
        set ip 10.99.0.50 255.255.255.0
        set allowaccess ping https http ssh telnet snmp
    next
    edit "wan1"
        set ip 203.0.113.10 255.255.255.252
        set allowaccess ping
    next
    edit "internal"
        set ip 10.10.10.1 255.255.255.0
        set allowaccess ping
    next
end

config firewall policy
    edit 1
        set name "allow_all"
        set srcintf "internal"
        set dstintf "wan1"
        set srcaddr "all"
        set dstaddr "all"
        set service "ALL"
        set action accept
        set schedule "always"
    next
end
