Как правильно реализовать сабж ? - сеть /23 попилить на две /24 на разных роутерах:ROUTER1 - cisco conf:
!
router bgp 4000
bgp router-id 19.10.21.26
bgp cluster-id 3261715457
bgp log-neighbor-changes
network 19.3.9.0 mask 255.255.255.0
network 19.3.8.0 mask 255.255.254.0
neighbor 19.10.19.12 remote-as 6000
neighbor 19.10.19.12 ebgp-multihop 25
neighbor 19.10.19.12 version 4
neighbor 19.10.19.12 prefix-list 6000-BGP-IN in
neighbor 19.10.19.12 prefix-list 6000-BGP-OUT out
neighbor 19.10.21.244 remote-as 4000
neighbor 19.10.21.244 version 4
neighbor 19.10.21.244 default-originate
no auto-summary
!
ROUTER2 - quagga conf:
!
router bgp 4000
bgp router-id 19.3.8.1
network 19.3.8.0/23
network 19.3.8.0/24
redistribute connected
neighbor 19.10.21.241 remote-as 4000 ! // это циска из первого конфига
neighbor 19.10.21.241 soft-reconfiguration inbound
!
в логах на quagga имеем следующее:
2007/02/25 03:12:26 BGP: Zebra send: IPv4 route add 0.0.0.0/0 nexthop 19.10.21.241 metric 0
2007/02/25 03:12:26 BGP: 19.10.21.241 rcvd UPDATE w/ attr: nexthop 19.10.21.241, origin i, localpref 100, metric 0, pat
2007/02/25 03:12:26 BGP: 19.10.21.241 rcvd 19.3.8.0/23
2007/02/25 03:12:26 BGP: 19.10.21.241 rcvd 19.3.9.0/24
2007/02/25 03:12:26 BGP: 19.10.21.241 rcvd UPDATE w/ attr: nexthop 19.10.19.12, origin i, localpref 100, metric 0, path
2007/02/25 03:12:26 BGP: 19.10.21.241 rcvd 19.10.19.0/19
2007/02/25 03:12:26 BGP: 19.10.21.241 KEEPALIVE rcvd
2007/02/25 03:12:26 BGP: Zebra send: IPv4 route add 19.3.9.0/24 nexthop 19.10.21.241 metric 0
2007/02/25 03:12:26 BGP: Zebra send: IPv4 route add 19.10.19.0/19 nexthop 19.10.19.12 metric 0
2007/02/25 03:12:27 BGP: 19.10.21.241 send UPDATE 19.3.8.0/23
2007/02/25 03:12:27 BGP: 19.10.21.241 send UPDATE 19.3.8.0/24
2007/02/25 03:12:27 BGP: 19.10.21.241 send UPDATE 19.10.21.240/28
на циске имеем следующее:
#sh ip bgp
BGP table version is 8, local router ID is 194.105.214.26
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal
Origin codes: i - IGP, e - EGP, ? - incomplete
Network Next Hop Metric LocPrf Weight Path
*> 0.0.0.0 19.10.19.12 0 0 6000 ?
* i19.3.8.0 19.10.21.244 0 100 0 i
* i19.3.8.0/23 19.10.21.244 0 100 0 i
*> 0.0.0.0 0 32768 i
*> 19.3.9.0 0.0.0.0 0 32768 i
*> 19.10.19.0/19 19.10.19.12 0 0 6000 i
*>i19.10.21.240/28
19.10.21.244 1 100 0 ?
#show ip bgp neighbors 19.10.21.244 routes
BGP table version is 8, local router ID is 19.10.21.26
Status codes: s suppressed, d damped, h history, * valid, > best, i - internal
Origin codes: i - IGP, e - EGP, ? - incomplete
Network Next Hop Metric LocPrf Weight Path
* i19.3.8.0 19.10.21.244 0 100 0 i
* i19.3.8.0/23 19.10.21.244 0 100 0 i
*>i19.10.21.240/28
19.10.21.244 1 100 0 ?
Total number of prefixes 3
#sh ip route bgp
B 19.10.19.0/19 [20/0] via 19.10.19.12, 00:22:33
теперь вопрос: почему сеть 19.3.8.0/24 не попадает в таблицу маршрутизации на циске ?