Changes between Version 11 and Version 12 of GENIExperimenter/Tutorials/SystematicExprCaseStudy/SmallTopoQuagga/DesignSetup


Ignore:
Timestamp:
08/04/16 18:41:21 (8 years ago)
Author:
pjayanth@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • GENIExperimenter/Tutorials/SystematicExprCaseStudy/SmallTopoQuagga/DesignSetup

    v11 v12  
    120120router-1.quagga.ch-geni-net.utahddc.geniracks.net(config-router)# network 192.168.1.0/24 area 0
    121121router-1.quagga.ch-geni-net.utahddc.geniracks.net(config-router)# network 192.168.4.0/24 area 0
    122 
    123 }}}
    124 
    125 Similarly on routers 2,3 & 4; configure `OSPF` by following the above steps and adding networks 192.168.1.0/24, 192.168.2.0/24, 192.168.3.0/24, 192.168.4.0/24 & 192.168.5.0/24 to `area 0`.
     122router-1.quaggatest.ch-geni-net.utahddc.geniracks.net(config-router)# ex
     123router-1.quaggatest.ch-geni-net.utahddc.geniracks.net(config)# ex
     124
     125}}}
     126
     127Similarly on routers 2,3 & 4; configure `OSPF` by following the above steps and adding the networks 192.168.1.0/24, 192.168.2.0/24, 192.168.3.0/24, 192.168.4.0/24 & 192.168.5.0/24 to `area 0` as applicable.
    126128
    127129== c. Verify Routing ==
     
    130132
    131133{{{
    132 router-1.quagga.ch-geni-net.utahddc.geniracks.net(config-router)# do sh ip ospf  route 
     134router-1.quagga.ch-geni-net.utahddc.geniracks.net# sh ip ospf  route 
    133135============ OSPF network routing table ============
    134136N    192.168.1.0/24        [10] area: 0.0.0.0
     
    149151View the `OSPF` routing table on router-3:
    150152{{{
    151 router-3.quagga.ch-geni-net.utahddc.geniracks.net(config-router)# do sh ip ospf  route 
     153router-3.quagga.ch-geni-net.utahddc.geniracks.net# sh ip ospf  route 
    152154============ OSPF network routing table ============
    153155N    192.168.1.0/24        [20] area: 0.0.0.0
     
    168170
    169171{{{
    170 router-3.quagga.ch-geni-net.utahddc.geniracks.net(config-router)# do ping 192.168.1.1
     172router-3.quagga.ch-geni-net.utahddc.geniracks.net# ping 192.168.1.1
    171173PING 192.168.1.1 (192.168.1.1) 56(84) bytes of data.
    17217464 bytes from 192.168.1.1: icmp_seq=1 ttl=63 time=2.03 ms
     
    1771793 packets transmitted, 3 received, 0% packet loss, time 2002ms
    178180rtt min/avg/max/mdev = 1.722/1.871/2.031/0.131 ms
    179 router-3.quagga.ch-geni-net.utahddc.geniracks.net(config-router)# do traceroute 192.168.1.1
     181router-3.quagga.ch-geni-net.utahddc.geniracks.net# traceroute 192.168.1.1
    180182traceroute to 192.168.1.1 (192.168.1.1), 30 hops max, 60 byte packets
    181183 1  router-2-link-1 (192.168.2.1)  1.161 ms  1.117 ms  1.042 ms
    182184 2  router-1-link-0 (192.168.1.1)  2.213 ms  2.161 ms  2.101 ms
    183 
    184185}}}
    185186
     
    201202
    202203
    203 For client and server,  follow the same steps as we followed in the [wiki:GENIExperimenter/Tutorials/SystematicExprCaseStudy/InstallSoftwareQuagga#a4.VerifyInstaGENICustomImage Verify InstaGENI Custom Image] section. We also need to delete any routes installed by InstaGENI. Follow the steps followed in ''section iii'' of ''Create a Virtual Network''. Also we need to install `iperf` separately. In this example, there are only two hosts which need iperf installed, so one option is to login to each host, and manually install it by running
     204For client and server,  follow the same steps as we followed in the [wiki:GENIExperimenter/Tutorials/SystematicExprCaseStudy/InstallSoftwareQuagga#a4.VerifyInstaGENICustomImage Verify InstaGENI Custom Image] section. We also need to delete any routes installed by InstaGENI. Follow the steps followed in ''section iii'' of ''Create a Virtual Network''.
     205
     206To configure `OSPF` on Client, do the following steps:
     207
     208{{{
     209pjayant@client:~$ sudo su
     210root@client:/users/pjayant# vtysh
     211
     212Hello, this is Quagga (version 0.99.22.4).
     213Copyright 1996-2005 Kunihiro Ishiguro, et al.
     214
     215client.quaggatest.ch-geni-net.utahddc.geniracks.net# conf t
     216client.quaggatest.ch-geni-net.utahddc.geniracks.net(config)# router ospf
     217client.quaggatest.ch-geni-net.utahddc.geniracks.net(config-router)# network 192.168.10.0/24 area 0
     218client.quaggatest.ch-geni-net.utahddc.geniracks.net(config-router)# ex
     219client.quaggatest.ch-geni-net.utahddc.geniracks.net(config)# ex
     220}}}
     221
     222Similarly add the network `192.168.20.0/24` to `area 0` on the Server.
     223
     224Also we need to install `iperf` separately. In this example, there are only two hosts which need iperf installed, so one option is to login to each host, and manually install it by running
    204225
    205226{{{