TCP/IP: Quagga Statik Routing

From OnnoWiki
Revision as of 10:36, 13 November 2013 by Onnowpurbo (talk | contribs)
Jump to navigation Jump to search

quagga cisco 2651 3750 static routing Functionalities tested:

Interface settings Static routes Telnet access







3. CONFIGURATIONS

You must set your Linux system correctly to launch Quagga successfully. See the Quagga tutorial for assisstance. LINUX CONFIGURATIONS

Check that the zebra daemon is activated:

#vim /etc/quagga/daemons
zebra=yes
bgpd=no
ospfd=no
ospf6d=no
ripd=no
ripngd=no
isisd=no

If you changed your daemons file, restart the quagga service:

#vim /etc/init.d/quagga restart
Stopping Quagga daemons (prio:0): ospfd zebra (bgpd) (ripd) (ripngd) (ospf6= d) (isisd).
Removing all routes made by zebra.
Nothing to flush.
Loading capability module if not yet done.
Starting Quagga daemons (prio:10): zebra.

Set the Quagga A hostname in the /etc/quagga/vtysh.conf file:

#vim /etc/quagga/vtysh.conf
!
! Sample
!
! service integrated-vtysh-config
hostname Quagga_A
username root nopassword
!

Set the Quagga B hostname in the /etc/quagga/vtysh.conf file:

#vim /etc/quagga/vtysh.conf
!
! Sample
!
! service integrated-vtysh-config
hostname Quagga_B
username root nopassword
!

Don't forget to activate the ip forwarding on the Quagga A router! It is not necessary to activate ip forwarding on the Quagga B router because it has only one network interface.

ROUTERS CONFIGURATIONS

CISCO ROUTER 2651 IOS: 12.2-23a QUAGGA ROUTER A 0.99.6 interface FastEthernet0/1

 ip address 10.1.3.2 255.255.255.0
 no shutdown 	interface eth0
 ip address 10.1.3.1/24
 link-detect

interface FastEthernet0/0

 ip address 10.1.4.2 255.255.255.0
 no shutdown 	interface eth1
 ip address 10.1.1.1/24
 link-detect

hostname Cisco-2651 ip route 10.1.0.0 255.255.0.0 10.1.3.1 ip route 10.200.1.4 255.255.255.255 10.1.4.1 ip route 10.200.1.1 255.255.255.255 10.1.3.1 ip route 10.1.0.0/16 10.1.3.2 ip route 10.200.1.4/32 10.1.3.2 ip route 10.200.1.1/32 10.1.1.2 line vty 0 4

 no login

line vty

 no login

enable secret password enable password password

CISCO SWITCH L3 3750 IOS: 12.2-25.SEE2 QUAGGA ROUTER B 0.99.6 interface vlan 1

 ip address 10.1.1.2 255.255.255.0
 no shutdown 	interface eth0
 ip address 10.1.4.1/24
 link-detect

interface Loopback 1

 ip address 10.200.1.1 255.255.255.255
 	interface lo
 ip address 10.200.1.4/32
 link-detect

hostname 3750_L3 hostname quagga-router-b ip route 0.0.0.0 0.0.0.0 10.1.1.1 ip route 0.0.0.0/0 10.1.4.2 line vty 0 4

 no login

line vty 0 4

 no login

enable secret password

 	enable password password

ip routing ip multicast-routing distributed