<div dir="ltr">Hi everyone,<br>I have this configuration:<br>protocol static {<br>        ipv4 { preference 110;};<br>       route <a href="http://10.0.0.0/8" rel="noreferrer" target="_blank">10.0.0.0/8</a> via 192.168.1.1;<br>}<br><br>protocol bgp {<br>        local as 1;<br>        neighbor x.x.x.x as x<br>        ipv4 {<br>                import all;<br>                export filter {if (net ~ [<a href="http://10.0.0.0/8" rel="noreferrer" target="_blank">10.0.0.0/8</a>] ) then accept; reject;};  #also tried with export all;<br>        };<br>}<br><br><br>On route-server I have:<br>ipv4 table test_4;<br><br>protocol pipe Ptest_4 {<br>        table master4;<br>        peer table test_4;<br>        import all;<br>        export all;<br>}<br><br>protocol bgp  Btest_4 from rsclient_4 {<br>        neighbor x.x.x.x as x<br>        multihop 15;<br>        ipv4 {<br>                table test_4;<br>                import all;<br>                export all;<br>        };<br>}<br><br><br>I don’t understand why <a href="http://10.0.0.0/8" rel="noreferrer" target="_blank">10.0.0.0/8</a> is not in master4 and test_4 tables of the route-server. How could I announce a test prefix from a client to the route-server?<br><br>Thanks in advance,<br><br>Fabiano D'Agostino  <br></div>