Newer
Older
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
menu "VLANs"
config VLANS_ENABLE
bool "Enable VLANs"
default n
help
Enable VLAN configuration via dot-config
menu "Ports configuration"
depends on VLANS_ENABLE
comment "Port 1"
choice VLANS_PORT01_MODE
prompt "Port 1 VLAN mode"
default VLANS_PORT01_MODE_UNQUALIFIED
help
In terms of VLAN-tag, there are four types of VLAN-tags that can
extend the Ethernet Frame header:
* none - tag is not included in the Ethernet Frame
* priority - tag that has VID=0x0
* VLAN - tag that has VID in the range 0x001 to 0xFFE
* null - tag that has VID=0xFFF
The behaviour of each PMODE that can be set per-port depends on the
type of VLAN-tag in the received frame.
- PMODE=access (0x0), frames with:
* no VLAN-tag : are admitted, tagged with the values of VID and
priority that are configured in PORT_VID and
PRIO_VAL respectively
* priority tag : are admitted, their tag is unchanged, the value of
VID provided to the RTU is overridden with the
configured in PORT_VID. If PRIO_VAL is not -1,
the value of priority provided to RTU is
overridden with the configured PRIO_VAL
* VLAN tag : are discarded
* null tag : are discarded
- PMODE=trunk (0x1), frames with:
* no VLAN-tag : are discarded
* priority tag : are discarded
* VLAN tag : are admitted; if PRIO_VAL is not -1, the value of
priority provided to RTU is overridden with
the configured PRIO_VAL
* null tag : are discarded
- PMODE=disabled (0x2), frames with:
* no VLAN-tag : are admitted. No other configuration is used even
if set.
* priority tag : are admitted; if PRIO_VAL is not -1, the value of
priority provided to RTU is overridden with
the configured PRIO_VAL
* VLAN tag : are admitted; if PRIO_VAL is not -1, the value of
priority provided to RTU is overridden with
the configured PRIO_VAL
* null tag : are admitted; if PRIO_VAL is not -1, the value of
priority provided to RTU is overridden with
the configured PRIO_VAL
- PMODE=unqualified (0x3), frames with:
* no VLAN-tag : are admitted. No other configuration is used even
if set.
* priority tag : are admitted. Their tag is unchanged, the value of
VID provided to the RTU is overridden with the
configured in PORT_VID. If PRIO_VAL is not -1,
the value of priority provided to RTU is
overridden with the configured PRIO_VAL
NOTE: providing a VID for this mode is not
supported in the dot-config
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
* VLAN tag : are admitted; if PRIO_VAL is not -1, the value of
priority provided to RTU is overridden with
the configured PRIO_VAL
* null tag : discarded.
config VLANS_PORT01_MODE_ACCESS
bool "Access mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT01_MODE_TRUNK
bool "Trunk mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT01_MODE_DISABLED
bool "VLAN-disabled mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT01_MODE_UNQUALIFIED
bool "Unqualified mode"
help
Please check the help of VLANS_PORT01_MODE
endchoice
choice VLANS_PORT01_UNTAG
prompt "Port 1 untag frames"
default VLANS_PORT01_UNTAG_ALL
depends on VLANS_PORT01_MODE_ACCESS
help
Decide whether VLAN-tags should be removed
config VLANS_PORT01_UNTAG_ALL
bool "untag all"
help
Untag all tagged frames.
config VLANS_PORT01_UNTAG_NONE
bool "untag none"
help
Keep VLAN tags for all tagged frames.
endchoice
config VLANS_PORT01_PRIO
int "Port 1 priority"
default -1
range -1 7
help
Priority value used when tagging frames or to override priority passed
to RTU.
-1 disables the priority overwrite. Valid values are from -1 to 7.
config VLANS_PORT01_VID
This value based on the port's mode is used as:
--MODE_ACCESS - (mandatory) use as VID for tagging incoming frames and notify
the PPSI which VLAN shall it use for synchronization; only one VLAN
number shall be used in this mode
--MODE_TRUNK - (optional) notify the PPSI which VLAN shall it use for
synchronization; semicolon separated list is allowed
--MODE_DISABLED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed
--MODE_UNQUALIFIED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed;
The range of a valid VID is 0 to 4094
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
comment "Port 2"
choice VLANS_PORT02_MODE
prompt "Port 2 VLAN mode"
default VLANS_PORT02_MODE_UNQUALIFIED
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT02_MODE_ACCESS
bool "Access mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT02_MODE_TRUNK
bool "Trunk mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT02_MODE_DISABLED
bool "VLAN-disabled mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT02_MODE_UNQUALIFIED
bool "Unqualified mode"
help
Please check the help of VLANS_PORT01_MODE
endchoice
choice VLANS_PORT02_UNTAG
prompt "Port 2 untag frames"
default VLANS_PORT02_UNTAG_ALL
depends on VLANS_PORT02_MODE_ACCESS
help
Decide whether VLAN-tags should be removed
config VLANS_PORT02_UNTAG_ALL
bool "untag all"
help
Untag all tagged frames.
config VLANS_PORT02_UNTAG_NONE
bool "untag none"
help
Keep VLAN tags for all tagged frames.
endchoice
config VLANS_PORT02_PRIO
int "Port 2 priority"
default -1
range -1 7
help
Priority value used when tagging frames or to override priority passed
to RTU.
-1 disables the priority overwrite. Valid values are from -1 to 7.
config VLANS_PORT02_VID
This value based on the port's mode is used as:
--MODE_ACCESS - (mandatory) use as VID for tagging incoming frames and notify
the PPSI which VLAN shall it use for synchronization; only one VLAN
number shall be used in this mode
--MODE_TRUNK - (optional) notify the PPSI which VLAN shall it use for
synchronization; semicolon separated list is allowed
--MODE_DISABLED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed
--MODE_UNQUALIFIED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed;
The range of a valid VID is 0 to 4094
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
comment "Port 3"
choice VLANS_PORT03_MODE
prompt "Port 3 VLAN mode"
default VLANS_PORT03_MODE_UNQUALIFIED
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT03_MODE_ACCESS
bool "Access mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT03_MODE_TRUNK
bool "Trunk mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT03_MODE_DISABLED
bool "VLAN-disabled mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT03_MODE_UNQUALIFIED
bool "Unqualified mode"
help
Please check the help of VLANS_PORT01_MODE
endchoice
choice VLANS_PORT03_UNTAG
prompt "Port 3 untag frames"
default VLANS_PORT03_UNTAG_ALL
depends on VLANS_PORT03_MODE_ACCESS
help
Decide whether VLAN-tags should be removed
config VLANS_PORT03_UNTAG_ALL
bool "untag all"
help
Untag all tagged frames.
config VLANS_PORT03_UNTAG_NONE
bool "untag none"
help
Keep VLAN tags for all tagged frames.
endchoice
config VLANS_PORT03_PRIO
int "Port 3 priority"
default -1
range -1 7
help
Priority value used when tagging frames or to override priority passed
to RTU.
-1 disables the priority overwrite. Valid values are from -1 to 7.
config VLANS_PORT03_VID
This value based on the port's mode is used as:
--MODE_ACCESS - (mandatory) use as VID for tagging incoming frames and notify
the PPSI which VLAN shall it use for synchronization; only one VLAN
number shall be used in this mode
--MODE_TRUNK - (optional) notify the PPSI which VLAN shall it use for
synchronization; semicolon separated list is allowed
--MODE_DISABLED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed
--MODE_UNQUALIFIED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed;
The range of a valid VID is 0 to 4094
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
comment "Port 4"
choice VLANS_PORT04_MODE
prompt "Port 4 VLAN mode"
default VLANS_PORT04_MODE_UNQUALIFIED
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT04_MODE_ACCESS
bool "Access mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT04_MODE_TRUNK
bool "Trunk mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT04_MODE_DISABLED
bool "VLAN-disabled mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT04_MODE_UNQUALIFIED
bool "Unqualified mode"
help
Please check the help of VLANS_PORT01_MODE
endchoice
choice VLANS_PORT04_UNTAG
prompt "Port 4 untag frames"
default VLANS_PORT04_UNTAG_ALL
depends on VLANS_PORT04_MODE_ACCESS
help
Decide whether VLAN-tags should be removed
config VLANS_PORT04_UNTAG_ALL
bool "untag all"
help
Untag all tagged frames.
config VLANS_PORT04_UNTAG_NONE
bool "untag none"
help
Keep VLAN tags for all tagged frames.
endchoice
config VLANS_PORT04_PRIO
int "Port 4 priority"
default -1
range -1 7
help
Priority value used when tagging frames or to override priority passed
to RTU.
-1 disables the priority overwrite. Valid values are from -1 to 7.
config VLANS_PORT04_VID
This value based on the port's mode is used as:
--MODE_ACCESS - (mandatory) use as VID for tagging incoming frames and notify
the PPSI which VLAN shall it use for synchronization; only one VLAN
number shall be used in this mode
--MODE_TRUNK - (optional) notify the PPSI which VLAN shall it use for
synchronization; semicolon separated list is allowed
--MODE_DISABLED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed
--MODE_UNQUALIFIED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed;
The range of a valid VID is 0 to 4094
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
comment "Port 5"
choice VLANS_PORT05_MODE
prompt "Port 5 VLAN mode"
default VLANS_PORT05_MODE_UNQUALIFIED
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT05_MODE_ACCESS
bool "Access mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT05_MODE_TRUNK
bool "Trunk mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT05_MODE_DISABLED
bool "VLAN-disabled mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT05_MODE_UNQUALIFIED
bool "Unqualified mode"
help
Please check the help of VLANS_PORT01_MODE
endchoice
choice VLANS_PORT05_UNTAG
prompt "Port 5 untag frames"
default VLANS_PORT05_UNTAG_ALL
depends on VLANS_PORT05_MODE_ACCESS
help
Decide whether VLAN-tags should be removed
config VLANS_PORT05_UNTAG_ALL
bool "untag all"
help
Untag all tagged frames.
config VLANS_PORT05_UNTAG_NONE
bool "untag none"
help
Keep VLAN tags for all tagged frames.
endchoice
config VLANS_PORT05_PRIO
int "Port 5 priority"
default -1
range -1 7
help
Priority value used when tagging frames or to override priority passed
to RTU.
-1 disables the priority overwrite. Valid values are from -1 to 7.
config VLANS_PORT05_VID
This value based on the port's mode is used as:
--MODE_ACCESS - (mandatory) use as VID for tagging incoming frames and notify
the PPSI which VLAN shall it use for synchronization; only one VLAN
number shall be used in this mode
--MODE_TRUNK - (optional) notify the PPSI which VLAN shall it use for
synchronization; semicolon separated list is allowed
--MODE_DISABLED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed
--MODE_UNQUALIFIED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed;
The range of a valid VID is 0 to 4094
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
comment "Port 6"
choice VLANS_PORT06_MODE
prompt "Port 6 VLAN mode"
default VLANS_PORT06_MODE_UNQUALIFIED
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT06_MODE_ACCESS
bool "Access mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT06_MODE_TRUNK
bool "Trunk mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT06_MODE_DISABLED
bool "VLAN-disabled mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT06_MODE_UNQUALIFIED
bool "Unqualified mode"
help
Please check the help of VLANS_PORT01_MODE
endchoice
choice VLANS_PORT06_UNTAG
prompt "Port 6 untag frames"
default VLANS_PORT06_UNTAG_ALL
depends on VLANS_PORT06_MODE_ACCESS
help
Decide whether VLAN-tags should be removed
config VLANS_PORT06_UNTAG_ALL
bool "untag all"
help
Untag all tagged frames.
config VLANS_PORT06_UNTAG_NONE
bool "untag none"
help
Keep VLAN tags for all tagged frames.
endchoice
config VLANS_PORT06_PRIO
int "Port 6 priority"
default -1
range -1 7
help
Priority value used when tagging frames or to override priority passed
to RTU.
-1 disables the priority overwrite. Valid values are from -1 to 7.
config VLANS_PORT06_VID
This value based on the port's mode is used as:
--MODE_ACCESS - (mandatory) use as VID for tagging incoming frames and notify
the PPSI which VLAN shall it use for synchronization; only one VLAN
number shall be used in this mode
--MODE_TRUNK - (optional) notify the PPSI which VLAN shall it use for
synchronization; semicolon separated list is allowed
--MODE_DISABLED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed
--MODE_UNQUALIFIED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed;
The range of a valid VID is 0 to 4094
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
comment "Port 7"
choice VLANS_PORT07_MODE
prompt "Port 7 VLAN mode"
default VLANS_PORT07_MODE_UNQUALIFIED
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT07_MODE_ACCESS
bool "Access mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT07_MODE_TRUNK
bool "Trunk mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT07_MODE_DISABLED
bool "VLAN-disabled mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT07_MODE_UNQUALIFIED
bool "Unqualified mode"
help
Please check the help of VLANS_PORT01_MODE
endchoice
choice VLANS_PORT07_UNTAG
prompt "Port 7 untag frames"
default VLANS_PORT07_UNTAG_ALL
depends on VLANS_PORT07_MODE_ACCESS
help
Decide whether VLAN-tags should be removed
config VLANS_PORT07_UNTAG_ALL
bool "untag all"
help
Untag all tagged frames.
config VLANS_PORT07_UNTAG_NONE
bool "untag none"
help
Keep VLAN tags for all tagged frames.
endchoice
config VLANS_PORT07_PRIO
int "Port 7 priority"
default -1
range -1 7
help
Priority value used when tagging frames or to override priority passed
to RTU.
-1 disables the priority overwrite. Valid values are from -1 to 7.
config VLANS_PORT07_VID
This value based on the port's mode is used as:
--MODE_ACCESS - (mandatory) use as VID for tagging incoming frames and notify
the PPSI which VLAN shall it use for synchronization; only one VLAN
number shall be used in this mode
--MODE_TRUNK - (optional) notify the PPSI which VLAN shall it use for
synchronization; semicolon separated list is allowed
--MODE_DISABLED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed
--MODE_UNQUALIFIED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed;
The range of a valid VID is 0 to 4094
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
comment "Port 8"
choice VLANS_PORT08_MODE
prompt "Port 8 VLAN mode"
default VLANS_PORT08_MODE_UNQUALIFIED
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT08_MODE_ACCESS
bool "Access mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT08_MODE_TRUNK
bool "Trunk mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT08_MODE_DISABLED
bool "VLAN-disabled mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT08_MODE_UNQUALIFIED
bool "Unqualified mode"
help
Please check the help of VLANS_PORT01_MODE
endchoice
choice VLANS_PORT08_UNTAG
prompt "Port 8 untag frames"
default VLANS_PORT08_UNTAG_ALL
depends on VLANS_PORT08_MODE_ACCESS
help
Decide whether VLAN-tags should be removed
config VLANS_PORT08_UNTAG_ALL
bool "untag all"
help
Untag all tagged frames.
config VLANS_PORT08_UNTAG_NONE
bool "untag none"
help
Keep VLAN tags for all tagged frames.
endchoice
config VLANS_PORT08_PRIO
int "Port 8 priority"
default -1
range -1 7
help
Priority value used when tagging frames or to override priority passed
to RTU.
-1 disables the priority overwrite. Valid values are from -1 to 7.
config VLANS_PORT08_VID
This value based on the port's mode is used as:
--MODE_ACCESS - (mandatory) use as VID for tagging incoming frames and notify
the PPSI which VLAN shall it use for synchronization; only one VLAN
number shall be used in this mode
--MODE_TRUNK - (optional) notify the PPSI which VLAN shall it use for
synchronization; semicolon separated list is allowed
--MODE_DISABLED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed
--MODE_UNQUALIFIED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed;
The range of a valid VID is 0 to 4094
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
comment "Port 9"
choice VLANS_PORT09_MODE
prompt "Port 9 VLAN mode"
default VLANS_PORT09_MODE_UNQUALIFIED
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT09_MODE_ACCESS
bool "Access mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT09_MODE_TRUNK
bool "Trunk mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT09_MODE_DISABLED
bool "VLAN-disabled mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT09_MODE_UNQUALIFIED
bool "Unqualified mode"
help
Please check the help of VLANS_PORT01_MODE
endchoice
choice VLANS_PORT09_UNTAG
prompt "Port 9 untag frames"
default VLANS_PORT09_UNTAG_ALL
depends on VLANS_PORT09_MODE_ACCESS
help
Decide whether VLAN-tags should be removed
config VLANS_PORT09_UNTAG_ALL
bool "untag all"
help
Untag all tagged frames.
config VLANS_PORT09_UNTAG_NONE
bool "untag none"
help
Keep VLAN tags for all tagged frames.
endchoice
config VLANS_PORT09_PRIO
int "Port 9 priority"
default -1
range -1 7
help
Priority value used when tagging frames or to override priority passed
to RTU.
-1 disables the priority overwrite. Valid values are from -1 to 7.
config VLANS_PORT09_VID
This value based on the port's mode is used as:
--MODE_ACCESS - (mandatory) use as VID for tagging incoming frames and notify
the PPSI which VLAN shall it use for synchronization; only one VLAN
number shall be used in this mode
--MODE_TRUNK - (optional) notify the PPSI which VLAN shall it use for
synchronization; semicolon separated list is allowed
--MODE_DISABLED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed
--MODE_UNQUALIFIED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed;
The range of a valid VID is 0 to 4094
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
comment "Port 10"
choice VLANS_PORT10_MODE
prompt "Port 10 VLAN mode"
default VLANS_PORT10_MODE_UNQUALIFIED
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT10_MODE_ACCESS
bool "Access mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT10_MODE_TRUNK
bool "Trunk mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT10_MODE_DISABLED
bool "VLAN-disabled mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT10_MODE_UNQUALIFIED
bool "Unqualified mode"
help
Please check the help of VLANS_PORT01_MODE
endchoice
choice VLANS_PORT10_UNTAG
prompt "Port 10 untag frames"
default VLANS_PORT10_UNTAG_ALL
depends on VLANS_PORT10_MODE_ACCESS
help
Decide whether VLAN-tags should be removed
config VLANS_PORT10_UNTAG_ALL
bool "untag all"
help
Untag all tagged frames.
config VLANS_PORT10_UNTAG_NONE
bool "untag none"
help
Keep VLAN tags for all tagged frames.
endchoice
config VLANS_PORT10_PRIO
int "Port 10 priority"
default -1
range -1 7
help
Priority value used when tagging frames or to override priority passed
to RTU.
-1 disables the priority overwrite. Valid values are from -1 to 7.
config VLANS_PORT10_VID
This value based on the port's mode is used as:
--MODE_ACCESS - (mandatory) use as VID for tagging incoming frames and notify
the PPSI which VLAN shall it use for synchronization; only one VLAN
number shall be used in this mode
--MODE_TRUNK - (optional) notify the PPSI which VLAN shall it use for
synchronization; semicolon separated list is allowed
--MODE_DISABLED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed
--MODE_UNQUALIFIED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed;
The range of a valid VID is 0 to 4094
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
comment "Port 11"
choice VLANS_PORT11_MODE
prompt "Port 11 VLAN mode"
default VLANS_PORT11_MODE_UNQUALIFIED
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT11_MODE_ACCESS
bool "Access mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT11_MODE_TRUNK
bool "Trunk mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT11_MODE_DISABLED
bool "VLAN-disabled mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT11_MODE_UNQUALIFIED
bool "Unqualified mode"
help
Please check the help of VLANS_PORT01_MODE
endchoice
choice VLANS_PORT11_UNTAG
prompt "Port 11 untag frames"
default VLANS_PORT11_UNTAG_ALL
depends on VLANS_PORT11_MODE_ACCESS
help
Decide whether VLAN-tags should be removed
config VLANS_PORT11_UNTAG_ALL
bool "untag all"
help
Untag all tagged frames.
config VLANS_PORT11_UNTAG_NONE
bool "untag none"
help
Keep VLAN tags for all tagged frames.
endchoice
config VLANS_PORT11_PRIO
int "Port 11 priority"
default -1
range -1 7
help
Priority value used when tagging frames or to override priority passed
to RTU.
-1 disables the priority overwrite. Valid values are from -1 to 7.
config VLANS_PORT11_VID
This value based on the port's mode is used as:
--MODE_ACCESS - (mandatory) use as VID for tagging incoming frames and notify
the PPSI which VLAN shall it use for synchronization; only one VLAN
number shall be used in this mode
--MODE_TRUNK - (optional) notify the PPSI which VLAN shall it use for
synchronization; semicolon separated list is allowed
--MODE_DISABLED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed
--MODE_UNQUALIFIED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed;
The range of a valid VID is 0 to 4094
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
comment "Port 12"
choice VLANS_PORT12_MODE
prompt "Port 12 VLAN mode"
default VLANS_PORT12_MODE_UNQUALIFIED
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT12_MODE_ACCESS
bool "Access mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT12_MODE_TRUNK
bool "Trunk mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT12_MODE_DISABLED
bool "VLAN-disabled mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT12_MODE_UNQUALIFIED
bool "Unqualified mode"
help
Please check the help of VLANS_PORT01_MODE
endchoice
choice VLANS_PORT12_UNTAG
prompt "Port 12 untag frames"
default VLANS_PORT12_UNTAG_ALL
depends on VLANS_PORT12_MODE_ACCESS
help
Decide whether VLAN-tags should be removed
config VLANS_PORT12_UNTAG_ALL
bool "untag all"
help
Untag all tagged frames.
config VLANS_PORT12_UNTAG_NONE
bool "untag none"
help
Keep VLAN tags for all tagged frames.
endchoice
config VLANS_PORT12_PRIO
int "Port 12 priority"
default -1
range -1 7
help
Priority value used when tagging frames or to override priority passed
to RTU.
-1 disables the priority overwrite. Valid values are from -1 to 7.
config VLANS_PORT12_VID
This value based on the port's mode is used as:
--MODE_ACCESS - (mandatory) use as VID for tagging incoming frames and notify
the PPSI which VLAN shall it use for synchronization; only one VLAN
number shall be used in this mode
--MODE_TRUNK - (optional) notify the PPSI which VLAN shall it use for
synchronization; semicolon separated list is allowed
--MODE_DISABLED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed
--MODE_UNQUALIFIED - (optional) notify the PPSI which VLANs shall it use for
synchronization; semicolon separated list is allowed;
The range of a valid VID is 0 to 4094
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
comment "Port 13"
choice VLANS_PORT13_MODE
prompt "Port 13 VLAN mode"
default VLANS_PORT13_MODE_UNQUALIFIED
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT13_MODE_ACCESS
bool "Access mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT13_MODE_TRUNK
bool "Trunk mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT13_MODE_DISABLED
bool "VLAN-disabled mode"
help
Please check the help of VLANS_PORT01_MODE
config VLANS_PORT13_MODE_UNQUALIFIED
bool "Unqualified mode"
help
Please check the help of VLANS_PORT01_MODE
endchoice
choice VLANS_PORT13_UNTAG
prompt "Port 13 untag frames"
default VLANS_PORT13_UNTAG_ALL
depends on VLANS_PORT13_MODE_ACCESS
help
Decide whether VLAN-tags should be removed
config VLANS_PORT13_UNTAG_ALL
bool "untag all"
help
Untag all tagged frames.
config VLANS_PORT13_UNTAG_NONE
bool "untag none"
help
Keep VLAN tags for all tagged frames.