Guest User

Untitled

a guest
Nov 16th, 2018
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. protocol kernel {
  2. learn; # Learn even routes entered manually with "route add"
  3. scan time 20; # Scan kernel routing table every 20 seconds
  4. import all; # Default is import all
  5. export all; # Default is export none
  6. }
  7.  
  8. # This pseudo-protocol watches all interface up/down events.
  9. protocol device {
  10. scan time 10; # Scan interfaces every 10 seconds
  11. }
  12.  
  13. protocol ospf MyOSPF {
  14. area 0.0.0.0 {
  15. networks {
  16. 10.62.203.0/24;
  17. };
  18. interface "enp0s3" {
  19. # this tells Bird to talk ospf on this interface em0 (customize as needed)
  20. # notice: unlike Cisco and quagga, you need to specify the interface
  21. };
  22. };
  23. }
Add Comment
Please, Sign In to add comment