]> git.proxmox.com Git - mirror_frr.git/blob - doc/developer/building-frr-for-debian8.rst
doc: fix typo RFC7572 to RFC7752
[mirror_frr.git] / doc / developer / building-frr-for-debian8.rst
1 Debian 8
2 ========================================
3
4 Debian 8 restrictions:
5 ----------------------
6
7 - MPLS is not supported on ``Debian 8`` with default kernel. MPLS
8 requires Linux Kernel 4.5 or higher (LDP can be built, but may have
9 limited use without MPLS)
10
11 Install required packages
12 -------------------------
13
14 Add packages:
15
16 ::
17
18 sudo apt-get install git autoconf automake libtool make \
19 libreadline-dev texinfo libjson-c-dev pkg-config bison flex python3-pip \
20 libc-ares-dev python3-dev python3-sphinx build-essential \
21 libsnmp-dev libcap-dev libelf-dev libprotobuf-c-dev protobuf-c-compiler
22
23 Install newer pytest (>3.0) from pip
24
25 ::
26
27 sudo pip3 install pytest
28
29 .. include:: building-libyang.rst
30
31 Get FRR, compile it and install it (from Git)
32 ---------------------------------------------
33
34 **This assumes you want to build and install FRR from source and not
35 using any packages**
36
37 Add frr groups and user
38 ^^^^^^^^^^^^^^^^^^^^^^^
39
40 ::
41
42 sudo addgroup --system --gid 92 frr
43 sudo addgroup --system --gid 85 frrvty
44 sudo adduser --system --ingroup frr --home /var/run/frr/ \
45 --gecos "FRR suite" --shell /bin/false frr
46 sudo usermod -a -G frrvty frr
47
48 Download Source, configure and compile it
49 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
50
51 (You may prefer different options on configure statement. These are just
52 an example.)
53
54 ::
55
56 git clone https://github.com/frrouting/frr.git frr
57 cd frr
58 ./bootstrap.sh
59 ./configure \
60 --localstatedir=/var/run/frr \
61 --sbindir=/usr/lib/frr \
62 --sysconfdir=/etc/frr \
63 --enable-multipath=64 \
64 --enable-user=frr \
65 --enable-group=frr \
66 --enable-vty-group=frrvty \
67 --enable-configfile-mask=0640 \
68 --enable-logfile-mask=0640 \
69 --enable-fpm \
70 --with-pkg-git-version \
71 --with-pkg-extra-version=-MyOwnFRRVersion
72 make
73 make check
74 sudo make install
75
76 Create empty FRR configuration files
77 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
78
79 ::
80
81 sudo install -m 755 -o frr -g frr -d /var/log/frr
82 sudo install -m 775 -o frr -g frrvty -d /etc/frr
83 sudo install -m 640 -o frr -g frr /dev/null /etc/frr/zebra.conf
84 sudo install -m 640 -o frr -g frr /dev/null /etc/frr/bgpd.conf
85 sudo install -m 640 -o frr -g frr /dev/null /etc/frr/ospfd.conf
86 sudo install -m 640 -o frr -g frr /dev/null /etc/frr/ospf6d.conf
87 sudo install -m 640 -o frr -g frr /dev/null /etc/frr/isisd.conf
88 sudo install -m 640 -o frr -g frr /dev/null /etc/frr/ripd.conf
89 sudo install -m 640 -o frr -g frr /dev/null /etc/frr/ripngd.conf
90 sudo install -m 640 -o frr -g frr /dev/null /etc/frr/pimd.conf
91 sudo install -m 640 -o frr -g frr /dev/null /etc/frr/ldpd.conf
92 sudo install -m 640 -o frr -g frr /dev/null /etc/frr/nhrpd.conf
93 sudo install -m 640 -o frr -g frrvty /dev/null /etc/frr/vtysh.conf
94
95 Enable IP & IPv6 forwarding
96 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
97
98 Edit ``/etc/sysctl.conf`` and uncomment the following values (ignore the
99 other settings)
100
101 ::
102
103 # Uncomment the next line to enable packet forwarding for IPv4
104 net.ipv4.ip_forward=1
105
106 # Uncomment the next line to enable packet forwarding for IPv6
107 # Enabling this option disables Stateless Address Autoconfiguration
108 # based on Router Advertisements for this host
109 net.ipv6.conf.all.forwarding=1
110
111 **Reboot** or use ``sysctl -p`` to apply the same config to the running
112 system
113
114 Troubleshooting
115 ^^^^^^^^^^^^^^^
116
117 **Local state directory**
118
119 The local state directory must exist and have the correct permissions
120 applied for the frrouting daemons to start. In the above ./configure
121 example the local state directory is set to /var/run/frr
122 (--localstatedir=/var/run/frr) Debian considers /var/run/frr to be
123 temporary and this is removed after a reboot.
124
125 When using a different local state directory you need to create the new
126 directory and change the ownership to the frr user, for example:
127
128 ::
129
130 mkdir /var/opt/frr
131 chown frr /var/opt/frr
132
133 **Shared library error**
134
135 If you try and start any of the frrouting daemons you may see the below
136 error due to the frrouting shared library directory not being found:
137
138 ::
139
140 ./zebra: error while loading shared libraries: libfrr.so.0: cannot open shared object file: No such file or directory
141
142 The fix is to add the following line to /etc/ld.so.conf which will
143 continue to reference the library directory after the system reboots. To
144 load the library directory path immediately run the ldconfig command
145 after adding the line to the file eg:
146
147 ::
148
149 echo include /usr/local/lib >> /etc/ld.so.conf
150 ldconfig