nodogsplash2: update to version 2.1.1 (#376)
[feed/routing.git] / bird-openwrt / bird6-openwrt / src / config / bird6
1 config bird 'bird'
2 option use_UCI_config '1'
3 #Caution! Enabling this option, Bird will translate this
4 #UCI file and use it instead of /etc/bird6.conf
5 option UCI_config_file '/tmp/bird6.conf'
6 #If you enable useUCIconfig, UCIconfigFile will be Bird's
7 #configuration file location.
8
9 config global 'global'
10 option log_file '/tmp/bird6.log'
11 option log 'all'
12 option debug 'off'
13 # This option is set up because is mandatory for Bird6.
14 # Change it to your IPv4 Address or a HEX value.
15 option router_id '0xCAFEBABE'
16
17 config table
18 option name 'aux'
19
20 config kernel kernel1
21 option table 'aux'
22 option import 'all'
23 option export 'all'
24 option kernel_table '100'
25 option scan_time '10'
26 option learn '1'
27 option persist '0'
28 option disabled '0'
29
30 config device device1
31 option scan_time '10'
32 option disabled '0'
33
34 config static static1
35 option table 'aux'
36 option disabled '0'