Problem with BGP mikrotik 3.13

I have a mikrotik v 3.13 license level 4

My interfaces

ip address print
Flags: X - disabled, I - invalid, D - dynamic

ADDRESS NETWORK BROADCAST INTERFACE

0 10.159.254.10/23 10.159.254.0 10.159.254.255 Soniko_paritet
1 10.154.240.1/20 10.154.240.0 10.154.255.255 Soniko_paritet_nl
2 10.99.52.10/24 10.99.52.0 10.99.52.255 ether1

my routes

ip route print
Flags: X - disabled, A - active, D - dynamic, C - connect, S - static, r - rip, b - bgp, o - ospf, m - mme,
B - blackhole, U - unreachable, P - prohibit

DST-ADDRESS PREF-SRC GATEWAY-STATE GATEWAY DISTANCE INTERFACE

0 X S ;;; added by setup
0.0.0.0/0 10.99.52.1 1
1 ADC 10.99.52.0/24 10.99.52.10 0 ether1
2 ADC 10.154.240.0/20 10.154.240.1 0 Soniko_paritet_nl
3 S 10.154.240.0/20 reachable Soniko_paritet_nl 1 Soniko_paritet_nl
4 ADC 10.159.254.0/23 10.159.254.10

BGP Instanse

routing bgp instance print
Flags: X - disabled
0 name=“default” as=65510 router-id=10.159.254.10 redistribute-connected=no redistribute-static=yes
redistribute-rip=no redistribute-ospf=no redistribute-other-bgp=no out-filter=“”
client-to-client-reflection=no ignore-as-path-len=no

BGP peer

routing bgp peer print
Flags: X - disabled
0 name=“DC-IX” instance=default remote-address=10.159.254.254 remote-as=65500 tcp-md5-key=“”
nexthop-choice=force-self multihop=no route-reflect=no hold-time=3m ttl=1 max-prefix-restart-time=3m
in-filter=“” out-filter=“” address-families=“” update-source=(unknown) default-originate=no

BGP network

> routing bgp network print 
Flags: X - disabled, A - active 
 #   NETWORK              SYNCHRONIZE
 0 A 10.154.240.0/20      no

BGP adress-famaly

> routing bgp aggregate print 
Flags: X - disabled 
 0   instance=default prefix=10.154.240.0/20 summary-only=yes inherit-attributes=no attribute-filter="" 
     suppress-filter="" advertise-filter=""

And in log file i get

16:42:07 route,bgp,info Failed to open TCP connection: No route to host 
16:42:07 route,bgp,info     RemoteAddress=10.159.254.254 
16:42:08 route,bgp,info Connection opened by remote host 
16:42:08 route,bgp,info     RemoteAddress=10.159.254.254 
16:42:08 route,bgp,error Received notification 
16:42:08 route,bgp,error     OPEN error: unsupported capability 
16:42:45 route,bgp,info Connection opened by remote host 
16:42:45 route,bgp,info     RemoteAddress=10.159.254.254 
16:42:45 route,bgp,error Received notification 
16:42:45 route,bgp,error     OPEN error: unsupported capability

But in quaga , demon bgpd on gentoo linux
with config

log file /var/log/bgpd.log
!
bgp config-type cisco
!
router bgp 65510
 no synchronization
 bgp router-id 10.159.254.10
 bgp log-neighbor-changes
 network 10.154.240.0 mask 255.255.240.0
 aggregate-address 10.154.240.0 255.255.240.0 as-set summary-only
 neighbor 10.159.254.254 remote-as 65500
 neighbor 10.159.254.254 description DC-IX
 neighbor 10.159.254.254 interface eth0.104
 neighbor 10.159.254.254 send-community
 neighbor 10.159.254.254 route-map ALL in
 neighbor 10.159.254.254 route-map ALL out
 no auto-summary
!
access-list IP-IX permit 10.152.0.0/13
access-list IP-IX deny any
access-list all permit any
!
ip as-path access-list 1 permit .*
!
route-map ALL permit 20
 match ip address IP-IX
 match as-path 1
!
line vty
!

In other side Cisco router.
It works well on linux with quaga , but don’t work on mikrotik.

Please help.