Project

General

Profile

Task #6581

Updated by Nico Schottelius about 5 years ago

* birdc6 show protocols 
 * birdc6 show interfaces 
 * birdc6 show route 

 h2. Configuration (general) 

 * import: add information from here into bird 
 * export: write routes to this protocol 

 h2. Filters 

 <pre> 

 filter export_subnets { 
   if net ~ [ 192.168.5.5/32 ] then { 
     accept; 
   } 
   reject; 
 } 
 ... 
 export filter export_subnets; 
 ... 

 h2. stuff 
 <pre> 
 bird> show route protocol <somepeer> # shows the route they export to you 
 bird> show route export <somepeer> # shows the route you export to someone 
 ... 
 </pre>

Back