summaryrefslogtreecommitdiffstats
path: root/doc/book-enea-nfv-access-cmc-example-usecases/doc/service_chaining_128t_fortigate.xml
blob: 856f7ee1734d0e8f0bcd9230335f0daa1c627f46 (plain)
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
<?xml version="1.0" encoding="ISO-8859-1"?>
<chapter id="service_chaining_128t_fortigate">
  <title>Service Chaining 128T - Fortigate Example Use-case</title>

  <para>The term service chaining or service function chaining (SFC) is used
  to describe the definition and instantiation of an ordered list of instances
  of such service functions and the subsequent "steering" of traffic flows
  through those service functions. The set of enabled service function chains
  reflects operator service offerings and is designed in conjunction with
  application delivery and service and network policy.</para>

  <para>The Network Service Header (NSH - RFC 8300) is a service-chaining
  protocol that is added to network traffic, in the packet header, to describe
  a sequence of service nodes (PNFs or VNFs) that the packet must be routed to
  prior to reaching its destination address, thus creating a service
  chain.</para>

  <section id="prereq_serv_chain_cmc">
    <title>Prerequisites</title>

    <para>The 128T router and the Fortinet firewall in a service chain require
    the following prequisites for this example use case:</para>

    <itemizedlist spacing="compact">
      <listitem>
        <para>1 in band management port for device management.</para>
      </listitem>

      <listitem>
        <para>1 in band management port for the 128T router.</para>
      </listitem>

      <listitem>
        <para>1 in band management port for Fortinet.</para>
      </listitem>

      <listitem>
        <para>1 WAN interface for Fortinet.</para>
      </listitem>

      <listitem>
        <para>1 LAN facing interface for Fortinet.</para>
      </listitem>

      <listitem>
        <para>1 WAN facing interface for the 128T router.</para>
      </listitem>

      <listitem>
        <para>1 service chain (SFC Bridged interface) to sit between the
        Firewall and vRouter.</para>
      </listitem>
    </itemizedlist>
  </section>

  <section id="ser_chain_uc">
    <title>Service Chaining 128T - Fortigate</title>

    <figure>
      <title>Service Chaining 128T - Fortigate Setup Overview</title>

      <mediaobject>
        <imageobject>
          <imagedata contentwidth="600"
                     fileref="images/kontron_me1100_servicechain.png" />
        </imageobject>
      </mediaobject>
    </figure>

    <section>
      <title>Use-case Setup</title>

      <para><emphasis role="bold">Configuring Network Interfaces on uCPE
      devices:</emphasis><orderedlist>
          <listitem>
            <para>Log into the uCPE Manager with both username and password
            values: <literal>admin</literal>.</para>
          </listitem>

          <listitem>
            <para>Add the Kontron me1100 uCPE device into the uCPE Manager:
            <literal>Devices -&gt; Manage -&gt; Add</literal>.</para>

            <para>Fill in the required fields with the following data:</para>

            <table>
              <title>Device Details</title>

              <tgroup cols="2">
                <colspec align="left" />

                <colspec colwidth="2*" />

                <colspec colwidth="5*" />

                <thead>
                  <row>
                    <entry align="center">Field</entry>

                    <entry align="center">Value</entry>
                  </row>
                </thead>

                <tbody>
                  <row>
                    <entry>Type</entry>

                    <entry>Enea universal CPE</entry>
                  </row>

                  <row>
                    <entry>Release</entry>

                    <entry>1.0</entry>
                  </row>

                  <row>
                    <entry>Name</entry>

                    <entry>me1100</entry>
                  </row>

                  <row>
                    <entry>IP/DNS Address</entry>

                    <entry>Dynamic IP received by device from DHCP server
                    (E.g.: 172.24.12.74).</entry>
                  </row>

                  <row>
                    <entry>Description</entry>

                    <entry>Kontron Target 1</entry>
                  </row>

                  <row>
                    <entry>SSH Port</entry>

                    <entry>830</entry>
                  </row>

                  <row>
                    <entry>SSH User Name</entry>

                    <entry>root</entry>
                  </row>

                  <row>
                    <entry>Password</entry>

                    <entry>null</entry>
                  </row>

                  <row>
                    <entry>OK</entry>

                    <entry>Green status indicates connection with uCPE device
                    was established.</entry>
                  </row>
                </tbody>
              </tgroup>
            </table>
          </listitem>

          <listitem>
            <para>In order to add the device on the map: Right-Click on
            <literal>Map -&gt; Place Device -&gt; me1100</literal>.</para>
          </listitem>

          <listitem>
            <para>Configure the infrastructure for the 128T and Fortigate VNFs
            in the service chain by creating four OVS bridges and a host
            interface.</para>

            <para>Add the Host Interface by selecting the me1100 device, then
            <literal>Configuration -&gt; OpenVSwitch -&gt; Host Interfaces
            -&gt; Add</literal>.</para>

            <para>Fill in the required fields with the following data:</para>

            <table>
              <title>Host Interface Details</title>

              <tgroup cols="2">
                <colspec align="left" />

                <colspec colwidth="2*" />

                <colspec colwidth="5*" />

                <thead>
                  <row>
                    <entry align="center">Field</entry>

                    <entry align="center">Value</entry>
                  </row>
                </thead>

                <tbody>
                  <row>
                    <entry>Source</entry>

                    <entry><literal>enp4s0f1</literal>. The only interface
                    available for LAN connection.</entry>
                  </row>

                  <row>
                    <entry>type</entry>

                    <entry>dpdk</entry>
                  </row>

                  <row>
                    <entry>networking-type</entry>

                    <entry>dpdk</entry>
                  </row>

                  <row>
                    <entry>dpdk-type</entry>

                    <entry>vfio-pci</entry>
                  </row>

                  <row>
                    <entry>Create</entry>

                    <entry>&lt;interface enp4s0f1 ready to be used in a LAN
                    bridge.&gt;</entry>
                  </row>
                </tbody>
              </tgroup>
            </table>

            <para>Add the OVS bridges by selecting the me1100 device then:
            <literal>Configuration -&gt; OpenVSwitch -&gt; Bridges -&gt;
            Add</literal>.</para>

            <para>Fill in the required fields for each bridge with the
            following data from each table:</para>

            <table>
              <title>ibm_br Bridge Details</title>

              <tgroup cols="2">
                <colspec align="left" />

                <colspec colwidth="2*" />

                <colspec colwidth="5*" />

                <thead>
                  <row>
                    <entry align="center">Field</entry>

                    <entry align="center">Value</entry>
                  </row>
                </thead>

                <tbody>
                  <row>
                    <entry>id</entry>

                    <entry>&lt;autogenerated - do not change&gt;</entry>
                  </row>

                  <row>
                    <entry>Name</entry>

                    <entry><literal>ibm_br</literal></entry>
                  </row>

                  <row>
                    <entry>ovs-bridge-type</entry>

                    <entry>dpdkWan</entry>
                  </row>

                  <row>
                    <entry>mgmt-address</entry>

                    <entry>Provide the IP address of the uCPE Manager machine
                    (E.g. 172.24.3.109).</entry>
                  </row>

                  <row>
                    <entry>mgmt-port</entry>

                    <entry>830</entry>
                  </row>

                  <row>
                    <entry>Create</entry>

                    <entry></entry>
                  </row>
                </tbody>
              </tgroup>
            </table>

            <table>
              <title>vnf_mgmt_br Bridge Details</title>

              <tgroup cols="2">
                <colspec align="left" />

                <colspec colwidth="2*" />

                <colspec colwidth="5*" />

                <thead>
                  <row>
                    <entry align="center">Field</entry>

                    <entry align="center">Value</entry>
                  </row>
                </thead>

                <tbody>
                  <row>
                    <entry>id</entry>

                    <entry>&lt;autogenerated - do not change&gt;</entry>
                  </row>

                  <row>
                    <entry>Name</entry>

                    <entry><literal>vnf_mgmt_br</literal></entry>
                  </row>

                  <row>
                    <entry>ovs-bridge-type</entry>

                    <entry>vnfMgmt</entry>
                  </row>

                  <row>
                    <entry>vnf-mgmt-address</entry>

                    <entry>10.0.0.1</entry>
                  </row>

                  <row>
                    <entry>Create</entry>

                    <entry></entry>
                  </row>
                </tbody>
              </tgroup>
            </table>

            <table>
              <title>lan_br Bridge Details</title>

              <tgroup cols="2">
                <colspec align="left" />

                <colspec colwidth="2*" />

                <colspec colwidth="5*" />

                <thead>
                  <row>
                    <entry align="center">Field</entry>

                    <entry align="center">Value</entry>
                  </row>
                </thead>

                <tbody>
                  <row>
                    <entry>id</entry>

                    <entry>&lt;autogenerated - do not change&gt;</entry>
                  </row>

                  <row>
                    <entry>Name</entry>

                    <entry><literal>lan_br</literal></entry>
                  </row>

                  <row>
                    <entry>ovs-bridge-type</entry>

                    <entry>canonical</entry>
                  </row>

                  <row>
                    <entry>+</entry>

                    <entry>Name: enp4s0f1 OK</entry>
                  </row>

                  <row>
                    <entry>Create</entry>

                    <entry></entry>
                  </row>
                </tbody>
              </tgroup>
            </table>

            <table>
              <title>sfc_br Bridge Details</title>

              <tgroup cols="2">
                <colspec align="left" />

                <colspec colwidth="2*" />

                <colspec colwidth="5*" />

                <thead>
                  <row>
                    <entry align="center">Field</entry>

                    <entry align="center">Value</entry>
                  </row>
                </thead>

                <tbody>
                  <row>
                    <entry>id</entry>

                    <entry>&lt;autogenerated - do not change&gt;</entry>
                  </row>

                  <row>
                    <entry>Name</entry>

                    <entry><literal>sfc_br</literal></entry>
                  </row>

                  <row>
                    <entry>ovs-bridge-type</entry>

                    <entry>canonical</entry>
                  </row>

                  <row>
                    <entry>Create</entry>

                    <entry></entry>
                  </row>
                </tbody>
              </tgroup>
            </table>
          </listitem>
        </orderedlist></para>

      <para><emphasis role="bold">Onboarding the VNFs:</emphasis></para>

      <para>Onboard the 128T VNF VM Image through <literal>VNF -&gt;
      Descriptors -&gt; On-board -&gt; VM Image</literal>, and fill in the
      required fields with the following values:</para>

      <table>
        <title>128T VM Image Details</title>

        <tgroup cols="2">
          <colspec align="left" />

          <colspec colwidth="2*" />

          <colspec colwidth="5*" />

          <thead>
            <row>
              <entry align="center">Field</entry>

              <entry align="center">Value</entry>
            </row>
          </thead>

          <tbody>
            <row>
              <entry>VM image file</entry>

              <entry><literal>centos_128t_with_ci.qcow2</literal></entry>
            </row>

            <row>
              <entry>Image format</entry>

              <entry>QCOW2</entry>
            </row>

            <row>
              <entry>VNF Type Name</entry>

              <entry>128T</entry>
            </row>

            <row>
              <entry>Description</entry>

              <entry>128T Router</entry>
            </row>

            <row>
              <entry>Version</entry>

              <entry>1.0</entry>
            </row>

            <row>
              <entry>Memory in MB</entry>

              <entry>8192. More memory can be allocated if required
              (&lt;28672).</entry>
            </row>

            <row>
              <entry>Num. of CPUs</entry>

              <entry>2. More CPUs can be reserved if required
              (&lt;15).</entry>
            </row>

            <row>
              <entry>Interfaces -&gt; +</entry>

              <entry>Name: mgmt</entry>
            </row>

            <row>
              <entry>Interfaces -&gt; +</entry>

              <entry>Name: wan</entry>
            </row>

            <row>
              <entry>Interfaces -&gt; +</entry>

              <entry>Name: lan</entry>
            </row>

            <row>
              <entry>Cloud Init -&gt; Cloud-Init Datasource</entry>

              <entry>ISO</entry>
            </row>

            <row>
              <entry>Cloud Init -&gt; Cloud-Init Disk Type</entry>

              <entry>cdrom</entry>
            </row>

            <row>
              <entry>Properties -&gt; +</entry>

              <entry>Name: vnfMgmtIpAddress. Value: 10.0.0.2</entry>
            </row>

            <row>
              <entry>Properties -&gt; +</entry>

              <entry>Name: internalMgmtPort. Value: 443</entry>
            </row>

            <row>
              <entry>Properties -&gt; +</entry>

              <entry>Name: externalMgmtPort. Value: 60001</entry>
            </row>

            <row>
              <entry>Onboard</entry>

              <entry>&lt;Wait for message: VNF package onboarded
              successfully&gt;</entry>
            </row>

            <row>
              <entry>Close</entry>

              <entry></entry>
            </row>
          </tbody>
        </tgroup>
      </table>

      <note>
        <itemizedlist>
          <listitem>
            <para>HTTPS access (443) can be changed to another type of access.
            Please consult official 128T documentation and make sure the 128T
            VNF is configured to accept another type of connection before
            changing the port number.</para>
          </listitem>

          <listitem>
            <para><literal>externalMgmtPort(60001)</literal> represents the
            external port on which the user can access the VNF management
            interface from the web browser via HTTPS. The user can select
            another port if needed. There are no other changes required or
            components affected by this change.</para>
          </listitem>

          <listitem>
            <para><literal>vnfMgmtIpAddress</literal> (10.0.0.2) represents
            the IP address of the management interface of the 128T VNF.
            Changing this value requires an update to the 128T configuration
            to match the new IP address.</para>
          </listitem>
        </itemizedlist>
      </note>

      <para>Onboard the Fortigate VNF VM Image through <literal>VNF -&gt;
      Descriptors -&gt; On-board -&gt; VM Image</literal>, and fill in the
      required fields with the following values:</para>

      <table>
        <title>Fortigate VM Image Details</title>

        <tgroup cols="2">
          <colspec align="left" />

          <colspec colwidth="2*" />

          <colspec colwidth="5*" />

          <thead>
            <row>
              <entry align="center">Field</entry>

              <entry align="center">Value</entry>
            </row>
          </thead>

          <tbody>
            <row>
              <entry>VM image file</entry>

              <entry><literal>fortios.qcow2</literal>. Please make sure to
              contact Fortigate for an official Fortigate KVM image.</entry>
            </row>

            <row>
              <entry>Image format</entry>

              <entry>QCOW2</entry>
            </row>

            <row>
              <entry>VNF Type Name</entry>

              <entry>Fortigate</entry>
            </row>

            <row>
              <entry>Description</entry>

              <entry>Fortigate VNF</entry>
            </row>

            <row>
              <entry>Version</entry>

              <entry>1.0</entry>
            </row>

            <row>
              <entry>Memory in MB</entry>

              <entry>1024. More memory can be allocated if required
              (&lt;28672).</entry>
            </row>

            <row>
              <entry>Num. of CPUs</entry>

              <entry>1. More CPUs can be reserved if required
              (&lt;15).</entry>
            </row>

            <row>
              <entry>Interfaces -&gt; +</entry>

              <entry>Name: mgmt</entry>
            </row>

            <row>
              <entry>Interfaces -&gt; +</entry>

              <entry>Name: wan</entry>
            </row>

            <row>
              <entry>Interfaces -&gt; +</entry>

              <entry>Name: lan</entry>
            </row>

            <row>
              <entry>Cloud Init -&gt; Cloud-Init Datasource</entry>

              <entry>ConfigDrive</entry>
            </row>

            <row>
              <entry>Cloud Init -&gt; Cloud-Init Disk Type</entry>

              <entry>cdrom</entry>
            </row>

            <row>
              <entry>Cloud Init -&gt; +</entry>

              <entry>Path: license</entry>
            </row>

            <row>
              <entry>Properties -&gt; +</entry>

              <entry>Name: vnfMgmtIpAddress. Value: 10.0.0.3</entry>
            </row>

            <row>
              <entry>Properties -&gt; +</entry>

              <entry>Name: internalMgmtPort. Value: 443</entry>
            </row>

            <row>
              <entry>Properties -&gt; +</entry>

              <entry>Name: externalMgmtPort. Value: 60002</entry>
            </row>

            <row>
              <entry>Onboard</entry>

              <entry>&lt;Wait for message: VNF package onboarded
              successfully&gt;</entry>
            </row>

            <row>
              <entry>Close</entry>

              <entry></entry>
            </row>
          </tbody>
        </tgroup>
      </table>

      <note>
        <itemizedlist>
          <listitem>
            <para>HTTPS access (443) can be changed to another type of access.
            Please consult official Fortigate documentation and make sure the
            Fortigate VNF is configured to accept another type of connection
            before changing the port number.</para>
          </listitem>

          <listitem>
            <para><literal>externalMgmtPort</literal> (60002) represents the
            external port on which the user can access the VNF management
            interface from the web browser via HTTPS. The user can select
            another port if needed. There are no other changes required or
            components affected by this change.</para>
          </listitem>

          <listitem>
            <para><literal>vnfMgmtIpAddress</literal> (10.0.0.3) represents
            the IP address of the management interface of the Fortigate VNF.
            Changing this value requires an update to the Fortigate
            configuration to match with new IP address.</para>
          </listitem>
        </itemizedlist>
      </note>

      <para><emphasis role="bold">Instantiating the VNFs:</emphasis></para>

      <para>Instantiate the 128T VNF by selecting the me1100 device, then
      <literal>VNF -&gt; Instances -&gt; Add</literal>.</para>

      <para>Fill in the required fields with the following values:</para>

      <table>
        <title>128T VNF Instantiation</title>

        <tgroup cols="2">
          <colspec align="left" />

          <colspec colwidth="2*" />

          <colspec colwidth="5*" />

          <thead>
            <row>
              <entry align="center">Field</entry>

              <entry align="center">Value</entry>
            </row>
          </thead>

          <tbody>
            <row>
              <entry>Name</entry>

              <entry>128T_me1100_1</entry>
            </row>

            <row>
              <entry>VNF Type</entry>

              <entry>128T</entry>
            </row>

            <row>
              <entry>VNFD Version</entry>

              <entry>1.0</entry>
            </row>

            <row>
              <entry>Flavour</entry>

              <entry>Canonical</entry>
            </row>

            <row>
              <entry>uCPE Device</entry>

              <entry>me1100</entry>
            </row>

            <row>
              <entry>Cloud Init File</entry>

              <entry><literal>centos_128t_internet_ci.iso</literal>. Example
              image provided. Please see Appendix A for details on how to
              change the configuration and create a new cloud-init iso
              image.</entry>
            </row>

            <row>
              <entry>Domain Update Script</entry>

              <entry></entry>
            </row>

            <row>
              <entry>Interfaces</entry>

              <entry></entry>
            </row>

            <row>
              <entry>ID</entry>

              <entry>IF Name</entry>
            </row>

            <row>
              <entry>mgmt (dpdk)</entry>

              <entry>Bridge: vnf_mgmt_br</entry>
            </row>

            <row>
              <entry>wan (dpdk)</entry>

              <entry>Bridge: ibm_br</entry>
            </row>

            <row>
              <entry>lan (dpdk)</entry>

              <entry>Bridge: sfc_br</entry>
            </row>

            <row>
              <entry>Create</entry>

              <entry></entry>
            </row>
          </tbody>
        </tgroup>
      </table>

      <para>Instantiate the Fortigate VNF by selecting the me1100 device, then
      <literal>VNF -&gt; Instances -&gt; Add</literal>.</para>

      <para>Fill in the required fields with the following values:</para>

      <table>
        <title>Fortigate VNF Instantiation</title>

        <tgroup cols="2">
          <colspec align="left" />

          <colspec colwidth="2*" />

          <colspec colwidth="5*" />

          <thead>
            <row>
              <entry align="center">Field</entry>

              <entry align="center">Value</entry>
            </row>
          </thead>

          <tbody>
            <row>
              <entry>Name</entry>

              <entry>fg_me1100_1</entry>
            </row>

            <row>
              <entry>VNF Type</entry>

              <entry>Fortigate</entry>
            </row>

            <row>
              <entry>VNFD Version</entry>

              <entry>1.0</entry>
            </row>

            <row>
              <entry>Flavour</entry>

              <entry>Canonical</entry>
            </row>

            <row>
              <entry>uCPE Device</entry>

              <entry>me1100</entry>
            </row>

            <row>
              <entry>Cloud Init File</entry>

              <entry><literal>fg_cmc_basic_fw.conf</literal></entry>
            </row>

            <row>
              <entry>License File</entry>

              <entry><literal>FGVM08TM00001.lic</literal>. Please make sure to
              use a valid license file (.lic) received from Fortinet.</entry>
            </row>

            <row>
              <entry>Domain Update Script</entry>

              <entry></entry>
            </row>

            <row>
              <entry>Interfaces</entry>

              <entry></entry>
            </row>

            <row>
              <entry>ID</entry>

              <entry>IF Name</entry>
            </row>

            <row>
              <entry>mgmt (dpdk)</entry>

              <entry>Bridge: vnf_mgmt_br</entry>
            </row>

            <row>
              <entry>wan (dpdk)</entry>

              <entry>Bridge: sfc_br</entry>
            </row>

            <row>
              <entry>lan (dpdk)</entry>

              <entry>Bridge: lan_br</entry>
            </row>

            <row>
              <entry>Create</entry>

              <entry></entry>
            </row>
          </tbody>
        </tgroup>
      </table>
    </section>

    <section>
      <title>Testing the Use-case</title>

      <para>In order to access the web interfaces of the 128T VNF, open a
      browser on a machine connected on the same network with the WAN port of
      the target and connect to:
      <literal>https://&lt;publicIP&gt;:60001</literal> using the username:
      admin and the password: 128Tadmin.</para>

      <para>In order to access the web interfaces of the Fortigate VNF, open a
      browser on a machine connected on the same network with the WAN port of
      the target and connect to:
      <literal>https://&lt;publicIP&gt;:60002</literal> using the username:
      admin, and leaving the password blank.</para>

      <note>
        <para>Make sure the WAN interface of the me1100 device has access to
        the internet. The Fortigate VNF requires internet access to validate
        the license.</para>
      </note>

      <para>In order to validate the data path connect a test machine to the
      LAN physical port and check for a dynamic IP (the Fortigate LAN
      interface is configured with a DHCP server):<programlisting>&gt; dhclient eth1
&gt; ping 8.8.8.8</programlisting>For data path validation, a new cloud-init
      image may need to be generated for the 128T VNF to match your network
      configuration. Please check Appendix A "How to create 128T cloud-init
      iso image (day-0 configuration)" for details.</para>
    </section>

    <section>
      <title>Use-case Clean-up</title>

      <para>In order to remove the setup created in previously, all components
      need to be deleted in reverse order:</para>

      <orderedlist>
        <listitem>
          <para>Select the me1100 uCPE device -&gt; VNF -&gt; Instances.
          Select the 128T and Fortigate VNFs -&gt; Delete.</para>
        </listitem>

        <listitem>
          <para>Select the me1100 uCPE device -&gt; Configuration -&gt;
          OpenVSwitch -&gt; Bridges. Select all bridges -&gt; Delete.</para>
        </listitem>

        <listitem>
          <para>Select the me1100 uCPE device -&gt; Configuration -&gt;
          OpenVSwitch -&gt; Host Interfaces. Select all interfaces -&gt;
          Delete.</para>
        </listitem>

        <listitem>
          <para>VNF -&gt; Descriptors. Select all bundles -&gt;
          Offboard.</para>
        </listitem>
      </orderedlist>
    </section>
  </section>
</chapter>