zebra is an IP routing manager
Install on Ubuntu | Install Ubuntu Server as VM on linux based from ISO or vmdk username and password: osboxes / osboxes.org | |||
---|---|---|---|---|
# add GPG key curl -s https://deb.frrouting.org/frr/keys.asc | sudo apt-key add - # update and install FRR sudo apt update && sudo apt install frr frr-pythontools | ||||
Start protocols | OSPF and BGP | |||
start | vi /etc/frr/daemons service frr restart | |||
check | ps -ef | grep frr | |||
Add Interface | FRR will use the linux interfaces | |||
by default |
|
|
| ||||||||||||||||||||||
add loopback | FRR1 ifconfig lo:10 1.1.10.1 netmask 255.255.255.255 up ifconfig lo:20 1.1.10.2 netmask 255.255.255.255 up FRR2: ifconfig lo:10 1.1.20.1 netmask 255.255.255.255 up ifconfig lo:20 1.1.20.2 netmask 255.255.255.255 up
root@FRRouting:~# vtysh show interface brief
| |||||||||||||||||||||
Access the FRRouting | sudo vtysh | |||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
show running-config |
|
show bgp summary
| ||||||||
show bgp neighbors | ||||||||
show bgp ipv4
| ||||||||
show ip route
| ||||||||
OSPF | ||||||||
---|---|---|---|---|---|---|---|---|
show ip ospf border-routers interface mpls-te route vrf | ||||||||
show ip ospf neighbor show ip ospf interface show ip ospf database
| ||||||||