Difference between revisions of "BIRD"

From HackerNet
Jump to: navigation, search
(Created page with "Bird Internet Routing Daemon. Senaste version: 1.5.0 (22.4.2015) =Installation= sudo apt-get update && sudo apt-get install bird =Konfiguration= Enable IPv4 and IPv6 Forw...")
 
m
Line 25: Line 25:
 
  sudo service bird6 restart  
 
  sudo service bird6 restart  
  
=CLI=
+
==CLI==
 +
Gå till cli
 
  sudo birdc
 
  sudo birdc
 +
bird> show route
 +
Quit
 +
bird> exit
  
=OSPF=
+
==OSPF==
 +
show ospf interface
 +
show ospf neighbors
 +
show ospf state
 +
show ospf topology
  
=BGP=
+
==BGP==
 +
 
 +
[[Category:Network]]

Revision as of 15:55, 20 November 2015

Bird Internet Routing Daemon. Senaste version: 1.5.0 (22.4.2015)

Installation

sudo apt-get update && sudo apt-get install bird 

Konfiguration

Enable IPv4 and IPv6 Forwarding:

echo "net.ipv4.conf.all.forwarding=1" | sudo tee -a /etc/sysctl.conf 
echo "net.ipv4.conf.default.forwarding=1" | sudo tee -a /etc/sysctl.conf 
sed 's/#net.ipv6.conf.all.forwarding=1/net.ipv6.conf.all.forwarding=1/g' /etc/sysctl.conf | sudo tee /etc/sysctl.conf 
echo "net.ipv6.conf.default.forwarding=1" | sudo tee -a /etc/sysctl.conf 
sudo sysctl -p 

Backup the configuration files:

sudo mv /etc/bird/bird.conf /etc/bird/bird.conf.original 
sudo mv /etc/bird/bird6.conf /etc/bird/bird6.conf.original 

Create the configuration files:

sudo nano /etc/bird/bird.conf 
sudo nano /etc/bird/bird6.conf 

Restart the daemons:

sudo service bird restart 
sudo service bird6 restart 

CLI

Gå till cli

sudo birdc
bird> show route

Quit

bird> exit

OSPF

show ospf interface 
show ospf neighbors 
show ospf state 
show ospf topology

BGP