Completing post-deployment configuration
The following shows the post-deployment configuration procedure on the GCP region 1 FortiGate. You would follow the same steps for other regions.
To complete post-deployment configuration:
- Configure the route map. Here,
nexthop1
andnexthop2
are configured for the local cloud redundant interfaces by the script:config router route-map
edit "nexthop1"
config rule
edit 1
set set-ip-nexthop 192.168.205.101
next
end
next
edit "nexthop2"
config rule
edit 1
set set-ip-nexthop 192.168.205.102
next
end
next
end
-
Ensure that the route maps that the script created are reflected in their corresponding BGP neighbor entry:
config router bgp
set as 7260
set router-id 169.250.250.254
config neighbor
edit "192.168.205.101"
...
set route-map-in "nexthop1"
next
edit "192.168.205.102"
...
set route-map-in "nexthop2"
next
...
end