Hi Scott,
I used TTL-security instead of ebgp multihop. But having issue with
the next hop being inaccessible for the routes and routes are not
selected as best routes. See below the config for both the routers. I
am using EIGRP for loopback connectivity between the routers. See
below the output for the received routes.
Nakiska#sh ip bgp
BGP table version is 5, local router ID is 10.33.255.2
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal,
r RIB-failure, S Stale
Origin codes: i - IGP, e - EGP, ? - incomplete
Network Next Hop Metric LocPrf Weight Path
* 172.18.0.0 172.17.255.1 200 0 1000 ?
* 172.19.0.0 172.17.255.1 200 0 1000 ?
Nakiska#
Nakiska#sh ip bgp 172.19.0.0
BGP routing table entry for 172.19.0.0/16, version 0
Paths: (1 available, no best path)
Not advertised to any peer
1000
172.17.255.1 (inaccessible) from 172.17.255.1 (172.19.1.1)
Origin incomplete, metric 200, localpref 100, valid, external
Nakiska#
==============================================================
Router bridger
interface Loopback0
ip address 172.17.255.1 255.255.255.255
!
interface Loopback1
ip address 172.18.1.1 255.255.0.0
!
interface Loopback2
ip address 172.19.1.1 255.255.0.0
interface Serial1/0
ip address 150.50.25.8 255.255.255.0
serial restart-delay 0
no dce-terminal-timing-enable
no fair-queue
router bgp 1000
no synchronization
bgp log-neighbor-changes
redistribute connected metric 200 route-map bgp-conn
neighbor 10.33.255.2 remote-as 1200
neighbor 10.33.255.2 ttl-security hops 254
neighbor 10.33.255.2 update-source Loopback0
no auto-summary
router eigrp 2
network 150.50.25.0 0.0.0.255
network 172.17.255.1 0.0.0.0
no auto-summary
access-list 12 permit 172.18.0.0 0.0.255.255
access-list 12 permit 172.19.0.0 0.0.255.255
!
route-map bgp-conn permit 10
match ip address 12
!
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Router Nakiska
interface Loopback0
ip address 10.33.255.2 255.255.255.255
interface Serial1/0
ip address 150.50.25.7 255.255.255.0
serial restart-delay 0
no dce-terminal-timing-enable
router bgp 1200
no synchronization
bgp log-neighbor-changes
neighbor 172.17.255.1 remote-as 1000
neighbor 172.17.255.1 ttl-security hops 254
neighbor 172.17.255.1 update-source Loopback0
no auto-summary
router eigrp 2
network 10.33.255.2 0.0.0.0
network 150.50.25.0 0.0.0.255
no auto-summary
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++