]> git.proxmox.com Git - mirror_frr.git/blame - doc/Building_FRR_on_Ubuntu1204.md
Add user `frr` into group `frrvty`
[mirror_frr.git] / doc / Building_FRR_on_Ubuntu1204.md
CommitLineData
278fb111
MW
1Building FRR on Ubuntu 12.04LTS from Git Source
2===============================================
3
4- MPLS is not supported on `Ubuntu 12.04` with default kernel. MPLS requires
5 Linux Kernel 4.5 or higher (LDP can be built, but may have limited use
6 without MPLS)
7 For an updated Ubuntu Kernel, see http://kernel.ubuntu.com/~kernel-ppa/mainline/
8
9Install required packages
10-------------------------
eb651bbc 11
278fb111
MW
12Add packages:
13
eb651bbc
MW
14 apt-get install git autoconf automake libtool make gawk libreadline-dev \
15 texinfo libpam0g-dev dejagnu libjson0 pkg-config libpam0g-dev \
783c4c8f 16 libjson0-dev flex python-pip
eb651bbc
MW
17
18Install newer bison from 14.04 package source (Ubuntu 12.04 package source
19is too old)
20
21 mkdir builddir
22 cd builddir
23 wget http://archive.ubuntu.com/ubuntu/pool/main/b/bison/bison_3.0.2.dfsg-2.dsc
24 wget http://archive.ubuntu.com/ubuntu/pool/main/b/bison/bison_3.0.2.dfsg.orig.tar.bz2
25 wget http://archive.ubuntu.com/ubuntu/pool/main/b/bison/bison_3.0.2.dfsg-2.debian.tar.gz
26 tar -jxvf bison_3.0.2.dfsg.orig.tar.bz2
27 cd bison-3.0.2.dfsg/
28 tar xzf ../bison_3.0.2.dfsg-2.debian.tar.gz
29 sudo apt-get build-dep bison
30 debuild -b -uc -us
31 cd ..
32 sudo dpkg -i ./libbison-dev_3.0.2.dfsg-2_amd64.deb ./bison_3.0.2.dfsg-2_amd64.deb
33 cd ..
34 rm -rf builddir
278fb111
MW
35
36Install newer version of autoconf and automake:
37
eb651bbc
MW
38 wget http://ftp.gnu.org/gnu/autoconf/autoconf-2.69.tar.gz
39 tar xvf autoconf-2.69.tar.gz
40 cd autoconf-2.69
41 ./configure --prefix=/usr
42 make
43 sudo make install
44 cd ..
45
46 wget http://ftp.gnu.org/gnu/automake/automake-1.15.tar.gz
47 tar xvf automake-1.15.tar.gz
48 cd automake-1.15
49 ./configure --prefix=/usr
50 make
51 sudo make install
52 cd ..
53
783c4c8f
MW
54Install pytest:
55
56 pip install pytest
57
278fb111
MW
58Get FRR, compile it and install it (from Git)
59---------------------------------------------
60
eb651bbc
MW
61**This assumes you want to build and install FRR from source and not using
62any packages**
278fb111
MW
63
64### Add frr groups and user
65
eb651bbc
MW
66 sudo groupadd -g 92 frr
67 sudo groupadd -r -g 85 frrvty
7caef08c 68 sudo adduser --system --ingroup frr --home /var/run/frr/ \
278fb111 69 --gecos "FRR suite" --shell /sbin/nologin frr
7caef08c 70 sudo usermod -a -G frrvty frr
278fb111
MW
71
72### Download Source, configure and compile it
eb651bbc
MW
73(You may prefer different options on configure statement. These are just
74an example.)
75
d6180888 76 git clone https://github.com/frrouting/frr.git frr
eb651bbc
MW
77 cd frr
78 git checkout stable/2.0
79 ./bootstrap.sh
80 ./configure \
81 --enable-exampledir=/usr/share/doc/frr/examples/ \
82 --localstatedir=/var/run/frr \
83 --sbindir=/usr/lib/frr \
84 --sysconfdir=/etc/frr \
85 --enable-pimd \
86 --enable-watchfrr \
87 --enable-ospfclient=yes \
88 --enable-ospfapi=yes \
89 --enable-multipath=64 \
90 --enable-user=frr \
91 --enable-group=frr \
92 --enable-vty-group=frrvty \
93 --enable-configfile-mask=0640 \
94 --enable-logfile-mask=0640 \
95 --enable-rtadv \
96 --enable-tcp-zebra \
97 --enable-fpm \
98 --enable-ldpd \
99 --with-pkg-git-version \
100 --with-pkg-extra-version=-MyOwnFRRVersion
101 make
102 make check
103 sudo make install
278fb111
MW
104
105### Create empty FRR configuration files
106
eb651bbc
MW
107 sudo mkdir /var/log/frr
108 sudo chown frr:fee /var/log/frr
109 sudo mkdir /etc/frr
110 sudo touch /etc/frr/etc/zebra.conf
111 sudo touch /etc/frr/etc/bgpd.conf
112 sudo touch /etc/frr/etc/ospfd.conf
113 sudo touch /etc/frr/etc/ospf6d.conf
114 sudo touch /etc/frr/etc/isisd.conf
115 sudo touch /etc/frr/etc/ripd.conf
116 sudo touch /etc/frr/etc/ripngd.conf
117 sudo touch /etc/frr/etc/pimd.conf
118 sudo touch /etc/frr/etc/ldpd.conf
119 sudo chown frr:frr /etc/frr/
120 sudo touch /etc/frr/etc/vtysh.conf
121 sudo chown frr:frrvty /etc/frr/etc/vtysh.conf
122 sudo chmod 640 /etc/frr/*.conf
278fb111
MW
123
124### Enable IP & IPv6 forwarding
125
eb651bbc
MW
126Edit `/etc/sysctl.conf` and uncomment the following values (ignore the
127other settings)
278fb111 128
eb651bbc
MW
129 # Uncomment the next line to enable packet forwarding for IPv4
130 net.ipv4.ip_forward=1
278fb111 131
eb651bbc
MW
132 # Uncomment the next line to enable packet forwarding for IPv6
133 # Enabling this option disables Stateless Address Autoconfiguration
134 # based on Router Advertisements for this host
135 net.ipv6.conf.all.forwarding=1
278fb111 136
7caef08c 137**Reboot** or use `sysctl -p` to apply the same config to the running system