Advertising BGP routes
Hi all, I'm trying to advertise some prefixes to my ISP using BGP but don't see any messages originating from the Fortigate to the ISP.
The ranges are in my routing table either as a static route or connected range. I've been following a few examples from the documentation but always end up with:
fg01 (root) # get router info bgp neighbors 162.57.210.17 advertised-routes % No prefix for neighbor 162.57.210.17
Current configuration is as follows:
config router prefix-list edit "all_prefixes" config rule edit 1 set prefix 78.121.89.0 255.255.255.0 unset ge unset le next edit 2 set prefix 78.121.88.128 255.255.255.192 unset ge unset le next end next end config router route-map edit "Filter_route" config rule edit 1 set match-ip-address "all_prefixes" unset set-ip-nexthop unset set-ip6-nexthop unset set-ip6-nexthop-local unset set-originator-id next end next end config router bgp set as 64761 set router-id 162.57.210.18 set ebgp-multipath enable set graceful-restart enable config neighbor edit "162.57.210.17" set prefix-list-out "all_prefixes" set remote-as 1518 next end config network edit 1 set prefix 78.121.89.0 255.255.255.0 next edit 2 set prefix 78.121.88.128 255.255.255.192 next end config redistribute "connected" set status enable end config redistribute "rip" end config redistribute "ospf" end config redistribute "static" set status enable set route-map "Filter_route" end config redistribute "isis" end config redistribute6 "connected" end config redistribute6 "rip" end config redistribute6 "ospf" end config redistribute6 "static" end config redistribute6 "isis" end end
Any suggestions would be very much appreciated.
