bird.confs: add VPN peers

This commit is contained in:
Vasil Kolev 2018-10-27 22:24:46 +03:00
parent df0610c75d
commit a9a5238fcf
2 changed files with 14 additions and 0 deletions

View File

@ -57,6 +57,8 @@ template bgp t_any {
next hop self; next hop self;
export filter mine; export filter mine;
import all; import all;
default bgp_local_pref 50;
} }
protocol bgp marla_pri from t_any { protocol bgp marla_pri from t_any {
@ -75,6 +77,12 @@ protocol bgp hawk_tp from t_any {
neighbor 172.31.42.2 as 200533; neighbor 172.31.42.2 as 200533;
} }
protocol bgp marla_tp_v from t_any {
neighbor 172.31.43.2 as 200533;
default bgp_local_pref 20;
}
protocol bgp spitfire_pri from t_any { protocol bgp spitfire_pri from t_any {
neighbor 172.31.44.100 as 65535; neighbor 172.31.44.100 as 65535;

View File

@ -44,6 +44,7 @@ template bgp t_any {
next hop self; next hop self;
export filter mine; export filter mine;
import all; import all;
default bgp_local_pref 50;
} }
protocol bgp marla_pri from t_any { protocol bgp marla_pri from t_any {
@ -62,3 +63,8 @@ protocol bgp hawk_tp from t_any {
neighbor 2001:67c:21bc:7fff:f0f:fcf0:0:2 as 200533; neighbor 2001:67c:21bc:7fff:f0f:fcf0:0:2 as 200533;
} }
protocol bgp marla_tp_v from t_any {
neighbor 2001:67c:21bc:7fff:f0f:fcf2:0:1 as 200533;
default bgp_local_pref 20;
}