bgpsim 0.20.4

A network control-plane simulator
Documentation
!
!
! Interfaces
!
interface eth1
  ip address 1.192.0.1/30
  no shutdown
exit
!
interface lo
  ip address 1.0.0.1/32
  ip address 100.0.0.1/24
  no shutdown
exit
!
! Static Routes
!
!
! OSPF
!
router ospf
  router-id 1.0.0.1
  maximum-paths 1
exit
!
! BGP
!
route-map neighbor-R0-in permit 65535
exit
route-map neighbor-R0-out permit 65535
exit
!
router bgp 100
  bgp router-id 1.0.0.1
  neighbor 1.192.0.2 remote-as 65500
  neighbor 1.192.0.2 update-source eth1
  address-family ipv4 unicast
    network 1.0.0.0/8
    network 100.0.0.1/24
    neighbor 1.192.0.2 weight 100
    neighbor 1.192.0.2 next-hop-self
    neighbor 1.192.0.2 route-map neighbor-R0-in in
    neighbor 1.192.0.2 route-map neighbor-R0-out out
    neighbor 1.192.0.2 soft-reconfiguration inbound
  exit-address-family
exit
!
ip route 1.0.0.0/8 Null0
!
! Route-Maps
!