Not a member of Pastebin yet?
                        Sign Up,
                        it unlocks many cool features!                    
                - #Configuration of bino's ROUTER-A
 - log syslog all;
 - router id 10.0.0.1;
 - protocol device {
 - scan time 10;
 - }
 - protocol kernel { # Primary routing table
 - learn; # Learn alien routes from the kernel
 - persist; # Don't remove routes on bird shutdown
 - scan time 15; # Scan kernel routing table every 10 seconds
 - import all;
 - export all;
 - }
 - protocol static {
 - import all;
 - route 172.16.3.0/24 via 10.0.0.3;
 - }
 - protocol ospf {
 - import all;
 - export filter {
 - ospf_metric1 = 1000;
 - if source = RTS_STATIC then accept; else reject;
 - };
 - area 0 {
 - interface "bat0" {
 - cost 1000;
 - type broadcast;
 - hello 5; retransmit 2; wait 10; dead 60;
 - authentication none;
 - };
 - };
 - }
 
Advertisement
 
                    Add Comment                
                
                        Please, Sign In to add comment