]> git.proxmox.com Git - mirror_frr.git/blob - doc/Building_FRR_on_FreeBSD10.md
OSPFD: Update Segment Routing following reviews
[mirror_frr.git] / doc / Building_FRR_on_FreeBSD10.md
1 Building FRR on FreeBSD 10 from Git Source
2 ==========================================
3
4 FreeBSD 10 restrictions:
5 ------------------------
6
7 - MPLS is not supported on `FreeBSD`. MPLS requires a Linux Kernel
8 (4.5 or higher). LDP can be built, but may have limited use
9 without MPLS
10
11 Install required packages
12 -------------------------
13
14 Add packages:
15 (Allow the install of the package managment tool if this is first package
16 install and asked)
17
18 pkg install git autoconf automake libtool gmake gawk json-c pkgconf \
19 bison flex py27-pytest c-ares python3
20
21 Make sure there is no /usr/bin/flex preinstalled (and use the newly
22 installed in /usr/local/bin):
23 (FreeBSD frequently provides a older flex as part of the base OS which
24 takes preference in path)
25
26 rm -f /usr/bin/flex
27
28 Get FRR, compile it and install it (from Git)
29 ---------------------------------------------
30
31 **This assumes you want to build and install FRR from source and not
32 using any packages**
33
34 ### Add frr group and user
35
36 pw groupadd frr -g 101
37 pw groupadd frrvty -g 102
38 pw adduser frr -g 101 -u 101 -G 102 -c "FRR suite" \
39 -d /usr/local/etc/frr -s /usr/sbin/nologin
40
41 (You may prefer different options on configure statement. These are just
42 an example)
43
44 git clone https://github.com/frrouting/frr.git frr
45 cd frr
46 ./bootstrap.sh
47 export MAKE=gmake
48 export LDFLAGS="-L/usr/local/lib"
49 export CPPFLAGS="-I/usr/local/include"
50 ./configure \
51 --sysconfdir=/usr/local/etc/frr \
52 --enable-pkgsrcrcdir=/usr/pkg/share/examples/rc.d \
53 --localstatedir=/var/run/frr \
54 --prefix=/usr/local \
55 --enable-ospfclient=yes \
56 --enable-ospfapi=yes \
57 --enable-multipath=64 \
58 --enable-user=frr \
59 --enable-group=frr \
60 --enable-vty-group=frrvty \
61 --enable-configfile-mask=0640 \
62 --enable-logfile-mask=0640 \
63 --enable-rtadv \
64 --enable-fpm \
65 --with-pkg-git-version \
66 --with-pkg-extra-version=-MyOwnFRRVersion
67 gmake
68 gmake check
69 sudo gmake install
70
71 ### Create empty FRR configuration files
72 sudo mkdir /usr/local/etc/frr
73 sudo touch /usr/local/etc/frr/zebra.conf
74 sudo touch /usr/local/etc/frr/bgpd.conf
75 sudo touch /usr/local/etc/frr/ospfd.conf
76 sudo touch /usr/local/etc/frr/ospf6d.conf
77 sudo touch /usr/local/etc/frr/isisd.conf
78 sudo touch /usr/local/etc/frr/ripd.conf
79 sudo touch /usr/local/etc/frr/ripngd.conf
80 sudo touch /usr/local/etc/frr/pimd.conf
81 sudo chown -R frr:frr /usr/local/etc/frr
82 sudo touch /usr/local/etc/frr/vtysh.conf
83 sudo chown frr:frrvty /usr/local/etc/frr/vtysh.conf
84 sudo chmod 640 /usr/local/etc/frr/*.conf
85
86 ### Enable IP & IPv6 forwarding
87
88 Add the following lines to the end of `/etc/sysctl.conf`:
89
90 # Routing: We need to forward packets
91 net.inet.ip.forwarding=1
92 net.inet6.ip6.forwarding=1
93
94 **Reboot** or use `sysctl` to apply the same config to the running system