Created
October 19, 2021 14:41
-
-
Save cjac/b3476a9136fa67d42c0eef672f56b62a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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"; | |
route 23.181.112.0/24 via "enp11s0"; | |
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"; | |
route 2602:fc6d::/40 via "enp10s0"; | |
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