|
|
| Line 2: |
Line 2: |
|
| |
|
| FRRouting (FRR) adalah platform routing procol gratis/open-source untuk Linux/Unix Opeating System. FRR digunakan untuk mengimplementasikan routing BGP, OSPF, RIP, IS-IS, PIM, LDP, BFD, Babel, PBR, OpenFabric dan VRRP, dengan dukungan alfa untuk EIGRP dan NHRP. | | FRRouting (FRR) adalah platform routing procol gratis/open-source untuk Linux/Unix Opeating System. FRR digunakan untuk mengimplementasikan routing BGP, OSPF, RIP, IS-IS, PIM, LDP, BFD, Babel, PBR, OpenFabric dan VRRP, dengan dukungan alfa untuk EIGRP dan NHRP. |
|
| |
| == Cara Install FRR di Debian Distro Linux ==
| |
|
| |
| 1. Pastikan debian telah update
| |
|
| |
| 2. Menambahkan repository pada sistem Debian:
| |
|
| |
| # Menambahkan GPG key
| |
| curl -s https://deb.frrouting.org/frr/keys.asc | sudo apt-key add -
| |
|
| |
| # Menambahkan Link Repo FRR Latest Official Stable Release
| |
| FRRVER="frr-stable"
| |
| echo deb https://deb.frrouting.org/frr $(lsb_release -s -c) $FRRVER | sudo tee -a /etc/apt/sources.list.d/frr.list
| |
|
| |
| # Update dan Install FRR
| |
| apt update && sudo apt install frr frr-pythontools
| |
|
| |
| 3. Setelah proses instalasi selesai, langkah selanjutnya:
| |
|
| |
| # Mengaktifkan service BGP
| |
| nano /etc/frr/daemons
| |
|
| |
| # Ubah parameter:
| |
| '''bgpd=no''' menjadi '''bgpd=yes'''
| |
| '''vtysh_enable=no''' menjadi '''vtysh_enable=yes'''
| |
|
| |
| 4. Simpan file daemons yang telah diedit dan restart FRR:
| |
|
| |
| # Restart FRR
| |
| service frr restart
| |
|
| |
| # Alternatif Restart
| |
| /etc/init.d/frr restart
| |
| '''atau'''
| |
| systemctl restart frr
| |