Skip to content

Instantly share code, notes, and snippets.

@cjac
Created October 19, 2021 04:51
Show Gist options
  • Save cjac/68e8c9461b2cef369a50f2cc31d27c86 to your computer and use it in GitHub Desktop.
Save cjac/68e8c9461b2cef369a50f2cc31d27c86 to your computer and use it in GitHub Desktop.
router id 206.81.80.184;
protocol kernel {
scan time 60;
import none;
# export all; # Actually insert routes into the kernel routing table
}
protocol device {
scan time 60;
}
# https://blog.kintone.io/entry/bird
template bgp six {
local as 25819;
direct;
import all;
export none;
}
protocol static {
route 206.81.80.0/22 via "enp9s0";
}
protocol static {
route 23.181.112.0/24 via "enp11s0";
}
protocol static {
route 74.120.12.128/28 via "enp1s0";
}
protocol bgp six0 from six {
neighbor 206.81.81.28 as 15133;
}
protocol bgp six1 from six {
neighbor 206.81.80.152 as 15133;
}
protocol bgp six4 from six {
neighbor 206.81.80.10 as 6456;
}
protocol bgp six5 from six {
neighbor 206.81.81.41 as 6456;
}
protocol bgp six8 from six {
neighbor 206.81.80.40 as 6939;
}
-------------------------
router id 2001:504:16::64db;
protocol kernel {
scan time 60;
import none;
# export all; # Actually insert routes into the kernel routing table
}
protocol device {
scan time 60;
}
# https://blog.kintone.io/entry/bird
template bgp six {
local as 25819;
direct;
import all;
export none;
}
protocol static {
route 2001:504:16::/64 via "enp9s0";
}
protocol static {
route 2602:fc6d::/40 via "enp10s0";
}
protocol static {
route 2607:ff08:f5::/48 via "enp1s0";
}
protocol bgp six2 from six {
neighbor 2001:504:16::284:0:3b1d as 15133;
}
protocol bgp six3 from six {
neighbor 2001:504:16::3b1d as 15133;
}
protocol bgp six6 from six {
neighbor 2001:504:16::297:0:1938 as 6456;
}
protocol bgp six7 from six {
neighbor 2001:504:16::1938 as 6456;
}
protocol bgp six9 from six {
neighbor 2001:504:16::1b1b as 6939;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment