-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathchangelog.txt
16409 lines (16409 loc) · 640 KB
/
changelog.txt
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
---------------------------------- 2012-08-06 22:15:25
qc pass: bgp nexthop self
qc pass: bgp nexthop peer
qc pass: proxy server
todo: exception prt.prtGenConn.run:prtGenConn.java:439 java.lang.IllegalStateException: Timer already cancelled. at java.util.Timer.sched:Timer.java:354/java.util.Timer.schedule:Timer.java:222/ip.ipIfc4arp.resetTimer:ipIfc4arp.java:147/ip.ipIfc4arp.setIPv4addr:ipIfc4arp.java:134/ip.ipIfc4.setIPv4addr:ipIfc4.java:127/cfg.cfgIfc.addrChanged:cfgIfc.java:978/clnt.clntDhcp4.changeAddress:clntDhcp4.java:227/clnt.clntDhcp4.sendKeepalive:clntDhcp4.java:371/clnt.clntDhcp4.datagramWork:clntDhcp4.java:258/prt.prtGenConn.internalWorker:prtGenConn.java:389/prt.prtGenConn.run:prtGenConn.java:429/java.lang.Thread.run:Thread.java:662/
---------------------------------- 2012-08-07 23:05:41
no todo: openssl as crypto hardware
no todo: encrypt within packHolder
qc pass: bgp nexthop peer
todo: rout-mcast02.tst: info cfg.cfgInit.executeSWcommands:cfgInit.java:315 15:java.lang.NullPointerException at pack.packPim.fillJoin:packPim.java:466/rtr.rtrPimIface.sendJoin:rtrPimIface.java:231/ip.ipFwdTab.joinOneGroup:ipFwdTab.java:515/ip.ipFwd.mcastAddFlood:ipFwd.java:426/user.userConfig.parseUpMcast:userConfig.java:1364/user.userConfig.doCmdIp4:userConfig.java:1502/user.userConfig.doGlobal:userConfig.java:600/user.userConfig.executeCommand:userConfig.java:209/cfg.cfgInit.executeSWcommands:cfgInit.java:313/cfg.cfgInit.doInit:cfgInit.java:403/cfg.cfgInit.doMain:cfgInit.java:496/router.main:router.java:17/
todo: encrypt within packHolder, openssl as crypto hardware
---------------------------------- 2012-09-01 13:44:59
no qc pass: rip egress route filtering with prefixlist
no qc pass: rip in chain
no qc pass: dhcp
no work: dhcp
qc pass: point2point ethernet encapsulation
qc pass: more sources translation to interface
no work: rip in chain
no work: rip egress route filtering with prefixlist
todo: exception prt.prtGenConn.run:prtGenConn.java:439 java.lang.IllegalStateException: Timer already cancelled. at java.util.Timer.sched:Timer.java:354/java.util.Timer.schedule:Timer.java:222/ip.ipIfc4arp.resetTimer:ipIfc4arp.java:147/ip.ipIfc4arp.setIPv4addr:ipIfc4arp.java:134/ip.ipIfc4.setIPv4addr:ipIfc4.java:127/cfg.cfgIfc.addrChanged:cfgIfc.java:978/clnt.clntDhcp4.changeAddress:clntDhcp4.java:227/clnt.clntDhcp4.sendKeepalive:clntDhcp4.java:371/clnt.clntDhcp4.datagramWork:clntDhcp4.java:258/prt.prtGenConn.internalWorker:prtGenConn.java:389/prt.prtGenConn.run:prtGenConn.java:429/java.lang.Thread.run:Thread.java:662/
todo: rout-mcast02.tst: info cfg.cfgInit.executeSWcommands:cfgInit.java:315 15:java.lang.NullPointerException at pack.packPim.fillJoin:packPim.java:466/rtr.rtrPimIface.sendJoin:rtrPimIface.java:231/ip.ipFwdTab.joinOneGroup:ipFwdTab.java:515/ip.ipFwd.mcastAddFlood:ipFwd.java:426/user.userConfig.parseUpMcast:userConfig.java:1364/user.userConfig.doCmdIp4:userConfig.java:1502/user.userConfig.doGlobal:userConfig.java:600/user.userConfig.executeCommand:userConfig.java:209/cfg.cfgInit.executeSWcommands:cfgInit.java:313/cfg.cfgInit.doInit:cfgInit.java:403/cfg.cfgInit.doMain:cfgInit.java:496/router.main:router.java:17/
---------------------------------- 2012-09-01 18:59:12
no qc pass: rip egress route filtering with routemap
no work: rip egress route filtering with routemap
---------------------------------- 2012-09-02 17:27:45
no qc pass: rip with bfd
qc pass: dhcp
qc pass: interworking with packet over dtls
qc pass: ppp with packet over dtls
qc pass: rip in chain
qc pass: rip egress route filtering with prefixlist
no work: rip with bfd
---------------------------------- 2012-09-03 04:05:40
no qc pass: rip egress route filtering with prefixlist
no qc pass: dhcp
no work: dhcp
no work: rip egress route filtering with prefixlist
qc pass: rip with bfd
---------------------------------- 2012-09-03 10:38:26
qc pass: ppp with packet over tcp
qc pass: rip egress route filtering with routemap
---------------------------------- 2012-09-03 17:52:36
no qc pass: qos ingress exp set
no qc pass: macsec over hdlc
no qc pass: process redundancy
no work: process redundancy
no work: macsec over hdlc
no work: qos ingress exp set
qc pass: rip egress route filtering with prefixlist
---------------------------------- 2012-09-04 04:21:04
qc pass: process redundancy
qc pass: macsec over hdlc
qc pass: qos ingress exp set
---------------------------------- 2012-09-04 07:29:42
no todo: cross compiler tools for zzz
no todo: more packages, eg rtr.ospf, etc...
---------------------------------- 2012-09-04 14:18:35
qc pass: dhcp
qc pass: ppp with packet over tls
---------------------------------- 2012-09-04 17:24:43
qc pass: ppp with packet over txt
---------------------------------- 2012-09-05 16:35:06
no todo: configure buffer with commit: sh run all-on egy szovegszerkeszto...
no todo: rout-mcast02.tst: info cfg.cfgInit.executeSWcommands:cfgInit.java:315 15:java.lang.NullPointerException at pack.packPim.fillJoin:packPim.java:466/rtr.rtrPimIface.sendJoin:rtrPimIface.java:231/ip.ipFwdTab.joinOneGroup:ipFwdTab.java:515/ip.ipFwd.mcastAddFlood:ipFwd.java:426/user.userConfig.parseUpMcast:userConfig.java:1364/user.userConfig.doCmdIp4:userConfig.java:1502/user.userConfig.doGlobal:userConfig.java:600/user.userConfig.executeCommand:userConfig.java:209/cfg.cfgInit.executeSWcommands:cfgInit.java:313/cfg.cfgInit.doInit:cfgInit.java:403/cfg.cfgInit.doMain:cfgInit.java:496/router.main:router.java:17/
no todo: exception prt.prtGenConn.run:prtGenConn.java:439 java.lang.IllegalStateException: Timer already cancelled. at java.util.Timer.sched:Timer.java:354/java.util.Timer.schedule:Timer.java:222/ip.ipIfc4arp.resetTimer:ipIfc4arp.java:147/ip.ipIfc4arp.setIPv4addr:ipIfc4arp.java:134/ip.ipIfc4.setIPv4addr:ipIfc4.java:127/cfg.cfgIfc.addrChanged:cfgIfc.java:978/clnt.clntDhcp4.changeAddress:clntDhcp4.java:227/clnt.clntDhcp4.sendKeepalive:clntDhcp4.java:371/clnt.clntDhcp4.datagramWork:clntDhcp4.java:258/prt.prtGenConn.internalWorker:prtGenConn.java:389/prt.prtGenConn.run:prtGenConn.java:429/java.lang.Thread.run:Thread.java:662/
qc pass: ppp with packet over txtls
todo: configure buffer with commit
---------------------------------- 2012-09-18 13:46:24
no qc pass: tls test
no qc pass: ssh test
no qc pass: macsec over tunnel
no qc pass: macsec over atmsar
no qc pass: macsec over atmdxi
no qc pass: macsec over framerelay
no qc pass: macsec over ppp
no qc pass: macsec over hdlc
no qc pass: macsec over ethernet bridge
no qc pass: macsec over ethernet vlan
no qc pass: macsec over ethernet
no qc pass: ike2 with aes256
no qc pass: ike2 with aes192
no qc pass: ike1 with aes256
no qc pass: ike1 with aes192
no qc pass: dtls test
no qc pass: ppp over tls
no qc pass: ppp with packet over txtls
no qc pass: ppp with packet over tls
no qc pass: ppp with packet over dtls
no work: ppp with packet over dtls
no work: ppp with packet over tls
no work: ppp with packet over txtls
no work: ppp over tls
no work: dtls test
no work: ike1 with aes192
no work: ike1 with aes256
no work: ike2 with aes192
no work: ike2 with aes256
no work: macsec over ethernet
no work: macsec over ethernet vlan
no work: macsec over ethernet bridge
no work: macsec over hdlc
no work: macsec over ppp
no work: macsec over framerelay
no work: macsec over atmdxi
no work: macsec over atmsar
no work: macsec over tunnel
no work: ssh test
no work: tls test
---------------------------------- 2012-10-15 19:48:19
qc pass: ppp with packet over dtls
qc pass: ppp with packet over tls
qc pass: ppp with packet over txtls
qc pass: ppp over tls
qc pass: dtls test
qc pass: ike1 with aes192
qc pass: ike1 with aes256
qc pass: ike2 with aes192
qc pass: ike2 with aes256
qc pass: macsec over ethernet
qc pass: macsec over ethernet vlan
qc pass: macsec over ethernet bridge
qc pass: macsec over hdlc
qc pass: macsec over ppp
qc pass: macsec over framerelay
qc pass: macsec over atmdxi
qc pass: macsec over atmsar
qc pass: macsec over tunnel
qc pass: ssh test
qc pass: tls test
---------------------------------- 2012-10-16 07:41:43
no todo: ip inspect with local termination and proxyprofile transport
qc pass: telnet inspection
---------------------------------- 2012-10-16 15:59:34
no qc pass: rip metric
no work: rip metric
---------------------------------- 2012-10-23 01:16:02
qc pass: rip metric
---------------------------------- 2012-10-25 22:38:56
no qc pass: macsec over framerelay
no qc pass: macsec over ppp
no work: macsec over ppp
no work: macsec over framerelay
---------------------------------- 2012-10-30 23:20:16
qc pass: macsec over ppp
---------------------------------- 2012-11-01 01:04:40
qc pass: macsec over framerelay
---------------------------------- 2012-11-08 20:14:45
no todo: configure buffer with commit
no qc pass: macsec over framerelay
no work: macsec over framerelay
---------------------------------- 2012-11-14 22:09:31
qc pass: macsec over framerelay
---------------------------------- 2012-11-21 23:19:20
no todo: dmz-link-bw bgp neighbor command
no qc pass: ospf broadcast chain
no qc pass: ospf point2point chain
no qc pass: ospf point2multipoint connection
no qc pass: isis chain of broadcast nets
no qc pass: lapb mod32768
no work: lapb mod32768
no work: isis chain of broadcast nets
no work: ospf point2multipoint connection
no work: ospf point2point chain
no work: ospf broadcast chain
---------------------------------- 2012-11-22 18:11:21
qc pass: lapb mod32768
qc pass: isis chain of broadcast nets
qc pass: ospf point2multipoint connection
qc pass: ospf point2point chain
qc pass: ospf broadcast chain
---------------------------------- 2012-11-27 14:11:29
qc pass: pvrp point2point connection
qc pass: pvrp point2multipoint connection
qc pass: pvrp point2point chain
qc pass: pvrp metric
qc pass: pvrp address suppression
qc pass: pvrp ingress route filtering with prefixlist
qc pass: pvrp egress route filtering with prefixlist
qc pass: pvrp ingress route filtering with routemap
qc pass: pvrp egress route filtering with routemap
qc pass: pvrp tag
qc pass: pvrp default route
qc pass: pvrp with bfd
---------------------------------- 2012-11-27 17:31:44
no qc pass: rip metric
no qc pass: rip in chain
qc pass: pvrp point2point connection
qc pass: pvrp point2multipoint connection
qc pass: pvrp point2point chain
qc pass: pvrp metric
qc pass: pvrp address suppression
qc pass: pvrp ingress route filtering with prefixlist
qc pass: pvrp egress route filtering with prefixlist
qc pass: pvrp ingress route filtering with routemap
qc pass: pvrp egress route filtering with routemap
qc pass: pvrp tag
qc pass: pvrp default route
qc pass: pvrp with bfd
qc pass: redistribution with pvrp
no work: rip in chain
no work: rip metric
---------------------------------- 2012-11-28 21:54:31
qc pass: pvrp authentication
qc pass: rip in chain
---------------------------------- 2012-11-29 03:22:39
no qc pass: rip in chain
no work: rip in chain
qc pass: rip metric
---------------------------------- 2012-11-29 20:21:36
no qc pass: rip metric
no work: rip metric
---------------------------------- 2012-12-01 07:18:50
qc pass: rip metric
---------------------------------- 2012-12-01 14:39:11
qc pass: pvrp ssh encryption
qc pass: pvrp tls encryption
---------------------------------- 2012-12-02 00:20:22
no qc pass: socks5 server
no qc pass: socks4 server
no qc pass: sipmodem server
no qc pass: scheduler
no qc pass: radius server
no qc pass: proxy server
no qc pass: load balancer server
no qc pass: forwarder server
no qc pass: dynamic tunnel destination
no qc pass: relaying dns server
no qc pass: authoritative dns server
no qc pass: static routing with bfd tracker
no qc pass: static routing with tcp tracker
no qc pass: static routing with icmp tracker
no qc pass: static routing with distance
no qc pass: static routing
no qc pass: rip with bfd
no qc pass: rip metric
no qc pass: rip authentication
no qc pass: rip default route
no qc pass: rip address suppression
no qc pass: rip tag
no qc pass: rip hop count
no qc pass: rip egress route filtering with routemap
no qc pass: rip egress route filtering with prefixlist
no qc pass: rip ingress route filtering with prefixlist
no qc pass: rip on one subnet
no qc pass: redistribution with everything
no qc pass: redistribution with prefixes
no qc pass: redistribution filtering with routemap
no qc pass: redistribution filtering with prefixlist
no qc pass: redistribution with pvrp
no qc pass: redistribution with bgp vpn
no qc pass: redistribution with bgp
no qc pass: redistribution with rip
no qc pass: redistribution with ospf
no qc pass: redistribution with isis
no qc pass: pvrp ssh encryption
no qc pass: pvrp authentication
no qc pass: pvrp with bfd
no qc pass: pvrp default route
no qc pass: pvrp tag
no qc pass: pvrp egress route filtering with prefixlist
no qc pass: pvrp metric
no qc pass: pvrp point2point chain
no qc pass: pvrp point2multipoint connection
no qc pass: ospf with te
no qc pass: ospf with bfd
no qc pass: ospf default route
no qc pass: ospf inter area egress filtering with routemap
no qc pass: ospf inter area egress filtering with prefixlist
no qc pass: ospf inter area ingress filtering with routemap
no qc pass: ospf inter area ingress filtering with prefixlist
no qc pass: ospf authentication
no qc pass: ospf address suppression
no qc pass: ospf external2 metric
no qc pass: ospf external1 metric
no qc pass: ospf external1 vs external2
no qc pass: ospf inter area vs external
no qc pass: ospf intra area vs inter area
no qc pass: ospf intra area metric
no qc pass: ospf transit area
no qc pass: ospf nssa area
no qc pass: ospf stub area
no qc pass: ospf broadcast chain
no qc pass: ospf point2point chain
no qc pass: ospf nonbroadcast connection
no qc pass: ospf broadcast connection
no qc pass: ospf point2multipoint nonbroadcast connection
no qc pass: ospf point2multipoint connection
no qc pass: ospf point2point connection
no qc pass: multicast routing with pim ssm
no qc pass: multicast routing with static flooding
no qc pass: isis with te
no qc pass: isis with bfd
no qc pass: isis default route
no qc pass: isis inter level egress filtering with routemap
no qc pass: isis inter level egress filtering with prefixlist
no qc pass: isis inter level ingress filtering with routemap
no qc pass: isis inter level ingress filtering with prefixlist
no qc pass: isis external metric vs intra level metric
no qc pass: isis external narrow metric
no qc pass: isis external metric
no qc pass: isis intra level metric
no qc pass: isis inter-level routes
no qc pass: isis address suppression
no qc pass: isis updown bit with narrow metric
no qc pass: isis updown bit
no qc pass: isis broadcast subnet
no qc pass: isis chain of broadcast nets
no qc pass: isis attached
no qc pass: isis overload
no qc pass: isis narrow metric
no qc pass: isis over atmdxi
no qc pass: isis over framerelay
no qc pass: isis over ppp
no qc pass: isis over hdlc
no qc pass: isis over ethernet bridge
no qc pass: isis over ethernet vlan
no qc pass: isis over ethernet
no qc pass: vpls over ibgp
no qc pass: vpls over ebgp
no qc pass: bgp nexthop peer
no qc pass: bgp nexthop self
no qc pass: bgp override as
no qc pass: bgp remove private as
no qc pass: bgp allow as in
no qc pass: bgp aspath check
no qc pass: bgp enforce first as
no qc pass: bgp route server
no qc pass: vpns over ibgp
no qc pass: vpns over ebgp
no qc pass: ebgp with bfd
no qc pass: ibgp with labels
no qc pass: ebgp with labels
no qc pass: bgp filtering with extended community
no qc pass: bgp origin vs metric
no qc pass: bgp aspath vs origin
no qc pass: bgp locpref vs aspath
no qc pass: bgp metric
no qc pass: bgp origin
no qc pass: bgp aspath
no qc pass: bgp locpref
no qc pass: bgp filtering with aspath
no qc pass: bgp filtering with standard community
no qc pass: bgp filtering with metric
no qc pass: bgp filtering with origin
no qc pass: bgp filtering with locpref
no qc pass: bgp egress route filtering with routemap
no qc pass: bgp ingress route filtering with routemap
no qc pass: bgp egress route filtering with prefixlist
no qc pass: bgp ingress route filtering with prefixlist
no qc pass: bgp default route
no qc pass: ibgp with long as number
no qc pass: ebgp with long as number
no qc pass: ibgp with mpls
no qc pass: ibgp over loopback
no qc pass: ebgp over loopback
no qc pass: ibgp rr in subnet
no qc pass: ibgp fullmesh in subnet
no qc pass: ibgp in subnet
no qc pass: confed bgp in subnet
no qc pass: ebgp in subnet
no qc pass: ibgp in chain
no qc pass: confed bgp in chain
no qc pass: ebgp in chain
no qc pass: qos egress exp set
no qc pass: qos ingress exp set
no qc pass: qos cos set
no qc pass: qos egress prec set
no qc pass: qos ingress prec set
no qc pass: qos ingress dscp set
no qc pass: qos ingress tos set
no qc pass: qos egress acl matcher
no qc pass: qos ingress acl matcher
no qc pass: qos egress prec matcher
no qc pass: qos ingress prec matcher
no qc pass: qos egress dscp matcher
no qc pass: qos egress length matcher
no qc pass: qos egress shaper action
no qc pass: qos ingress shaper action
no qc pass: qos egress bandwidth action
no qc pass: qos ingress bandwidth action
no qc pass: qos egress priority action
no qc pass: qos ingress priority action
no qc pass: qos egress policer action
no qc pass: qos ingress policer action
no qc pass: qos egress drop action
no qc pass: qos ingress drop action
no qc pass: qos egress transmit action
no qc pass: qos ingress transmit action
no work: qos ingress transmit action
no work: qos egress transmit action
no work: qos ingress drop action
no work: qos egress drop action
no work: qos ingress policer action
no work: qos egress policer action
no work: qos ingress priority action
no work: qos egress priority action
no work: qos ingress bandwidth action
no work: qos egress bandwidth action
no work: qos ingress shaper action
no work: qos egress shaper action
no work: qos egress length matcher
no work: qos egress dscp matcher
no work: qos ingress prec matcher
no work: qos egress prec matcher
no work: qos ingress acl matcher
no work: qos egress acl matcher
no work: qos ingress tos set
no work: qos ingress dscp set
no work: qos ingress prec set
no work: qos egress prec set
no work: qos cos set
no work: qos ingress exp set
no work: qos egress exp set
no work: ebgp in chain
no work: confed bgp in chain
no work: ibgp in chain
no work: ebgp in subnet
no work: confed bgp in subnet
no work: ibgp in subnet
no work: ibgp fullmesh in subnet
no work: ibgp rr in subnet
no work: ebgp over loopback
no work: ibgp over loopback
no work: ibgp with mpls
no work: ebgp with long as number
no work: ibgp with long as number
no work: bgp default route
no work: bgp ingress route filtering with prefixlist
no work: bgp egress route filtering with prefixlist
no work: bgp ingress route filtering with routemap
no work: bgp egress route filtering with routemap
no work: bgp filtering with locpref
no work: bgp filtering with origin
no work: bgp filtering with metric
no work: bgp filtering with standard community
no work: bgp filtering with aspath
no work: bgp locpref
no work: bgp aspath
no work: bgp origin
no work: bgp metric
no work: bgp locpref vs aspath
no work: bgp aspath vs origin
no work: bgp origin vs metric
no work: bgp filtering with extended community
no work: ebgp with labels
no work: ibgp with labels
no work: ebgp with bfd
no work: vpns over ebgp
no work: vpns over ibgp
no work: bgp route server
no work: bgp enforce first as
no work: bgp aspath check
no work: bgp allow as in
no work: bgp remove private as
no work: bgp override as
no work: bgp nexthop self
no work: bgp nexthop peer
no work: vpls over ebgp
no work: vpls over ibgp
no work: isis over ethernet
no work: isis over ethernet vlan
no work: isis over ethernet bridge
no work: isis over hdlc
no work: isis over ppp
no work: isis over framerelay
no work: isis over atmdxi
no work: isis narrow metric
no work: isis overload
no work: isis attached
no work: isis chain of broadcast nets
no work: isis broadcast subnet
no work: isis updown bit
no work: isis updown bit with narrow metric
no work: isis address suppression
no work: isis inter-level routes
no work: isis intra level metric
no work: isis external metric
no work: isis external narrow metric
no work: isis external metric vs intra level metric
no work: isis inter level ingress filtering with prefixlist
no work: isis inter level ingress filtering with routemap
no work: isis inter level egress filtering with prefixlist
no work: isis inter level egress filtering with routemap
no work: isis default route
no work: isis with bfd
no work: isis with te
no work: multicast routing with static flooding
no work: multicast routing with pim ssm
no work: ospf point2point connection
no work: ospf point2multipoint connection
no work: ospf point2multipoint nonbroadcast connection
no work: ospf broadcast connection
no work: ospf nonbroadcast connection
no work: ospf point2point chain
no work: ospf broadcast chain
no work: ospf stub area
no work: ospf nssa area
no work: ospf transit area
no work: ospf intra area metric
no work: ospf intra area vs inter area
no work: ospf inter area vs external
no work: ospf external1 vs external2
no work: ospf external1 metric
no work: ospf external2 metric
no work: ospf address suppression
no work: ospf authentication
no work: ospf inter area ingress filtering with prefixlist
no work: ospf inter area ingress filtering with routemap
no work: ospf inter area egress filtering with prefixlist
no work: ospf inter area egress filtering with routemap
no work: ospf default route
no work: ospf with bfd
no work: ospf with te
no work: pvrp point2multipoint connection
no work: pvrp point2point chain
no work: pvrp metric
no work: pvrp egress route filtering with prefixlist
no work: pvrp tag
no work: pvrp default route
no work: pvrp with bfd
no work: pvrp authentication
no work: pvrp ssh encryption
no work: redistribution with isis
no work: redistribution with ospf
no work: redistribution with rip
no work: redistribution with bgp
no work: redistribution with bgp vpn
no work: redistribution with pvrp
no work: redistribution filtering with prefixlist
no work: redistribution filtering with routemap
no work: redistribution with prefixes
no work: redistribution with everything
no work: rip on one subnet
no work: rip ingress route filtering with prefixlist
no work: rip egress route filtering with prefixlist
no work: rip egress route filtering with routemap
no work: rip hop count
no work: rip tag
no work: rip address suppression
no work: rip default route
no work: rip authentication
no work: rip metric
no work: rip with bfd
no work: static routing
no work: static routing with distance
no work: static routing with icmp tracker
no work: static routing with tcp tracker
no work: static routing with bfd tracker
no work: authoritative dns server
no work: relaying dns server
no work: dynamic tunnel destination
no work: forwarder server
no work: load balancer server
no work: proxy server
no work: radius server
no work: scheduler
no work: sipmodem server
no work: socks4 server
no work: socks5 server
---------------------------------- 2012-12-04 22:08:29
qc pass: qos ingress transmit action
qc pass: qos egress transmit action
qc pass: qos ingress drop action
qc pass: qos egress drop action
qc pass: qos ingress policer action
qc pass: qos egress policer action
qc pass: qos ingress priority action
qc pass: qos egress priority action
qc pass: qos ingress bandwidth action
qc pass: qos egress bandwidth action
qc pass: qos ingress shaper action
qc pass: qos egress shaper action
qc pass: qos egress length matcher
qc pass: qos egress dscp matcher
qc pass: qos ingress prec matcher
qc pass: qos egress prec matcher
qc pass: qos ingress acl matcher
qc pass: qos egress acl matcher
qc pass: qos ingress tos set
qc pass: qos ingress dscp set
qc pass: qos ingress prec set
qc pass: qos egress prec set
qc pass: qos cos set
qc pass: qos ingress exp set
qc pass: qos egress exp set
qc pass: ebgp in chain
qc pass: confed bgp in chain
qc pass: ibgp in chain
qc pass: ebgp in subnet
qc pass: confed bgp in subnet
qc pass: ibgp in subnet
qc pass: ibgp fullmesh in subnet
qc pass: ibgp rr in subnet
qc pass: ebgp over loopback
qc pass: ibgp over loopback
qc pass: ibgp with mpls
qc pass: ebgp with long as number
qc pass: ibgp with long as number
qc pass: bgp default route
qc pass: bgp ingress route filtering with prefixlist
qc pass: bgp egress route filtering with prefixlist
qc pass: bgp ingress route filtering with routemap
qc pass: bgp egress route filtering with routemap
qc pass: bgp filtering with locpref
qc pass: bgp filtering with origin
qc pass: bgp filtering with metric
qc pass: bgp filtering with standard community
qc pass: bgp filtering with aspath
qc pass: bgp locpref
qc pass: bgp aspath
qc pass: bgp origin
qc pass: bgp metric
qc pass: bgp locpref vs aspath
qc pass: bgp aspath vs origin
qc pass: bgp origin vs metric
qc pass: bgp filtering with extended community
qc pass: ebgp with labels
qc pass: ibgp with labels
qc pass: ebgp with bfd
qc pass: vpns over ebgp
qc pass: vpns over ibgp
qc pass: bgp route server
qc pass: bgp enforce first as
qc pass: bgp aspath check
qc pass: bgp allow as in
qc pass: bgp remove private as
qc pass: bgp override as
qc pass: bgp nexthop self
qc pass: bgp nexthop peer
qc pass: vpls over ebgp
qc pass: vpls over ibgp
qc pass: isis over ethernet
qc pass: isis over ethernet vlan
qc pass: isis over ethernet bridge
qc pass: isis over hdlc
qc pass: isis over ppp
qc pass: isis over framerelay
qc pass: isis over atmdxi
qc pass: isis narrow metric
qc pass: isis overload
qc pass: isis attached
qc pass: isis chain of broadcast nets
qc pass: isis broadcast subnet
qc pass: isis updown bit
qc pass: isis updown bit with narrow metric
qc pass: isis address suppression
qc pass: isis inter-level routes
qc pass: isis intra level metric
qc pass: isis external metric
qc pass: isis external narrow metric
qc pass: isis external metric vs intra level metric
qc pass: isis inter level ingress filtering with prefixlist
qc pass: isis inter level ingress filtering with routemap
qc pass: isis inter level egress filtering with prefixlist
qc pass: isis inter level egress filtering with routemap
qc pass: isis default route
qc pass: isis with bfd
qc pass: isis with te
qc pass: multicast routing with static flooding
qc pass: multicast routing with pim ssm
qc pass: ospf point2point connection
qc pass: ospf point2multipoint connection
qc pass: ospf point2multipoint nonbroadcast connection
qc pass: ospf broadcast connection
qc pass: ospf nonbroadcast connection
qc pass: ospf point2point chain
qc pass: ospf broadcast chain
qc pass: ospf stub area
qc pass: ospf nssa area
qc pass: ospf transit area
qc pass: ospf intra area metric
qc pass: ospf intra area vs inter area
qc pass: ospf inter area vs external
qc pass: ospf external1 vs external2
qc pass: ospf external1 metric
qc pass: ospf external2 metric
qc pass: ospf address suppression
qc pass: ospf authentication
qc pass: ospf inter area ingress filtering with prefixlist
qc pass: ospf inter area ingress filtering with routemap
qc pass: ospf inter area egress filtering with prefixlist
qc pass: ospf inter area egress filtering with routemap
qc pass: ospf default route
qc pass: ospf with bfd
qc pass: ospf with te
qc pass: pvrp point2multipoint connection
qc pass: pvrp point2point chain
qc pass: pvrp metric
qc pass: pvrp egress route filtering with prefixlist
qc pass: pvrp tag
qc pass: pvrp default route
qc pass: pvrp with bfd
qc pass: pvrp authentication
qc pass: pvrp ssh encryption
qc pass: redistribution with isis
qc pass: redistribution with ospf
qc pass: redistribution with rip
qc pass: redistribution with bgp
qc pass: redistribution with bgp vpn
qc pass: redistribution with pvrp
qc pass: redistribution filtering with prefixlist
qc pass: redistribution filtering with routemap
qc pass: redistribution with prefixes
qc pass: redistribution with everything
qc pass: rip on one subnet
qc pass: rip ingress route filtering with prefixlist
qc pass: rip egress route filtering with prefixlist
qc pass: rip egress route filtering with routemap
qc pass: rip hop count
qc pass: rip tag
qc pass: rip address suppression
qc pass: rip default route
qc pass: rip authentication
qc pass: rip metric
qc pass: rip with bfd
qc pass: static routing
qc pass: static routing with distance
qc pass: static routing with icmp tracker
qc pass: static routing with tcp tracker
qc pass: static routing with bfd tracker
qc pass: authoritative dns server
qc pass: relaying dns server
qc pass: dynamic tunnel destination
qc pass: forwarder server
qc pass: load balancer server
qc pass: proxy server
qc pass: radius server
qc pass: scheduler
qc pass: sipmodem server
qc pass: socks4 server
qc pass: socks5 server
---------------------------------- 2012-12-07 23:17:11
qc pass: rip in chain
---------------------------------- 2012-12-13 19:04:53
no todo: capture on tunnel interface
---------------------------------- 2012-12-24 01:45:35
no qc pass: rip in chain
no work: rip in chain
---------------------------------- 2012-12-24 05:32:50
qc pass: rip in chain
---------------------------------- 2012-12-28 09:04:53
no qc pass: rip metric
no work: rip metric
---------------------------------- 2012-12-31 18:39:09
qc pass: rip metric
---------------------------------- 2013-01-03 13:11:08
no todo: range for http server
no qc pass: rip in chain
no work: rip in chain
---------------------------------- 2013-01-03 20:20:00
qc pass: rip in chain
---------------------------------- 2013-01-12 21:02:02
no qc pass: rip metric
no qc pass: rip in chain
no work: rip in chain
no work: rip metric
---------------------------------- 2013-01-13 11:44:59
qc pass: rip in chain
qc pass: rip metric
---------------------------------- 2013-01-17 20:59:57
no qc pass: rip in chain
no work: rip in chain
todo: traceroute
---------------------------------- 2013-01-26 15:52:02
no todo: encrypt within packHolder, openssl as crypto hardware
no qc pass: ppp over stun
no work: ppp over stun
qc pass: rip in chain
---------------------------------- 2013-01-27 08:39:43
no qc pass: rip in chain
qc pass: ppp over stun
no work: rip in chain
---------------------------------- 2013-01-28 00:15:57
no qc pass: rip with bfd
no qc pass: rip metric
no qc pass: rip authentication
no qc pass: rip default route
no qc pass: rip address suppression
no qc pass: rip tag
no qc pass: rip hop count
no qc pass: rip egress route filtering with routemap
no qc pass: rip ingress route filtering with routemap
no qc pass: rip egress route filtering with prefixlist
no qc pass: rip ingress route filtering with prefixlist
no qc pass: rip on one subnet
no work: rip on one subnet
no work: rip ingress route filtering with prefixlist
no work: rip egress route filtering with prefixlist
no work: rip ingress route filtering with routemap
no work: rip egress route filtering with routemap
no work: rip hop count
no work: rip tag
no work: rip address suppression
no work: rip default route
no work: rip authentication
no work: rip metric
no work: rip with bfd
---------------------------------- 2013-01-28 06:21:50
qc pass: rip on one subnet
qc pass: rip in chain
qc pass: rip ingress route filtering with prefixlist
qc pass: rip egress route filtering with prefixlist
qc pass: rip ingress route filtering with routemap
qc pass: rip egress route filtering with routemap
qc pass: rip hop count
qc pass: rip tag
qc pass: rip address suppression
qc pass: rip default route
qc pass: rip authentication
qc pass: rip with bfd
---------------------------------- 2013-01-28 10:04:03
qc pass: rip metric
---------------------------------- 2013-01-29 22:36:06
no qc pass: rip in chain
no work: rip in chain
---------------------------------- 2013-01-30 07:54:27
no todo: traceroute
qc pass: rip in chain
---------------------------------- 2013-02-03 17:02:02
no todo: igmp stack
qc pass: multicast routing with igmp/mld
---------------------------------- 2013-02-04 21:00:28
no qc pass: rip in chain
qc pass: multicast routing with mdlp
no work: rip in chain
---------------------------------- 2013-02-05 08:39:32
no qc pass: rip metric
no qc pass: multicast routing with mdlp
no qc pass: bridged ethernet over bridge
no qc pass: bridge with spantree
no qc pass: bridged ethernet over gre
no qc pass: bridged ethernet over atmsar
no qc pass: bridged ethernet over atmdxi
no qc pass: bridged ethernet over framerelay
no qc pass: bridged ethernet over ppp
no qc pass: bridged ethernet over hdlc
no qc pass: star bridged ethernet
no qc pass: chain bridged ethernet vlan
no work: chain bridged ethernet vlan
no work: star bridged ethernet
no work: bridged ethernet over hdlc
no work: bridged ethernet over ppp
no work: bridged ethernet over framerelay
no work: bridged ethernet over atmdxi
no work: bridged ethernet over atmsar
no work: bridged ethernet over gre
no work: bridge with spantree
no work: bridged ethernet over bridge
qc pass: multicast routing with mldp
qc pass: rip in chain
no work: rip metric
---------------------------------- 2013-02-05 12:04:09
no qc pass: rip in chain
qc pass: chain bridged ethernet vlan
qc pass: star bridged ethernet
qc pass: bridged ethernet over hdlc
qc pass: bridged ethernet over ppp
qc pass: bridged ethernet over framerelay
qc pass: bridged ethernet over atmdxi
qc pass: bridged ethernet over atmsar
qc pass: bridged ethernet over gre
qc pass: bridge with spantree
qc pass: bridged ethernet over bridge
no work: rip in chain
qc pass: rip metric
---------------------------------- 2013-02-05 19:04:34
qc pass: rip in chain
---------------------------------- 2013-02-06 12:38:37
no qc pass: rip in chain
no work: rip in chain
---------------------------------- 2013-02-06 17:06:42
no qc pass: tacacs server
no qc pass: socks5 server
no qc pass: socks4 server
no qc pass: sipmodem server
no qc pass: scheduler
no qc pass: radius server
no qc pass: proxy server
no qc pass: load balancer server
no qc pass: forwarder server
no qc pass: dynamic tunnel destination
no qc pass: relaying dns server
no qc pass: authoritative dns server
no qc pass: static routing with bfd tracker
no qc pass: static routing with tcp tracker
no qc pass: static routing with icmp tracker
no qc pass: static routing with distance
no qc pass: static routing
no qc pass: rip with bfd
no qc pass: rip metric
no qc pass: rip authentication
no qc pass: rip default route
no qc pass: rip address suppression
no qc pass: rip tag
no qc pass: rip hop count
no qc pass: rip egress route filtering with routemap
no qc pass: rip ingress route filtering with routemap
no qc pass: rip egress route filtering with prefixlist
no qc pass: rip ingress route filtering with prefixlist
no qc pass: rip on one subnet
no qc pass: redistribution with everything
no qc pass: redistribution with prefixes
no qc pass: redistribution filtering with routemap
no qc pass: redistribution filtering with prefixlist
no qc pass: redistribution with pvrp
no qc pass: redistribution with bgp vpn
no qc pass: redistribution with bgp
no qc pass: redistribution with rip
no qc pass: redistribution with ospf
no qc pass: redistribution with isis
no qc pass: pvrp tls encryption
no qc pass: pvrp ssh encryption
no qc pass: pvrp authentication
no qc pass: pvrp with bfd
no qc pass: pvrp default route
no qc pass: pvrp tag
no qc pass: pvrp egress route filtering with routemap
no qc pass: pvrp ingress route filtering with routemap
no qc pass: pvrp egress route filtering with prefixlist
no qc pass: pvrp ingress route filtering with prefixlist
no qc pass: pvrp address suppression
no qc pass: pvrp metric
no qc pass: pvrp point2point chain
no qc pass: pvrp point2multipoint connection
no qc pass: pvrp point2point connection
no qc pass: ospf with te
no qc pass: ospf with bfd
no qc pass: ospf default route
no qc pass: ospf inter area egress filtering with routemap
no qc pass: ospf inter area egress filtering with prefixlist
no qc pass: ospf inter area ingress filtering with routemap
no qc pass: ospf inter area ingress filtering with prefixlist
no qc pass: ospf authentication
no qc pass: ospf address suppression
no qc pass: ospf external2 metric
no qc pass: ospf external1 metric
no qc pass: ospf external1 vs external2
no qc pass: ospf inter area vs external
no qc pass: ospf intra area vs inter area
no qc pass: ospf intra area metric
no qc pass: ospf transit area
no qc pass: ospf nssa area
no qc pass: ospf stub area
no qc pass: ospf broadcast chain
no qc pass: ospf point2point chain
no qc pass: ospf nonbroadcast connection
no qc pass: ospf broadcast connection
no qc pass: ospf point2multipoint nonbroadcast connection
no qc pass: ospf point2multipoint connection
no qc pass: ospf point2point connection
no qc pass: multicast routing with mldp
no qc pass: multicast routing with igmp/mld
no qc pass: multicast routing with pim ssm
no qc pass: multicast routing with static flooding
no qc pass: isis with te
no qc pass: isis with bfd
no qc pass: isis default route
no qc pass: isis inter level egress filtering with routemap
no qc pass: isis inter level egress filtering with prefixlist
no qc pass: isis inter level ingress filtering with routemap
no qc pass: isis inter level ingress filtering with prefixlist
no qc pass: isis external metric vs intra level metric
no qc pass: isis external narrow metric
no qc pass: isis external metric
no qc pass: isis intra level metric
no qc pass: isis authentication
no qc pass: isis inter-level routes
no qc pass: isis address suppression
no qc pass: isis updown bit with narrow metric
no qc pass: isis updown bit
no qc pass: isis broadcast subnet
no qc pass: isis chain of broadcast nets
no qc pass: isis attached
no qc pass: isis overload
no qc pass: isis narrow metric
no qc pass: isis over gre
no qc pass: isis over atmdxi
no qc pass: isis over framerelay
no qc pass: isis over ppp
no qc pass: isis over hdlc
no qc pass: isis over ethernet bridge
no qc pass: isis over ethernet vlan
no qc pass: isis over ethernet
no qc pass: vpls over ibgp
no qc pass: vpls over ebgp
no qc pass: bgp nexthop peer
no qc pass: bgp nexthop self
no qc pass: bgp override as
no qc pass: bgp remove private as
no qc pass: bgp allow as in
no qc pass: bgp aspath check
no qc pass: bgp enforce first as
no work: bgp enforce first as
no work: bgp aspath check
no work: bgp allow as in
no work: bgp remove private as
no work: bgp override as
no work: bgp nexthop self
no work: bgp nexthop peer