network measurements working group

20
NMWG GGF13 Seoul March 2005 R. Hughes-Jones Manchester Network Measurements Working Group Summary of the Work on "new" Schemata Richard Hughes-Jones Main Contributors: Dan Gunter, Martin Swany, Jason Zurawski NM-WG GGF13 Seoul

Upload: destiny-espinoza

Post on 30-Dec-2015

29 views

Category:

Documents


0 download

DESCRIPTION

Network Measurements Working Group. Summary of the Work on "new" Schemata Richard Hughes-Jones Main Contributors: Dan Gunter, Martin Swany, Jason Zurawski NM-WG GGF13 Seoul. Introduction: The Hierarchy Document. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

Network Measurements Working Group

Summary of the Work on "new" Schemata

Richard Hughes-Jones

Main Contributors: Dan Gunter, Martin Swany, Jason Zurawski

NM-WG GGF13 Seoul

Page 2: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

Introduction: The Hierarchy Document

“A Hierarchy of Network Performance Characteristics for Grid Applications and Services”

Document defines terms & relations: Network characteristics Measurement methodologies Observation

Nodes & Paths Defines the meanings Discusses the use & relations

For each Characteristic Defines the meaning Stated the attributes that SHOULD be included Discusses the issues to consider when making an observation

GGF Proposed Recommendation GFD-R.023 www.gridforum.org/documents/GWD-R/GFD-R.023.pdf

Page 3: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

Schemata: Overview

NM-WG then focused on standardizing schemas for exchanging network measurements

Extended concept to Requesting historical network measurements Requesting measurements to be made on demand

NM-WG has Two sets of schemata: v.1::Monolithic, straight mapping of “characteristics” doc (Mark’s

talk) v.2::Framework:

Base schema - common components, types, topologyAdd separate sub-schema for each characteristic and/or toolSeparation of Metadata & Network informationFramework has extensibility to just about anything Schema language: Relax-NG compact syntax

Page 4: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

Version 2 Schemas: Recap [1]

Request: Just has a metadata section - containers for:

characteristic – namespace required(e.g. http://www.ggf.org/nmwg/iperf)

subject (e.g. host pair)parameters appropriate either for making a test

or filtering historic data (e.g. TTL, TCP buffer size …)

Time/date (of required observation)

Time is a range

Other parameters are specified or implied *

Page 5: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

Version2 Schemas: Recap [2]

Response: metadata: <same as Request>

These are the “conditions” / parameters / tool used for the test.

Parameters could be– The same parameters and values as in the Request– Same parameters but values modified– Additional Parameter-value tuples

data: <Content depends on the characteristic>

Anything in xml eg bin64 encoded (but don’t expect to be sending binary) Could include a reference to other sources of data

Page 6: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

NM-WG V2 Schemas: 8 Easy Examples !!

Request Base request example

traceroute request example Base request schema

Traceroute request schemaResponse example

Base response traceroute example

Base response schematraceroute schema

Color-coded: base ; traceroute

With thanks to Dan Gunter

Page 7: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

<nmwg:request xmlns:nmwg="http://www.ggf.org/nmwg/">

<metadata id="M001">

<subject id="S001">

</subject>

<parameters>

</parameters>

</metadata>

</nmwg:request>

Details go here

Details go here

1. Base Request Example

Page 8: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

2. Traceroute Request Example

<nmwg:request xmlns:nmwg="http://www.ggf.org/nmwg/"

xmlns:tr= “ http://www.ggf.org/nmwg/characteristics/traceroute/ ">

<tr:metadata id="M001">

<tr:subject id="S001">

<nmwg:hostPairQuery>

<src type="ipv4"> 131.243.243.21 </src>

<dst type="hostnameWildcard"> *.udel.edu </dst>

</nmwg:hostPairQuery>

</tr:subject>

<tr:parameters id="P001">

<maxttl> 32 </maxttl>

<nqueries> 3 </nqueries>

<waittime> 5 </waittime>

</tr:parameters>

</tr:metadata>

</nmwg:request>

details

Base Namespace

Namespace specifies traceroute Characteristicelements will have :tr

Page 9: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

default namespace = http://www.ggf.org/nmwg/

Request =

element metadata { Metadata }*

Metadata =

attribute id { xsd:string }

Subject =

attribute id { xsd:string }

Parameters =

attribute id { xsd:string }

HostPairQuery =

element hostPairQuery {

element src { EndpointPattern },

element dst { EndpointPattern } }

EndpointPattern =

attribute type { token },

element address { string },

element port { xsd:int }?

3. Base Request Schema

Extend these three elements

Page 10: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

4. Traceroute Request Schema

namespace tr = http://www.ggf.org/nmwg/characteristics/traceroute

namespace nmwg = http://www.ggf.org/nmwg/

import “nmwg-base-schema.rnc”

Request =

element tr:metadata { Metadata }*

TrMetadata = nmwg:Metadata &

element tr:subject { TrSubject }

element tr:parameters { TrParameters }

TrSubject = nmwg:Subject &

( nmwg:HostPair | nmwg:HostPairQuery )

TrParameters = nmwg:Parameters &

( element maxttl { xsd:int }? &

element nqueries { xsd:int }? &

element waittime { xsd:int }? )

Extended for traceroute

Page 11: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

<nmwg:response xmlns:nmwg="http://www.ggf.org/nmwg/">

<metadata id="M001">

</metadata>

<data>

<timestamp>2005-03-13T00:00:00</timestamp>

<results>

</results>

</nmwg:response>

5. Base Response Example

Metadata Details go here

Results Details go here

Added timestamp

Page 12: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

6. Traceroute Response Example [1]

<nmwg:response xmlns:nmwg="http://www.ggf.org/nmwg/"

xmlns:tr= "http://www.ggf.org/nmwg/characteristics/traceroute/ ">

<tr:metadata id="M001">

<tr:subject id="S001">

<nmwg:hostPairQuery>

<src type="ipv4"> 131.243.243.21 </src>

<dst type="hostname"> huey.udel.edu </dst>

</nmwg:hostPairQuery>

</tr:subject>

<tr:parameters id="trp2">

<tr:maxttl> 30 </tr:maxttl>

<tr:nqueries> 3 </tr:nqueries>

<tr:dontFragment> 0 </tr:dontFragment>

<tr:mode> UDP </tr:mode>

</tr:parameters>

</tr:metadata>

modified

added

wildcard becomesactual hostname

Metadata

Page 13: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

6. Traceroute Response Example [2] <tr:data> <nmwg:time> 2005-03-13T00:00:00 </time> <results> <tr:probe num='1'> <query num='1'> <hopValue> ir100gw-r2 </hopValue> <value> 0.233 </value> </query> query num='2' … <query num=‘3'> <hopValue> ir100gw-r2 </hopValue> <value> 0.218 </value> </query> </tr:probe> <tr:probe num=‘2'> etc. … </results> <tr:data></nmwg:response>

Results

probe = setting of the ttlquery = observation at a given ttl

Page 14: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

7. Base Response Schemadefault namespace = http://www.ggf.org/nmwg/Response = ( element metadata { Metadata } | element data { Data } )*Metadata = attribute id { xsd:string }Subject = attribute id { xsd:string }Parameters = attribute id { xsd:string }Data = attribute id { Identifier }, attribute metadataId { Identifier }, element time { Time }?, element units { token }?,

Extend these three elements

Data Details go here

Page 15: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

8. Traceroute Response Schema [1]

namespace tr = http://www.ggf.org/nmwg/characteristics/traceroutenamespace nmwg = http://www.ggf.org/nmwg/import “nmwg-base-schema.rnc”Response = element tr: (metadata { Metadata } | element tr:data { TrData } )*TrMetadata = nmwg:Metadata & element tr:subject { TrSubject } element tr:parameters { TrParameters }TrSubject = nmwg:Subject & ( nmwg:HostPair | nmwg:HostPairQuery )TrParameters = nmwg:Parameters & ( element maxttl { xsd:int }? & element nqueries { xsd:int }? & element waittime { xsd:int }? & element dontFragment {xsd:bool}? & element mode { token }? )

Page 16: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

8. Traceroute Response Schema [2]

TrData = nmwg:Data & element tr:probe { attribute num { xsd:int }, element query { attribute num { xsd:int }, element hopValue { nmwg:Endpoint }, element rtt { xsd:float } } }+

traceroute details

Page 17: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

The Developer's Guide (only V2 Schemata)

Draft Document (version 1) GGF-NMWG-03-I Nov 2004 Finish the descriptive examples. Provide notes & a “toolkit” to aid other network monitor developers to

add NM-WG capability. Toolkit will give reference implementations. i.e. language+ schemas in

some tooling – simply this code makes the web service DAN Perl (Internet2) Python (Dan) Java (Dante, Europe Grid) .net (large market – need assistance here)

WS-RF integration needs discussion & work Advertising capability (feature negotiation, etc.) Security – permission to run test / access historic data

(NESC Strategy doc “Web service grids an Evolutionary Approach”)

Page 18: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

Where are we now with V2 Schemata?

v.2 base schema has been around for a whileSub-schema for common characteristics/tools:

iperf, ping, traceroute With extensibility to just about anything

Need implementor feedbackWorking on the developer's guide to smooth

transition and help with Web Svcs details not yet published, but v.0.1 is available

on our new web site:http://nmwg.internet2.edu/devguide.pdf A draft “How-to write your own schema” by Dan Gunter

Page 19: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester

Next Steps for Adoption

NM-WG to get rough consensus on common tools eg ping, iperf, traceroute (Almost there)

Put these in the canonical NM-WG namespace (ie schemas, parameters are NM_WG specific)

Publish v2 Schemas doc in GGF via GFSG- Draft Recommendation

Get 2+ implementations to interoperateIterate, using developer's guide as read/write

resource

Page 20: Network Measurements Working Group

NMWG GGF13 Seoul March 2005R. Hughes-Jones Manchester