blade-tuvok: switch from ECMP to metrics
This commit is contained in:
parent
e95324c175
commit
2c632e28d2
1 changed files with 16 additions and 6 deletions
|
@ -167,15 +167,25 @@ in {
|
|||
|
||||
protocol static export4 {
|
||||
ipv4 {};
|
||||
route 92.118.30.0/24
|
||||
via 92.118.30.0 weight 1 bfd # Virgin Media
|
||||
via 92.118.30.2 weight 2 bfd; # EE
|
||||
route 92.118.30.0/24 via 92.118.30.0 bfd {
|
||||
# Virgin Media
|
||||
preference = 100;
|
||||
};
|
||||
route 92.118.30.0/24 via 92.118.30.2 bfd {
|
||||
# EE
|
||||
preference = 10;
|
||||
};
|
||||
};
|
||||
protocol static export6 {
|
||||
ipv6 {};
|
||||
route 2a09:a443::/32
|
||||
via 2a09:a442::1:1 weight 1 bfd # Virgin Media
|
||||
via 2a09:a442::2:1 weight 2 bfd; # EE
|
||||
route 2a09:a443::/32 via 2a09:a442::1:1 bfd {
|
||||
# Virgin Media
|
||||
preference = 100;
|
||||
};
|
||||
route 2a09:a443::/32 via 2a09:a442::2:1 bfd {
|
||||
# EE
|
||||
preference = 10;
|
||||
};
|
||||
};
|
||||
|
||||
protocol bfd {
|
||||
|
|
Loading…
Reference in a new issue