33 lines
615 B
Text
33 lines
615 B
Text
|
|
AS 23
|
|
|
|
# The prefix originated by this router
|
|
prefix-set mynetworks {
|
|
fd00:d0ca:23:1::/64
|
|
}
|
|
|
|
# Actually announce the prefix
|
|
network prefix-set mynetworks
|
|
|
|
# Peering with the AS42 router
|
|
neighbor fd00:d0ca:2342:1::42 {
|
|
remote-as 42
|
|
descr "as42_1"
|
|
multihop 10
|
|
}
|
|
|
|
# Peering with the AS1337 router
|
|
neighbor fd00:d0ca:2313:1::1337 {
|
|
remote-as 1337
|
|
descr "as1337_1"
|
|
multihop 10
|
|
}
|
|
|
|
# No route filtering, accept and advertise everything
|
|
allow to ebgp
|
|
allow from ebgp
|
|
|
|
# control socket used by bgpctl
|
|
socket "/run/bgpd/bgpd.sock.0"
|
|
# restricted bgpd socket for bgplgd
|
|
socket "/run/bgpd/bgpd.rsock" restricted
|