From Fedora Project Wiki

(Created page with '{{QA/Test_Case |description=This test is intended to test data transmission and receving of guest |actions= # create an 5G file in the host:<pre>dd if=/dev/zero of=zero bs=1024k ...')
 
No edit summary
 
Line 14: Line 14:
# the packet loss ratio should be zero
# the packet loss ratio should be zero
}}
}}
[[Category:Virtualization XenDomU Test Cases|Guest install]]
[[Category:Virtualization_Networking_Test_Cases]]

Latest revision as of 09:58, 8 April 2010

Description

This test is intended to test data transmission and receving of guest


How to test

  1. create an 5G file in the host:
    dd if=/dev/zero of=zero bs=1024k count=5000
  2. boot the virtual machine
  3. determine the guest ip address: guest_ip
  4. determine the host ip address: host_ip
  5. create an 5G file in the guest:
    dd if=/dev/zero of=zero bs=1024k count=5000
  6. scp the host file into guest:
    scp zero root@guest_ip:/tmp
  7. in the mean time, scp the guest file into host:
    scp zero root@host_ip:/tmp
  8. wait until both transferring to complete
  9. ping the guest in host:
    ping -c 10 $guest_ip

Expected Results

  1. the packet loss ratio should be zero