-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrfc5357.txt
More file actions
1459 lines (1000 loc) · 60.5 KB
/
rfc5357.txt
File metadata and controls
1459 lines (1000 loc) · 60.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Network Working Group K. Hedayat
Request for Comments: 5357 Brix Networks
Category: Standards Track R. Krzanowski
Verizon
A. Morton
AT&T Labs
K. Yum
Juniper Networks
J. Babiarz
Nortel Networks
October 2008
A Two-Way Active Measurement Protocol (TWAMP)
Status of This Memo
This document specifies an Internet standards track protocol for the
Internet community, and requests discussion and suggestions for
improvements. Please refer to the current edition of the "Internet
Official Protocol Standards" (STD 1) for the standardization state
and status of this protocol. Distribution of this memo is unlimited.
Abstract
The One-way Active Measurement Protocol (OWAMP), specified in RFC
4656, provides a common protocol for measuring one-way metrics
between network devices. OWAMP can be used bi-directionally to
measure one-way metrics in both directions between two network
elements. However, it does not accommodate round-trip or two-way
measurements. This memo specifies a Two-Way Active Measurement
Protocol (TWAMP), based on the OWAMP, that adds two-way or round-trip
measurement capabilities. The TWAMP measurement architecture is
usually comprised of two hosts with specific roles, and this allows
for some protocol simplifications, making it an attractive
alternative in some circumstances.
Hedayat, et al. Standards Track [Page 1]
RFC 5357 Two-Way Active Measurement Protocol October 2008
Table of Contents
1. Introduction ....................................................2
1.1. Relationship of Test and Control Protocols .................3
1.2. Logical Model ..............................................3
1.3. Pronunciation Guide ........................................4
2. Protocol Overview ...............................................5
3. TWAMP-Control ...................................................6
3.1. Connection Setup ...........................................6
3.2. Integrity Protection .......................................7
3.3. Values of the Accept Field .................................7
3.4. TWAMP-Control Commands .....................................7
3.5. Creating Test Sessions .....................................8
3.6. Send Schedules ............................................10
3.7. Starting Test Sessions ....................................10
3.8. Stop-Sessions .............................................10
3.9. Fetch-Session .............................................12
4. TWAMP-Test .....................................................12
4.1. Sender Behavior ...........................................12
4.1.1. Packet Timings .....................................12
4.1.2. Packet Format and Content ..........................12
4.2. Reflector Behavior ........................................13
4.2.1. TWAMP-Test Packet Format and Content ...............14
5. Implementers' Guide ............................................20
6. Security Considerations ........................................20
7. Acknowledgements ...............................................21
8. IANA Considerations ............................................21
8.1. Registry Specification ....................................22
8.2. Registry Management .......................................22
8.3. Experimental Numbers ......................................22
8.4. Initial Registry Contents .................................22
9. Internationalization Considerations ............................22
Appendix I - TWAMP Light (Informative) ............................23
Normative References ..............................................24
Informative References ............................................24
1. Introduction
The Internet Engineering Task Force (IETF) has completed a Proposed
Standard for the round-trip delay [RFC2681] metric. The IETF has
also completed a protocol for the control and collection of one-way
measurements, the One-way Active Measurement Protocol (OWAMP)
[RFC4656]. However, OWAMP does not accommodate round-trip or two-way
measurements.
Two-way measurements are common in IP networks, primarily because
synchronization between local and remote clocks is unnecessary for
round-trip delay, and measurement support at the remote end may be
Hedayat, et al. Standards Track [Page 2]
RFC 5357 Two-Way Active Measurement Protocol October 2008
limited to a simple echo function. However, the most common facility
for round-trip measurements is the ICMP Echo Request/Reply (used by
the ping tool), and issues with this method are documented in Section
2.6 of [RFC2681]. This memo specifies the Two-Way Active Measurement
Protocol, or TWAMP. TWAMP uses the methodology and architecture of
OWAMP [RFC4656] to define an open protocol for measurement of two-way
or round-trip metrics (henceforth in this document the term two-way
also signifies round-trip), in addition to the one-way metrics of
OWAMP. TWAMP employs time stamps applied at the echo destination
(reflector) to enable greater accuracy (processing delays can be
accounted for). The TWAMP measurement architecture is usually
comprised of only two hosts with specific roles, and this allows for
some protocol simplifications, making it an attractive alternative to
OWAMP in some circumstances.
The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in this
document are to be interpreted as described in RFC 2119 [RFC2119].
1.1. Relationship of Test and Control Protocols
Similar to OWAMP [RFC4656], TWAMP consists of two inter-related
protocols: TWAMP-Control and TWAMP-Test. The relationship of these
protocols is as defined in Section 1.1 of OWAMP [RFC4656]. TWAMP-
Control is used to initiate, start, and stop test sessions, whereas
TWAMP-Test is used to exchange test packets between two TWAMP
entities.
1.2. Logical Model
The role and definition of the logical entities are as defined in
Section 1.2 of OWAMP [RFC4656] with the following exceptions:
- The Session-Receiver is called the Session-Reflector in the TWAMP
architecture. The Session-Reflector has the capability to create
and send a measurement packet when it receives a measurement
packet. Unlike the Session-Receiver, the Session-Reflector does
not collect any packet information.
- The Server is an end system that manages one or more TWAMP
sessions, and is capable of configuring per-session state in the
endpoints. However, a Server associated with a Session-Reflector
would not have the capability to return the results of a test
session, and this is a difference from OWAMP.
Hedayat, et al. Standards Track [Page 3]
RFC 5357 Two-Way Active Measurement Protocol October 2008
- The Fetch-Client entity does not exist in the TWAMP architecture,
as the Session-Reflector does not collect any packet information
to be fetched. Consequently, there is no need for the Fetch-
Client.
An example of possible relationship scenarios between these roles is
presented below. In this example, different logical roles are played
on different hosts. Unlabeled links in the figure are unspecified by
this document and may be proprietary protocols.
+----------------+ +-------------------+
| Session-Sender |<-TWAMP-Test-->| Session-Reflector |
+----------------+ +-------------------+
^ ^
| |
| |
| |
| +----------------+<----------------+
| | Server |
| +----------------+
| ^
| |
| TWAMP-Control
| |
v v
+----------------+
| Control-Client |
+----------------+
As in OWAMP [RFC4656], different logical roles can be played by the
same host. For example, in the figure above, there could actually be
two hosts: one playing the roles of Control-Client and Session-
Sender, and the other playing the roles of Server and Session-
Reflector. This example is shown below.
+-----------------+ +-------------------+
| Control-Client |<--TWAMP-Control-->| Server |
| | | |
| Session-Sender |<--TWAMP-Test----->| Session-Reflector |
+-----------------+ +-------------------+
1.3. Pronunciation Guide
The acronym OWAMP is usually pronounced in two syllables, Oh-wamp.
The acronym TWAMP is also pronounced in two syllables, Tee-wamp.
Hedayat, et al. Standards Track [Page 4]
RFC 5357 Two-Way Active Measurement Protocol October 2008
2. Protocol Overview
The Two-Way Active Measurement Protocol is an open protocol for
measurement of two-way metrics. It is based on OWAMP [RFC4656] and
adheres to OWAMP's overall architecture and design. The TWAMP-
Control and TWAMP-Test protocols accomplish their testing tasks as
outlined below:
- The Control-Client initiates a TCP connection on TWAMP's well-
known port, and the Server (its role now established) responds
with its Greeting message, indicating the security/integrity
mode(s) it is willing to support.
- The Control-Client responds with the chosen mode of communication
and information supporting integrity protection and encryption, if
the mode requires them. The Server responds to accept the mode
and give its start time. This completes the control-connection
setup.
- The Control-Client requests (and describes) a test session with a
unique TWAMP-Control message. The Server responds with its
acceptance and supporting information. More than one test session
may be requested with additional messages.
- The Control-Client initiates all requested testing with a Start-
Sessions message, and the Server acknowledges.
- The Session-Sender and the Session-Reflector exchange test packets
according to the TWAMP-Test protocol for each active session.
- When appropriate, the Control-Client sends a message to stop all
test sessions.
There are two recognized extension mechanisms in the TWAMP Protocol.
1) The Modes field is used to establish the communication options
during TWAMP-Control Connection Setup.
2) The TWAMP-Control Command Number is another intended extension
mechanism, allowing additional commands to be defined in the
future.
The TWAMP-Control protocol resolves different capability levels
between the Control-Client and Server.
All multi-octet quantities defined in this document are represented
as unsigned integers in network byte order, unless specified
otherwise.
Hedayat, et al. Standards Track [Page 5]
RFC 5357 Two-Way Active Measurement Protocol October 2008
Throughout this memo, the bits marked MBZ (Must Be Zero) MUST be set
to zero by senders and MUST be ignored by receivers.
3. TWAMP-Control
TWAMP-Control is a derivative of the OWAMP-Control for two-way
measurements. All TWAMP-Control messages are similar in format and
follow similar guidelines to those defined in Section 3 of OWAMP
[RFC4656] with the exceptions outlined in the following sections.
One such exception is the Fetch-Session command, which is not used in
TWAMP.
3.1. Connection Setup
Connection establishment of TWAMP follows the same procedure defined
in Section 3.1 of OWAMP [RFC4656]. The Modes field is a recognized
extension mechanism in TWAMP, and the current mode values are
identical to those used in OWAMP. The only exception is the well-
known port number for TWAMP-Control. A Client opens a TCP connection
to the Server on well-known port 862. The host that initiates the
TCP connection takes the roles of Control-Client and (in the two-host
implementation) the Session-Sender. The host that acknowledges the
TCP connection accepts the roles of Server and (in the two-host
implementation) the Session-Reflector.
The Control-Client MAY set a desired code point in the Diffserv Code
Point (DSCP) field in the IP header for ALL packets of a specific
control connection. The Server SHOULD use the DSCP of the Control-
Client's TCP SYN in ALL subsequent packets on that connection
(avoiding any ambiguity in case of re-marking).
The possibility exists for Control-Client failure after TWAMP-
Control connection establishment, or the path between the Control-
Client and Server may fail while a connection is in progress. The
Server MAY discontinue any established control connection when no
packet associated with that connection has been received within
SERVWAIT seconds. The Server SHALL suspend monitoring control
connection activity after receiving a Start-Sessions command, and
SHALL resume after receiving a Stop-Sessions command (IF the SERVWAIT
option is supported). Note that the REFWAIT timeout (described
below) covers failures during test sessions, and if REFWAIT expires
on ALL test sessions initiated by a TWAMP-Control connection, then
the SERVWAIT monitoring SHALL resume (as though a Stop-Sessions
command had been received). An implementation that supports the
SERVWAIT timeout SHOULD also implement the REFWAIT timeout. The
default value of SERVWAIT SHALL be 900 seconds, and this waiting time
MAY be configurable. This timeout allows the Server to free up
resources in case of failure.
Hedayat, et al. Standards Track [Page 6]
RFC 5357 Two-Way Active Measurement Protocol October 2008
Both the Server and the Client use the same mappings from KeyIDs to
shared secrets. The Server, being prepared to conduct sessions with
more than one Client, uses KeyIDs to choose the appropriate secret
key; a Client would typically have different secret keys for
different Servers. The shared secret is a passphrase. To maximize
passphrase interoperability, the passphrase character set MUST be
encoded using Appendix B of [RFC5198] (the ASCII Network Virtual
Terminal Definition). It MUST not contain newlines (any combination
of Carriage-Return (CR) and/or Line-Feed (LF) characters), and
control characters SHOULD be avoided.
3.2. Integrity Protection
Integrity protection of TWAMP follows the same procedure defined in
Section 3.2 of OWAMP [RFC4656]. As in OWAMP, each HMAC (Hashed
Message Authentication Code) sent covers everything sent in a given
direction between the previous HMAC (but not including it) and the
start of the new HMAC. This way, once encryption is set up, each bit
of the TWAMP-Control connection is authenticated by an HMAC exactly
once.
Note that the Server-Start message (sent by a Server during the
initial control-connection exchanges) does not terminate with an HMAC
field. Therefore, the HMAC in the first Accept-Session message also
covers the Server-Start message and includes the Start-Time field in
the HMAC calculation.
Also, in authenticated and encrypted modes, the HMAC in TWAMP-Control
packets is encrypted.
3.3. Values of the Accept Field
Accept values used in TWAMP are the same as the values defined in
Section 3.3 of OWAMP [RFC4656].
3.4. TWAMP-Control Commands
TWAMP-Control commands conform to the rules defined in Section 3.4 of
OWAMP [RFC4656].
The following commands are available for the Control-Client:
Request-TW-Session, Start-Sessions, and Stop-Sessions. The Server
can send specific messages in response to the commands it receives
(as described in the sections that follow).
Note that the OWAMP Request-Session command is replaced by the TWAMP
Request-TW-Session command, and the Fetch-Session command does not
appear in TWAMP.
Hedayat, et al. Standards Track [Page 7]
RFC 5357 Two-Way Active Measurement Protocol October 2008
3.5. Creating Test Sessions
Test session creation follows the same procedure as defined in
Section 3.5 of OWAMP [RFC4656]. The Request-TW-Session command is
based on the OWAMP Request-Session command, and uses the message
format as described in Section 3.5 of OWAMP, but without the Schedule
Slot Descriptions field(s) and uses only one HMAC. The description
of the Request-TW-Session format follows.
In TWAMP, the first octet is referred to as the Command Number, and
the Command Number is a recognized extension mechanism. Readers are
encouraged to consult the TWAMP-Control Command Number registry to
determine if there have been additional values assigned.
The Command Number value of 5 indicates a Request-TW-Session command,
and the Server MUST interpret this command as a request for a two-way
test session using the TWAMP-Test protocol.
If a TWAMP Server receives an unexpected Command Number, it MUST
respond with the Accept field set to 3 (meaning "Some aspect of
request is not supported") in the Accept-Session message. Command
Numbers that are Forbidden (and possibly numbers that are Reserved)
are unexpected.
In OWAMP, the Conf-Sender field is set to 1 when the Request-Session
message describes a task where the Server will configure a one-way
test packet sender. Likewise, the Conf-Receiver field is set to 1
when the message describes the configuration for a Session-Receiver.
In TWAMP, both endpoints send and receive test packets, with the
Session-Sender first sending and then receiving test packets,
complimented by the Session-Reflector first receiving and then
sending.
Both the Conf-Sender field and Conf-Receiver field MUST be set to 0
since the Session-Reflector will both receive and send packets, and
the roles are established according to which host initiates the TCP
connection for control. The Server MUST interpret any non-zero value
as an improperly formatted command, and MUST respond with the Accept
field set to 3 (meaning "Some aspect of request is not supported") in
the Accept-Session message.
The Session-Reflector in TWAMP does not process incoming test packets
for performance metrics and consequently does not need to know the
number of incoming packets and their timing schedule. Consequently
the Number of Scheduled Slots and Number of Packets MUST be set to 0.
The Sender Port is the UDP port from which TWAMP-Test packets will be
sent and the port to which TWAMP-Test packets will be sent by the
Hedayat, et al. Standards Track [Page 8]
RFC 5357 Two-Way Active Measurement Protocol October 2008
Session-Reflector (the Session-Sender will use the same UDP port to
send and receive packets). The Receiver Port is the desired UDP port
to which TWAMP-Test packets will be sent by the Session-Sender (the
port where the Session-Reflector is asked to receive test packets).
The Receiver Port is also the UDP port from which TWAMP-Test packets
will be sent by the Session-Reflector (the Session-Reflector will use
the same UDP port to send and receive packets).
The Sender Address and Receiver Address fields contain, respectively,
the sender and receiver addresses of the endpoints of the Internet
path over which a TWAMP-Test session is requested. They MAY be set
to 0, in which case the IP addresses used for the Control-Client to
Server TWAMP-Control message exchange MUST be used in the test
packets.
The Session Identifier (SID) is as defined in OWAMP [RFC4656]. Since
the SID is always generated by the receiving side, the Server
determines the SID, and the SID in the Request-TW-Session message
MUST be set to 0.
The Start Time is as defined in OWAMP [RFC4656].
The Timeout is interpreted differently from the definition in OWAMP
[RFC4656]. In TWAMP, Timeout is the interval that the Session-
Reflector MUST wait after receiving a Stop-Sessions message. In case
there are test packets still in transit, the Session-Reflector MUST
reflect them if they arrive within the Timeout interval following the
reception of the Stop-Sessions message. The Session-Reflector MUST
NOT reflect packets that are received beyond the timeout.
Type-P descriptor is as defined in OWAMP [RFC4656]. The only
capability of this field is to set the Differentiated Services Code
Point (DSCP) as defined in [RFC2474]. The same value of DSCP MUST be
used in test packets reflected by the Session-Reflector.
Since there are no Schedule Slot Descriptions, the Request-TW-Session
message is completed by MBZ (Must Be Zero) and HMAC fields. This
completes one logical message, referred to as the Request-TW-Session
command.
The Session-Reflector MUST respond to each Request-TW-Session command
with an Accept-Session message as defined in OWAMP [RFC4656]. When
the Accept field = 0, the Port field confirms (repeats) the port to
which TWAMP-Test packets are sent by the Session-Sender toward the
Session-Reflector. In other words, the Port field indicates the port
number where the Session-Reflector expects to receive packets from
the Session-Sender.
Hedayat, et al. Standards Track [Page 9]
RFC 5357 Two-Way Active Measurement Protocol October 2008
When the requested Receiver Port is not available (e.g., port in
use), the Server at the Session-Reflector MAY suggest an alternate
and available port for this session in the Port field. The Session-
Sender either accepts the alternate port, or composes a new Session-
Request message with suitable parameters. Otherwise, the Server at
the Control-Client uses the Accept field to convey other forms of
session rejection or failure and MUST NOT suggest an alternate port;
in this case, the Port field MUST be set to zero.
3.6. Send Schedules
The send schedule for test packets defined in Section 3.6 of OWAMP
[RFC4656] is not used in TWAMP. The Control-Client and Session-
Sender MAY autonomously decide the send schedule. The Session-
Reflector SHOULD return each test packet to the Session-Sender as
quickly as possible.
3.7. Starting Test Sessions
The procedure and guidelines for starting test sessions is the same
as defined in Section 3.7 of OWAMP [RFC4656].
3.8. Stop-Sessions
The procedure and guidelines for stopping test sessions is similar to
that defined in Section 3.8 of OWAMP [RFC4656]. The Stop-Sessions
command can only be issued by the Control-Client. The message MUST
NOT contain any session description records or skip ranges. The
message is terminated with a single block HMAC to complete the Stop-
Sessions command. Since the TWAMP Stop-Sessions command does not
convey SIDs, it applies to all sessions previously requested and
started with a Start-Sessions command.
Hedayat, et al. Standards Track [Page 10]
RFC 5357 Two-Way Active Measurement Protocol October 2008
Thus, the TWAMP Stop-Sessions command is constructed as follows:
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| 3 | Accept | MBZ |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Number of Sessions |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| MBZ (8 octets) |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
| HMAC (16 octets) |
| |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Above, the Command Number in the first octet (3) indicates that this
is the Stop-Sessions command.
Non-zero Accept values indicate a failure of some sort. Zero values
indicate normal (but possibly premature) completion. The full list
of available Accept values is described in Section 3.3 of [RFC4656],
"Values of the Accept Field".
If Accept has a non-zero value, results of all TWAMP-Test sessions
spawned by this TWAMP-Control session SHOULD be considered invalid.
If the Accept-Session message was not transmitted at all (for
whatever reason, including failure of the TCP connection used for
TWAMP-Control), the results of all TWAMP-Test sessions spawned by
this TWAMP-Control session MAY be considered invalid.
Number of Sessions indicates the number of sessions that the
Control-Client intends to stop.
Number of Sessions MUST contain the number of send sessions started
by the Control-Client that have not been previously terminated by a
Stop-Sessions command (i.e., the Control-Client MUST account for each
accepted Request-Session). If the Stop-Sessions message does not
account for exactly the number of sessions in progress, then it is to
be considered invalid, the TWAMP-Control connection SHOULD be closed,
and any results obtained considered invalid.
Upon receipt of a TWAMP-Control Stop-Sessions command, the Session-
Reflector MUST discard any TWAMP-Test packets that arrive at the
current time plus the Timeout (in the Request-TW-Session command).
Hedayat, et al. Standards Track [Page 11]
RFC 5357 Two-Way Active Measurement Protocol October 2008
3.9. Fetch-Session
One purpose of TWAMP is measurement of two-way metrics. Two-way
measurement methods do not require packet-level data to be collected
by the Session-Reflector (such as sequence number, timestamp, and
Time to Live (TTL)) because this data is communicated in the
"reflected" test packets. As such, the protocol does not require the
retrieval of packet-level data from the Server and the OWAMP Fetch-
Session command is not used in TWAMP.
4. TWAMP-Test
The TWAMP-Test protocol is similar to the OWAMP-test protocol
[RFC4656] with the exception that the Session-Reflector transmits
test packets to the Session-Sender in response to each test packet it
receives. TWAMP defines two different test packet formats, one for
packets transmitted by the Session-Sender and one for packets
transmitted by the Session-Reflector. As with OWAMP-test protocol
[RFC4656], there are three modes: unauthenticated, authenticated, and
encrypted.
4.1. Sender Behavior
The sender behavior is determined by the configuration of the
Session-Sender and is not defined in this standard. Further, the
Session-Reflector does not need to know the Session-Sender behavior
to the degree of detail as needed in OWAMP [RFC4656]. Additionally,
the Session-Sender collects and records the necessary information
provided from the packets transmitted by the Session-Reflector for
measuring two-way metrics. The information recording based on the
packet(s) received by the Session-Sender is implementation dependent.
4.1.1. Packet Timings
Since the send schedule is not communicated to the Session-Reflector,
there is no need for a standardized computation of packet timing.
Regardless of any scheduling delays, each packet that is actually
sent MUST have the best possible approximation of its real time of
departure as its timestamp (in the packet).
4.1.2. Packet Format and Content
The Session-Sender packet format and content follow the same
procedure and guidelines as defined in Section 4.1.2 of OWAMP
[RFC4656] (with the exception of the reference to the send schedule).
Hedayat, et al. Standards Track [Page 12]
RFC 5357 Two-Way Active Measurement Protocol October 2008
Note that the Reflector test packet formats are larger than the
Sender's formats. The Session-Sender MAY append sufficient Packet
Padding to allow the same IP packet payload lengths to be used in
each direction of transmission (this is usually desirable). To
compensate for the Reflector's larger test packet format, the Sender
appends at least 27 octets of padding in unauthenticated mode, and at
least 56 octets in authenticated and encrypted modes.
4.2. Reflector Behavior
TWAMP requires the Session-Reflector to transmit a packet to the
Session-Sender in response to each packet it receives.
As packets are received, the Session-Reflector will do the following:
- Timestamp the received packet. Each packet that is actually
received MUST have the best possible approximation of its real
time of arrival entered as its Received Timestamp (in the packet).
- In authenticated or encrypted mode, decrypt the appropriate
sections of the packet body (first block (16 octets) for
authenticated, 96 octets for encrypted), and then check integrity
of sections covered by the HMAC.
- Copy the packet sequence number into the corresponding reflected
packet to the Session-Sender.
- Extract the Sender TTL value from the TTL/Hop Limit value of
received packets. Session-Reflector implementations SHOULD fetch
the TTL/Hop Limit value from the IP header of the packet,
replacing the value of 255 set by the Session-Sender. If an
implementation does not fetch the actual TTL value (the only good
reason not to do so is an inability to access the TTL field of
arriving packets), it MUST set the Sender TTL value as 255.
- In authenticated and encrypted modes, the HMAC MUST be calculated
first, then the appropriate portion of the packet body is
encrypted.
- Transmit a test packet to the Session-Sender in response to every
received packet. The response MUST be generated as immediately as
possible. The format and content of the test packet is defined in
Section 4.2.1. Prior to the transmission of the test packet, the
Session-Reflector MUST enter the best possible approximation of
its actual sending time as its Timestamp (in the packet). This
permits the determination of the elapsed time between the
reception of the packet and its transmission.
Hedayat, et al. Standards Track [Page 13]
RFC 5357 Two-Way Active Measurement Protocol October 2008
- Packets not received within the Timeout (following the Stop-
Sessions command) MUST be ignored by the Reflector. The Session-
Reflector MUST NOT generate a test packet to the Session-Sender
for packets that are ignored.
The possibility exists for Session-Sender failure during a session,
or the path between the Session-Sender and Session-Reflector may fail
while a test session is in progress. The Session-Reflector MAY
discontinue any session that has been started when no packet
associated with that session has been received for REFWAIT seconds.
The default value of REFWAIT SHALL be 900 seconds, and this waiting
time MAY be configurable. This timeout allows a Session-Reflector to
free up resources in case of failure.
4.2.1. TWAMP-Test Packet Format and Content
The Session-Reflector MUST transmit a packet to the Session-Sender in
response to each packet received. The Session-Reflector SHOULD
transmit the packets as immediately as possible. The Session-
Reflector SHOULD set the TTL in IPv4 (or Hop Limit in IPv6) in the
UDP packet to 255.
The test packet will have the necessary information for calculating
two-way metrics by the Session-Sender. The format of the test packet
depends on the mode being used. The two formats are presented below.
Hedayat, et al. Standards Track [Page 14]
RFC 5357 Two-Way Active Measurement Protocol October 2008
For unauthenticated mode:
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sequence Number |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Timestamp |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Error Estimate | MBZ |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Receive Timestamp |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sender Sequence Number |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sender Timestamp |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sender Error Estimate | MBZ |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sender TTL | |
+-+-+-+-+-+-+-+-+ +
| |
. .
. Packet Padding .
. .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Hedayat, et al. Standards Track [Page 15]
RFC 5357 Two-Way Active Measurement Protocol October 2008
For authenticated and encrypted modes:
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sequence Number |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| MBZ (12 octets) |
| |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Timestamp |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Error Estimate | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +
| MBZ (6 octets) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Receive Timestamp |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| MBZ (8 octets) |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sender Sequence Number |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| MBZ (12 octets) |
| |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sender Timestamp |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sender Error Estimate | |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +
| MBZ (6 octets) |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sender TTL | |
+-+-+-+-+-+-+-+-+ +
| |
| |
| MBZ (15 octets) |
+++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
| HMAC (16 octets) |
| |
| |
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-|
Hedayat, et al. Standards Track [Page 16]
RFC 5357 Two-Way Active Measurement Protocol October 2008
| |
. .
. Packet Padding .
. .
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Note that all timestamps have the same format as OWAMP [RFC4656] as
follows:
0 1 2 3
0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Integer part of seconds |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Fractional part of seconds |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Sequence Number is the sequence number of the test packet according
to its transmit order. It starts with zero and is incremented by one
for each subsequent packet. The Sequence Number generated by the
Session-Reflector is independent from the sequence number of the
arriving packets.
Timestamp and Error Estimate are the Session-Reflector's transmit
timestamp and error estimate for the reflected test packet,
respectively. The format of all timestamp and error estimate fields
follow the definition and formats defined by OWAMP, Section 4.1.2 in
[RFC4656].
Sender Timestamp and Sender Error Estimate are exact copies of the
timestamp and error estimate from the Session-Sender test packet that
corresponds to this test packet.
Sender TTL is 255 when transmitted by the Session-Sender. Sender TTL
is set to the Time To Live (or Hop Count) value of the received
packet from the IP packet header when transmitted by the Session-
Reflector.
Receive Timestamp is the time the test packet was received by the
reflector. The difference between Timestamp and Receive Timestamp is
the amount of time the packet was in transition in the Session-
Reflector. The Error Estimate associated with the Timestamp field
also applies to the Receive Timestamp.
Sender Sequence Number is a copy of the Sequence Number of the packet
transmitted by the Session-Sender that caused the Session-Reflector
to generate and send this test packet.
Hedayat, et al. Standards Track [Page 17]
RFC 5357 Two-Way Active Measurement Protocol October 2008
The HMAC field in TWAMP-Test packets covers the same fields as the
Advanced Encryption Standard (AES) encryption. Thus, in
authenticated mode, HMAC covers the first block (16 octets); in
encrypted mode, HMAC covers the first six blocks (96 octets). In
TWAMP-Test, the HMAC field MUST NOT be encrypted.
Packet Padding in TWAMP-Test SHOULD be pseudo-random (it MUST be
generated independently of any other pseudo-random numbers mentioned
in this document). However, implementations MUST provide a
configuration parameter, an option, or a different means of making
Packet Padding consist of all zeros. Packet Padding MUST NOT be
covered by the HMAC and MUST NOT be encrypted.
The minimum data segment length of TWAMP-Test packets in
unauthenticated mode is 41 octets, and 104 octets in both
authenticated mode and encrypted modes.
Note that the Session-Reflector Test packet formats are larger than
the Sender's formats. The Session-Reflector SHOULD reduce the length
of the Sender's Packet Padding to achieve equal IP packet payload
lengths in each direction of transmission, when sufficient padding is
present. The Session-Reflector MAY re-use the Sender's Packet
Padding (since the requirements for padding generation are the same
for each), and in this case the Session-Reflector SHOULD truncate the
padding such that the highest-number octets are discarded.
In unauthenticated mode, encryption or authentication MUST NOT be
applied.
The TWAMP-Test packet layout is identical in authenticated and
encrypted modes. The encryption operation for a Session-Sender
packet follows the same rules of Session-Sender packets as defined in
OWAMP section 4.1.2 of [RFC4656].
The main difference between authenticated mode and encrypted mode is
the portion of the test packets that are covered by HMAC and
encrypted. Authenticated mode permits the timestamp to be fetched
after a portion of the packet is encrypted, but in encrypted mode all
the sequence numbers and timestamps are fetched before encryption to
provide maximum data-integrity protection.
In authenticated mode, only the sequence number in the first block is