Fortigate BGP Configuration
hi,
i'm migrating ASA BGP config to FGT and particular on re-using the 'no auto-summary', 'no sync' and 'redistribute static' commands.
i'd appreciate if someone can confirm if i need these command syntax/placement under FGT BGP are correct?
ASA:
router bgp 65101
address-family ipv4 unicast
neighbor 172.16.6.249 remote-as 65102
neighbor 172.16.6.249 activate
redistribute static
no auto-summary
no synchronization
exit-address-family
-----
FGT
config router bgp
set as 65101
set router-id 172.16.6.250
set auto-summary disable
set synchronization disable
config neighbor
edit "172.16.6.249"
set capability-graceful-restart enable
set remote-as 65102
end
config redistribute "static"
set status enable
end
end
