I'm trying to get a L3VPN working and use BGP as the PE-CE protocol. Somehow I can't get the routes which I learn over a global L3VPN BGP session to be announced to the CE over BGP. Must be missing something in my configuration<br>

<br>The routes are learned correctly from the other side PE and they are in my local routing table (I can see them with "SHOW ROUTER xxxxx ROUTE-TABLE"):<br><br>Route Table (Service: xxxxx)<br>======================================================<br>

Dest Prefix                                   Type    Proto    Age         Pref<br>       Next Hop[Interface Name]                                     Metric     <br>-------------------------------------------------------------------------------<br>

[...]<br>y.y.y.y/24                                      Remote  BGP VPN  00h00m45s   170 <br>       z.z.z.z (tunneled)                                         0<br>[...]<br><br>However, the route is not announced to my direct BGP peer over the direct session.<br>

<br>Here is my vprn configuration:<br><br>    service<br>        vprn 10 customer 1 create<br>            autonomous-system 11111<br>            route-distinguisher 11111:22222<br>            auto-bind ldp<br>            vrf-target target:11111:22222<br>

            interface "ce0-vlan801"  create<br>                address x.x.x.1/24<br>                sap 8/1/1:801 create<br>                exit<br>            exit<br>            bgp<br>                router-id x.x.x.1<br>

                group "ce1"<br>                    type external<br>                    peer-as 22222<br>                    neighbor x.x.x.2<br>                    exit<br>                exit<br>            exit<br>

            no shutdown<br>        exit<br>    exit<br><br>What do I miss? Do I need some import of the routes from the vrf table into bgp? Tried a few versions, but failed on all of them. BGP is all up and fine and all the learned routes from the CE are imported and sent to the other side just fine, just the routes learned over the vpn bgp session are only making it into the local service routing table and are not announced to the CE router.<br>

<br>Any hints?<br><br>