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: | [[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
- create an 5G file in the host:
dd if=/dev/zero of=zero bs=1024k count=5000
- boot the virtual machine
- determine the guest ip address: guest_ip
- determine the host ip address: host_ip
- create an 5G file in the guest:
dd if=/dev/zero of=zero bs=1024k count=5000
- scp the host file into guest:
scp zero root@guest_ip:/tmp
- in the mean time, scp the guest file into host:
scp zero root@host_ip:/tmp
- wait until both transferring to complete
- ping the guest in host:
ping -c 10 $guest_ip
Expected Results
- the packet loss ratio should be zero