Hello, I need some help with my BIRD configuration file. I currently cannot figure out how to fix this issue (I'm a newbie!) and most of the other people that I know that use BIRD haven't been able to help me. So here I am. Error: /etc/bird.conf:19:1 Channel not specified (Line 19 is the closing bracket of protocol static) bird.conf: 1 router id 2.235.240.1; 1 2 protocol bgp as6939 { 3 local as 207764; 4 source address 2001:470:12:a6::2; 5 ipv6 { 6 import all; 7 export filter { 8 if net ~ [2a0f:85c0:920::/48] then accept; 9 reject; 10 }; 11 graceful restart on; 12 }; 13 neighbor 2001:470:12:a6::1 as 6939; 14 } 15 16 protocol static { 17 route 2a0f:85c0:920::/48 reject; 18 } 19 20 protocol device { 21 scan time 10; 22 } Thanks in advance.
Hi, On dim. 8 déc. 22:42:27 2019, keksbg wrote:
Hello, I need some help with my BIRD configuration file. I currently cannot figure out how to fix this issue (I'm a newbie!) and most of the other people that I know that use BIRD haven't been able to help me. So here I am.
Error: /etc/bird.conf:19:1 Channel not specified
(Line 19 is the closing bracket of protocol static)
bird.conf:
1 router id 2.235.240.1; 1 2 protocol bgp as6939 { 3 local as 207764; 4 source address 2001:470:12:a6::2; 5 ipv6 { 6 import all; 7 export filter { 8 if net ~ [2a0f:85c0:920::/48] then accept; 9 reject; 10 }; 11 graceful restart on; 12 }; 13 neighbor 2001:470:12:a6::1 as 6939; 14 } 15 16 protocol static { 17 route 2a0f:85c0:920::/48 reject; 18 } 19 20 protocol device { 21 scan time 10; 22 }
You have to add this before 'route blah reject': ipv6 { import all; }; PS: I suggest you to add more filters, feel free to ping if you want some inputs Regards, -- Alarig
participants (2)
-
Alarig Le Lay -
keksbg