BGP - Default route

Hello,

I have setup a peering session with Team Cymru on their BGP servers to accept the bogon routes… BGP is working, I am getting the list of advertised routes from them, however all routes accepted show my default gateway as the next hop. How can I set all routes that I receive from the peer to point to a specific next hop address?

For reference: http://www.cymru.com/BGP/bogon-rs.html

Cisco would handle it this way:
! Set a bogon next-hop on all routers that receive the bogons.
ip route 192.0.2.1 255.255.255.255 null0
! Configure the route-map. Remember to apply it to the proper
! peering sessions.
route-map CYMRUBOGONS permit 10
description Filter bogons learned from cymru.com bogon route-servers
match community 10
set ip next-hop 192.0.2.1
ip prefix-list cymru-out seq 5 deny 0.0.0.0/0 le 32

Sam

So there is no way to set a next hop for learned bgp routes?

Sam

Probably not, BGP in the MT is not very configurable.