]> git.proxmox.com Git - mirror_frr.git/blob - doc/developer/building-frr-for-centos7.rst
zebra: include lib/queue.h in zebra dataplane
[mirror_frr.git] / doc / developer / building-frr-for-centos7.rst
1 CentOS 7
2 ========================================
3
4 (As an alternative to this installation, you may prefer to create a FRR
5 rpm package yourself and install that package instead. See instructions
6 in redhat/README.rpm\_build.md on how to build a rpm package)
7
8 CentOS 7 restrictions:
9 ----------------------
10
11 - MPLS is not supported on ``CentOS 7`` with default kernel. MPLS
12 requires Linux Kernel 4.5 or higher (LDP can be built, but may have
13 limited use without MPLS)
14
15 Install required packages
16 -------------------------
17
18 Add packages:
19
20 ::
21
22 sudo yum install git autoconf automake libtool make gawk \
23 readline-devel texinfo net-snmp-devel groff pkgconfig \
24 json-c-devel pam-devel bison flex pytest c-ares-devel \
25 python-devel systemd-devel python-sphinx
26
27 .. include:: building-libyang.rst
28
29 Get FRR, compile it and install it (from Git)
30 ---------------------------------------------
31
32 **This assumes you want to build and install FRR from source and not
33 using any packages**
34
35 Add frr groups and user
36 ^^^^^^^^^^^^^^^^^^^^^^^
37
38 ::
39
40 sudo groupadd -g 92 frr
41 sudo groupadd -r -g 85 frrvty
42 sudo useradd -u 92 -g 92 -M -r -G frrvty -s /sbin/nologin \
43 -c "FRR FRRouting suite" -d /var/run/frr frr
44
45 Download Source, configure and compile it
46 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
47
48 (You may prefer different options on configure statement. These are just
49 an example.)
50
51 ::
52
53 git clone https://github.com/frrouting/frr.git frr
54 cd frr
55 ./bootstrap.sh
56 ./configure \
57 --bindir=/usr/bin \
58 --sbindir=/usr/lib/frr \
59 --sysconfdir=/etc/frr \
60 --libdir=/usr/lib/frr \
61 --libexecdir=/usr/lib/frr \
62 --localstatedir=/var/run/frr \
63 --with-moduledir=/usr/lib/frr/modules \
64 --enable-snmp=agentx \
65 --enable-multipath=64 \
66 --enable-user=frr \
67 --enable-group=frr \
68 --enable-vty-group=frrvty \
69 --enable-systemd=yes \
70 --disable-exampledir \
71 --disable-ldpd \
72 --enable-fpm \
73 --with-pkg-git-version \
74 --with-pkg-extra-version=-MyOwnFRRVersion
75 make
76 make check
77 sudo make install
78
79 Create empty FRR configuration files
80 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
81
82 ::
83
84 sudo mkdir /var/log/frr
85 sudo mkdir /etc/frr
86 sudo touch /etc/frr/zebra.conf
87 sudo touch /etc/frr/bgpd.conf
88 sudo touch /etc/frr/ospfd.conf
89 sudo touch /etc/frr/ospf6d.conf
90 sudo touch /etc/frr/isisd.conf
91 sudo touch /etc/frr/ripd.conf
92 sudo touch /etc/frr/ripngd.conf
93 sudo touch /etc/frr/pimd.conf
94 sudo touch /etc/frr/nhrpd.conf
95 sudo touch /etc/frr/eigrpd.conf
96 sudo touch /etc/frr/babeld.conf
97 sudo chown -R frr:frr /etc/frr/
98 sudo touch /etc/frr/vtysh.conf
99 sudo chown frr:frrvty /etc/frr/vtysh.conf
100 sudo chmod 640 /etc/frr/*.conf
101
102 Install daemon config file
103 ^^^^^^^^^^^^^^^^^^^^^^^^^^
104
105 ::
106
107 sudo install -p -m 644 redhat/daemons /etc/frr/
108 sudo chown frr:frr /etc/frr/daemons
109
110 Edit /etc/frr/daemons as needed to select the required daemons
111 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
112
113 Look for the section with ``watchfrr_enable=...`` and ``zebra=...`` etc.
114 Enable the daemons as required by changing the value to ``yes``
115
116 Enable IP & IPv6 forwarding
117 ^^^^^^^^^^^^^^^^^^^^^^^^^^^
118
119 Create a new file ``/etc/sysctl.d/90-routing-sysctl.conf`` with the
120 following content:
121
122 ::
123
124 # Sysctl for routing
125 #
126 # Routing: We need to forward packets
127 net.ipv4.conf.all.forwarding=1
128 net.ipv6.conf.all.forwarding=1
129
130 Load the modifed sysctl's on the system:
131
132 ::
133
134 sudo sysctl -p /etc/sysctl.d/90-routing-sysctl.conf
135
136 Install frr Service and redhat init files
137 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
138
139 ::
140
141 sudo install -p -m 644 redhat/frr.service /usr/lib/systemd/system/frr.service
142 sudo install -p -m 755 redhat/frr.init /usr/lib/frr/frr
143
144 Register the systemd files
145 ^^^^^^^^^^^^^^^^^^^^^^^^^^
146
147 ::
148
149 sudo systemctl preset frr.service
150
151 Enable required frr at startup
152 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
153
154 ::
155
156 sudo systemctl enable frr
157
158 Reboot or start FRR manually
159 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
160
161 ::
162
163 sudo systemctl start frr