-
Notifications
You must be signed in to change notification settings - Fork 40
/
Copy pathchangelog
2190 lines (1327 loc) · 62 KB
/
changelog
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
vyatta-cfg-quagga (0.19.1+vyos2+current9) unstable; urgency=low
* T1267 - route deletion with next-hop-interface fixed
-- hagbard <[email protected]> Wed, 20 Mar 2019 11:36:41 -0700
vyatta-cfg-quagga (0.19.1+vyos2+current8) unstable; urgency=low
* T1267 - Add interface name for static routes
-- hagbard <[email protected]> Wed, 13 Mar 2019 15:28:34 -0700
vyatta-cfg-quagga (0.19.1+vyos2+current7) unstable; urgency=low
* T1288 - 'set protocols static ar' python implementation
-- hagbard <[email protected]> Mon, 11 Mar 2019 13:17:14 -0700
vyatta-cfg-quagga (0.19.1+vyos2+current6) unstable; urgency=low
* bugfix: T1102 - Disabling rp_filter don't work
-- hagbard <[email protected]> Tue, 18 Dec 2018 11:13:06 -0800
vyatta-cfg-quagga (0.19.1+vyos2+current5) unstable; urgency=medium
* Move IPv4-specific BGP options to "address-family ipv4-unicast" subtrees.
-- Daniil Baturin <[email protected]> Tue, 18 Sep 2018 23:15:19 +0200
vyatta-cfg-quagga (0.19.1+vyos2+current4) unstable; urgency=low
[ Daniil Baturin ]
* Fix protocols static route template
[ Sylvain Munaut ]
* Route-maps for static routes
-- Daniil Baturin <[email protected]> Wed, 21 Dec 2016 19:57:51 +0100
vyatta-cfg-quagga (0.19.1+vyos2+current3) unstable; urgency=low
[ Mihail Vasilev ]
* Added bgp extended community support.
[ Mihail Vasilev ]
-- Mihail Vasilev <[email protected]> Tue, 10 Apr 2016 11:51:00 -0300
vyatta-cfg-quagga (0.19.1+vyos2+current2) unstable; urgency=low
[ Mihail Vasilev ]
* Added ospf option to filter incoming prefixes.
[ Mihail Vasilev ]
-- Mihail Vasilev <[email protected]> Wed, 14 Apr 2016 08:54:00 -0300
vyatta-cfg-quagga (0.19.1+vyos2+current1) unstable; urgency=medium
[ Thomas Jepp ]
* Add missing build dependencies.
[ Kim Hagen ]
-- Kim Hagen <[email protected]> Sun, 24 Jan 2016 15:03:04 -0500
vyatta-cfg-quagga (0.19.1+vyos2+lithium12) unstable; urgency=low
[ Carl Byington ]
* avoid routing thru 127.0.0.1
* allow dhcp-interface for the next-hop on static routes
* dhcp bound/reboot must ignore old values
[ Alex Harpin ]
-- Alex Harpin <[email protected]> Mon, 09 Nov 2015 21:41:29 +0000
vyatta-cfg-quagga (0.19.1+vyos2+lithium11) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-quagga: set source-validation node priority after interface
-- Alex Harpin <[email protected]> Sun, 11 Oct 2015 10:57:14 +0100
vyatta-cfg-quagga (0.19.1+vyos2+lithium10) unstable; urgency=low
* vyatta-cfg-quagga: update dh_gencontrol with new development build flag
-- Alex Harpin <[email protected]> Tue, 16 Jun 2015 19:28:44 +0100
vyatta-cfg-quagga (0.19.1+vyos2+lithium9) unstable; urgency=low
* Tidy up changelog
-- Alex Harpin <[email protected]> Sat, 13 Jun 2015 10:22:19 +0100
vyatta-cfg-quagga (0.19.1+vyos2+lithium8) unstable; urgency=low
[ Carl Byington ]
* allow dhcp-interface for the next-hop on static routes
* remove old routes when dhcp gateway changes, avoid routing thru
127.0.0.1
[ Daniil Baturin ]
-- Daniil Baturin <[email protected]> Sun, 03 May 2015 19:19:14 +0200
vyatta-cfg-quagga (0.19.1+vyos2+lithium7) unstable; urgency=low
* Bug #521: save quagga daemon configs to /opt/vyatta/etc/quagga at
commit time.
* Bug #528: use corrent command for removing IPv6 address-family from
a neighbor.
* Bug #529: don't build packages for serial and dataplane interfaces.
* Remove reference to vyatta-unicast.
-- Daniil Baturin <[email protected]> Tue, 24 Mar 2015 21:03:45 +0100
vyatta-cfg-quagga (0.19.1+vyos2+lithium6) unstable; urgency=low
[ Alex Harpin ]
* vyatta-cfg-quagga: remove unused / old configuration nodes
-- Alex Harpin <[email protected]> Sun, 25 Jan 2015 10:14:25 +0000
vyatta-cfg-quagga (0.19.1+vyos2+lithium5) unstable; urgency=low
* Update maintainer address
-- Alex Harpin <[email protected]> Thu, 25 Dec 2014 14:45:17 +0000
vyatta-cfg-quagga (0.19.1+vyos2+lithium4) unstable; urgency=low
* Force release
-- Alex Harpin <[email protected]> Mon, 15 Dec 2014 07:38:38 +0000
vyatta-cfg-quagga (0.19.1+vyos2+lithium3) unstable; urgency=low
[ Kevin Blackham ]
* Bug #384: Add route-map support for 'as-path exclude'
[ William Steve Applegate ]
* Add kludge to setup IPv6 routes for policy routing.
[ Daniil Baturin ]
-- Daniil Baturin <[email protected]> Fri, 21 Nov 2014 18:55:12 +0100
vyatta-cfg-quagga (0.19.1+vyos2+lithium2) unstable; urgency=low
[ Ryan Riske ]
* Bug 147: source-validation sysctl behavior changed in newer kernels
[ Daniil Baturin ]
-- Daniil Baturin <[email protected]> Fri, 07 Nov 2014 02:10:19 +0100
vyatta-cfg-quagga (0.19.1+vyos2+lithium1) unstable; urgency=low
* New branch
-- Daniil Baturin <[email protected]> Fri, 07 Nov 2014 02:08:04 +0100
vyatta-cfg-quagga (0.19.0+vyos1+helium8) unstable; urgency=low
* Add VXLAN to interface template generator.
-- Daniil Baturin <[email protected]> Sat, 20 Sep 2014 09:51:17 +0200
vyatta-cfg-quagga (0.19.0+vyos1+helium7) unstable; urgency=low
[ Kim Hagen ]
* Set separate virtual interface for QinQ.
[ Daniil Baturin ]
-- Daniil Baturin <[email protected]> Tue, 05 Aug 2014 16:29:53 +0000
vyatta-cfg-quagga (0.19.0+vyos1+helium6) unstable; urgency=low
[ Kim Hagen ]
* Bug #186 - RIP passive-interface "default" missing from config
template
* Add QinQ for ethernet interfaces to template generator.
* Add QinQ for bonding and pseudo-ethernet interfaces to template
generator.
[ Daniil Baturin ]
* Bug #102: add completion for as-path-list in route-map rule.
-- Daniil Baturin <[email protected]> Tue, 01 Jul 2014 01:29:16 +0200
vyatta-cfg-quagga (0.19.0+vyos1+helium5) unstable; urgency=low
[ Stig Thormodsrud ]
* Add per interface source-validation
[ Daniil Baturin ]
-- Daniil Baturin <[email protected]> Sun, 06 Apr 2014 16:17:19 +0200
vyatta-cfg-quagga (0.19.0+vyos1+helium4) unstable; urgency=low
* Add l2tpv3 interfaces to template generator.
-- Daniil Baturin <[email protected]> Sun, 06 Apr 2014 14:01:59 +0200
vyatta-cfg-quagga (0.19.0+vyos1+helium3) unstable; urgency=low
[ Simon Vigneux ]
* Tiny typo in tab completion.
[ Daniil Baturin ]
* Bug #159: add dummy interfaces to interface template generator.
-- Daniil Baturin <[email protected]> Sun, 06 Apr 2014 12:21:31 +0200
vyatta-cfg-quagga (0.19.0+vyos1+helium2) unstable; urgency=low
[ Patrick van Staveren ]
* Clean up extra quote in quagga "ospf distance global"
[ Daniil Baturin ]
-- Daniil Baturin <[email protected]> Thu, 23 Jan 2014 08:12:21 +0100
vyatta-cfg-quagga (0.19.0+vyos1+helium1) unstable; urgency=low
* New branch
-- Daniil Baturin <[email protected]> Thu, 23 Jan 2014 08:05:39 +0100
vyatta-cfg-quagga (0.19.0+hydrogen2) unstable; urgency=low
* Bug #58: Fix quagga command syntax so IPv4 peer-groups work again
-- Daniil Baturin <[email protected]> Mon, 04 Nov 2013 17:27:03 +0100
vyatta-cfg-quagga (0.19.0+hydrogen1) unstable; urgency=low
* Fix branch name
-- Daniil Baturin <[email protected]> Mon, 04 Nov 2013 00:00:00 +0100
vyatta-cfg-quagga (0.18.161+daisy9) unstable; urgency=low
* updated fix for bug 8968
-- Robert Bays <[email protected]> Mon, 10 Jun 2013 12:50:07 -0700
vyatta-cfg-quagga (0.18.161+daisy8) unstable; urgency=low
* make quagga link-detect command conditional on zebra
* fix bug 8968
* fix bug 8988
-- Robert Bays <[email protected]> Sun, 09 Jun 2013 21:36:47 -0700
vyatta-cfg-quagga (0.18.161+daisy7) unstable; urgency=low
* allow optional dependency on vyatta-unicast
-- Robert Bays <[email protected]> Sat, 01 Jun 2013 16:46:49 -0700
vyatta-cfg-quagga (0.18.161+daisy6) unstable; urgency=low
* Fixing 7975: provide MTU ignore for OSPFv3
-- Gaurav Sinha <[email protected]> Wed, 27 Mar 2013 10:13:42 -0700
vyatta-cfg-quagga (0.18.161+daisy5) unstable; urgency=low
* Fixing 8607
-- Gaurav Sinha <[email protected]> Thu, 17 Jan 2013 10:32:54 -0800
vyatta-cfg-quagga (0.18.161+daisy4) unstable; urgency=low
* Initial commit for supporting ACL config for multicast for SE
version.
-- Gaurav Sinha <[email protected]> Fri, 14 Dec 2012 13:20:25 -0800
vyatta-cfg-quagga (0.18.161+daisy3) unstable; urgency=low
* Bugfix 8501: fix ordering problems in IPv6 peer-groups
-- John Southworth <[email protected]> Thu, 13 Dec 2012 09:37:16 -0800
vyatta-cfg-quagga (0.18.161+daisy2) unstable; urgency=low
* Bugfix 7428: Update warning message text.
-- James Davidson <[email protected]> Sat, 24 Nov 2012 11:25:58 -0800
vyatta-cfg-quagga (0.18.161+daisy1) unstable; urgency=low
* create daisy branch
-- John Southworth <[email protected]> Sat, 13 Oct 2012 13:30:41 -0700
vyatta-cfg-quagga (0.18.161) unstable; urgency=low
* new branch
-- John Southworth <[email protected]> Fri, 12 Oct 2012 19:46:55 -0700
vyatta-cfg-quagga (0.18.160) unstable; urgency=low
[ Bharat ]
* Bug 8345: Reverting changes which were committed against bug 8345.
We are seeing issues when we are upgrading to pacifica from
[ bharat ]
* 0.18.159
[ susheela ]
* BGP neighbor local-as functionality: verified that works as intended
and 7791 fixed.
-- susheela <[email protected]> Sat, 06 Oct 2012 15:29:20 -0700
vyatta-cfg-quagga (0.18.159) unstable; urgency=low
[ Bharat ]
* Bug 8345: Reverting changes which were committed against bug 8345.
We are seeing issues when we are upgrading to pacifica from
[ bharat ]
-- bharat <[email protected]> Thu, 04 Oct 2012 11:23:55 -0700
vyatta-cfg-quagga (0.18.158) unstable; urgency=low
* Forced release
-- Bharat <[email protected]> Wed, 26 Sep 2012 15:56:12 -0700
vyatta-cfg-quagga (0.18.157) unstable; urgency=low
* - Added Multicast and Broadcast checks for route and next hop for
static route command.
-- bharat <[email protected]> Wed, 26 Sep 2012 15:30:27 -0700
vyatta-cfg-quagga (0.18.156) unstable; urgency=low
* Config commands for bGP multipaths.
-- susheela <[email protected]> Wed, 12 Sep 2012 13:52:48 -0700
vyatta-cfg-quagga (0.18.155) unstable; urgency=low
* reserve tables for future use
-- Robert Bays <[email protected]> Wed, 05 Sep 2012 15:34:37 -0700
vyatta-cfg-quagga (0.18.154) unstable; urgency=low
* initial checkin for pbr functionality
* move policy priority tag to each policy type
-- Robert Bays <[email protected]> Wed, 05 Sep 2012 14:25:48 -0700
vyatta-cfg-quagga (0.18.153) unstable; urgency=low
* Bugfix 8217: VTI: add routing cfg commands under interfaces vti
-- Saurabh Mohan <[email protected]> Thu, 09 Aug 2012 13:27:17 -0700
vyatta-cfg-quagga (0.18.152) unstable; urgency=low
* Warn user if both gateway-address and static default route are set
* 0.18.151
-- James Davidson <[email protected]> Wed, 16 May 2012 10:06:58 -0700
vyatta-cfg-quagga (0.18.151) unstable; urgency=low
* Warn user if both gateway-address and static default route are set
-- James Davidson <[email protected]> Wed, 16 May 2012 10:05:43 -0700
vyatta-cfg-quagga (0.18.150) unstable; urgency=low
* No need to genererate vrrp interface templates anymore
-- John Southworth <[email protected]> Tue, 15 May 2012 20:42:28 -0700
vyatta-cfg-quagga (0.18.149) unstable; urgency=low
* new branch
-- Deepti Kulkarni <[email protected]> Sat, 03 Mar 2012 02:25:36 -0800
vyatta-cfg-quagga (0.18.148) unstable; urgency=low
* Add support for future dataplane
-- Stephen Hemminger <[email protected]> Wed, 21 Dec 2011 11:13:12 -0800
vyatta-cfg-quagga (0.18.147) unstable; urgency=low
* Bug 7582: Errors on generating allowed values under an edit level
for protocols bgp <> neighbor <> peer-group
-- Robert Bays <[email protected]> Mon, 19 Dec 2011 17:18:53 -0800
vyatta-cfg-quagga (0.18.146) unstable; urgency=low
* Bug 7582: Errors on generating allowed values under an edit level
for protocols bgp <> neighbor <> peer-group
-- Robert Bays <[email protected]> Mon, 19 Dec 2011 17:11:11 -0800
vyatta-cfg-quagga (0.18.145) unstable; urgency=low
* Bug 7665: BGP ridiculous load time
-- Robert Bays <[email protected]> Mon, 19 Dec 2011 16:53:42 -0800
vyatta-cfg-quagga (0.18.144) unstable; urgency=low
* Add vrrp interface parameter
-- John Southworth <[email protected]> Fri, 02 Dec 2011 11:19:14 -0800
vyatta-cfg-quagga (0.18.143) unstable; urgency=low
* Add support for vif on pseudo-ethernet
* Add dependency on version of vyatta-cfg-system
-- Stephen Hemminger <[email protected]> Thu, 03 Nov 2011 14:30:25 -0700
vyatta-cfg-quagga (0.18.142) unstable; urgency=low
* bgpd: Bug 7530 - Peer-group commit fails with error when no remote-
as is defined
* bgp: Bug 6033 - There is no auto completion for "bgp <> neighbor <>
peer-group"
* bgp: Bug 7205 - peer-group maximum-prefix incorrectly takes
precedence
-- Robert Bays <[email protected]> Thu, 29 Sep 2011 19:51:14 -0700
vyatta-cfg-quagga (0.18.141) unstable; urgency=low
* Bug 7522 -
-- Robert Bays <[email protected]> Tue, 27 Sep 2011 13:46:09 -0700
vyatta-cfg-quagga (0.18.140) unstable; urgency=low
* Bug 6030: bgp redistribution doesn't work well when it's set for
ipv4 and ipv6
-- Robert Bays <[email protected]> Sun, 11 Sep 2011 16:32:32 -0700
vyatta-cfg-quagga (0.18.139) unstable; urgency=low
* Bugfix 7077: Add support for IPv6 nexthops in route maps
-- Bob Gilligan <[email protected]> Thu, 11 Aug 2011 18:17:12 -0700
vyatta-cfg-quagga (0.18.138) unstable; urgency=low
* new branch
-- Deepti Kulkarni <[email protected]> Thu, 07 Jul 2011 20:55:49 -0700
vyatta-cfg-quagga (0.18.137) unstable; urgency=low
* Missed two nodes in the last commit
-- John Southworth <[email protected]> Fri, 17 Jun 2011 18:04:48 -0500
vyatta-cfg-quagga (0.18.136) unstable; urgency=low
* Bugfix 6816: Make previous bugfix more maintainable by moving check
to a script instead of defining it in multiple node.defs
-- John Southworth <[email protected]> Fri, 17 Jun 2011 16:45:11 -0500
vyatta-cfg-quagga (0.18.135) unstable; urgency=low
* Bugfix 6816: Verify that at least one next-hop exists if the parent
node for the route still exists
-- John Southworth <[email protected]> Fri, 17 Jun 2011 14:20:34 -0500
vyatta-cfg-quagga (0.18.134) unstable; urgency=low
* disallow banned parameters from a peer already in a peer-group
* remove peer-group checks from node.defs. this functionality has
been moved into vyatta-bgp.pl.
-- Robert Bays <[email protected]> Tue, 07 Jun 2011 15:19:44 -0700
vyatta-cfg-quagga (0.18.133) unstable; urgency=low
* remove debug node
-- Robert Bays <[email protected]> Mon, 06 Jun 2011 22:31:49 -0700
vyatta-cfg-quagga (0.18.132) unstable; urgency=low
* Bug 7121 - IPv6 peer-groups not working
-- Robert Bays <[email protected]> Mon, 06 Jun 2011 22:23:10 -0700
vyatta-cfg-quagga (0.18.131) unstable; urgency=low
* Bug 6841: a neighbor becomes inactivated in the routing engine after
its peer-group is removed
* remove debug statement from bgp script.
-- Robert Bays <[email protected]> Mon, 06 Jun 2011 14:01:06 -0700
vyatta-cfg-quagga (0.18.130) unstable; urgency=low
* Bug 6841: a neighbor becomes inactivated in the routing engine after
its peer-group is removed
* remove debug statement from bgp script.
-- Robert Bays <[email protected]> Mon, 06 Jun 2011 14:00:22 -0700
vyatta-cfg-quagga (0.18.129) unstable; urgency=low
* Bug 6841: a neighbor becomes inactivated in the routing engine after
its peer-group is removed
* remove debug statement from bgp script.
-- Robert Bays <[email protected]> Mon, 06 Jun 2011 13:57:37 -0700
vyatta-cfg-quagga (0.18.128) unstable; urgency=low
* alternative fix for bug 6069
-- An-Cheng Huang <[email protected]> Wed, 25 May 2011 15:00:44 -0700
vyatta-cfg-quagga (0.18.127) unstable; urgency=low
* changes for new commit
-- An-Cheng Huang <[email protected]> Tue, 10 May 2011 09:29:23 +0800
vyatta-cfg-quagga (0.18.126) unstable; urgency=low
* Fix perl critic warnings
-- Stephen Hemminger <[email protected]> Mon, 25 Apr 2011 10:00:34 -0700
vyatta-cfg-quagga (0.18.125) unstable; urgency=low
[ Daniil Baturin ]
* Fixed a typo in prefix-list6 completion
[ Robert Bays ]
* silence the perl critic
[ Mohit Mehta ]
* Parital fix for bug 6759 serial packages are incorrectly included in
virt ISO
-- Mohit Mehta <[email protected]> Wed, 02 Feb 2011 12:15:47 -0800
vyatta-cfg-quagga (0.18.124) unstable; urgency=low
* new branch
-- An-Cheng Huang <[email protected]> Tue, 28 Dec 2010 13:47:38 -0800
vyatta-cfg-quagga (0.18.123) unstable; urgency=low
* Fix help text
-- Stephen Hemminger <[email protected]> Tue, 21 Dec 2010 13:42:33 -0800
vyatta-cfg-quagga (0.18.122) unstable; urgency=low
* Fix check for local IP address
-- Stephen Hemminger <[email protected]> Mon, 06 Dec 2010 16:46:58 -0800
vyatta-cfg-quagga (0.18.121) unstable; urgency=low
* clean up code
-- Robert Bays <[email protected]> Sat, 04 Dec 2010 17:43:41 -0800
vyatta-cfg-quagga (0.18.120) unstable; urgency=low
* fix ordering for non-consistent commands
* add debug function to clean up code
-- Robert Bays <[email protected]> Fri, 03 Dec 2010 17:57:58 -0800
vyatta-cfg-quagga (0.18.119) unstable; urgency=low
* fix for bug 6481. change the tree walk order. add support for
predefined order walks.
-- Robert Bays <[email protected]> Thu, 02 Dec 2010 17:28:46 -0800
vyatta-cfg-quagga (0.18.118) unstable; urgency=low
* remove deprecated linda override
-- Stephen Hemminger <[email protected]> Fri, 26 Nov 2010 11:09:20 -0800
vyatta-cfg-quagga (0.18.117) unstable; urgency=low
* Need to skip LAST node tag when configuring bgp node, but let all
others through.
-- Michael <[email protected]> Fri, 19 Nov 2010 09:24:56 -0800
vyatta-cfg-quagga (0.18.116) unstable; urgency=low
* update to use getIP
-- Robert Bays <[email protected]> Fri, 19 Nov 2010 11:33:57 -0800
vyatta-cfg-quagga (0.18.115) unstable; urgency=low
* fix bug 6430
-- Robert Bays <[email protected]> Thu, 18 Nov 2010 17:51:29 -0800
vyatta-cfg-quagga (0.18.114) unstable; urgency=low
* fix for 6069
-- Michael Larson <[email protected]> Thu, 18 Nov 2010 16:48:11 -0800
vyatta-cfg-quagga (0.18.113) unstable; urgency=low
* Revert "Looks like merge with larkspur missed this..."
-- Robert Bays <[email protected]> Fri, 12 Nov 2010 12:17:50 -0800
vyatta-cfg-quagga (0.18.112) unstable; urgency=low
* Looks like merge with larkspur missed this...
-- Robert Bays <[email protected]> Wed, 10 Nov 2010 18:15:15 -0800
vyatta-cfg-quagga (0.18.111) unstable; urgency=low
* fix for bug 6293
-- Robert Bays <[email protected]> Mon, 11 Oct 2010 16:24:59 -0700
vyatta-cfg-quagga (0.18.110) unstable; urgency=low
* Bugfix 5545: Update quagga when any prefix-list6 rule element is
changed
-- Bob Gilligan <[email protected]> Tue, 31 Aug 2010 20:20:39 -0700
vyatta-cfg-quagga (0.18.109) unstable; urgency=low
* UNRELEASED
-- An-Cheng Huang <[email protected]> Thu, 02 Sep 2010 18:28:30 -0700
vyatta-cfg-quagga (0.18.108) unstable; urgency=low
* add control Replaces for vyatta-cfg-quagga-serial
-- An-Cheng Huang <[email protected]> Wed, 01 Sep 2010 11:32:35 -0700
vyatta-cfg-quagga (0.18.107) unstable; urgency=low
[ An-Cheng Huang ]
* 0.18.100+larkspur1
[ Robert Bays ]
* fix for bug 5892
* 0.18.100+larkspur2
* fix for bug 5925
* fix for bug 5937
* 0.18.100+larkspur3
* larkspur specific fix for 5971
* 0.18.100+larkspur4
* fix for bug 5973
* 0.18.100+larkspur5
* rename function to be more descriptive of the actual use
* fix for bug 5939
* 0.18.100+larkspur6
* fix for bug 6021
* fix for bug 4393
* 0.18.100+larkspur7
[ Stephen Hemminger ]
* Add missing step for peer group ttl-security
* 0.18.100+larkspur8
[ Robert Bays ]
* fix for bug 6041
* 0.18.100+larkspur9
* fix for bug 6034
* fix for bug 6049
* 0.18.100+larkspur10
* fix for bug 6054
* 0.18.100+larkspur11
-- Robert Bays <[email protected]> Mon, 30 Aug 2010 15:50:48 -0700
vyatta-cfg-quagga (0.18.106) unstable; urgency=low
* Split templates for serial device into separate package
-- Stephen Hemminger <[email protected]> Fri, 27 Aug 2010 10:21:52 -0700
vyatta-cfg-quagga (0.18.105) unstable; urgency=low
* remove low-level config dir usage
-- An-Cheng Huang <[email protected]> Tue, 17 Aug 2010 18:24:32 -0700
vyatta-cfg-quagga (0.18.104) unstable; urgency=low
[ Robert Bays ]
* larkspur specific fix for 5971
* rename function to be more descriptive of the actual use
* fix for bug 5939
* fix for bug 6021
* fix for bug 4393
[ Stephen Hemminger ]
* Add missing step for peer group ttl-security
-- Stephen Hemminger <[email protected]> Thu, 12 Aug 2010 08:23:51 -0700
vyatta-cfg-quagga (0.18.103) unstable; urgency=low
[ Robert Bays ]
* fix for bug 5925
* fix for bug 5937
* fix for bug 5973
[ An-Cheng Huang ]
* cherry-pick larkspur fixes
-- An-Cheng Huang <[email protected]> Tue, 10 Aug 2010 10:33:23 -0700
vyatta-cfg-quagga (0.18.102) unstable; urgency=low
[ Robert Bays ]
* fix for bug 5892
[ An-Cheng Huang ]
* new API changes
-- An-Cheng Huang <[email protected]> Fri, 30 Jul 2010 14:31:09 -0700
vyatta-cfg-quagga (0.18.101) unstable; urgency=low
* UNRELEASED
-- An-Cheng Huang <[email protected]> Thu, 22 Jul 2010 17:23:30 -0700
vyatta-cfg-quagga (0.18.100+larkspur11) unstable; urgency=low
* fix for bug 6054
-- Robert Bays <[email protected]> Mon, 16 Aug 2010 11:50:05 -0700
vyatta-cfg-quagga (0.18.100+larkspur10) unstable; urgency=low
* fix for bug 6034
* fix for bug 6049
-- Robert Bays <[email protected]> Thu, 12 Aug 2010 18:31:11 -0700
vyatta-cfg-quagga (0.18.100+larkspur9) unstable; urgency=low
* fix for bug 6041
-- Robert Bays <[email protected]> Thu, 12 Aug 2010 10:58:10 -0700
vyatta-cfg-quagga (0.18.100+larkspur8) unstable; urgency=low
* Add missing step for peer group ttl-security
-- Stephen Hemminger <[email protected]> Thu, 12 Aug 2010 05:51:29 -0700
vyatta-cfg-quagga (0.18.100+larkspur7) unstable; urgency=low
* fix for bug 6021
* fix for bug 4393
-- Robert Bays <[email protected]> Tue, 10 Aug 2010 17:47:04 -0700
vyatta-cfg-quagga (0.18.100+larkspur6) unstable; urgency=low
* rename function to be more descriptive of the actual use
* fix for bug 5939
-- Robert Bays <[email protected]> Tue, 10 Aug 2010 15:55:22 -0700
vyatta-cfg-quagga (0.18.100+larkspur5) unstable; urgency=low
* fix for bug 5973
-- Robert Bays <[email protected]> Fri, 06 Aug 2010 16:56:21 -0700
vyatta-cfg-quagga (0.18.100+larkspur4) unstable; urgency=low
* larkspur specific fix for 5971
-- Robert Bays <[email protected]> Fri, 06 Aug 2010 16:43:26 -0700
vyatta-cfg-quagga (0.18.100+larkspur3) unstable; urgency=low
* fix for bug 5925
* fix for bug 5937
-- Robert Bays <[email protected]> Fri, 06 Aug 2010 15:53:44 -0700
vyatta-cfg-quagga (0.18.100+larkspur2) unstable; urgency=low
* fix for bug 5892
-- Robert Bays <[email protected]> Fri, 23 Jul 2010 13:08:15 -0700
vyatta-cfg-quagga (0.18.100+larkspur1) unstable; urgency=low
* UNRELEASED
-- An-Cheng Huang <[email protected]> Thu, 22 Jul 2010 17:17:20 -0700
vyatta-cfg-quagga (0.18.100) unstable; urgency=low
* fix for bug 5893
-- Robert Bays <[email protected]> Thu, 22 Jul 2010 15:18:44 -0700
vyatta-cfg-quagga (0.18.99) unstable; urgency=low
* remove explicit paths from commit error messages since that is
handled by CLI now
-- Robert Bays <[email protected]> Wed, 21 Jul 2010 17:41:11 -0700
vyatta-cfg-quagga (0.18.98) unstable; urgency=low
* Convert Quagga templates to use val_help:
* Remove verbs from help strings
* Add syntax validation on BGP access-list rule value
-- Stephen Hemminger <[email protected]> Wed, 21 Jul 2010 12:29:52 -0700
vyatta-cfg-quagga (0.18.97) unstable; urgency=low
[ Stephen Hemminger ]
* Convert interface templates to use val_help:
[ Robert Bays ]
* fix for bug 5876. ttl-security check moved to templates.
-- Robert Bays <[email protected]> Tue, 20 Jul 2010 15:19:26 -0700
vyatta-cfg-quagga (0.18.96) unstable; urgency=low
* update ttl-security for peer-group as well
-- Robert Bays <[email protected]> Wed, 14 Jul 2010 23:41:45 -0700
vyatta-cfg-quagga (0.18.95) unstable; urgency=low
* move conditional checks for ttl-security back into the node.def
files to keep them from being checked on every commit
-- Robert Bays <[email protected]> Wed, 14 Jul 2010 22:18:41 -0700
vyatta-cfg-quagga (0.18.94) unstable; urgency=low
* fix for bug 5855
-- Robert Bays <[email protected]> Wed, 14 Jul 2010 18:04:44 -0700
vyatta-cfg-quagga (0.18.93) unstable; urgency=low
* update cfg-version file
-- Robert Bays <[email protected]> Wed, 14 Jul 2010 17:57:13 -0700
vyatta-cfg-quagga (0.18.92) unstable; urgency=low
* update config version for config migration script
-- Robert Bays <[email protected]> Wed, 14 Jul 2010 17:42:37 -0700
vyatta-cfg-quagga (0.18.91) unstable; urgency=low
* ttl-security should not be a typed node
-- Stephen Hemminger <[email protected]> Wed, 14 Jul 2010 16:39:32 -0700
vyatta-cfg-quagga (0.18.90) unstable; urgency=low
* fix for bug 5848
-- Robert Bays <[email protected]> Wed, 14 Jul 2010 15:23:15 -0700
vyatta-cfg-quagga (0.18.89) unstable; urgency=low
* fix for bug 5841
* fix for bug 5836
* fix for bug 5801
* fix for bug 5811
-- Robert Bays <[email protected]> Wed, 14 Jul 2010 14:54:38 -0700
vyatta-cfg-quagga (0.18.88) unstable; urgency=low
* add commit check to verify remove-private-as is not set on iBGP
peers
-- Robert Bays <[email protected]> Tue, 13 Jul 2010 22:09:41 -0700
vyatta-cfg-quagga (0.18.87) unstable; urgency=low
* further fix for bug 5810
-- Robert Bays <[email protected]> Mon, 12 Jul 2010 17:49:48 -0700
vyatta-cfg-quagga (0.18.86) unstable; urgency=low
* fix ipv6 network statements
-- Robert Bays <[email protected]> Mon, 12 Jul 2010 17:40:37 -0700
vyatta-cfg-quagga (0.18.85) unstable; urgency=low
* fix for bug 5760: BGP configuration script does not handle "multi:"
node values correctly
-- Robert Bays <[email protected]> Mon, 12 Jul 2010 17:24:19 -0700
vyatta-cfg-quagga (0.18.84) unstable; urgency=low
* fix for bug 5780
* fix for bug 5778
* As part of bug 5780, clean up the param generation
* Temporary fix for bug 5777. This isn't the right fix since this
will
* fixes for local-as and confederations
* more robust fix for local-as
* fix for bug 5767
* fix for bug 5828
* fix for bug 5827
* fix for bug 5827 in peer-group
* fix for bug 5810
* fix for bug 5826
* fix for bug 5832
* fix for bug 5825
* fix for bug 5824
* fic for bug 5813
* update error messages to include 6
-- Robert Bays <[email protected]> Mon, 12 Jul 2010 14:41:57 -0700
vyatta-cfg-quagga (0.18.83) unstable; urgency=low
* Fix email address causing debian warnings
* Revert "Use net_set to avoid using sudo"
* Need full path to arp command
* Fix bogus ospf wireless vif nodes
-- Stephen Hemminger <[email protected]> Fri, 09 Jul 2010 18:14:26 -0700
vyatta-cfg-quagga (0.18.82) unstable; urgency=low
[ Stephen Hemminger ]
* Use net_set to avoid using sudo
* No longer need sudo for arp
[ An-Cheng Huang ]
* remove leftover script as discussed
[ Stephen Hemminger ]
* Add ttl-security option to peer-group
-- Stephen Hemminger <[email protected]> Fri, 09 Jul 2010 17:46:08 -0700
vyatta-cfg-quagga (0.18.81) unstable; urgency=low
* fix for bug 5713
-- Robert Bays <[email protected]> Mon, 21 Jun 2010 10:58:55 -0700
vyatta-cfg-quagga (0.18.80) unstable; urgency=low
[ Jon Andersson ]
* Added route-map support in ospfv3-redistribute