Skip to content

Instantly share code, notes, and snippets.

@mnathani
Created January 21, 2016 18:58
Show Gist options
  • Save mnathani/b1a5d6319454fc275088 to your computer and use it in GitHub Desktop.
Save mnathani/b1a5d6319454fc275088 to your computer and use it in GitHub Desktop.
[root@ixp ~]# cat /etc/bird.conf
# Configure logging
log syslog all;
log "/var/log/bird.log" all;
log stderr all;
# Override router ID
router id <RouterID>;
protocol kernel {
export none;
import all;
}
protocol bgp {
local as <LocalASN>;
neighbor <IP> as <NeighborASN> ;
multihop;
export all;
gateway recursive;
}
protocol direct {
interface "-arc*", "*"; # Exclude the ARCnets
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment