babeld 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. package babeld
  2. config general
  3. option 'random_id' 'true'
  4. option 'ipv6_subtrees' 'true'
  5. ##### interfaces en las que babel participa
  6. # (wifi 2.4Ghz adhoc)
  7. config interface
  8. option 'ifname' 'wlan0'
  9. option channel '7'
  10. # (wifi 5Ghz adhoc)
  11. config interface
  12. option 'ifname' 'wlan1'
  13. option channel '153'
  14. # lo siguiente tambien deberia funcionar
  15. #config interface
  16. # option 'ifname' 'wiremesh'
  17. #config interface
  18. # option 'ifname' 'mesh5G'
  19. #config interface
  20. # option 'ifname' 'mesh2G4'
  21. ###### filtros para rutas de entrada (anunciadas por los vecinos)
  22. # permitir el bloque 10.64.0.0 /15 (LaOtraRed La Paz - El Alto)
  23. config filter
  24. option type 'in'
  25. option ip '10.64.0.0/15'
  26. option action 'allow'
  27. config filter
  28. option type 'in'
  29. option ip 'fc01:1934::/32'
  30. option 'allow'
  31. ###### filtros para rutas internas (kernel)
  32. # bloque red mesh de este nodo
  33. config filter
  34. option type 'redistribute'
  35. option ip '10.64.3.64/27' # bloque IPv4 de este nodo
  36. option action 'allow'
  37. # config filter
  38. # option type 'redistribute'
  39. # option local 'true'
  40. # option ip 'fc01:1934:fffe:9493:44d9:e7ff:fe4b:2662/128'
  41. ###### denegar otras rutas no definidas
  42. config filter
  43. option type 'in'
  44. option action 'deny'
  45. config filter
  46. option type 'redistribute'
  47. option local 'true'
  48. option action 'deny'