about the bgp route reflector problem?Why does the reflector client receive EBGP routing entries without attributes??my topology is shown below:R3 (as 100)|| (ebgp)||| ( ibgp)R1 (RR)--------------------R4 (client) (as 200)|||| ( ibgp )||R2 (client)(as 200)My configuration is as follows:===The R1 (RR) configuration is as follows:#ebgp partsprotocol bgp bgp_pa_r3 {description "ebgp-pa-r3";multihop 10;table tab_pa_adsl;igp table tab_ospf_10;local as 200;neighbor 192.168.1.1 as 100;source address 192.168.1.2;import all;export all;next hop self;default bgp_local_pref 5;}#rr partstemplate bgp rr_client {description "ibgp-rr1";local 192.168.2.1 as 200;multihop;rr client;rr cluster id 1.1.1.1;}protocol bgp bgp_pa_r2 from rr_client {debug all;enable route refresh on;table tab_rr_1;igp table tab_ospf_10;neighbor 192.168.2.2 as 200;export all;import all;}protocol bgp bgp_pa_r4 from rr_client {table tab_rr_1;igp table tab_ospf_10;neighbor 192.168.2.4 as 200;export all;import all;# next hop self;}==The R2 client configuration is as follows:protocol bgp bgp_pa_r2 {router id 192.168.2.2;debug all;# debug { states,interfaces,events };description "ibgp-rr1";import all;export all;local as 200;neighbor 192.168.2.1 as 200;source address 192.168.2.2;next hop self;}==================Check the route of R2 and find that the route entry received R4 has the BGP.originator_id and BGP.cluster_list attributes,but the entry received from R1 does not have this attribute. why?Thank you very much for your help!! thanks!!The route entries viewed by R2 are as follows:bird> show route protocol bgp_pa_r2 all1007-121.52.236.16/321008- Type: BGP unicast univ1012- BGP.origin: IGPBGP.as_path:BGP.next_hop: 192.168.2.4BGP.local_pref: 100BGP.originator_id: 192.168.2.4BGP.cluster_list: 1.1.1.11007-116.211.98.20/321008- Type: BGP unicast univ1012- BGP.origin: IGPBGP.as_path:BGP.next_hop: 192.168.2.4BGP.local_pref: 100BGP.originator_id: 192.168.2.4BGP.cluster_list: 1.1.1.11007-120.26.0.0/181008- Type: BGP unicast univ1012- BGP.origin: IGPBGP.as_path: 100BGP.next_hop: 192.168.1.1BGP.local_pref: 51007-122.72.90.78/321008- Type: BGP unicast univ1012- BGP.origin: IGPBGP.as_path: 100BGP.next_hop: 192.168.1.1BGP.local_pref: 5