<?xml version="1.0" encoding="UTF-8"?><!-- edited with XMLSPY v2004 rel. 3 U (http://www.xmlspy.com) by Paul Mealor (Physics Dept) --><NetworkMeasurementRequest xmlns="http://www.ggf.org/namespaces/2004/01/DEMO/gridNetworkMonitoring" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.ggf.org/namespaces/2004/01/DEMO/gridNetworkMonitoringC:\DOCUME~1\pdm\MYDOCU~1\nmwg-req\2004-01-08-Dante-NM-WG-RequestSchema2.xsd">	<!--Perform a series of RTT measurements with some custom settings, starting at time 10001 (which is around now) and 13601 (which is two hours later). The custom settings are as for demo-Ping.xml.-->	<!--Command line: ping -n -c 10 -i 1 -s 1000 hostB-->	<!--Meaning: -n = numeric output; -c 10 = transmit 10 packets, -i 1 = wait 1 second between each packet; -s 1000 = do 1000bytes of data in each packet (1008 with header)-->	<!--Source and destination. Only the destination can be gleaned from the command line, of course-->	<subject xsi:type="NetworkPathType">		<source xsi:type="NodeType">			<address xsi:type="DNSAddressType">				<name>hostA</name>			</address>		</source>		<destination xsi:type="NodeType">			<address xsi:type="DNSAddressType">				<name>hostB</name>				<port>5001</port>			</address>		</destination>	</subject>	<!--Start at time 10001 and make a measurement every 10s until 13601-->	<time>		<time>10001</time>		<plusTimeTolerance>3600</plusTimeTolerance>		<minusTimeTolerance>0</minusTimeTolerance>		<maxResults>unbounded</maxResults>	</time>	<!--We want throughput-->	<characteristic>path.delay.roundTrip</characteristic>	<!--Force use of ping -c 10 -i 1 -s 1000. Note that "-s 1000" could equally be achieved by doing methodology/ipParameterSet/packetSizeParam[units="bytes"]=1008-->	<methodology>		<parameters xsi:type="ToolParameterSetType">			<tool use="required">				<name>ping</name>			</tool>		</parameters>		<parameters xsi:type="ICMPParameterSetType">			<packetSize use="required" units="bytes">1000</packetSize>			<numPackets use="required">10</numPackets>			<packetSpacing use="required">periodic</packetSpacing>			<packetGap units="seconds" use="required">1</packetGap>		</parameters>	</methodology></NetworkMeasurementRequest>
