Existe um exemplo de gerador de configuração BGP em link Preencha o formulário e você receberá:
!
router bgp 9283
bgp router-id 74.125.53.103
bgp log-neighbor-changes
network 209.85.171.0/24
!
# Begin configuration for Peer 1
neighbor 74.125.53.104 remote-as 9283
neighbor 74.125.53.104 soft-reconfiguration inbound
neighbor 74.125.53.104 description Peer 1
neighbor 74.125.53.104 next-hop-self
!
Por favor, note que você usou o mesmo AS para sua rede e a rede upstream em seu exemplo. Esta não é realmente uma configuração comum porque normalmente o seu ISP é um AS e você tem outro. Essa configuração é um cenário mais comum.
!
router bgp 9283
bgp router-id 74.125.53.103
bgp log-neighbor-changes
network 209.85.171.0/24
!
# Begin configuration for Peer 1
neighbor 74.125.53.104 remote-as 9281
neighbor 74.125.53.104 soft-reconfiguration inbound
neighbor 74.125.53.104 description Peer 1
neighbor 74.125.53.104 route-map rm_peer_1_in in
neighbor 74.125.53.104 route-map rm_peer_1_out out
!
ip prefix-list pl_peer_1_out seq 5 permit 209.85.171.0/24
!
route-map rm_peer_1_out permit 5
match ip address prefix-list pl_peer_1_out
set as-path prepend 9283
!
route-map rm_peer_1_in permit 5
# Adjust this to favor some peers over others.
# Higher number is more preferred
# 0 - 255 with 100 being the default
set local-preference 100
!
Por favor, note em ambos os casos, eu puxei informações de configuração do ponto 2, pois isso não é realmente necessário para o que você está fazendo.