1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- package babeld
- config general
- option 'random_id' 'true'
- option 'ipv6_subtrees' 'true'
- ##### interfaces en las que babel participa
- # (wifi 2.4Ghz adhoc)
- config interface
- option 'ifname' 'wlan0'
- option channel '7'
- # (wifi 5Ghz adhoc)
- config interface
- option 'ifname' 'wlan1'
- option channel '153'
- # lo siguiente tambien deberia funcionar
- #config interface
- # option 'ifname' 'wiremesh'
- #config interface
- # option 'ifname' 'mesh5G'
- #config interface
- # option 'ifname' 'mesh2G4'
- ###### filtros para rutas de entrada (anunciadas por los vecinos)
- # permitir el bloque 10.64.0.0 /15 (LaOtraRed La Paz - El Alto)
- config filter
- option type 'in'
- option ip '10.64.0.0/15'
- option action 'allow'
- config filter
- option type 'in'
- option ip 'fc01:1934::/32'
- option 'allow'
- ###### filtros para rutas internas (kernel)
- # bloque red mesh de este nodo
- config filter
- option type 'redistribute'
- option ip '10.64.3.64/27' # bloque IPv4 de este nodo
- option action 'allow'
- # config filter
- # option type 'redistribute'
- # option local 'true'
- # option ip 'fc01:1934:fffe:9493:44d9:e7ff:fe4b:2662/128'
- ###### denegar otras rutas no definidas
- config filter
- option type 'in'
- option action 'deny'
- config filter
- option type 'redistribute'
- option local 'true'
- option action 'deny'
|