Changes between Version 7 and Version 8 of NikySandbox/TridentCommTut


Ignore:
Timestamp:
04/18/12 18:22:32 (12 years ago)
Author:
nriga@bbn.com
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • NikySandbox/TridentCommTut

    v7 v8  
    208208Now try to ping again from VMUT. The output should look like :
    209209{{{
    210 
    211 }}}
     210[inki@VMUT ~]$ ping 10.10.4.2 -c 5
     211PING 10.10.4.2 (10.10.4.2) 56(84) bytes of data.
     21264 bytes from 10.10.4.2: icmp_seq=1 ttl=63 time=4.02 ms
     21364 bytes from 10.10.4.2: icmp_seq=2 ttl=63 time=3.48 ms
     21464 bytes from 10.10.4.2: icmp_seq=3 ttl=63 time=3.44 ms
     21564 bytes from 10.10.4.2: icmp_seq=4 ttl=63 time=3.46 ms
     21664 bytes from 10.10.4.2: icmp_seq=5 ttl=63 time=3.44 ms
     217
     218--- 10.10.4.2 ping statistics ---
     2195 packets transmitted, 5 received, 0% packet loss, time 3998ms
     220rtt min/avg/max/mdev = 3.444/3.574/4.028/0.233 ms
     221}}}
     222
     223Congrats you were able to run a multihop IP experiment.
     224
    212225= 3. Sending Layer 2 traffic =
    213 == 3a. Login to VM@Utah ==
     226GENI provides the capability of creating diverse, layer two topologies. The topology you have created includes connection at Layer 2.
     227The layer two part of your topology looks like this; the actual info of your topology might be different.
     228
     229In this exercise we are going to send layer 2 traffic between the hosts of our topology.
     230
     231== 3a. Bring Down IP at PCUT ==
     232First of all lets bring down the IP configuration from our hosts. At the terminal  of PCUT first run ifconfig to figure out which are the dataplane interfaces. Run :
     233{{{
     234/sbin/ifconfig
     235}}}
     236
     237The output should look like :
     238{{{
     239[inki@pcut ~/pingPlus]$ /sbin/ifconfig
     240VLAN02    Link encap:UNSPEC  HWaddr 9B-62-24-9B-6F-00-F4-EF-00-00-00-00-00-00-00-00 
     241          inet addr:192.168.5.2  P-t-P:192.168.5.2  Mask:255.255.255.0
     242          UP POINTOPOINT RUNNING NOARP  MTU:1476  Metric:1
     243          RX packets:0 errors:0 dropped:0 overruns:0 frame:0
     244          TX packets:0 errors:0 dropped:0 overruns:0 carrier:0
     245          collisions:0 txqueuelen:0
     246          RX bytes:0 (0.0 b)  TX bytes:0 (0.0 b)
     247
     248eth0      Link encap:Ethernet  HWaddr 00:02:B3:23:6D:12 
     249          inet addr:155.98.36.155  Bcast:155.98.39.255  Mask:255.255.252.0
     250          inet6 addr: fe80::202:b3ff:fe23:6d12/64 Scope:Link
     251          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
     252          RX packets:9593 errors:0 dropped:0 overruns:0 frame:0
     253          TX packets:1119 errors:0 dropped:0 overruns:0 carrier:0
     254          collisions:0 txqueuelen:1000
     255          RX bytes:1823255 (1.7 MiB)  TX bytes:118901 (116.1 KiB)
     256
     257eth1      Link encap:Ethernet  HWaddr 00:02:B3:23:6D:13 
     258          inet addr:10.10.2.2  Bcast:10.10.2.255  Mask:255.255.255.0
     259          inet6 addr: fe80::202:b3ff:fe23:6d13/64 Scope:Link
     260          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
     261          RX packets:82 errors:0 dropped:0 overruns:0 frame:0
     262          TX packets:54 errors:0 dropped:0 overruns:0 carrier:0
     263          collisions:0 txqueuelen:1000
     264          RX bytes:7542 (7.3 KiB)  TX bytes:4632 (4.5 KiB)
     265
     266eth2      Link encap:Ethernet  HWaddr 00:03:47:94:C5:7B 
     267          inet addr:10.10.4.1  Bcast:10.10.4.255  Mask:255.255.255.0
     268          inet6 addr: fe80::203:47ff:fe94:c57b/64 Scope:Link
     269          UP BROADCAST RUNNING MULTICAST  MTU:1500  Metric:1
     270          RX packets:32 errors:0 dropped:0 overruns:0 frame:0
     271          TX packets:41 errors:0 dropped:0 overruns:0 carrier:0
     272          collisions:0 txqueuelen:1000
     273          RX bytes:2794 (2.7 KiB)  TX bytes:3338 (3.2 KiB)
     274
     275lo        Link encap:Local Loopback 
     276          inet addr:127.0.0.1  Mask:255.0.0.0
     277          inet6 addr: ::1/128 Scope:Host
     278          UP LOOPBACK RUNNING  MTU:16436  Metric:1
     279          RX packets:57 errors:0 dropped:0 overruns:0 frame:0
     280          TX packets:57 errors:0 dropped:0 overruns:0 carrier:0
     281          collisions:0 txqueuelen:0
     282          RX bytes:4913 (4.7 KiB)  TX bytes:4913 (4.7 KiB)
     283}}}
     284
     285The two interface that are connected to VMUT and PCRemote are eth1 and eth2 respectively. To bring them down run :
     286{{{
     287sudo /sbin/ifconfig eth1 0.0.0.0
     288
     289sudo /sbin/ifconfig eth2 0.0.0.0
     290}}}
     291
     292
    214293== 3b. Ping Server ==
    215294== 3c. Enable Layer 2 forwarding at PC@Utah ==