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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
|
Network Working Group P. Newman, Ipsilon
Request for Comments: 1953 W. L. Edwards, Sprint
Category: Informational R. Hinden, Ipsilon
E. Hoffman, Ipsilon
F. Ching Liaw, Ipsilon
T. Lyon, Ipsilon
G. Minshall, Ipsilon
May 1996
Ipsilon Flow Management Protocol Specification for IPv4
Version 1.0
Status of this Memo
This document provides information for the Internet community. This
memo does not specify an Internet standard of any kind. Distribution
of this memo is unlimited.
IESG Note:
This memo documents a private protocol for IPv4-based flows. This
protocol is NOT the product of an IETF working group nor is it a
standards track document. It has not necessarily benefited from the
widespread and in depth community review that standards track
documents receive.
Abstract
The Ipsilon Flow Management Protocol (IFMP), is a protocol for
allowing a node to instruct an adjacent node to attach a layer 2
label to a specified IP flow. The label allows more efficient access
to cached routing information for that flow. The label can also
enable a node to switch further packets belonging to the specified
flow at layer 2 rather than forwarding them at layer 3.
Table of Contents
1. Introduction....................................................2
2. Flow Types......................................................2
3. IFMP Adjacency Protocol.........................................4
3.1 Packet Format.............................................4
3.2 Procedure.................................................7
4. IFMP Redirection Protocol......................................10
4.1 Redirect Message.........................................12
4.2 Reclaim Message..........................................13
4.3 Reclaim Ack Message......................................15
4.4 Label Range Message......................................16
Newman, et. al. Informational [Page 1]
^L
RFC 1953 IFMP Specification May 1996
4.5 Error Message............................................17
References........................................................19
Security Considerations...........................................19
Authors' Addresses................................................19
1. Introduction
The Ipsilon Flow Management Protocol (IFMP), is a protocol for
instructing an adjacent node to attach a layer 2 label to a specified
IP flow. The label allows more efficient access to cached routing
information for that flow and it allows the flow to be switched
rather than routed in certain cases.
If a network node's upstream and downstream links both redirect a
flow at the node, then the node can switch the flow at the data link
layer rather than forwarding it at the network layer. The label
space is managed at the downstream end of each link and redirection
messages are sent upstream to associate a particular flow with a
given label. Each direction of transmission on a link is treated
separately.
If the flow is not refreshed by the time the lifetime field in the
redirect message expires, then the association between the flow and
the label is discarded. A flow is refreshed by sending a redirect
message, identical to the original, before the lifetime expires.
Several flow types may be specified. Each flow type specifies the
set of fields from the packet header that are used to identify a
flow. There must be an ordering amongst the different flow types
such that a most specific match operation may be performed.
A particular flow is specified by a flow identifier. The flow
identifier for that flow gives the contents of the set of fields from
the packet header as defined for the flow type to which it belongs.
This document specifies the IFMP protocol for IPv4 on a point-to-
point link. The definition of labels, and the encapsulation of
flows, are specified in a separate document for each specific data
link technology. The specification for ATM data links is given in
[ENCAP].
2. Flow Types
A flow is a sequence of packets that are sent from a particular
source to a particular (unicast or multicast) destination and that
are related in terms of their routing and any logical handling policy
they may require.
Newman, et. al. Informational [Page 2]
^L
RFC 1953 IFMP Specification May 1996
A flow is identified by its flow identifier.
Several different flow types can be defined. The particular set of
fields from the packet header used to identify a flow constitutes the
flow type. The values of these fields, for a particular flow,
constitutes the flow identifier for that flow. The values of these
fields must be invariant in all packets belonging to the same flow at
any point in the network.
Flow types are sub- or super-sets of each other such that there is a
clear hierarchy of flow types. This permits a most specific match
operation to be performed. (If additional flow types are defined in
the future that are not fully ordered then the required behavior will
be defined.) Each flow type also specifies an encapsulation that is
to be used after a flow of this type is redirected. The
encapsulations for each flow type are specified in a separate
document for each specific data link technology. The encapsulations
for flows over ATM data links are given in [ENCAP].
Three flow types are defined in this version of the protocol:
Flow Type 0
Flow Type 0 is used to change the encapsulation of IPv4 packets
from the default encapsulation.
For Flow Type 0: Flow Type = 0 and Flow ID Length = 0.
The Flow Identifier for Flow Type 0 is null (zero length).
Flow Type 1
Flow Type 1 is designed for protocols such as UDP and TCP in which
the first four octets after the IPv4 header specify a Source Port
number and a Destination Port number.
For Flow Type 1, Flow Type = 1 and Flow ID Length = 4 (32 bit
words).
The format of the Flow Identifier for Flow Type 1 is:
Newman, et. al. Informational [Page 3]
^L
RFC 1953 IFMP Specification May 1996
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Version| IHL |Type of Service| Time to Live | Protocol |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Source Address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Destination Address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Source Port | Destination Port |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Flow Type 2
For Flow Type 2, Flow Type = 2 and Flow ID Length = 3 (32 bit
words).
The format of the Flow Identifier for Flow Type 2 is:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
|Version| IHL | Reserved | Time to Live | Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Source Address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Destination Address |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
The Reserved fields are unused and should be set to zero by the
sender and ignored by the receiver.
3. IFMP Adjacency Protocol
The IFMP Adjacency Protocol allows a host or router to discover the
identity of a peer at the other end of a link. It is also used to
synchronize state across the link, to detect when the peer at the
other end of the link changes, and to exchange a list of IP addresses
assigned to the link.
3.1 Packet Format
All IFMP messages belonging to the Adjacency Protocol must be
encapsulated within an IPv4 packet and must be sent to the IP limited
broadcast address (255.255.255.255). The Protocol field in the IP
header must contain the value 101 (decimal) indicating that the IP
packet contains an IFMP message. The Time to Live (TTL) field in the
IP header must be set to 1.
Newman, et. al. Informational [Page 4]
^L
RFC 1953 IFMP Specification May 1996
All IFMP messages belonging to the adjacency protocol have the
following structure:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Version | Op Code | Checksum |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sender Instance |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Peer Instance |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Peer Identity |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Peer Next Sequence Number |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Reserved | Reserved | Max Ack Intvl |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
~ Address List ~
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Version
The IFMP protocol version number. The current Version = 1.
Op Code
Specifies the function of the message. Four Op Codes are
defined for the IFMP Adjacency Protocol:
SYN: Op Code = 0
SYNACK: Op Code = 1
RSTACK: Op Code = 2
ACK: Op Code = 3
Checksum
The 16-bit one's complement of the one's complement sum of
a pseudo header of information from the IP header and the
IFMP message itself. The pseudo header, conceptually
prefixed to the IFMP message, contains the Source Address,
the Destination Address, and the Protocol fields from the
IPv4 header, and the total length of the IFMP message
starting with the Version field (this is equivalent to the
value of the Total Length field from the IPv4 header minus
the length of the IPv4 header itself).
Newman, et. al. Informational [Page 5]
^L
RFC 1953 IFMP Specification May 1996
Sender Instance
For the SYN, SYNACK, and ACK messages, is the sender's
instance number for the link. The receiver uses this to
detect when the link comes back up after going down or when
the identity of the peer at the other end of the link
changes. The instance number is a 32 bit number that is
guaranteed to be unique within the recent past and to
change when the link or node comes back up after going
down. It is used in a similar manner to the initial
sequence number (ISN) in TCP [RFC 793]. Zero is not a
valid instance number. For the RSTACK message the Sender
Instance field is set to the value of the Peer Instance
field from the incoming message that caused an RSTACK
message to be generated.
Peer Instance
For the SYN, SYNACK, and ACK messages, is what the sender
believes is the peer's current instance number for the
link. If the sender of the message does not know the
peer's current instance number for the link, the sender
must set this field to zero. For the RSTACK message the
Peer Instance field is set to the value of the Sender
Instance field from the incoming message that caused an
RSTACK message to be generated.
Peer Identity
For the SYN, SYNACK, and ACK messages, is the IP address of
the peer that the sender of the message believes is at the
other end of the link. The Peer Identity is taken from the
Source IP Address of the IP header of a SYN or a SYNACK
message. If the sender of the message does not know the IP
address of the peer at the other end of the link, the
sender must set set this field to zero. For the RSTACK
message, the Peer Identity field is set to the value of the
Source Address field from the IP header of the incoming
message that caused an RSTACK message to be generated.
Peer Next Sequence Number
Gives the value of the peer's Sequence Number that the
sender of the IFMP Adjacency Protocol message expects to
arrive in the next IFMP Redirection Protocol message. If a
node is in the ESTAB state, and the value of the Peer Next
Sequence Number in an incoming ACK message is greater than
the value of the Sequence Number plus one, from the last
IFMP Redirection Protocol message transmitted out of the
port on which the incoming ACK message was received, the
link should be reset. The procedure to reset the link is
defined in section 3.2.
Newman, et. al. Informational [Page 6]
^L
RFC 1953 IFMP Specification May 1996
Max Ack Intvl
Maximum Acknowledgement Interval is the maximum amount of
time the sender of the message will wait until transmitting
an ACK message.
Address List
A list of one or more IP addresses that are assigned to the
link by the sender of the message. The list must have at
least one entry that is identical to the Source Address in
the IP header. The contents of this list are not used by
the IFMP protocol but can be made available to the routing
protocol.
3.2 Procedure
The IFMP Adjacency Protocol is described by the rules and state
tables given in this section.
The rules and state tables use the following operations:
o The "Update Peer Verifier" operation is defined as storing the
Sender Instance and the Source IP Address from a SYN or SYNACK
message received from the peer on a particular port.
o The procedure "Reset the link" is defined as:
1. Generate a new instance number for the link
2. Delete the peer verifier (set the stored values of Sender
Instance and Source IP Address of the peer to zero)
3. Set Sequence Number and Peer Next Sequence Number to zero
4. Send a SYN message
5. Enter the SYNSENT state
o The state tables use the following Boolean terms and operators:
A The Sender Instance in the incoming message matches the
value stored from a previous message by the "Update Peer
Verifier" operation for the port on which the incoming
message is received.
B The Sender Instance and the Source IP Address in the
incoming message matches the value stored from a previous
message by the "Update Peer Verifier" operation for the
port on which the incoming message is received.
Newman, et. al. Informational [Page 7]
^L
RFC 1953 IFMP Specification May 1996
C The Peer Instance and Peer Identity in the incoming message
matches the value of the Sender Instance and the Source IP
Address currently in use for all SYN, SYNACK, and ACK
messages transmitted out of the port on which the incoming
message was received.
"&&" Represents the logical AND operation
"||" Represents the logical OR operation
"!" Represents the logical negation (NOT) operation.
o A timer is required for the periodic generation of SYN, SYNACK,
and ACK messages. The period of the timer is unspecified but a
value of one second is suggested.
There are two independent events: the timer expires, and a packet
arrives. The processing rules for these events are:
Timer Expires: Reset Timer
If state = SYNSENT Send SYN
If state = SYNRCVD Send SYNACK
If state = ESTAB Send ACK
Packet Arrives: If incoming message is an RSTACK
If A && C && !SYNSENT
Reset the link
Else Discard the message
Else the following State Tables.
o State synchronization across a link is considered to be achieved
when a node reaches the ESTAB state.
Newman, et. al. Informational [Page 8]
^L
RFC 1953 IFMP Specification May 1996
State Tables
State: SYNSENT
+======================================================================+
| Condition | Action | New State |
+====================+=====================================+===========+
| SYNACK && C | Update Peer Verifier; Send ACK | ESTAB |
+--------------------+-------------------------------------+-----------+
| SYNACK && !C | Send RSTACK | SYNSENT |
+--------------------+-------------------------------------+-----------+
| SYN | Update Peer Verifier; Send SYNACK | SYNRCVD |
+--------------------+-------------------------------------+-----------+
| ACK | Send RSTACK | SYNSENT |
+======================================================================+
State: SYNRCVD
+======================================================================+
| Condition | Action | New State |
+====================+=====================================+===========+
| SYNACK && C | Update Peer Verifier; Send ACK | ESTAB |
+--------------------+-------------------------------------+-----------+
| SYNACK && !C | Send RSTACK | SYNRCVD |
+--------------------+-------------------------------------+-----------+
| SYN | Update Peer Verifier; Send SYNACK | SYNRCVD |
+--------------------+-------------------------------------+-----------+
| ACK && B && C | Send ACK | ESTAB |
+--------------------+-------------------------------------+-----------+
| ACK && !(B && C) | Send RSTACK | SYNRCVD |
+======================================================================+
State: ESTAB
+=======================================================================+
| Condition | Action | New State |
+=====================+=====================================+===========+
| SYN || SYNACK | Send ACK (note 1) | ESTAB |
+---------------------+-------------------------------------+-----------+
| ACK && B && C | Send ACK (note 1) | ESTAB |
+---------------------+-------------------------------------+-----------+
| ACK && !(B && C) | Send RSTACK | ESTAB |
+=======================================================================+
Note 1: No more than one ACK should be sent within any time period of
length defined by the timer.
Newman, et. al. Informational [Page 9]
^L
RFC 1953 IFMP Specification May 1996
4. IFMP Redirection Protocol
A sender encapsulates within an IPv4 packet all IFMP messages
belonging to the Redirection Protocol. The sender sends these
messages to the unicast IP address of the peer at the other end of
the link. The IP address of the peer is obtained from the adjacency
protocol. The Protocol field in the IP header must contain the value
101 (decimal) indicating that the IP packet contains an IFMP message.
The Time to Live (TTL) field in the IP header must be set to 1.
All IFMP Redirection Protocol messages have the following structure:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Version | Op Code | Checksum |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sender Instance |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Peer Instance |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Sequence Number |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
~ Message Body ~
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Version
The IFMP protocol version number, currently Version = 1.
Op Code
This field gives the message type. Five message types are
currently defined for the IFMP Redirection Protocol:
REDIRECT: Op Code = 4
RECLAIM: Op Code = 5
RECLAIM ACK: Op Code = 6
LABEL RANGE: Op Code = 7
ERROR: Op Code = 8
Checksum
The 16-bit one's complement of the one's complement sum of
a pseudo header of information from the IP header, and the
IFMP message itself. The pseudo header, conceptually
prefixed to the IFMP message, contains the Source Address,
the Destination Address, and the Protocol fields from the
Newman, et. al. Informational [Page 10]
^L
RFC 1953 IFMP Specification May 1996
IPv4 header, and the total length of the IFMP message
starting with the version field (this is equivalent to the
value of the Total Length field from the IPv4 header minus
the length of the IPv4 header itself).
Sender Instance
The sender's instance number for the link from the IFMP
Adjacency Protocol.
Peer Instance
What the sender believes is the peer's current instance
number for the link from the IFMP Adjacency protocol.
Sequence Number
The sender must increment by one, modulo 2**32, for every
IFMP Redirection Protocol message sent across a link. It
allows the receiver to process IFMP Redirection Protocol
messages in order. The Sequence Number is set to zero when
a node resets the link.
Message Body
Contains a list of one or more IFMP Redirection Protocol
message elements. All of the message elements in the list
have the same message type because the Op Code field
applies to the entire IFMP message. The number of message
elements included in a single packet must not cause the
total size of the IFMP message to exceed the MTU size of
the underlying data link. Only a single message element is
permitted in a Label Range message or in an Error message.
No IFMP Redirection Protocol messages can be sent across a link until
the IFMP Adjacency Protocol has achieved state synchronization across
that link. All IFMP Redirection Protocol messages received on a link
that does not currently have state synchronization must be discarded.
For every received IFMP Redirection Protocol message the receiver
must check the Source IP Address from the IP header, the Sender
Instance, and the Peer Instance. The incoming message must be
discarded if the Sender Instance and the Source IP Address fields do
not match the values stored by the "Update Peer Verifier" operation
of the IFMP Adjacency Protocol for the port on which the message is
received. The incoming message must also be discarded if the Peer
Instance field does not match the current value for the Sender
Instance of the IFMP Adjacency Protocol.
Newman, et. al. Informational [Page 11]
^L
RFC 1953 IFMP Specification May 1996
4.1 Redirect Message
The Redirect Message element is used to instruct an adjacent node to
attach one or more given labels to packets belonging to one or more
specified flows each for a specified period of time. The Redirect
message is not acknowledged.
Each Redirect message element has the following structure:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Flow Type | Flow ID Length| Lifetime |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Label |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
~ Flow Identifier ~
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Flow Type
Specifies the Flow Type of the flow identifier contained in
the Flow Identifier field.
Flow ID Length
Specifies the length of the Flow Identifier field in
integer multiples of 32 bit words.
Lifetime field
Specifies the length of time, in seconds, for which this
redirection is valid. The association of flow identifier
and label should be discarded at a time no greater than
that specified by the Lifetime field. A value of zero is
not valid.
Label field
Contains a 32 bit label. The format of the label is
dependent upon the type of physical link across which the
Redirect message is sent. (The format of the label for ATM
data links is specified in [ENCAP].)
Flow Identifier
Identifies the flow with which the specified label should
be associated. The length of the Flow Identifier field
must be an integer multiple of 32 bit words to preserve 32
bit alignment.
Newman, et. al. Informational [Page 12]
^L
RFC 1953 IFMP Specification May 1996
A node can send an IFMP message containing one or more Redirect
message elements across a link to its upstream neighbor. Each
Redirect message element requests that the upstream neighbor
associate a given link-level label to packets belonging to a
specified flow for up to a specified period of time. A node
receiving an IFMP message that contains one or more Redirect message
elements from an adjacent downstream neighbor can choose to ignore
any or all of the Redirect message elements. Neither the IFMP
message nor any of the Redirect message elements are acknowledged.
If the node chooses to accept a particular Redirect message element
and to redirect the specified flow, it should attach the label
specified in the Redirect message element to all further packets sent
on that flow until it chooses to do so no longer, or until the
specified lifetime expires. While the flow remains redirected, the
encapsulation specified by the definition of the Flow Type given in
the Redirect message element must be used for all packets belonging
to that flow. If the label in a Redirect message element is outside
the range that can be handled across the relevant link, a Label Range
message can be returned to the sender. The Label Range message
informs the sender of the Redirect message of the range of labels
that can be sent across the link.
If a Redirect message element is received specifying a flow that is
already redirected, the Label field in the received Redirect message
element must be checked against the label stored for the redirected
flow. If they agree, the lifetime of the redirected flow is reset to
that contained in the Redirect message element. If they disagree,
the Redirect message element is ignored, and the flow returned to the
default state. There is a minimum time between Redirect message
elements specifying the same flow. The default value is one second.
If a receiving node detects an error in any of the fields of a
Redirect message element, the node must discard that message element
without affecting any other Redirect message elements in the same
IFMP message. The receiver should return an error message to the
sender only in the case that the receiver does not understand the
version of the IFMP protocol in the received IFMP message or does not
understand a Flow Type in any of the Redirect message elements. An
Error Message should be returned for each Flow Type that is not
understood.
4.2 Reclaim Message
The Reclaim message element is used by a node to instruct an adjacent
upstream node to unbind one or more flows from the labels to which
they are currently bound, and to release the labels.
Newman, et. al. Informational [Page 13]
^L
RFC 1953 IFMP Specification May 1996
Each Reclaim message element has the following structure:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Flow Type | Flow ID Length| Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Label |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
~ Flow Identifier ~
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Flow Type
Specifies the Flow Type of the Flow Identifier contained in
the Flow ID field.
Flow ID Length
Specifies the length of the Flow Identifier field in
integer multiples of 32 bit words.
Reserved
Field is unused and should be set to zero by the sender and
ignored by the receiver.
Label
Field contains the label to be released.
Flow Identifier
Field contains the flow identifier to be unbound.
A node can send a Reclaim message element to instruct an adjacent
upstream node to unbind a flow from the label to which it is
currently bound, return the flow to the default forwarding state, and
release the label. Each Reclaim message element applies to a single
flow and a single label. When the receiver has completed the
operation, it must issue a Reclaim Ack message element. Reclaim Ack
message elements can be grouped together, in any order, into one or
more IFMP Reclaim Ack messages and returned to the sender as an
acknowledgment that the operation is complete.
If a Reclaim message element is received indicating an unknown flow,
a Reclaim Ack message element must be returned containing the same
Label and Flow Identifier fields from the Reclaim message.
Newman, et. al. Informational [Page 14]
^L
RFC 1953 IFMP Specification May 1996
If a Reclaim message element is received indicating a known flow, but
with a Label that is not currently bound to that flow, the flow must
be unbound and returned to the default forwarding state, and a
Reclaim Ack message sent containing the actual label to which the
flow was previously bound.
If the receiver detects an error in any of the fields of a Reclaim
message element, the receiver must discard that message element,
without affecting any other Reclaim message elements in the same
message. The receiver must return an error message to the sender
only in the case that the receiver does not understand the version of
the IFMP protocol in the received message or does not understand a
Flow Type in one of the Reclaim message elements.
4.3 Reclaim Ack Message
The Reclaim Ack message element is used by a receiving node to
acknowledge the successful release of one or more reclaimed labels.
Each Reclaim Ack message element has the following structure:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Flow Type | Flow ID Length| Reserved |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Label |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| |
~ Flow Identifier ~
| |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Flow Type
Specifies the Flow Type of the Flow Identifier contained in
the Flow Identifier field.
Flow ID Length
Specifies the length of the Flow Identifier field in
integer multiples of 32 bit words.
Reserved
Field is unused and should be set to zero by the sender and
ignored by the receiver.
Label
Field contains the label released from the flow specified
by the Flow Identifier.
Newman, et. al. Informational [Page 15]
^L
RFC 1953 IFMP Specification May 1996
Flow Identifier
Field contains the Flow Identifier from the Reclaim message
element that requested the release of the label specified
in the Label field.
A Reclaim Ack message element must be sent in response to each
Reclaim message element received. It is sent to indicate that the
requested flow is now unbound and that the label is now free. If
possible, each Reclaim Ack message element should not be sent until
all data queued for transmission on the link, using the label
specified for release, has been sent.
If a Reclaim Ack message element is received specifying a flow for
which no Reclaim message element was issued, that Reclaim Ack message
element must be ignored, but no other Reclaim Ack message elements in
the same message must be affected.
If a Reclaim Ack message element is received specifying a different
label from the one sent in the original Reclaim message element for
that flow, the Reclaim Ack message element should be handled as if
the reclaim operation were successful.
If an error is detected in any of the fields of a Reclaim Ack message
element, that message element must be discarded, but no other Reclaim
Ack message elements in the same message must be affected.
The receiver should return an Error message to the sender only in the
case that the receiver does not understand the version of the IFMP
protocol in the received message or does not understand a Flow Type
in one of the Reclaim Ack message elements.
4.4 Label Range Message
The Label Range message element is sent in response to a Redirect
message if the label requested in one or more of the Redirect message
elements is outside the range that the receiver of the Redirect
message can handle. The Label Range message informs the sender of
the Redirect message of the label range that can be handled on the
relevant link.
Only a single Label Range message element is permitted in a Label
Range message. The Label Range message element has the following
structure:
Newman, et. al. Informational [Page 16]
^L
RFC 1953 IFMP Specification May 1996
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Minimum Label |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Maximum Label |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Minimum Label
The minimum value of label that can be specified in an IFMP
Redirection Protocol message across this link.
Maximum Label
The maximum value of label that can be specified in an IFMP
Redirection Protocol message across this link.
All values of label within the range Minimum Label to Maximum Label
inclusive may be specified in an IFMP Redirection Protocol message
across the link.
4.5 Error Message
An Error message can be sent by a node in response to any IFMP
Redirection Protocol message.
Only a single Error message element is permitted in an Error message.
The Error message element has the following structure:
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
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
| Error Code | Parameter |
+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+
Error Code
Specifies which an error has occurred.
Each Error message can specify a single Parameter.
Newman, et. al. Informational [Page 17]
^L
RFC 1953 IFMP Specification May 1996
Two Error message elements are specified:
Bad Version:
Error Code = 1. The sender of the Error message cannot process the
version of the IFMP protocol of the message that caused the
error. This message must only be sent if the version of
the message that caused the error is greater than the most
recent version that the sender of the Error message can
process. The parameter field of this Error message gives
the most recent version of the IFMP protocol that the
sender can process, right justified, with the unused most
significant bits of the Parameter field set to zero.
Bad Flow Type:
Error Code = 2. The sender of the Error message does not understand a
Flow Type that was received in the message that caused the
error. The Flow Type that caused the error is given in the
parameter field, right justified, with the unused most
significant bits of the Parameter field set to zero.
Newman, et. al. Informational [Page 18]
^L
RFC 1953 IFMP Specification May 1996
REFERENCES
[ENCAP] Newman, P., et. al., "Transmission of Flow Labelled IPv4
on ATM Data Links Ipsilon Version 1.0," Ipsilon Networks,
RFC 1954, May 1996.
[RFC793] Postel, J., "Transmission Control Protocol," STD 7, RFC
793, September 1981.
SECURITY CONSIDERATIONS
Security issues are not discussed in this memo.
AUTHORS' ADDRESSES
Peter Newman Phone: +1 (415) 846-4603
Ipsilon Networks, Inc. EMail: pn@ipsilon.com
W. L. Edwards, Chief Scientist Phone: +1 (913) 534 5334
Sprint EMail: texas@sprintcorp.com
Robert M. Hinden Phone: +1 (415) 846-4604
Ipsilon Networks, Inc. EMail: hinden@ipsilon.com
Eric Hoffman Phone: +1 (415) 846-4610
Ipsilon Networks, Inc. EMail: hoffman@ipsilon.com
Fong Ching Liaw Phone: +1 (415) 846-4607
Ipsilon Networks, Inc. EMail: fong@ipsilon.com
Tom Lyon Phone: +1 (415) 846-4601
Ipsilon Networks, Inc. EMail: pugs@ipsilon.com
Greg Minshall Phone: +1 (415) 846-4605
Ipsilon Networks, Inc. EMail: minshall@ipsilon.com
Newman, et. al. Informational [Page 19]
^L
RFC 1953 IFMP Specification May 1996
Ipsilon Networks, Inc. is located at:
2191 East Bayshore Road
Suite 100
Palo Alto, CA 94303
USA
Sprint is located at:
Sprint
Sprint Technology Services - Long Distance Division
9300 Metcalf Avenue
Mailstop KSOPKB0802
Overland Park, KS 66212-6333
USA
Newman, et. al. Informational [Page 20]
^L
|