Penguin
Annotated edit history of OpenBGPD version 1, including all changes. View license author blame.
Rev Author # Line
1 PhilMurray 1 [OpenBGPD|http://www.openbgpd.org/] is a [BGP] daemon written by the [OpenBSD] guys to suck less than existing ones. Currently only runs on [OpenBSD], [FreeBSD] (minus MD5 authentication) and [NetBSD].
2
3 To use OpenBGPD on the [MetaNet] on [FreeBSD], you want a bgpd.conf that looks something like:
4
5 <verbatim>
6 AS <YOUR AS>
7 router-id <YOUR ROUTER 192.168.x.y IP>
8 log updates
9 network <YOUR NETWORK/24>
10
11 neighbor 192.168.66.10 {
12 remote-as 64900
13 multihop 2
14 announce self
15 local-address <YOUR ROUTER 192.168.x.y IP>
16 descr "Carbon"
17 }
18
19 deny from any
20 allow from any prefix { 10.0.0.0/8 } prefixlen 8 - 32
21
22 # Don't accept a default route!
23 deny from any prefix 0.0.0.0/0
24
25 </verbatim>