forked from pedromj/idnet
-
Notifications
You must be signed in to change notification settings - Fork 2
/
draft-yan-idnet-consideration-00.xml
983 lines (810 loc) · 44.4 KB
/
draft-yan-idnet-consideration-00.xml
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
<?xml version="1.0" encoding="US-ASCII"?>
<!-- This template is for creating an Internet Draft using xml2rfc,
which is available here: http://xml.resource.org. -->
<!DOCTYPE rfc SYSTEM "rfc2629.dtd" [
<!-- One method to get references from the online citation libraries.
There has to be one entity for each item to be referenced.
An alternate method (rfc include) is described in the references. -->
<!ENTITY RFC2119 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.2119.xml">
<!ENTITY RFC2629 SYSTEM "http://xml.resource.org/public/rfc/bibxml/reference.RFC.2629.xml">
]>
<?xml-stylesheet type='text/xsl' href='rfc2629.xslt' ?>
<!-- used by XSLT processors -->
<!-- For a complete list and description of processing instructions (PIs),
please see http://xml.resource.org/authoring/README.html. -->
<?rfc strict="yes" ?>
<!-- give errors regarding ID-nits and DTD validation -->
<!-- control the table of contents (ToC) -->
<?rfc toc="yes"?>
<!-- generate a ToC -->
<?rfc tocdepth="3"?>
<!-- the number of levels of subsections in ToC. default: 3 -->
<!-- control references -->
<?rfc symrefs="yes"?>
<!-- use symbolic references tags, i.e, [RFC2119] instead of [1] -->
<?rfc sortrefs="yes" ?>
<!-- sort the reference entries alphabetically -->
<!-- control vertical white space
(using these PIs as follows is recommended by the RFC Editor) -->
<?rfc compact="yes" ?>
<!-- do not start each main section on a new page -->
<?rfc subcompact="no" ?>
<!-- keep one blank line between list items -->
<!-- end of list of popular I-D processing instructions -->
<rfc category="info" docName="draft-yan-idn-consideration-00"
ipr="trust200902">
<front>
<title abbrev="draft-yan-idn-consideration-00">A General Considerations of
Intelligence Driven Network</title>
<author fullname="Shen Yan" initials="S." surname="Yan">
<organization>Huawei</organization>
<address>
<postal>
<street>Beiqing</street>
<city>Beijing</city>
<region>Haidian</region>
<code>100095</code>
<country>China</country>
</postal>
<email>[email protected]</email>
</address>
</author>
<author fullname="Pedro Martinez-Julia" initials="P."
surname="Martinez-Julia">
<organization>NICT/Japan</organization>
<address>
<postal>
<street/>
<city/>
<region/>
<code/>
<country/>
</postal>
<phone/>
<facsimile/>
<email>[email protected]</email>
<uri/>
</address>
</author>
<author fullname="Albert Cabellos-Aparicio" initials="A."
surname="Cabellos-Aparicio">
<organization>Technical University of Catalonia</organization>
<address>
<postal>
<street/>
<city/>
<region/>
<code/>
<country/>
</postal>
<phone/>
<facsimile/>
<email>[email protected]</email>
<uri/>
</address>
</author>
<date day="30" month="October" year="2017"/>
<area>none</area>
<workgroup>none</workgroup>
<keyword>Use Case; IDN Architecture</keyword>
<abstract>
<t>This document aims to pinpoint the work scope of Intelligence Driven
Network (IDN) and mine the potential standardization work. Firstly, the
problems and new requirements for the existing methods are analyzed.
Numbers of high value use-cases are proposed as examples to instantiate
them. A benchmark framework design is proposed, which is important
during the machine learning and inference process. Finally, a reference
model of IDN is proposed, based on which the potential standardization
work is analyzed.</t>
</abstract>
<note title="Requirements Language">
<t>The key words "MUST", "MUST NOT", "REQUIRED", "SHALL", "SHALL NOT",
"SHOULD", "SHOULD NOT", "RECOMMENDED", "NOT RECOMMENDED", "MAY", and
"OPTIONAL" in this document are to be interpreted as described in <xref
target="RFC2119"/> when they appear in ALL CAPS. When these words are
not in ALL CAPS (such as "should" or "Should"), they have their usual
English meanings, and are not to be interpreted as <xref
target="RFC2119"/> key words.</t>
</note>
</front>
<middle>
<section anchor="intro" title="Introduction">
<t>Recently, AI technology has made a great achievement and become more
and more popular. The combination of AI and network is also a hot topic.
The concept of Intelligence Driven Network (IDN) has been proposed. This
concept is intended to describe the schemes that introducing AI into
network and provide new solutions for the current and future network
problems. There has been quite a lot of discussions about the AI
application in the network in both academic and industrial area.
However, the detail works, especially the potential standard points are
still not clear. </t>
<t>In this document, we want to summerize the valuable content in the
idnet maillist and make clear about the following. </t>
<t><list style="symbols">
<t>What are the requirements? In network area, what problems need AI
to solve? It always makes misunderstanding that AI is almighty. But
it is factual that AI has both advantages and disadvantages. The
work scope and scenarios, which AI may be useful and perform well,
will be discussed and analyzed. </t>
<t>What are the gap when combining AI and network? The modern AI
algorithms are proposed by image processing area but not network.
Most of the algorithms cannot be migrated and used directly. Take
the data format as an example. The input and output of the AI
algorithm may be just numerical matrix or vector. The network data
are not entirely formatted and regular. They need to be translated
or converted before and after the algorithm. The gaps, like the data
format, data orchestration and etc., will be analyzed.</t>
<t>What are the potential and new standard points? The intruduction
of AI will bring new requirements for the current network. For
example, the AI engine may need high frequency and high accuracy
data to feed. Moreover, these data needs to be captured and
transmitted in real-time and continuously. What improvements should
be accomplished for the existing protocols? Whether there are new
protocol requirements? What communication processes are universal
and what kinds of data format that can be utilized in most of the
scenarios?</t>
</list>This document aims to become the blueprint for the future work.
The structure is organized as following. Section 2 describes the work
scope of idnet and summerize the use cases. Section 3 indicates the
analysis of measurement and data format. Section 4 discusses about the
benchmark of data. Section 5 abstracts the IDN architecture and gives a
brief analysis of potential standard points. Section 6 points out the
new security challenge which AI brings to the network. Section 7 to 9
are IANA, Acknowledgements and References.</t>
<t>TBD</t>
</section>
<section title="Scope and use cases">
<t>TBD</t>
<section title="Scope">
<t>A general description about what should be focused during the IETF
work and what should not. Clarify the work boundary. TBD</t>
</section>
<section title="High Value Use Cases">
<t>There are numbers of use cases, which have been discussed in the
idnet mail list. Describe the scenarios that may be useful and
valuable. A details analysis may be helpful for the data and protocol
design.</t>
<section title="Traffic Prediction">
<t>Collect the history traffic data and external data which may
influence the traffic. Predict the traffic in short/long/specific
term. Avoid the congestion or risk in previously.</t>
<t>The process, data format and message needs are:</t>
<t>Process: 1. Data collection (e.g. traffic sample of
physical/logical port ); 2. Training Model; 3. Real-time data
capture and input; 4. Predication output; 5. Fix error and go back
to 3.</t>
<t>Data Format:</t>
<t><list style="empty">
<t>Time : [Start, End, Unit, Number of Value, Sampling
Period]</t>
<t>Position: [Device ID, Port ID]</t>
<t>Direction: IN / OUT</t>
<t>Route : [R1, R2, ..., RN] (might be useful for some
scenarios)</t>
<t>Service : [Service ID, Priority, ...] (Not clear how to use
it but seems useful)</t>
<t>Traffic: [T0, T1, T2, ..., TN]</t>
<t>Message : <list style="empty">
<t>Request: ask for the data</t>
<t>Reply: Data</t>
<t>Notice: For notification or others</t>
<t>Policy: Control policy</t>
</list></t>
</list></t>
</section>
<section title="QoS management">
<t>It is worthy to predict the traffic change for avoiding the
congestion and ensuring QoS. As the following figure shown, the AI
system continuously collects link status data from the network. This
AI system is responsible for two things. One is monitoring and
predicting the traffic on each link and the other one is calculating
the usable route for any pair of nodes according to the prediction
and current link status. Assume that there is a VPN named VPN_S_D
from node S to D which pass through S-A-B-C-D. According to the
prediction, there will be a huge traffic flow from node A to C in
the future 10 min. The traffic will increase the end-to-end delay
from S to D so that the QoS will not be ensured.</t>
<t><figure>
<artwork><![CDATA[ x x
_ A ---- B ---- C._ link status +----------+
,' \ / `. =============>|IDN Engine|
-' \ / `- +----------+
S ------I ---- J ---- K ---- D
. / \ ,'
`. / \ ,'
' O ---- P ---- Q ']]></artwork>
</figure></t>
<t>There are at least two solutions. one is modifying the object's
configuration to avoid the potential congestion. For example, we
modify the VPN_S_D route from S-A-B-C-D to S-I-J-K-D. The other one
is restricting non-object's transmission so that to protect the
object's QoS. For example, we increase the reserved bandwidth of
VPN_S_D or modify the route of non-object flows from S-A-B-C-D to
S-I-J-K-D therefore most of the traffic will not affect VPN_S_D.</t>
<t>Here we may have some challenges. Challenge 1 is the AI
prediction and autonomic decision should be a quick response. The
whole process must be finished before the congestion happens
meanwhile the AI system is meaningless. The question is how to
implement such quick response? Challenge 2 is whether there is
existing protocols which can support high frequency measurement?
Because AI system needs to be fed with continuous link status data.
And the real-time data need to be captured frequently otherwise the
route change will be worthless. I think the protocols that support
high frequency measurement and data collection may become one of our
focus point.</t>
<t>The process, data format and message needs are:</t>
<t>Process: 1. Data capture (e.g. traffic sample of physical/logical
port ); 2. Training Model; 3. Real-time data capture and input; 4.
Output percentages; 5. Fix error and go back to 3.</t>
<t>Data Format:</t>
<t><list style="empty">
<t>Time : [Timestamp, Value type (Delay/Packet Loss/...), Unit,
Number of Value, Sampling Period]</t>
<t>Position: [Link ID, Device ID]</t>
<t>Value: [V0, V1, V2, ..., VN]</t>
<t>Message : <list style="empty">
<t>Request: ask for the data</t>
<t>Reply: Data</t>
<t>Notice: For notification or others</t>
<t>Policy: Control policy</t>
</list></t>
</list></t>
</section>
<section title=" Deep Reinforcement-Learning Control of the Network">
<t>Recently important breakthroughs have been achieved in the area
Deep-Reinforcement Learning (DRL) [REF1] architectures where agents
can be trained online to operate complex environments and achieve
quasi-optimal configurations. In this context, a DRL can be used to
control the routing of the network and achieve the target policy set
by the administrators (e.g., [REF2, REF3, REF4]).</t>
<t>The following figure describes a common architecture of a DRL
operating a network. The agent acts upon the network (action) by
changing the configuration, this results in the network changing its
fundamental state (e.g, different per-link utilization and a
different traffic load). Finally, the reward function is defined by
the operator and represents the target performance (e.g.,
load-balance the traffic in the network). The agent will learn how
to act upon the network to maximize the expected reward
function.</t>
<t><figure>
<artwork><![CDATA[ +---------------+
+------------------> |
| | Agent +---------------------+
| +---------------> | |
| | +---------------+ |
| | |
State | | |
| | Reward Function (Policy) Action |
| | |
| | |
| | |
| | +------------------------------------+ |
| +----+ | |
+-------+ Network <-----------+
| |
+------------------------------------+]]></artwork>
</figure>The main operational advantages of DRL agents with
respect to existing optimization techniques are:</t>
<t><list style="numbers">
<t>DRL are able to learn and generalize from past experience to
provide solutions to unseen scenarios. This is not possible
using existing optimization techniques that do not learn from
the past.</t>
<t>Once trained, either offline or online, DRL agents can
optimize in one single step. On the contrary, existing
optimization techniques require to run iteratively each time a
new scenario is found, for instance when a link goes down or the
traffic changes in a significant way. It is worth noting that a
common practice is to run such techniques in advance of common
scenarios and store their resulting configurations, however it
is very complex to consider all the potential scenarios.</t>
<t>DRL agents see the network as a black-box and do no need any
prior assumption about the system. However heuristics, very
commonly used in optimization strategies, are tailored for the
problem they are trying to optimize. However, an operator only
needs to change the reward function to implement a different
target network policy.</t>
</list></t>
<t>In what follows we describe the process, data format and messages
needed assuming a DRL agent that seeks to load-balance the traffic
of the network that is, to minimize the maximum loaded link. This is
a very common optimization strategy.</t>
<t>Process: 1.- Act upon the network by changing the routing
configuration, for instance using a standard mechanism. 2.- Receive
the state of the network, this is the per-link delay and the current
traffic load. 3.- Compute the reward function as a function of the
state. 4.- Deep Reinforcement Learning training. 5.- Go back to step
1.</t>
<t>Data Format</t>
<t><list style="empty">
<t>(state) Per-Link Utilization: [link id, utilization,
averaging time]</t>
<t>(action) Change on the routing configuration. This can be
done through the SDN controller and/or other standard
mechanisms.</t>
<t>(reward) This is an algorithm that has as input the state and
as output a value that represents how close we are to the target
policy set by the operator. More about this can be found in the
next section.</t>
<t>Messages:</t>
<t><list style="empty">
<t>State: Measure the per-link utilization</t>
<t>Action: Change the routing configuration</t>
</list></t>
</list></t>
<section title="The Reward Function as the Network Policy ">
<t>The agent seek to maximize the expected reward function and it
represents the target policy that the agent will aim to achieve
and configure on the network. In this context the reward function
is the mathematical representation of the target network policy.
However, the entire architecture includes a set of different
pieces that may come from different vendors but must interoperate,
the pieces are: the agent itself, the reward function and the
state. This requires the following standardization efforts:</t>
<t><list style="numbers">
<t>The reward function and its translation from the
human-readable target network policy. The operators may want
to use different vendor DRL agents that need to understand the
reward function. Please note that the reward function depends
on the representation of the state.</t>
<t>The state includes monitoring information about the
network, such as the per-link utilization or the traffic load.
Since the state is an input of the agent and is used in the
reward function, there is a need for standard representation
so that the different pieces can interoperate.</t>
</list></t>
</section>
</section>
<section title="QoE Management via Supervised Learning">
<t>Networks can measure low-level metrics, such as delay, jitter and
losses. However users perceive the performance of the network based
on QoE metrics, such as Mean Opinion Scores. Unfortunately, QoE
metrics cannot be typically directly measured over the wire and as
such, need the subjective views of the users. The challenge is then
to operate the network based on low-level metrics while fulfilling
non-measurable QoE metrics. One of the main reason behind this
challenge is that the relationship between the low-level and the QoE
metrics are very complex, i.e. multi-dimensional and non-lineal.</t>
<t><figure>
<artwork><![CDATA[ +-------------+ +---------------------+
| Supervised | Extract |Relation between QoE |
| Learning +-Knowledge-->and low-level network+-------+
| | |metrics | |
+------^------+ +---------------------+ |
+ |
Learn |
| Install Knowledge
| |
+----------+--------------+ +-----------------v-----+
| Network Analytics | | |
| (including Ground Truth)| | Network Management |
| | | |
+----------+--------------+ +-----------------------+
^ |
| |
| +-------------+ |
| | | |
+-----Monitor-------+ Network <----Operate----+
| |
+-------------+]]></artwork>
</figure></t>
<t>For this a well-established technique (e.g., see [REF5] and the
references therein) is to follow the architecture depicted in the
following figure. First the network low-level metrics are measured
using telemetry, this information is stored in the Network Analytics
platform. In addition to this users and or applications are polled
to obtain QoE metrics of the network. The data-set containing both
the low-level metrics and the QoE metrics is considered the ground
truth.</t>
<t>By means of supervised learning (e.g., deep neural networks) we
aim to learn the relation between the low-level and the QoE metrics.
As an example we aim to learn the relation between the amounts of
losses in different wireless links, the SNR and the utilization with
the perceived MoS. Typically it has been shown that such
relationship is non-lineal and multi-dimensional and as such, can be
understood by a neural network. This relationship is the knowledge
that we extract from the ground truth and it is used by the Network
Management (NM) module. By means of this knowledge, the NM can
understand how to operate the network based on low-level metrics
(e.g., keep losses below a certain threshold) to fulfill QoE
requirements.</t>
<t/>
</section>
<section title="TBD">
<t/>
</section>
</section>
</section>
<section title="Measurement and Data Format">
<t>TBD</t>
<t/>
<section title="Measurement Tools and Methods">
<t>The modern AI algorithms are mostly based on data-driven, which
means that the AI engine needs quite plenty of data to feed and
upgrade. In other words, higher frequency and accuracy data is
required. The high scalability requirement needs distributed
measurement tools to provide such abilities. The traditional methods
and improvements may hardly support.</t>
<t>Firstly, the current measurement methods mostly orient to the
service. For example, the voice service requires the end to end delay
and jitter in a low level. Besides that, the AI engine may need more
data from both network and other sources. For example, the QoE and
identity information may influence the AI engine to make different
decisions. The current measurement tools and data model cannot support
this ability. Thus, the potential usable tools and methods, such as
high frequency, high precision, new KPIs and so on, may need to
develop.</t>
<t>Secondly, the current measurement methods mostly cannot support
high frequency measurement. Even though it can, the data feedback
scheme is commonly closed. The word "closed" means that the measured
data is commonly sent to the device which launches the measure action
rather than the data demander (AI Engine). The future measurement
tools require more programmability, especially in the data feedback
scheme.</t>
<t>TBD.</t>
<t/>
</section>
<section title="Data Format Analysis">
<t>There is huge gap between the current network data and algorithm
data. The network data, such as IP address, delay, link utilization
and etc., is mostly semantic. It means that each data actually
describe a specific physical or logical entity. For example, one IP
address means a certain location or a certain host in the network.
However, the input and output data of an algorithm is usually
non-semantic, which means it is not responding to a specific
concept/action/device that can be found in the network. This depends
on the fundamental design of AI algorithm and is hardly changed in the
short term.</t>
<t>Another issue is that the AI engine potentially needs to obtain
data from external sources. For the data that can be provided one-off,
it is easily solved according to the application. For the data that
needs to be provided continuously (e.g. the real-time external data),
it is required to define the data format that satisfy the algorithm.
Similarly, the output of algorithm may need to be translated into
specific format that the next step devices can run and execute.
Otherwise, it is hard to build up the full autonomic close loop of the
network management. In other words, the data aggregation process is
important and it is valuable to build the bridge between the network
data and algorithm data.</t>
<t>TBD.</t>
</section>
</section>
<section title="Benchmarking Framework">
<t>A standard benchmarking framework is required to assess the quality
of an AI mechanism when it is used to resolve a specific problem in the
network management and control area. It comprises a reference set of
procedures, methods, models, and boundary values that *must* be enforced
to the benchmarked mechanism, so that its operation can be comparable to
other mechanisms and users can easily understand what to expect from
each one.</t>
<t>Moreover, both the metrics included as a reference within the
benchmarking framework and the results obtained from its application to
a new mechanism must follow a standard format. Therefore, the standard
formats must be enforced to all data, either being introduced to the
benchmarking application or system (consumed), or obtained from its
application (produced).</t>
<t>A common and decentralized "data market" can (and would) arise from
the inclusion, dependency, and the general relation of all data,
considering it is represented using the same concepts (ontology) and the
standard format mentioned here. As a reference, it is worth to mention
that a similar approach has been already applied to genome and protein
data to build standardized and easily transferable data banks
[PMJ1][PMJ2] [PMJ3], and they have demonstrated to be key enablers in
their respective work areas.</t>
<t>The initial scope of input/output data would be the datasets, but
also the new knowledge items that are stated as a result of applying the
benchmarking procedures defined by the framework, which can be collected
together to build a database of benchmark results, or just contrasted
with other existing entries in the database to know the position of the
solution just evaluated. This increases the usefulness of IDNET.</t>
<t/>
</section>
<section anchor="Security"
title="References Model and Potential Standardization Points">
<t/>
<section title="References Model">
<t>A three layers reference model of IDN has been proposed as follow.
This architecture can cover, explain and support most of the current
use cases and scenarios.</t>
<t><figure>
<artwork><![CDATA[ +-----------+ +----------+
|Open |------------------------->| |
|Application| +---------------------+3rd Party |-+
|Interface | | IDN Engine |Algorithm | |
+-----------+ | +---------+ +-----+ |Interface | |
+------------+ | |Algorithm| |Model| | | |
|Data Refiner+-->| +---------+ +-----+ +----------- |
+------------+ +----------------------------------+
^ | Training | Inference |
Intelligent | +----------------------------------+
Layer +-----------------+ |
| | v
+-------------+ +-------------+ +-------------+
|External Data| |Internal Data| | Policy |
|Interface | |Interface | | Generator |
+-------------+ +-------------+ +-------------+
^ ^ |
| | v
+----------+ +-------------+ +----------------+
Control |3rd Party | |Aggregating |--->|Control Function|
Layer |Dataset | |Dataset | +----------------+
+----------+ +-------------+ | Inference |
^ ^ +----------------+
| | |
| | |
| | v
+-------------+ +-----------+ +------------+
Infras- |Terminal/User| |Measurement| | Network |
tructure|Device |--->|Function |<-----| Function |
Layer +-------------+ +-----------+ +------------+ ]]></artwork>
</figure></t>
<t>The under layer is Infrastructure layer, which contains network
function, measurement function and terminal/user device. The network
function stands for the traditional routers, switches and other
network devices, which are responsible for constructing the network
foundations and forwarding data. The Measurement function stands for
devices that can collect information from the network and various
devices. A popular option are probe system, which is deployed
distributed among the network. Besides that, some of the network
devices integrate the measure function and play two roles. The
information may involve but not limited the content listed in
following table. The Terminal/User Device stands for the device that
produces and consumes data, which may include PC, smart phone,
datacenter, content storage server, cloud and etc. Some of the data
produced by terminal/user devices is measurable. This type of data
will be captured by the measurement function. Other types of data that
cannot be measured directly by network measurement functions is
represented as 3rd party datasets, which hopefully can be utilized in
the future via 3rd party integration at the intelligence layer.</t>
<t><figure>
<artwork><![CDATA[-----------------------------------------------------------------
Type Content
-----------------------------------------------------------------
Network Data Delay, Jitter, Packet Lose Rate,
Link Utilization, ...
Device Data Device Configuration, VPN Configuration,
Slicing Configuration, ...
User Data QoE Feedback, User Information, ...
Data Packet Packet Sample, Packet Character, ...
Other Type TBD
-----------------------------------------------------------------]]></artwork>
</figure></t>
<t>The middle layer is Control Layer, which contains Control Function,
Dataset Aggregation (Function) and 3rd Party Dataset. The control
function stands for entities that can control, configure and operate
devices, especially network devices. In SDN, controller and
orchestrator are control functions. Classical network devices such as
routers integrate the forwarding and control functions (although as of
today not with many instances of intelligent control functions).
Classical routers therefore include functions from two layers. We
foresee that the control function will most likely only perform
intelligent inference, but not learn. For example, to execute neural
networks, but do not train them. This is only an assumption at this
time though and may prove to be wrong in the future when training
becomes something easier defined into the control layer.</t>
<t>The aggregated dataset function owns the ability to gather and tidy
the data. The database or database cluster is the typical example.
Some of the control devices, such as SDN controller, integrate this
function. Distributed instances aggregate data have also been defined.
The network data can be directly sent back to the control function in
support of network policies. For example, the controller can adjust
the flow table according to the local cache which collects the network
data periodically from the devices in its controlled area. The 3rd
party dataset involves the data that may be provided by all kinds of
applications or services. For example, the content provider may own
social contact data and the map service provider may own the
geographic data. This information does not belong to the network but
could be very helpful for intelligent analytics and decision making in
the network – which is why we device in the architecture the
ability to communicate it between 3rd parties and the network.</t>
<t>The high layer, which is also the main body of IDN, is the
Intelligence Layer. This layer is commonly deployed in the datacenter,
or large scale computing centre that can support massive storage and
computing resources. To the south direction, there are two interfaces
which provides external data (3rd party data oriented) and internal
data (network data oriented) access. We define a data refiner
component to emphasize the need to adopt format and structure of
various types of collected information to the needs of the IDN
Engine.</t>
<t>The core of the IDN Engine are algorithm and model. The IDN Engine
can be built based on the result of the large body of research and
platform development work that already exists (albeit mostly developed
for and deployed with non-network data). The platform should be agile
extensible for future services, therefore we define a 3rd party
Algorithm Interface to provide an adaptive developing ability. The
user (or a 3rd party) may develop his/her own algorithms and upload
then onto the IDN Engine via a northbound Open Application Interface.
Additional Northbound Open Application interfaces can also be used to
connect other software platforms to the IDN Engine to create a
cooperation between multiple systems (not shown).</t>
<t>The output of IDN Engine is transmitted to the Policy Generator.
Since the policy language might be machine readable or unreadable, the
Policy Generator is responsible for generating the executable commands
and connect to the control devices. This process refers to the
interactions of northbound interface of control devices – which
is what often gets standardized. Therefore, some of the potential
standardization points will be mentioned in the following.</t>
<t/>
</section>
<section title="Measurement">
<t>In IDN, the intelligent system (or database) needs frequent and
repeat measurement to obtain the link information. A fast measure and
feedback protocol is needed to meet the requirement of measurement and
data collecting. It may be based on SNMP or an absolutely new
protocol. The intelligent system needs massive data to feed and
support to formulate the policy and decision. Therefore, the
measurement must be satisfy the data requirement of IDN. Firstly,
there may be higher-level requirement for the existing measuring
technology. The high timeliness is one of the potential point. The
IDN’s control function needs accurate, global and highly
real-time network data support. The current measure technology can
only satisfy at least two characters of the three. Secondly, the IDN
may need more kinds of data type to measure. Not only the delay,
jitter and packet loss rate, but also the link utilization and other
necessary parameters.</t>
<t/>
</section>
<section title="Data representation, transport and aggregation">
<t>The data representation is significant. Most of the current AI
algorithms were born in the pattern recognition area, especially the
image processing. The advantage of these algorithms is that they are
very good at dealing with complex problems, especially mining and
modeling the hidden relationship among the non-semantic data. One of
the disadvantages is that almost all the algorithms require the
training data has a high concordance. Fortunately, the image file
instinctively owns this character. All the images can be expressed as
uniform binary vectors or can be easily transformed into uniform
format. But this condition is hardly satisfied in network area.</t>
<t>A uniform data format is required, which can implement the
justification, correlation and affiliation of the data. Which may
obtain the best performance of AI algorithm to mine the valid pattern
hidden in the data. Since the intelligent system is data-driven, and
the data resources are from different kind of vendors and device
types, the data representation SHALL be consistent so that the
intelligent system could merge the data and do the analysis/learning.
Also, the data collection interface might also need to be standardized
so that the interface is able to get the data the intelligent system
needs.</t>
<t>Moreover, it is significant to standard the policy representation.
Since there may multiply SDN controller system, a readable and uniform
policy representation is valuable to improve the policy deploying
efficiency and simplify the communication between controllers on the
East-West direction.</t>
<t/>
</section>
<section title="Legacy Device Route control">
<t>Similar with IPv4/IPv6 transition, the IDN potentially faces to the
legacy problem, which means that the new devices and functions will
co-work with the legacy devices. Therefore, it is potentially required
to design the control protocols to solve the transition problems.</t>
<t/>
</section>
<section title="TBD">
<t>TBD</t>
<t/>
</section>
</section>
<section title="Security Considerations">
<t>When security relevant decisions are made based on the use of
intelligent analytics or automated intelligent decision making, care
must be taken to understand the new security challenges. When for
example more intelligent decisions are enabled through the collection of
ever more data, it needs to be analyzed how that potentially enables
attackers to easier feed data that derails the intelligent system
ability to distinguish good from bad behavior.</t>
<t>TBD</t>
<t/>
</section>
<section anchor="iana" title="IANA Considerations">
<t>There is no IANA action required by this document.</t>
<t/>
</section>
<section anchor="ack" title="Acknowledgements">
<t>TBD</t>
</section>
</middle>
<back>
<references title="Normative References">
<?rfc include='reference.RFC.2119'?>
<?rfc include='reference.RFC.1195'?>
<?rfc include='reference.RFC.5301'?>
<?rfc include='reference.RFC.5304'?>
<?rfc include='reference.RFC.5305'?>
<?rfc include='reference.RFC.5308'?>
<reference anchor="ISO_IEC10589">
<front>
<title>Intermediate system to Intermediate system intra-domain
routeing information exchange protocol for use in conjunction with
the protocol for providing the connectionless-mode Network Service
(ISO 8473), ISO/IEC 10589:2002, Second Edition.</title>
<author fullname="ISO "International Organization for Standardization""/>
<date month="Nov" year="2002"/>
</front>
</reference>
</references>
<references title="Informative References">
<reference anchor="PMJ1" target="https://www.ncbi.nlm.nih.gov/genome/">
<front>
<title/>
<author>
<organization/>
</author>
<date/>
</front>
</reference>
<reference anchor="PMJ2" target="https://www.ncbi.nlm.nih.gov/genbank/">
<front>
<title/>
<author>
<organization/>
</author>
<date/>
</front>
</reference>
<reference anchor="PMJ3" target="https://www.rcsb.org/pdb/home/home.do">
<front>
<title/>
<author>
<organization/>
</author>
<date/>
</front>
</reference>
<reference anchor="REF1">
<front>
<title>Human-level control through deep reinforcement learning.
Nature, 518(7540), pp.529-533.</title>
<author fullname="Mnih, V., Kavukcuoglu, K., Silver, D., Rusu, A.A., Veness, J., Bellemare, M.G., Graves, A., Riedmiller, M., Fidjeland, A.K., Ostrovski, G. and Petersen, S.">
<organization/>
</author>
<date year="2015"/>
</front>
</reference>
<reference anchor="REF2">
<front>
<title>A Deep-Reinforcement Learning Approach for Software-Defined
Networking Routing Optimization. arXiv preprint
arXiv:1709.07080.</title>
<author fullname="Stampa G, Arias M, Sanchez-Charles D, Muntes-Mulero V, Cabellos A.">
<organization/>
</author>
<date day="20" month="September" year="2017"/>
</front>
</reference>
<reference anchor="REF3">
<front>
<title>A roadmap for traffic engineering in SDN-OpenFlow networks.
Computer Networks, 71(C):1–30</title>
<author fullname="Ian F Akyildiz, Ahyoung Lee, Pu Wang, Min Luo, and Wu Chou">
<organization/>
</author>
<date month="October" year="2014"/>
</front>
</reference>
<reference anchor="REF4">
<front>
<title>Packet routing in dynamically changing networks: A
reinforcement learning approach. In Advances in neural information
processing systems, pages 671–678,</title>
<author fullname="Justin A Boyan and Michael L Littman">
<organization/>
</author>
<date year="1994"/>
</front>
</reference>
<reference anchor="REF5">
<front>
<title>A machine learning approach to classifying YouTube QoE based
on encrypted network traffic. Multimedia Tools and
Applications</title>
<author fullname="Orsolic I, Pevec D, Suznjevic M, Skorin-Kapov L">
<organization/>
</author>
<date month="January" year="2017"/>
</front>
</reference>
<?rfc ?>
<?rfc ?>
</references>
</back>
</rfc>