Advertisement
Guest User

Untitled

a guest
Jul 23rd, 2017
47
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.30 KB | None | 0 0
  1. config bird 'bird'
  2. option use_UCI_config '1'
  3. option UCI_config_file '/tmp/bird4.conf'
  4. option UCI_config_File '/tmp/bird4.conf'
  5.  
  6. config global 'global'
  7. option log_file '/tmp/bird4.log'
  8. option log 'all'
  9. option router_id '10.1.9.72'
  10. option debug 'all'
  11.  
  12. config kernel 'kernel1'
  13. option import 'all'
  14. option export 'all'
  15. option scan_time '10'
  16. option learn '1'
  17. option disabled '0'
  18.  
  19. config device 'device1'
  20. option scan_time '10'
  21. option disabled '0'
  22.  
  23. config direct 'direct1'
  24. option disabled '0'
  25. option interface '"br-lan"'
  26.  
  27. config bgp_template 'common'
  28. option receive_trigger '0'
  29. option local_as '84460'
  30. option import_trigger '1'
  31. option import_limit '3000'
  32. option import_limit_action 'warn'
  33. option export_trigger '1'
  34. option export_limit '3000'
  35. option export_limit_action 'warn'
  36.  
  37. config bgp 'telvent'
  38. option import_trigger '0'
  39. option export_trigger '0'
  40. option receive_trigger '0'
  41. option disabled '0'
  42. option template 'common'
  43. option neighbor_address '172.25.40.65'
  44. option neighbor_as '27612'
  45. option import 'all'
  46. option export 'all'
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement