1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
|
quagga (0.99.23.1-1+cl3u2) Release; urgency=medium
* New. Enabled: zebra_vrf lookup fix in upstream VRF patches
* New. Enabled: zebra: show routes in a specified VRF or all VRFs
* New. Enabled: zebra: show interfaces in a specified VRF or all VRFs
* New. Enabled: zebra: set vrf-id on vrf slave interfaces
* New. Enabled: zebra: maintain the router-id per VRF
* New. Enabled: zebra: maintain RTADV per VRF
* New. Enabled: zebra: lookup the address in all VRFs when set the route-map rule "set src"
* New. Enabled: zebra: let the route-map rule "match interface" work for VRFs
* New. Enabled: zebra: let FIB stand for its respective VRF
* New. Enabled: zebra: fix creation of "other table" for rdnbrd
* New. Enabled: zebra: count iface up/down events
* New. Enabled: zebra: configure static routes in any VRF
* New. Enabled: zebra: combine static_ipv[4|6]_nexthop_same into one function
* New. Enabled: zebra: add hooks upon enabling / disabling a VRF
* New. Enabled: zebra: Stop passing around vrf_id for static_XXX functions
* New. Enabled: zebra: Remove STATIC_XXX_IFNAME and use _IFINDEX When we
* New. Enabled: zebra: Remove HAVE_IPV6 from rib.h and zebra_rib.c
* New. Enabled: zebra: Refactor zebra_vrf_static_table
* New. Enabled: zebra: Refactor zebra_vrf Move zebra_vrf_XXX functionality
* New. Enabled: zebra: Refactor struct zebra_t
* New. Enabled: zebra: Fix non usage of VRF_DEFAULT
* New. Enabled: zebra: Fix crash in connected.c due to RA change
* New. Enabled: zebra: Fix change of distance on ipv6 route creating
* New. Enabled: zebra: Fix 'show ipv6 nht' to actually work
* New. Enabled: zebra: Combine static_uninstall_ipv[4|6] into one function
* New. Enabled: zebra: Combine static_install_ipv[4|6]
* New. Enabled: zebra: Collapse struct static_ipv[4|6] into struct
* New. Enabled: zebra: All slave devices were being treated as vrfs
* New. Enabled: zebra: Add the 'struct zebra_ns' data structure
* New. Enabled: zebra, lib/memtypes.c: the netlink sockets work per VRF
* New. Enabled: zebra, bgp: Remove some missed values
* New. Enabled: vtysh: Set an erroneous exit code if dry run fails
* New. Enabled: vtysh: Modify -b option to work with -n option
* New. Enabled: vtysh: Add file locking to Quagga.conf
* New. Enabled: vtysh: Add ability to only look at one processes work queue
* New. Enabled: vtysh: Add VRF sub-mode
* New. Enabled: tools: Make quagga script be more helpful
* New. Enabled: tools: Fix runtime error in quagga script
* New. Enabled: tests: Fixup startup of tests so they don't core
* New. Enabled: sockunion: add hash function
* New. Enabled: ripd, isisd: fix warnings that make the build fail
* New. Enabled: quagga: Setup the proper version number in quagga
* New. Enabled: quagga: Fix version string Modify cl3.0 -> cl3u1
* New. Enabled: quagga: Check for existence of IFLA_INFO_SLAVE_KIND
* New. Enabled: quagga: Additional centos 6 -enable-werror fixes
* New. Enabled: quagga errors parsing a valid config
* New. Enabled: quagga crashes on 'show run bgp'
* New. Enabled: privs: fix privilege dropping to use system defined groups
* New. Enabled: ospfd: Fix some missing 'no XXX' commands
* New. Enabled: ospf6d: Stop sending hello's out loopback interface
* New. Enabled: ospf6d: Fix double increment of Sequence Number
* New. Enabled: ospf6d: Ensure that ospf6d is actually running before
* New. Enabled: lib: zlog_hexdump actually output printable ascii
* New. Enabled: lib: zclient.c remove extern struct thread_master *
* New. Enabled: lib: zclient can overflow (struct interface) hw_addr if
* New. Enabled: lib: use trie structure for prefix list matching Prefix
* New. Enabled: lib: use constant to replace magic value for length of
* New. Enabled: lib: straighten out ORF prefix list support
* New. Enabled: lib: passing in vrf string length is not needed
* New. Enabled: lib: optimise prefix list setup
* New. Enabled: lib: move the interface list into "struct vrf"
* New. Enabled: lib: hide internal prefix list structures
* New. Enabled: lib: fix vty.c and smux.c static variable clash
* New. Enabled: lib: fix MIN/MAX macros to not double-eval
* New. Enabled: lib: fix "sockunion: add hash function" for BSD
* New. Enabled: lib: bfd debug fixup
* New. Enabled: lib: add getgrouplist() for Solaris
* New. Enabled: lib: add function to get precise remaining time of timer
* New. Enabled: lib: VRF_GET_ID should respect VRF_UNKNOWN
* New. Enabled: lib: Refactore thread_process_fd
* New. Enabled: lib: Refactor read/write functionality
* New. Enabled: lib: Really fix handling of poll
* New. Enabled: lib: Improve error reporting from broken config files
* New. Enabled: lib: Fixup a compiler warning on netbsd
* New. Enabled: lib: Fix priviledge modification for vty group specified
* New. Enabled: lib: Fix missing plist_int.h
* New. Enabled: lib: Fix json.c compile on older platforms
* New. Enabled: lib: Fix crash when deleting multiple statements
* New. Enabled: lib: Fix POSIX capabilities on SunOS platforms
* New. Enabled: lib: Allow zclient do-over of connect on initial attempt
* New. Enabled: lib: Allow vrf under the cli Add the infrastructure to
* New. Enabled: lib: Add library code to interact with systemd
* New. Enabled: lib: Add callbacks for vrf changes into protocol side
* New. Enabled: lib: Add ability to use poll() instead of select
* New. Enabled: lib: Add CMD_RANGE_STR macro to command.h
* New. Enabled: lib: Abstract fd set operations
* New. Enabled: lib/vrf: enable / disable a VRF
* New. Enabled: lib/privs: display more info if cap_set_proc fails.
* New. Enabled: lib/privs: Don't use CAP_NET_BROADCAST
* New. Enabled: lib, zebra: move "struct vrf" to be a lib module
* New. Enabled: lib, zebra: add "vrf_id" into the "struct interface"
* New. Enabled: lib, zebra: The Bulk of the conversion over to NS and VRF
* New. Enabled: lib, zebra: Rework zebra_ns to be a bit more modular
* New. Enabled: lib, zebra: Rework vrf_add_update
* New. Enabled: lib, zebra: Refactor vrf creation a bit more
* New. Enabled: lib, zebra: Rearrange vrf_delete_update
* New. Enabled: lib, zebra: Abstract vrf.c to handle both vrf_id_t and char
* New. Enabled: lib, zebra, vtysh: configure an interface in non-default
* New. Enabled: lib, vtysh: Return actual problem further up
* New. Enabled: lib, vtysh: Rehook the motd command back into vtysh
* New. Enabled: lib, bgpd: Refactor vrf handling through zclient
* New. Enabled: isisd: work around route table asserts for deleting node
* New. Enabled: isisd: show interface's ipv6 addreses
* New. Enabled: isisd: remove superfluous checks after XMALLOC etc.
* New. Enabled: isisd: purge on correct level
* New. Enabled: isisd: provide more detailed log for failed address removal
* New. Enabled: isisd: make sure that all interface addresses are
* New. Enabled: isisd: make send_lsp more robust
* New. Enabled: isisd: initialize circuit to match area is_type
* New. Enabled: isisd: ignore unknown interfaces when adjusting IS-IS mtu
* New. Enabled: isisd: handle lsp confusion (ISO/IEC 10589:2002 7.3.16.2)
* New. Enabled: isisd: fix misleading wording in log
* New. Enabled: isisd: fix assertion in LSP refresh timer calculation
* New. Enabled: isisd: fix a typo in a log message
* New. Enabled: isisd: fix a crash due to an lsp-mtu issue
* New. Enabled: isisd: fix IPv6 mask application
* New. Enabled: isisd: don't corrupt memory for long hostnames
* New. Enabled: isisd: do remove ipv6 routes from Zebra We can abort
* New. Enabled: isisd: annotate some function arguments with const
* New. Enabled: isisd: allow to adjust lsp-mtu
* New. Enabled: isisd: add support to import routes from other protocols
* New. Enabled: isisd: add a slight delay to lsp_regenerate_schedule isisd
* New. Enabled: isisd: add a debug mode that traces LSP construction
* New. Enabled: isisd: Fix more compiler warnings
* New. Enabled: isisd: Fix LSPs not being regenerated after adjacency
* New. Enabled: isisd: Drop packet received on multiple interfaces due to
* New. Enabled: isisd: Attached-bit in LSP header Set/reset attached-bit
* New. Enabled: isisd, lib: Fix some more compiler warnings A couple
* New. Enabled: git: add (generated) cscope files to .gitignore
* New. Enabled: doc, vtysh: Fixup of history handling This fix does two
* New. Enabled: debian: Turn on Poll usage
* New. Enabled: debian: Temporary fix to get quagga services running
* New. Enabled: debian: Remove unnecessary dependency on cl-utilties
* New. Enabled: debian: Remove 'Do you want to stop Quagga' Question
* New. Enabled: debian: Modify preinst to add quagga user to quaggavty
* New. Enabled: debian: Debian fixups
* New. Enabled: debian: Attempt to fix parrelization
* New. Enabled: debian: Add the creation of the quagga user to quaggavty
* New. Enabled: debian: Add ability to call reload from systemctl
* New. Enabled: debian: Add Systemd integration to control files
* New. Enabled: debian, config, zebra: Ensure Cumulus Extensions are not
* New. Enabled: config: Remove unused library check
* New. Enabled: build: Make MULTIPATH_NUM a config.h value
* New. Enabled: bgpd: fix using of two pointers for struct thread_master
* New. Enabled: bgpd: backout change of bm->master and master
* New. Enabled: bgpd: Use actual MULTIPATH_NUM as the limitor
* New. Enabled: bgpd: Removed unused variable from 'struct attr_extra'
* New. Enabled: bgpd: Remove expensive prefix count from json.
* New. Enabled: bgpd: Refactor some code for nexthop handling
* New. Enabled: bgpd: Modify maxpaths cli's to use MULTIPATH_NUM for range
* New. Enabled: bgpd: Fix work-quanta to be a reasonable value
* New. Enabled: bgpd: Fix initialization check for bgp tests
* New. Enabled: bgpd: Fix function indirection when none is needed
* New. Enabled: bgpd: Fix description of the command "dump bgp ..."
* New. Enabled: bgpd: Fix call bgp_zebra_terminate_radv The call into
* New. Enabled: bgpd: Fix buffer overflow error in bgp_dump_routes_func
* New. Enabled: bgpd: Fix bgp_btoa to compile bgp_btoa was abandoned at
* New. Enabled: bgpd: Fix VU#270232, VPNv4 NLRI parser memcpys to stack on
* New. Enabled: bgpd: Fix 'show bgp ipv4 vpnv4 statistics' cli
* New. Enabled: bgpd: Convert BGP_MAXIMUM_MAXPATHS to MULTIPATH_NUM
* New. Enabled: bgpd: Add the ability to use a VRF to bgp
* New. Enabled: bgpd, ripngd, zebra: Remove duplicate PSIZE define
* New. Enabled: bgpd, lib, zebra: Add ability to retrieve ifp without
* New. Enabled: bgpd, lib, ospfd, ospf6d: Fix bfd interface lookup
* New. Enabled: bgp: Anti-Yammer Patch When you shutdown interfaces with
* New. Enabled: Zebra: crash in zebra_deregister_rnh_static_nexthops
* New. Enabled: Zebra: Link VRF to corresponding NS
* New. Enabled: Zebra: Ignore status change for VRF
* New. Enabled: Zebra: Add IPv6 protocol filtering support & Setting Src of
* New. Enabled: ZEBRA: Remove NEXTHOP_TYPE_XXX_IFNAME
* New. Enabled: Variable reuse in bgpd.c
* New. Enabled: Update ripng_zebra.c
* New. Enabled: Update last reset reason on interface down or neighbor addr loss.
* New. Enabled: Replace lists with arrays to store read and write threads
* New. Enabled: Remove unused variable
* New. Enabled: Remove unused 'show memory XXX' functionality
* New. Enabled: Remove BGP's asorig timer, it is no longer used
* New. Enabled: Quagga: prefix2str fixup
* New. Enabled: Quagga: Set MULTIPATH_NUM to 64 when user specifies 0 from
* New. Enabled: Quagga: Nexthop refactoring
* New. Enabled: Quagga: Fixup some compile warnings
* New. Enabled: Quagga: Fix some more compile warnings
* New. Enabled: Quagga: Fix compile warnings for GCC4.9
* New. Enabled: Quagga: Cleanup RTADV define
* New. Enabled: OSPF distance command does not accept "external <1-255>"
* New. Enabled: Makfile issues to compile better
* New. Enabled: Make duplicate ospf commands hidden
* New. Enabled: Lower the default MRAI timer for iBGP peers to 0
* New. Enabled: Lower the default MRAI timer for EBGP peers to zero
* New. Enabled: Lower the default 'timers connect' in BGP to 10 seconds
* New. Enabled: Fixing a space before VRF_CMD_STR in ip route commands.
* New. Enabled: Fixing a few compile errors
* New. Enabled: Fixes Quagga Bugzilla #842 - ospfd uses non-zero metric
* New. Enabled: Fix memory leak in lib/routemap.c
* New. Enabled: Fix location of some of the commands in integrated config
* New. Enabled: Fix arm compilation failures of sockunion_hash issues
* New. Enabled: Debian: Track dependencies so that rebuilds can work right
* New. Enabled: Debian: Fixup build issues with switch to 3.0 Modify the
* New. Enabled: Build was broken if systemd was not installed
* New. Enabled: BGP: Update dump to allow Extended Time Format Allow the
* New. Enabled: *: call if_init()/if_terminate() from vrf_init()/vrf_terminate()
* New. Enabled: *: add VRF ID in the API message header The API messages
* New. Enabled: *: Modify protocols to have systemd integration Modify the
* New. Enabled: 'systemctl restart zebra' was blocking if the BGP ASN
* New. Enabled: Zebra: Add IPv6 protocol filtering support & Setting Src of IPv6 routes
* Closes: CM-10435 Addition on hidden command "bfd multihop/singlehop" and "ptm-enable" per interface command
* Closes: CM-10694 "bgp network import-check" needs hidden "exact" option
* Closes: CM-10693 quagga-reload broken when comparing Quagga.conf in 2.5 format vs 3.0 format
* Closes: CM-10644 Fix BGP JSON output
* Closes: CM-10640 BGP: Trigger IPv6 router advertisements upon config of unnumbered neighbor
* Closes: CM-10634 quagga: Fixup startup to allow consistency between sysV and systemd
* Closes: CM-10612 "show ip route summary" has negative values for ebgp counters
* Closes: CM-10581 zebra: Fix PTM to not pass a default vrf name
* Closes: CM-10565 no neighbor peergrp shutdown no longer works
* Closes: CM-10494 bgpd: debug protect a log message
* Closes: CM-10482 zebra: Fix zebra_rnh_register crash
* Closes: CM-10481 zebra: Only create vrf route-node if in the kernel
* Closes: CM-10456 debian: Remove /usr/bin/quagga from distribution
* Closes: CM-10438 BGP: cannot "no neighbor ISL timers 3 10" for peer-group
* Closes: CM-10435 Addition on hidden command "bfd multihop/singlehop" and "ptm-enable" per interface command
* Closes: CM-10428 vtysh -f needs to flock the file
* Closes: CM-10427 zebra: Change interface handling so non-vrf aware protocols correctly handle them
* Closes: CM-10423 BGP: Use VRF_UNKNOWN for initialization
* Closes: CM-10403 stop/start of zebra creates empty Quagga.conf file when "no service integrated-vtysh-config"
* Closes: CM-10402 BGP: Implement key show commands for all VRFs
* Closes: CM-10393 vtysh: Allow file read in to continue in more cases
* Closes: CM-10361 zebra: Implement recovery for route install failure
* Closes: CM-10338 quagga: Remove iflist global variable
* Closes: CM-10338 lib: Refactor XX_name_len away
* Closes: CM-10338 lib, zebra: Rename ZEBRA_VRF_ACTIVE
* Closes: CM-10328 quagga-reload broken for 'neighbor swpX interface peer-group FOO'
* Closes: CM-10311 BGP: Register with correct VRF id for redistribution
* Closes: CM-10290 BGP: Certain peer-group parameters (e.g., enhe, local-as) are not taking effect
* Closes: CM-10260 Addition on hidden command "bfd multihop/singlehop" and "ptm-enable" per interface command
* Closes: CM-10258 lib: Initialize variable
* Closes: CM-10258 lib: Ensure VRF is created with correct id
* Closes: CM-10248 lib: plist should not CMD_WARNING when command has already been entered
* Closes: CM-10247 Zebra: Fix VRF-id and table for BGP unnumbered (RFC 5549)
* Closes: CM-10217 vtysh: Make vtysh run as quagga user
* Closes: CM-10212 bgpd: Another hash_get crash fix
* Closes: CM-10212 bgp: Fix crash in hash_get for peer
* Closes: CM-10184 lib: Combine name comparison function
* Closes: CM-10184 bgpd: Add group pointer to peer_create function.
* Closes: CM-10184 bgp: Order neighbor information in show run
* Closes: CM-10169 Zebra: Fix IPv6 static route config in a VRF
* Closes: CM-10139 zebra: Allow vrfs to be defined and displayed before netlink vrf add
* Closes: CM-10135 Zebra: Fix nexthops in IPv6 route display
* Closes: CM-10126 zebra: Use vrf name instead of vrf-id for ipv6 static route configuration
* Closes: CM-10106 zebra: Use vrf name instead of vrf-id for router-id definition
* Closes: CM-10100 lib, zebra: Fix vrf new hook callback.
* Closes: CM-10098 Quagga: Fix VRF lookup by name
* Closes: CM-10091 Zebra: Fix handling of larger table-ids
* Closes: CM-10087 Zebra: Fix handling of larger table-ids
* Closes: CM-10077 lib: Size the pollfds array once
* Closes: CM-10077 lib: Fix handling of poll
* Closes: CM-10070 BGP: Enable multiple instance support by default
* Closes: CM-10058 bgpd: Resolve ability to add route-map out to peer-group member
* Closes: CM-10028 BGP: Fix BGP unnumbered peerings across VRFs
* Closes: CM-10002 quagga: "set community x:y" needs bounds checking
* Closes: CM-9992 zebra: Fix Startup with > 1k interfaces
* Closes: CM-9974 Get route counts right for show ip route summary
* Closes: CM-9945 BGP: Enhance clear commands for VRFs
* Closes: CM-9918 Quagga: Make routemap updates or deletes work for VRFs
* Closes: CM-9898 RDNBRD: Change default distance of imported table routes to 15
* Closes: CM-9852 lib: Fix assert in node_parent()
* Closes: CM-9849 Zebra: Restrict IPv6 RA to valid interfaces
* Closes: CM-9838 BGP: remove deprecated debugs from the parser
* Closes: CM-9786 BGP memory leak in peer hostname
* Closes: CM-9749 tools: Fixup quagga systemd script to be less chatty
* Closes: CM-9748 doc: Update man page for Quagga systemctl script
* Closes: CM-9725 ospfd: Fix Dereference of Null Pointer during config
* Closes: CM-9714 lib: Allow daemons to startup without an actual conf file
* Closes: CM-9674 quagga-reload should not call vtysh for every command that needs to be added
* Closes: CM-9671 BGP: Check in multipath comparison before invoking sockunion_cmp
* Closes: CM-9646 vtysh: make HIDDEN commands work
* Closes: CM-9616 show bgp neighbor should accept peer hostname
* Closes: CM-9611 "show ip bgp neighbor json" displays "Hostname: ", invalidates json format
* Closes: CM-9597 BGP: Perform cleanup upon instance delete
* Closes: CM-9581 debian: Remove some unnecesary files from debian directory.
* Closes: CM-9579 Quagga: Fix interface move from VRF to default VRF
* Closes: CM-9543 ospfd: Fix MI redistribution
* Closes: CM-9527 Zebra: Fix neighbor address notification to clients
* Closes: CM-9527 Quagga: Implement VRF change semantics for an interface
* Closes: CM-9501 quagga: Netlink error message following Notification send
* Closes: CM-9492 debian: Fixup install location of quagga
* Closes: CM-9488 Zebra: Cleanup registered nexthops upon client exit
* Closes: CM-9466 BGP: Fix interface list upon instance creation/deletion
* Closes: CM-9464 Zebra: Improve output of show ip route vrf all
* Closes: CM-9463 BGPD: Make "Bind to connect" messages conditional no debug
* Closes: CM-9462 BGP: Handle unknown interface at delete
* Closes: CM-9458 Zebra: Zebra: Display interface info for NHT in a VRF
* Closes: CM-9457 Zebra: Fix static NHT to work properly in a VRF
* Closes: CM-9457 Zebra: Fix static NHT to work properly in a VRF
* Closes: CM-9445 debian: Revamp startup again
* Closes: CM-9437 Zebra: Fix ignoring status for VRF device
* Closes: CM-9431 lib, vtysh: Fix 'banner motd file' command
* Closes: CM-9419 BGP: Fix linkage between BGP instance and VRF structure
* Closes: CM-9412 zebra: Some small modifications to actually delete the vrf
* Closes: CM-9412 zebra: Replace vrf with zebra_vrf in a few places
* Closes: CM-9410 BGP: Cleanup interfaces properly on instance delete or exit
* Closes: CM-9386 zebra: close all tables when quagga is stopped
* Closes: CM-9384 debian: Fixup 'systemctl restart quagga'
* Closes: CM-9358 Zebra: Restrict automatic RA enable to relevant interfaces
* Closes: CM-9340 BGP: Ensure correct sequence of processing at exit
* Closes: CM-9311 BGP: Unnumbered peering in a VRF
* Closes: CM-9298 debian: Fix up some issues Dave pointed out and Fix Multi-Instance OSPF
* Closes: CM-9295 Redistribute table related configs fail for BGP and OSPF
* Closes: CM-9293 debian: Fixup removal of .pid and .vty files
* Closes: CM-9286 debian: Add reload ability
* Closes: CM-9285 OSPFv2 has both "router-id x.x.x.x" and "ospf router-id x.x.x.x"
* Closes: CM-9278 Zebra: Fix vrf setting based on netlink messages
* Closes: CM-9277 Zebra: Enable VRF as an interface creation
* Closes: CM-9274 quagga: remove babel
* Closes: CM-9270 ripd: Fix crash when a default route is passed to rip
* Closes: CM-9269 quagga: remove "cn321" passwords from the default conf file for each daemon
* Closes: CM-9268 bgpd: Add exclamation point separators between address-family blocks
* Closes: CM-9268 Exclamation points are missing at the end of an address-family sub-context
* Closes: CM-9267 ripngd: Add missing systemd notifications
* Closes: CM-9265 quagga: delete interface from default table when moved to vrf
* Closes: CM-9255 BGPD crash around bgp_config_write ()
* Closes: CM-9247 BGP: Update commands for VRF support
* Closes: CM-9206 Zebra: Tweak netlink socket creation function
* Closes: CM-9206 Zebra: Make RA socket operation on a per-NS basis
* Closes: CM-9206 Zebra: Cleanup and update RA debugs
* Closes: CM-9175 Zebra: Perform NHT evaluation for VRFs
* Closes: CM-9134 ospf6d: Fix for crash when non area 0 network entered first
* Closes: CM-9131 zebra: display_vrf_name_on_interface
* Closes: CM-9128, BGP: VRF registration and cleanup
* Closes: CM-9128 Quagga: Support VRF unregister for clients
* Closes: CM-9122 BGP: Link BGP instance to corresponding VRF
* Closes: CM-9114 Zebra: Move VRF keyword in show ip route commands
* Closes: CM-9110 zebra: show_interface_name_vrf fix
* Closes: CM-9076 vtysh: Fix vrf submode to call correct daemons
* Closes: CM-9074 zebra: add or delete router-id when interface moves vrfs
* Closes: CM-9073 zebra: fix interface lookup for vrf configuration
* Closes: CM-9063 lib, vtysh, zebra: Better VRF debug handling
* Closes: CM-8934 OSPFv3: Check area before scheduling SPF
* Closes: CM-8889 BGP: Rework iteration of peer_af_array
* Closes: CM-8806 BGP peers remain in active while rdnbrd is running.
* Closes: CM-8788 BGP: ebgp-multihop should accept a value up to 255
* Closes: CM-8514 zebra: Crash upon disabling a link
* Closes: CM-8480 BGP: Fix maximum-prefix output in running-config
* Closes: CM-8475 BGP: update-group needs to consider addpath capability flags
* Closes: CM-8472 Quagga: make check is broken with addpath changes
* Closes: CM-8459 BGP bestpath debugs need to display the addpath RX ID
* Closes: CM-8450 Zebra and bgpd: VRF support for BFD
* Closes: CM-8321 BGP: 'neighbor swpX interface peer-group FOO' is needed to simplify swpX configuration
* Closes: CM-8295 BGP crash in group_announce_route_walkcb
* Closes: CM-8287 Quagga: vrf_id not being set correctly
* Closes: CM-8278 Quagga: Fixup cli and json keyword
* Closes: CM-8271 BGP: extcommunity-list are displayed before community-list
* Closes: CM-8220 BGP: Handle router-id correctly in config and display.
* Closes: CM-8191 BGP: crash in update_subgroup_merge()
* Closes: CM-8164 BGP: "redistribute" is missing from the "address-family ipv4 unicast" sub-context
* Closes: CM-8152 Zebra: Remove dependency on rib_bogus_ipv6
* Closes: CM-8145 Zebra: Remove reliance on NEXTHOP_TYPE_IPV4_ONLINK
* Closes: CM-8144 BGP: Remove deprecated commands and add warning that "show ipv6 bgp" will be deprecated in the future
* Closes: CM-8142 OSPF: remove deprecated commands
* Closes: CM-8141 BGP: Handle change to nexthop correctly
* Closes: CM-8130 Quagga crash in prefix_list_apply
* Closes: CM-8129 bgp may add multiple path entries with the same nexthop
* Closes: CM-8122 BGP: route-server will now use addpath...chop the _rsclient code
* Closes: CM-8114 BGP: Implement "neighbor x.x.x.x addpath-tx-bestpath-per-AS"
* Closes: CM-8112 Zebra: Ensure correct route is used for redistribute delete.
* Closes: CM-8110 Zebra: Cleanup RIB debugs
* Closes: CM-8106 debian: Modify Quagga cumulus version in debian packaging
* Closes: CM-8100 BGP: changing remote-as from external to external resets connection
* Closes: CM-8099 Quagga default: BGP enable "maximum-paths 64"
* Closes: CM-8098 debian: Use 256 multipaths
* Closes: CM-8077 BGP: Handle router-id correctly in config and display.
* Closes: CM-8045 Zebra: Ignore bridge address family netlink notifications
* Closes: CM-8043 BGP: Fix the setting of link-local nexthops in some situations
* Closes: CM-8039 lib: Fixup of NULL calls to XSTRDUP
* Closes: CM-8027 Quagga: Man pages have wrong paths
* Closes: CM-8023 ip/ipv6 prefix-list seq number range needs to be fixed
* Closes: CM-8016 Quagga: Fixup decision about what an unnumbered interface is
* Closes: CM-8015 lib: Memory reporting fails over 2GB
* Closes: CM-8014 BGP: support for addpath TX
* Closes: CM-8013 BGP: Fix nexthop registration churn
* Closes: CM-8006 BGP: enable deterministic-med by default
* Closes: CM-8005, BGP: Fix nexthop registration churn
* Closes: CM-7941 Enable OSPF "log-adjacency-changes" by default
* Closes: CM-7933 BGP: peer-group restrictions should be relaxed, update-groups determine outbound policy anyway
* Closes: CM-7932 Enable IPv6 ND RA for interfaces that have an IPv6 address
* Closes: CM-7931 Add zlog_hexdump() for debugging
* Closes: CM-7928 Quagga default: BGP "no-as-set" should be the default for "bgp as-path multipath-relax"
* Closes: CM-7926 BGP: crash from not NULLing freed pointers
* Closes: CM-7911 OSPFv3: Check area before scheduling SPF
* Closes: CM-7904 BGP: crash in list_delete_all_node when shutting down BGP
* Closes: CM-7903 Remove BGP_ERROR_START_TIMER, it was no longer used
* Closes: CM-7902 Enable "bgp default show-hostname" by default
* Closes: CM-7901 Lower the default OSPF spf timers to '0 50 5000'
* Closes: CM-7900 Lower BGP's default keepalive/holdtime to 3s/9s
* Closes: CM-7899 Enable "bgp log-neighbor-changes" by default
* Closes: CM-7875 Do not allow a timers connect of 0, this can hammer the CPU
* Closes: CM-7861 bgpd: fix using of two pointers for struct thread_master
* Closes: CM-7846 BGP: Fix the setting of link-local nexthops in some situations
* Closes: CM-7789 BGP peers remain in active while rdnbrd is running.
* Closes: CM-7773 Support for multi-client and client reg msg
* Closes: CM-7757 'service quagga reload' breaks with four top level keywords
* Closes: CM-7744 BGP: "remote-as internal" need not be displayed if peer is member of peer-group
* Closes: CM-7737 bgpd: Fix neighbor command with internal or external keyword and interface
* Closes: CM-7700 BGP: Correctly display local-as for peer-group member
* Closes: CM-7662 Zebra: Schedule RIB processing based on trigger event
* Closes: CM-7649 Fix for IPv6 OSPF BFD session staying down when ifdown/ifup on logical interfaces
* Closes: CM-7625 vtysh: Fix Quagga.conf file read in.
* Closes: CM-7615 Support for multi-client and client reg msg
* Closes: CM-7597 vtysh: Allow display of individual daemons configs
* Closes: CM-7593 BGP: Fix source route type in redistributed route
* Closes: CM-7578 BGP: Do appropriate cleanup on receipt of redistribute update
* Closes: CM-7566 lib:removed onmatch next and onmatch goto from route-map deny
* Closes: CM-7534 OSPF: Fix zlog_warn to zlog_debug in some unlikely scenarios
* Closes: CM-7486 'service quagga reload' should not dump so much output to the log file
* Closes: CM-7482 Zebra: Fix static NHT for multiple routes scenario
* Closes: CM-7475 BGP: "show ip bgp json" should return empty "routes : {}" if the table is empty
* Closes: CM-7456 Addition of missing zebra command descriptions
* Closes: CM-7439 BGP: Display the right reason code for session reset
* Closes: CM-7420 Zebra: On a link down, schedule static routes only.
* Closes: CM-7407 BGP: route-map scale - use a hash to store the route-maps
* Closes: CM-7388 OSPF needs to handle the previously added redist update
* Closes: CM-7380 quagga netlink buffer size increase
* Closes: CM-7358 Fix bgp_exit crash
* Closes: CM-7339 Multiple redistribute commands with different metric fail
* Closes: CM-7309 Zebra: Redistribute replace handling corner cases
* Closes: CM-7305 'service quagga reload' is no longer experimental
* Closes: CM-7233 Quagga needs better debugs in lib/sockunion.c
* Closes: CM-7204 Zebra: Fix log related to delete notification for IPv6 route
* Closes: CM-7203 BGP: VRF registration and cleanup
* Closes: CM-7177 Fixup code to use correct XMALLOC operators
* Closes: CM-7176 Zebra: Handle IPv6 address status during initialization
* Closes: CM-7152 Zebra: Fix replace route for uninstall scenario
* Closes: CM-7146 'service quagga reload' fails if /etc/quagga/vtysh.conf does not exist
* Closes: CM-7145 BGP ORF fails to filter prefixes correctly
* Closes: CM-7140 BGP: Do not get out of bgp_start() if peer's IP address isn't known
* Closes: CM-7135 Add missing vtysh commands
* Closes: CM-7132 Quagga: Display useful info when doing service quagga status
* Closes: CM-7113 BGP: Ensure default-originate works with update-groups
* Closes: CM-7104 bgpd: Remove extra stream duplications
* Closes: CM-7076 Add support for fast rexmit of RA on link transitions.
* Closes: CM-7026 Create override for quagga reinstall of originated routes
* Closes: CM-7012 Fix neighbor coming up without an as specified
* Closes: CM-6970 Quagga: Make routemap updates or deletes work for VRFs
* Closes: CM-6952 Support of BFD status in Quagga
* Closes: CM-6926 Quagga: Restrict Shell Access
* Closes: CM-6888 BGP: Display the interface name used to resolve a nexthop.
* Closes: CM-6883 BGP: Handle interface or local address failure
* Closes: CM-6856 Fix dryrun capability to output line # of failed read
* Closes: CM-6854 Zebra: Fix setting source for 5549-learnt routes via ip protocol
* Closes: CM-6812 Fix Quagga ptm status per interface to show more meaningful status
* Closes: CM-6802 Support of BFD status in Quagga
* Closes: CM-6790 Bgpd: aspath json memory leak fix
* Closes: CM-6789 Added json formating support to show-...-neighbors-... bgp commands.
* Closes: CM-6768 Zebra: Make redistribute do replace instead of del/add for better convergence
* Closes: CM-6739 Display the BGP ipv4 unicast configuration under "address-family ipv4 unicast".
* Closes: CM-6690 Fix for PTM cable status change notification not being handeled in Zebra
* Closes: CM-6680 Warn user in various max path edge cases
* Closes: CM-6669 Fix watchquagga to watch just one daemon
* Closes: CM-6659 Fix optional arguments with description interactions
* Closes: CM-6649 Enable "bgp network import-check exact" by default.
* Closes: CM-6534 Fix dynamic sessions with multiple bgp instances
* Closes: CM-6517 BGP: Do not error upon duplicate listen range
* Closes: CM-6505 Removing neighbor command is silently ignored if interface v6only option is used
* Closes: CM-6369 BGP: Fix MD5 authentication for unnumbered neighbors
* Closes: CM-6281 Deactivate BGP peer via "no neighbor x.x.x.x activate" removes other config
* Closes: CM-6192 BGP: Fix warning message when interface has IPv4 address for unnumbered
* Closes: CM-5975 BGP: Ignore unexpected values in ENHE capability
* Closes: CM-5974 BGP: Fix Notification for errors in OPEN message
* Closes: CM-5816 Should be able to "no" the full text of any config line
* Closes: CM-5674 BGP: vtysh should accept just "router bgp" if the AS is already defined
* Closes: CM-5673 Print an error when user tries to change a previously configured area.
* Closes: CM-5660 bgpd: Exchange hostname capability and display hostnames in output
* Closes: CM-5599 zebra: Reorganize NHT code
* Closes: CM-5597 Zebra: Implement route replace for IPv6
* Closes: CM-5594 BGP: Only accept prefixes for negotiated address families
* Closes: CM-5370 Use a hash to store BGP peer structures
* Closes: CM-5153 BGP: Check for duplicate and overlapping listen ranges
* Closes: CM-4573 Zebra: Eliminate unnecessary del-add upon static route addition
* Closes: CM-4541 Addition on hidden command "bfd multihop/singlehop" and "ptm-enable" per interface command
* Closes: CM-4109 Fix some more memory issues in Quagga
* Closes: CM-4010 Add "no debug ospf" and "no debug ospf6" commands to disable all ospf debugging
* Closes: CM-3917 OSPFv3: Do not display default network type.
* Closes: CM-3868 BGP: Remove the requirement to rebind a peer to its peer-group under the address-family
-- dev-support <dev-support@cumulusnetworks.com> Wed, 04 May 2016 16:22:52 -0700
quagga (0.99.23.1-1) unstable; urgency=medium
* New upstream release
* Added .png figures for info files to quagga-doc package.
* Changed dependency from iproute to iproute2 (thanks to Andreas
Henriksson). Closes: #753736
* Added texlive-fonts-recommended to build-depends to get ecrm1095 font
(thanks to Christoph Biedl). Closes: #651545
-- Christian Brunotte <ch@debian.org> Tue, 30 Sep 2014 00:20:12 +0200
quagga (0.99.23-1) unstable; urgency=low
* New upstream release
* Removed debian/patches/readline-6.3.diff which was already in upstream.
-- Christian Hammers <ch@debian.org> Tue, 08 Jul 2014 09:15:48 +0200
quagga (0.99.22.4-4) unstable; urgency=medium
* Fix build failure with readline-6.3 (thanks to Matthias Klose).
Closes: #741774
-- Christian Hammers <ch@debian.org> Sun, 23 Mar 2014 15:28:42 +0100
quagga (0.99.22.4-3) unstable; urgency=low
* Added status to init script (thanks to Peter J. Holzer). Closes: #730625
* Init script now sources /lib/lsb/init-functions.
* Switched from hardening-wrapper to dpkg-buildflags.
-- Christian Hammers <ch@debian.org> Wed, 01 Jan 2014 19:12:01 +0100
quagga (0.99.22.4-2) unstable; urgency=low
* Fixed typo in package description (thanks to Davide Prina).
Closes: #625860
* Added Italian Debconf translation (thanks to Beatrice Torracca)
Closes: #729798
-- Christian Hammers <ch@debian.org> Tue, 26 Nov 2013 00:47:11 +0100
quagga (0.99.22.4-1) unstable; urgency=high
* SECURITY:
"ospfd: CVE-2013-2236, stack overrun in apiserver
the OSPF API-server (exporting the LSDB and allowing announcement of
Opaque-LSAs) writes past the end of fixed on-stack buffers. This leads
to an exploitable stack overflow.
For this condition to occur, the following two conditions must be true:
- Quagga is configured with --enable-opaque-lsa
- ospfd is started with the "-a" command line option
If either of these does not hold, the relevant code is not executed and
the issue does not get triggered."
Closes: #726724
* New upstream release
- ospfd: protect vs. VU#229804 (malformed Router-LSA)
(Quagga is said to be non-vulnerable but still adds some protection)
-- Christian Hammers <ch@debian.org> Thu, 24 Oct 2013 22:58:37 +0200
quagga (0.99.22.1-2) unstable; urgency=low
* Added autopkgtests (thanks to Yolanda Robla). Closes: #710147
* Added "status" command to init script (thanks to James Andrewartha).
Closes: #690013
* Added "libsnmp-dev" to Build-Deps. There not needed for the official
builds but for people who compile Quagga themselves to activate the
SNMP feature (which for licence reasons cannot be done by Debian).
Thanks to Ben Winslow). Closes: #694852
* Changed watchquagga_options to an array so that quotes can finally
be used as expected. Closes: #681088
* Fixed bug that prevented restarting only the watchquagga daemon
(thanks to Harald Kappe). Closes: #687124
-- Christian Hammers <ch@debian.org> Sat, 27 Jul 2013 16:06:25 +0200
quagga (0.99.22.1-1) unstable; urgency=low
* New upstream release
- ospfd restore nexthop IP for p2p interfaces
- ospfd: fix LSA initialization for build without opaque LSA
- ripd: correctly redistribute ifindex routes (BZ#664)
- bgpd: fix lost passwords of grouped neighbors
* Removed 91_ld_as_needed.diff as it was found in the upstream source.
-- Christian Hammers <ch@debian.org> Mon, 22 Apr 2013 22:21:20 +0200
quagga (0.99.22-1) unstable; urgency=low
* New upstream release.
- [bgpd] The semantics of default-originate route-map have changed.
The route-map is now used to advertise the default route conditionally.
The old behaviour which allowed to set attributes on the originated
default route is no longer supported.
- [bgpd] this version of bgpd implements draft-idr-error-handling. This was
added in 0.99.21 and may not be desirable. If you need a version
without this behaviour, please use 0.99.20.1. There will be a
runtime configuration switch for this in future versions.
- [isisd] is in "beta" state.
- [ospf6d] is in "alpha/experimental" state
- More changes are documented in the upstream changelog!
* debian/watch: Adjusted to new savannah.gnu.org site, thanks to Bart
Martens.
* debian/patches/99_CVE-2012-1820_bgp_capability_orf.diff removed as its
in the changelog.
* debian/patches/99_distribute_list.diff removed as its in the changelog.
* debian/patches/10_doc__Makefiles__makeinfo-force.diff removed as it
was just for Debian woody.
-- Christian Hammers <ch@debian.org> Thu, 14 Feb 2013 00:22:00 +0100
quagga (0.99.21-4) unstable; urgency=medium
* Fixed regression bug that caused OSPF "distribute-list" statements to be
silently ignored. The patch has already been applied upstream but there
has been no new Quagga release since then.
Thanks to Hans van Kranenburg for reporting. Closes: #697240
-- Christian Hammers <ch@debian.org> Sun, 06 Jan 2013 15:50:32 +0100
quagga (0.99.21-3) unstable; urgency=high
* SECURITY:
CVE-2012-1820 - Quagga contained a bug in BGP OPEN message handling.
A denial-of-service condition could be caused by an attacker controlling
one of the pre-configured BGP peers. In most cases this means, that the
attack must be originated from an adjacent network. Closes: #676510
-- Christian Hammers <ch@debian.org> Fri, 08 Jun 2012 01:15:32 +0200
quagga (0.99.21-2) unstable; urgency=low
* Renamed babeld.8 to quagga-babeld.8 as it conflicted with the
original mapage of the babeld package which users might want to
install in parallel as it is slightly more capable. Closes: #671916
-- Christian Hammers <ch@debian.org> Thu, 10 May 2012 07:53:01 +0200
quagga (0.99.21-1) unstable; urgency=low
* New upstream release
- [bgpd] BGP multipath support has been merged
- [bgpd] SAFI (Multicast topology) support has been extended to propagate
the topology to zebra.
- [bgpd] AS path limit functionality has been removed
- [babeld] a new routing daemon implementing the BABEL ad-hoc mesh routing
protocol has been merged.
- [isisd] a major overhaul has been picked up. Please note that isisd is
STILL NOT SUITABLE FOR PRODUCTION USE.
- a lot of bugs have been fixed
* Added watchquagga daemon.
* Added DEP-3 conforming patch comments.
-- Christian Hammers <ch@debian.org> Sun, 06 May 2012 15:33:33 +0200
quagga (0.99.20.1-1) unstable; urgency=high
* SECURITY:
CVE-2012-0249 - Quagga ospfd DoS on malformed LS-Update packet
CVE-2012-0250 - Quagga ospfd DoS on malformed Network-LSA data
CVE-2012-0255 - Quagga bgpd DoS on malformed OPEN message
* New upstream release. Closes: #664033
-- Christian Hammers <ch@debian.org> Fri, 16 Mar 2012 22:14:05 +0100
quagga (0.99.20-4) unstable; urgency=low
* Switch to dpkg-source 3.0 (quilt) format.
* Switch to changelog-format-1.0.
-- Christian Hammers <ch@debian.org> Sat, 25 Feb 2012 18:52:06 +0100
quagga (0.99.20-3) unstable; urgency=low
* Added --sysconfdir back to the configure options (thanks to Sven-Haegar
Koch). Closes: #645649
-- Christian Hammers <ch@debian.org> Tue, 18 Oct 2011 00:24:37 +0200
quagga (0.99.20-2) unstable; urgency=low
* Bumped standards version to 0.9.2.
* Migrated to "dh" build system.
* Added quagga-dbg package.
-- Christian Hammers <ch@debian.org> Fri, 14 Oct 2011 23:59:26 +0200
quagga (0.99.20-1) unstable; urgency=low
* New upstream release:
"The primary focus of this release is a fix of SEGV regression in ospfd,
which was introduced in 0.99.19. It also features a series of minor
improvements, including better RFC compliance in bgpd, better support
of FreeBSD and some enhancements to isisd."
* Fixes off-by-one bug (removed 20_ospf6_area_argv.dpatch). Closes: #519488
-- Christian Hammers <ch@debian.org> Fri, 30 Sep 2011 00:59:24 +0200
quagga (0.99.19-1) unstable; urgency=high
* SECURITY:
"This release provides security fixes, which address assorted
vulnerabilities in bgpd, ospfd and ospf6d (CVE-2011-3323,
CVE-2011-3324, CVE-2011-3325, CVE-2011-3326 and CVE-2011-3327).
* New upstream release.
* Removed incorporated debian/patches/92_opaque_lsa_enable.dpatch.
* Removed incorporated debian/patches/93_opaque_lsa_fix.dpatch.
* Removed obsolete debian/README.Debian.Woody and README.Debian.MD5.
-- Christian Hammers <ch@debian.org> Tue, 27 Sep 2011 00:16:27 +0200
quagga (0.99.18-1) unstable; urgency=low
* SECURITY:
"This release fixes 2 denial of services in bgpd, which can be remotely
triggered by malformed AS-Pathlimit or Extended-Community attributes.
These issues have been assigned CVE-2010-1674 and CVE-2010-1675.
Support for AS-Pathlimit has been removed with this release."
* Added Brazilian Portuguese debconf translation. Closes: #617735
* Changed section for quagga-doc from "doc" to "net".
* Added patch to fix FTBFS with latest GCC. Closes: #614459
-- Christian Hammers <ch@debian.org> Tue, 22 Mar 2011 23:13:34 +0100
quagga (0.99.17-4) unstable; urgency=low
* Added comment to init script (thanks to Marc Haber). Closes: #599524
-- Christian Hammers <ch@debian.org> Thu, 13 Jan 2011 23:53:29 +0100
quagga (0.99.17-3) unstable; urgency=low
* Fix FTBFS with ld --as-needed (thanks to Matthias Klose at Ubuntu).
Closes: #609555
-- Christian Hammers <ch@debian.org> Thu, 13 Jan 2011 23:27:06 +0100
quagga (0.99.17-2) unstable; urgency=low
* Added Danisch Debconf translation (thanks to Joe Dalton). Closes: #596259
-- Christian Hammers <ch@debian.org> Sat, 18 Sep 2010 12:20:07 +0200
quagga (0.99.17-1) unstable; urgency=high
* SECURITY:
"This release provides two important bugfixes, which address remote crash
possibility in bgpd discovered by CROSS team.":
1. Stack buffer overflow by processing certain Route-Refresh messages
CVE-2010-2948
2. DoS (crash) while processing certain BGP update AS path messages
CVE-2010-2949
Closes: #594262
-- Christian Hammers <ch@debian.org> Wed, 25 Aug 2010 00:52:48 +0200
quagga (0.99.16-1) unstable; urgency=low
* New upstream release. Closes: #574527
* Added chrpath to debian/rules to fix rpath problems that lintian spottet.
-- Christian Hammers <ch@debian.org> Sun, 21 Mar 2010 17:05:40 +0100
quagga (0.99.15-2) unstable; urgency=low
* Applied patch for off-by-one bug in ospf6d that caused a segmentation
fault when using the "area a.b.c.d filter-list prefix" command (thanks
to Steinar H. Gunderson). Closes: 519488
-- Christian Hammers <ch@debian.org> Sun, 14 Feb 2010 20:02:03 +0100
quagga (0.99.15-1) unstable; urgency=low
* New upstream release
"This fixes some annoying little ospfd and ospf6d regressions, which made
0.99.14 a bit of a problem release (...) This release still contains a
regression in the "no ip address ..." command, at least on Linux.
See bug #486, which contains a workaround patch. This release should be
considered a 1.0.0 release candidate. Please test this release as widely
as possible."
* Fixed wrong port number in zebra.8 (thanks to Thijs Kinkhorst).
Closes: #517860
* Added Russian Debconf tanslation (thanks to Yuri Kozlov).
Closes: #539464
* Removed so-version in build-dep to libreadline-dev on request of
Matthias Klose.
* Added README.source with reference to dpatch as suggested by lintian.
* Bumped standards versionto 3.8.3.
-- Christian Hammers <ch@debian.org> Sun, 13 Sep 2009 18:12:06 +0200
quagga (0.99.14-1) unstable; urgency=low
* New upstream release
"This release contains a regression fix for ospf6d, various small fixes
and some hopefully very significant bgpd stability fixes.
This release should be considered a 1.0.0 release candidate. Please test
this release as widely as possible."
* Fixes bug with premature LSA aging in ospf6d. Closes: #535030
* Fixes section number in zebra.8 manpage. Closes: #517860
-- Christian Hammers <ch@debian.org> Sat, 25 Jul 2009 00:40:38 +0200
quagga (0.99.13-2) unstable; urgency=low
* Added Japanese Debconf translation (thanks to Hideki Yamane).
Closes: #510714
* When checking for obsoleted config options in preinst, print filename
where it occures (thanks to Michael Bussmann). Closes: #339489
-- Christian Hammers <ch@debian.org> Sun, 19 Jul 2009 17:13:23 +0200
quagga (0.99.13-1) unstable; urgency=low
* New upstream release
"This release is contains a number of small fixes, for potentially
irritating issues, as well as small enhancements to vtysh and support
for linking to PCRE (a much faster regex library)."
* Added build-dep to gawk as configure required it for memtypes.awk
* Replaced build-dep to gs-gpl with ghostscript as requested by lintian
* Minor changes to copyright and control files to make lintian happy.
-- Christian Hammers <ch@debian.org> Wed, 24 Jun 2009 17:53:28 +0200
quagga (0.99.12-1) unstable; urgency=high
* New upstream release
"This release fixes an urgent bug in bgpd where it could hit an assert
if it received a long AS_PATH with a 4-byte ASN." Noteworthy bugfixes:
+ [bgpd] Fix bgp ipv4/ipv6 accept handling
+ [bgpd] AS4 bugfix by Chris Caputo
+ [bgpd] Allow accepted peers to progress even if realpeer is in Connect
+ [ospfd] Switch Fletcher checksum back to old ospfd version
-- Christian Hammers <ch@debian.org> Mon, 22 Jun 2009 00:16:33 +0200
quagga (0.99.11-1) unstable; urgency=low
* New upstream release
"Most regressions in 0.99 over 0.98 are now believed to be fixed. This
release should be considered a release-candidate for a new stable series."
+ bgpd: Preliminary UI and Linux-IPv4 support for TCP-MD5 merged
+ zebra: ignore dead routes in RIB update
+ [ospfd] Default route needs to be refreshed after neighbour state change
+ [zebra:netlink] Set proto/scope on all route update messages
* Removed debian/patches/20_*bgp*md5*.dpatch due to upstream support.
-- Christian Hammers <ch@debian.org> Thu, 09 Oct 2008 22:56:38 +0200
quagga (0.99.10-1) unstable; urgency=medium
* New upstream release
+ bgpd: 4-Byte AS Number support
+ Sessions were incorrectly reset if a partial AS-Pathlimit attribute
was received.
+ Advertisement of Multi-Protocol prefixes (i.e. non-IPv4) had been
broken in the 0.99.9 release. Closes: #467656
-- Christian Hammers <ch@debian.org> Tue, 08 Jul 2008 23:32:42 +0200
quagga (0.99.9-6) unstable; urgency=low
* Fixed FTBFS by adding a build-dep to libpcre3-dev (thanks to Luk Claes).
Closes: #469891
-- Christian Hammers <ch@debian.org> Sat, 12 Apr 2008 12:53:51 +0200
quagga (0.99.9-5) unstable; urgency=low
* C.J. Adams-Collier and Paul Jakma suggested to build against libpcre3
which is supposed to be faster.
-- Christian Hammers <ch@debian.org> Sun, 02 Mar 2008 13:19:42 +0100
quagga (0.99.9-4) unstable; urgency=low
* Added hardening-wrapper to the build-deps (thanks to Moritz Muehlenhoff).
-- Christian Hammers <ch@debian.org> Tue, 29 Jan 2008 22:33:56 +0100
quagga (0.99.9-3) unstable; urgency=low
* Replaced the BGP patch by a new one so that the package builds again
with kernels above 2.6.21!
* debian/control:
+ Moved quagga-doc to section doc to make lintian happy.
* Added Spanish debconf translation (thanks to Carlos Galisteo de Cabo).
Closes: #428574
* debian/control: (thanks to Marco Rodrigues)
+ Bump Standards-Version to 3.7.3 (no changes needed).
+ Add Homepage field.
-- Christian Hammers <ch@debian.org> Mon, 28 Jan 2008 22:29:18 +0100
quagga (0.99.9-2.1) unstable; urgency=low
* Non-maintainer upload.
* debian/rules: fixed bashisms. (Closes: #459122)
-- Miguel Angel Ruiz Manzano <debianized@gmail.com> Tue, 22 Jan 2008 14:37:21 -0300
quagga (0.99.9-2) unstable; urgency=low
* Added CVE id for the security bug to the last changelog entry.
Closes: 442133
-- Christian Hammers <ch@debian.org> Tue, 25 Sep 2007 22:01:31 +0200
quagga (0.99.9-1) unstable; urgency=high
* SECURITY:
"This release fixes two potential DoS conditions in bgpd, reported by Mu
Security, where a bgpd could be crashed if a peer sent a malformed OPEN
message or a malformed COMMUNITY attribute. Only configured peers can do
this, hence we consider these issues to be very low impact." CVE-2007-4826
-- Christian Hammers <ch@debian.org> Wed, 12 Sep 2007 21:12:41 +0200
quagga (0.99.8-1) unstable; urgency=low
* New upstream version.
-- Christian Hammers <ch@debian.org> Fri, 17 Aug 2007 00:07:04 +0200
quagga (0.99.7-3) unstable; urgency=medium
* Applied patch for FTBFS with linux-libc-dev (thanks to Andrew J. Schorr
and Lucas Nussbaum). Closes: #429003
-- Christian Hammers <ch@debian.org> Fri, 22 Jun 2007 21:34:55 +0200
quagga (0.99.7-2) unstable; urgency=low
* Added Florian Weimar as co-maintainer. Closes: 421977
* Added Dutch debconf translation (thanks to Bart Cornelis).
Closes: #420932
* Added Portuguese debconf translation (thanks to Rui Branco).
Closes: #421185
* Improved package description (thanks to Reuben Thomas).
Closes: #418933
* Added CVE Id to 0.99.6-5 changelog entry.
-- Christian Hammers <ch@debian.org> Wed, 02 May 2007 20:27:12 +0200
quagga (0.99.7-1) unstable; urgency=low
* New upstream release. Closes: #421553
-- Christian Hammers <ch@debian.org> Mon, 30 Apr 2007 14:22:34 +0200
quagga (0.99.6-6) unstable; urgency=medium
* Fixes FTBFS with tetex-live. Closes: #420468
-- Christian Hammers <ch@debian.org> Mon, 23 Apr 2007 21:34:13 +0200
quagga (0.99.6-5) unstable; urgency=high
* SECURITY:
The bgpd daemon was vulnerable to a Denial-of-Service. Configured peers
could cause a Quagga bgpd to, typically, assert() and abort. The DoS
could be triggered by peers by sending an UPDATE message with a crafted,
malformed Multi-Protocol reachable/unreachable NLRI attribute.
This is CVE-2007-1995 and Quagga Bug#354. Closes: #418323
-- Christian Hammers <ch@debian.org> Thu, 12 Apr 2007 23:21:58 +0200
quagga (0.99.6-4) unstable; urgency=low
* Improved note in README.Debian for SNMP self-builders (thanks to Matthias
Wamser). Closes: #414788
-- Christian Hammers <ch@debian.org> Wed, 14 Mar 2007 02:18:57 +0100
quagga (0.99.6-3) unstable; urgency=low
* Updated German Debconf translation (thanks to Matthias Julius).
Closes: #409327
-- Christian Hammers <ch@debian.org> Sat, 10 Feb 2007 15:06:16 +0100
quagga (0.99.6-2) unstable; urgency=low
* Updated config.guess/config.sub as suggested by lintian.
* Corrected README.Debian text regarding the WANT_SNMP flag.
-- Christian Hammers <ch@debian.org> Sun, 17 Dec 2006 01:45:37 +0100
quagga (0.99.6-1) unstable; urgency=low
* New upstream release. Closes: #402361
-- Christian Hammers <ch@debian.org> Mon, 11 Dec 2006 00:28:09 +0100
quagga (0.99.5-5) unstable; urgency=high
* Changed Depends on adduser to Pre-Depends to avoid uninstallability
in certain cases (thanks to Steve Langasek, Lucas Nussbaum).
Closes: #398562
-- Christian Hammers <ch@debian.org> Wed, 15 Nov 2006 17:46:34 +0100
quagga (0.99.5-4) unstable; urgency=low
* Added default PAM file and some explanations regarding PAM authentication
of vtysh which could prevent the start at boot-time when used wrong.
Now PAM permits anybody to access the vtysh tool (a malicious user could
build his own vtysh without PAM anyway) and the access is controled by
the read/write permissions of the vtysh socket which are only granted to
users belonging to the quaggavty group (thanks to Wakko Warner).
Closes: #389496
* Added "case" to prerm script so that the Debconf question is not called a
second time in e.g. "new-prerm abort-upgrade" after being NACKed in the
old-prerm.
-- Christian Hammers <ch@debian.org> Fri, 3 Nov 2006 01:22:15 +0100
quagga (0.99.5-3) unstable; urgency=medium
* Backport CVS fix for an OSPF DD Exchange regression (thanks to Matt
Brown). Closes: #391040
-- Christian Hammers <ch@debian.org> Wed, 25 Oct 2006 19:47:11 +0200
quagga (0.99.5-2) unstable; urgency=medium
* Added LSB info section to initscript.
* Removed unnecessary depends to libncurses5 to make checklib happy.
The one to libcap should remain though as it is just temporarily
unused.
-- Christian Hammers <ch@debian.org> Thu, 21 Sep 2006 00:04:07 +0200
quagga (0.99.5-1) unstable; urgency=low
* New upstream release. Closes: #38704
* Upstream fixes ospfd documentary inconsistency. Closes: #347897
* Changed debconf question in prerm to "high" (thanks to Rafal Pietrak).
-- Christian Hammers <ch@debian.org> Mon, 11 Sep 2006 23:43:42 +0200
quagga (0.99.4-4) unstable; urgency=low
* Recreate /var/run if not present because /var is e.g. on a tmpfs
filesystem (thanks to Martin Pitt). Closes: #376142
* Removed nonexistant option from ospfd.8 manpage (thanks to
David Medberry). Closes: 378274
-- Christian Hammers <ch@debian.org> Sat, 15 Jul 2006 20:22:12 +0200
quagga (0.99.4-3) unstable; urgency=low
* Removed invalid semicolon from rules file (thanks to Philippe Gramoulle).
-- Christian Hammers <ch@debian.org> Tue, 27 Jun 2006 23:36:07 +0200
quagga (0.99.4-2) unstable; urgency=high
* Set urgency to high as 0.99.4-1 fixes a security problem!
* Fixed building of the info file.
-- Christian Hammers <ch@debian.org> Sun, 14 May 2006 23:04:28 +0200
quagga (0.99.4-1) unstable; urgency=low
* New upstream release to fix a security problem in the telnet interface
of the BGP daemon which could be used for DoS attacks (CVE-2006-2276).
Closes: 366980
-- Christian Hammers <ch@debian.org> Sat, 13 May 2006 19:54:40 +0200
quagga (0.99.3-3) unstable; urgency=low
* Added CVE numbers for the security patch in 0.99.3-2.
-- Christian Hammers <ch@debian.org> Sat, 6 May 2006 17:14:22 +0200
quagga (0.99.3-2) unstable; urgency=high
* SECURITY:
Added security bugfix patch from upstream BTS for security problem
that could lead to injected routes when using RIPv1.
CVE-2006-2223 - missing configuration to disable RIPv1 or require
plaintext or MD5 authentication
CVE-2006-2224 - lack of enforcement of RIPv2 authentication requirements
Closes: #365940
* First amd64 upload.
-- Christian Hammers <ch@debian.org> Thu, 4 May 2006 00:22:09 +0200
quagga (0.99.3-1) unstable; urgency=low
* New upstream release
-- Christian Hammers <ch@debian.org> Wed, 25 Jan 2006 13:37:27 +0100
quagga (0.99.2-1) unstable; urgency=low
* New upstream release
Closes: #330248, #175553
-- Christian Hammers <ch@debian.org> Wed, 16 Nov 2005 00:25:52 +0100
quagga (0.99.1-7) unstable; urgency=low
* Changed debian/rules check for mounted /proc directory to check
for /proc/1 as not all systems (e.g. 2.6 arm kernels) have
/proc/kcore which is a optional feature only (thanks to Lennert
Buytenhek). Closes: #335695
* Added Swedish Debconf translation (thanks to Daniel Nylander).
Closes: #331367
-- Christian Hammers <ch@debian.org> Thu, 27 Oct 2005 20:53:19 +0200
quagga (0.99.1-6) unstable; urgency=low
* Fixed debconf dependency as requested by Joey Hess.
-- Christian Hammers <ch@debian.org> Mon, 26 Sep 2005 20:47:35 +0200
quagga (0.99.1-5) unstable; urgency=low
* Rebuild with libreadline5-dev as build-dep as requested by
Matthias Klose. Closes: #326306
* Made initscript more fault tolerant against missing lines in
/etc/quagga/daemons (thanks to Ralf Hildebrandt). Closes: #323774
* Added dependency to adduser.
-- Christian Hammers <ch@debian.org> Tue, 13 Sep 2005 21:42:17 +0200
quagga (0.99.1-4) unstable; urgency=low
* Added French Debconf translation (thanks to Mohammed Adnene Trojette).
Closes: #319324
* Added Czech Debconf translation (thanks to Miroslav Kure).
Closes: #318127
-- Christian Hammers <ch@debian.org> Sun, 31 Jul 2005 04:19:41 +0200
quagga (0.99.1-3) unstable; urgency=low
* A Debconf question now asks the admin before upgrading if the daemon
should really be stopped as this could lead to the loss of network
connectivity or BGP flaps (thanks to Michael Horn and Achilleas Kotsis).
Also added a hint about setting Quagga "on hold" to README.Debian.
Closes: #315467
* Added patch to build on Linux/ARM.
-- Christian Hammers <ch@debian.org> Sun, 10 Jul 2005 22:19:38 +0200
quagga (0.99.1-2) unstable; urgency=low
* Fixed SNMP enabled command in debian/rules (thanks to Christoph Kluenter).
Closes: #306840
-- Christian Hammers <ch@debian.org> Sat, 4 Jun 2005 14:04:01 +0200
quagga (0.99.1-1) unstable; urgency=low
* New upstream version. Among others:
- BGP graceful restart and "match ip route-source" added
- support for interface renaming
- improved threading for better responsivness under load
* Switched to dpatch to make diffs cleaner.
* Made autoreconf unnecessary.
* Replaced quagga.dvi and quagga.ps by quagga.pdf in quagga-doc.
(the PostScript would have needed Makefile corrections and PDF
is more preferable anyway)
* Added isisd to the list of daemons in /etc/init.d/quagga (thanks
to Ernesto Elbe).
* Added hint for "netlink-listen: overrun" messages (thanks to
Hasso Tepper).
* Added preinst check that bails out if old smux options are in use
as Quagga would not start up else anyway (thanks to Bjorn Mork).
Closes: #308320
-- Christian Hammers <ch@debian.org> Fri, 13 May 2005 01:18:24 +0200
quagga (0.98.3-7) unstable; urgency=high
* Removed SNMP support as linking against NetSNMP introduced a dependency
to OpenSSL which is not compatible to the GPL which governs this
application (thanks to Faidon Liambotis). See README.Debian for more
information. Closes: #306840
* Changed listening address of ospf6d and ripngd from 127.0.0.1 to "::1".
* Added build-dep to groff to let drafz-zebra-00.txt build correctly.
-- Christian Hammers <ch@debian.org> Wed, 4 May 2005 20:08:14 +0200
quagga (0.98.3-6) testing-proposed-updates; urgency=high
* Removed "Recommends kernel-image-2.4" as aptitude then
installes a kernel-image for an arbitrary architecture as long
as it fullfill that recommendation which can obviously fatal
at the next reboot :) Also it is a violation of the policy
which mandates a reference to real packages (thanks to Holger Levsen).
Closes: #307281
-- Christian Hammers <ch@debian.org> Tue, 3 May 2005 22:53:39 +0200
quagga (0.98.3-5) unstable; urgency=high
* The patch which tried to remove the OpenSSL dependency, which is
not only unneccessary but also a violation of the licence and thus RC,
stopped working a while ago, since autoreconf is no longer run before
building the binaries. So now ./configure is patched directly (thanks
to Faidon Liambotis for reporting). Closes: #306840
* Raised Debhelper compatibility level from 3 to 4. Nothing changed.
* Added build-dep to texinfo (>= 4.7) to ease work for www.backports.org.
-- Christian Hammers <ch@debian.org> Fri, 29 Apr 2005 02:31:03 +0200
quagga (0.98.3-4) unstable; urgency=low
* Removed Debconf upgrade note as it was considered a Debconf abuse
and apart from that so obvious that it was not even worth to be
put into NEWS.Debian (thanks to Steve Langasek). Closes: #306384
-- Christian Hammers <ch@debian.org> Wed, 27 Apr 2005 00:10:24 +0200
quagga (0.98.3-3) unstable; urgency=medium
* Adding the debconf module due to a lintian suggestion is a very
bad idea if no db_stop is called as the script hangs then (thanks
to Tore Anderson for reporting). Closes: #306324
-- Christian Hammers <ch@debian.org> Mon, 25 Apr 2005 21:55:58 +0200
quagga (0.98.3-2) unstable; urgency=low
* Added debconf confmodule to postinst as lintian suggested.
-- Christian Hammers <ch@debian.org> Sun, 24 Apr 2005 13:16:00 +0200
quagga (0.98.3-1) unstable; urgency=low
* New upstream release.
Mmost notably fixes last regression in bgpd (reannounce of prefixes
with changed attributes works again), race condition in netlink
handling while using IPv6, MTU changes handling in ospfd and several
crashes in ospfd, bgpd and ospf6d.
-- Christian Hammers <ch@debian.org> Mon, 4 Apr 2005 12:51:24 +0200
quagga (0.98.2-2) unstable; urgency=low
* Added patch to let Quagga compile with gcc-4.0 (thanks to
Andreas Jochens). Closes: #300949
-- Christian Hammers <ch@debian.org> Fri, 25 Mar 2005 19:33:30 +0100
quagga (0.98.2-1) unstable; urgency=medium
* Quoting the upstream announcement:
The 0.98.1 release unfortunately was a brown paper bag release with
respect to ospfd. [...] 0.98.2 has been released, with one crucial change
to fix the unfortunate mistake in 0.98.1, which caused problems if
ospfd became DR.
* Note: the upstream tarball had a strange problem, apparently redhat.spec
was twice in it? At least debuild gave a strange error message so I
unpacked it by hand. No changes were made to the .orig.tar.gz!
-- Christian Hammers <ch@debian.org> Fri, 4 Feb 2005 01:31:36 +0100
quagga (0.98.1-1) unstable; urgency=medium
* New upstream version
"fixing a fatal OSPF + MD5 auth regression, and a non-fatal high-load
regression in bgpd which were present in the 0.98.0 release."
* Upstream version fixes bug in ospfd that could lead to crash when OSPF
packages had a MTU > 1500. Closes: #290566
* Added notice regarding capability kernel support to README.Debian
(thanks to Florian Weimer). Closes: #291509
* Changed permission setting in postinst script (thanks to Bastian Blank).
Closes: #292690
-- Christian Hammers <ch@debian.org> Tue, 1 Feb 2005 02:01:27 +0100
quagga (0.98.0-3) unstable; urgency=low
* Fixed problem in init script. Closes: #290317
* Removed obsolete "smux peer enable" patch.
-- Christian Hammers <ch@debian.org> Fri, 14 Jan 2005 17:37:27 +0100
quagga (0.98.0-2) unstable; urgency=low
* Updated broken TCP MD5 patch for BGP (thanks to John P. Looney
for telling me).
-- Christian Hammers <ch@debian.org> Thu, 13 Jan 2005 02:03:54 +0100
quagga (0.98.0-1) unstable; urgency=low
* New upstream release
* Added kernel-image-2.6 as alternative to 2.4 to the recommends
(thanks to Faidon Liambotis). Closes: #289530
-- Christian Hammers <ch@debian.org> Mon, 10 Jan 2005 19:36:17 +0100
quagga (0.97.5-1) unstable; urgency=low
* New upstream version.
* Added Czech debconf translation (thanks to Miroslav Kure).
Closes: #287293
* Added Brazilian debconf translation (thanks to Andre Luis Lopes).
Closes: #279352
-- Christian Hammers <ch@debian.org> Wed, 5 Jan 2005 23:49:57 +0100
quagga (0.97.4-2) unstable; urgency=low
* Fixed quagga.info build problem.
-- Christian Hammers <ch@debian.org> Wed, 5 Jan 2005 22:38:01 +0100
quagga (0.97.4-1) unstable; urgency=low
* New upstream release.
-- Christian Hammers <ch@debian.org> Tue, 4 Jan 2005 01:45:22 +0100
quagga (0.97.3-2) unstable; urgency=low
* Included isisd in the daemon list.
* Wrote an isisd manpage.
* It is now ensured that zebra is always the last daemon to be stopped.
* (Thanks to Hasso Tepper for mailing me a long list of suggestions
which lead to this release)
-- Christian Hammers <ch@debian.org> Sat, 18 Dec 2004 13:14:55 +0100
quagga (0.97.3-1) unstable; urgency=medium
* New upstream version.
- Fixes important OSPF bug.
* Added ht-20040911-smux.patch regarding Quagga bug #112.
* Updated ht-20041109-0.97.3-bgp-md5.patch for BGP with TCP MD5
(thanks to Matthias Wamser).
-- Christian Hammers <ch@debian.org> Tue, 9 Nov 2004 17:45:26 +0100
quagga (0.97.2-4) unstable; urgency=low
* Added Portuguese debconf translation (thanks to Andre Luis Lopes).
Closes: #279352
* Disabled ospfapi server by default on recommendation of Paul Jakma.
-- Christian Hammers <ch@debian.org> Sun, 7 Nov 2004 15:07:05 +0100
quagga (0.97.2-3) unstable; urgency=low
* Added Andrew Schorrs VTY Buffer patch from the [quagga-dev 1729].
-- Christian Hammers <ch@debian.org> Tue, 2 Nov 2004 00:46:56 +0100
quagga (0.97.2-2) unstable; urgency=low
* Changed file and directory permissions and ownerships according to a
suggestion from Paul Jakma. Still not perfect though.
* Fixed upstream vtysh.conf.sample file.
* "ip ospf network broadcast" is now saved correctly. Closes: #244116
* Daemon options are now in /etc/quagga/debian.conf to be user
configurable (thanks to Simon Raven and Hasso Tepper). Closes: #266715
-- Christian Hammers <ch@debian.org> Tue, 26 Oct 2004 23:35:45 +0200
quagga (0.97.2-1) unstable; urgency=low
* New upstream version.
Closes: #254541
* Fixed warning on unmodular kernels (thanks to Christoph Biedl).
Closes: #277973
-- Christian Hammers <ch@debian.org> Mon, 25 Oct 2004 00:47:04 +0200
quagga (0.97.1-2) unstable; urgency=low
* Version 0.97 introduced shared libraries. They are now included.
(thanks to Raf D'Halleweyn). Closes: #277446
-- Christian Hammers <ch@debian.org> Wed, 20 Oct 2004 15:32:06 +0200
quagga (0.97.1-1) unstable; urgency=low
* New upstream version.
* Removed some obsolete files from debian/patches.
* Added patch from upstream bug 113. Closes: #254541
* Added patch from upstream that fixes a compilation problem in the
ospfclient code (thanks to Hasso Tepper).
* Updated German debconf translation (thanks to Jens Nachtigall)
Closes: #277059
-- Christian Hammers <ch@debian.org> Mon, 18 Oct 2004 01:16:35 +0200
quagga (0.96.5-11) unstable; urgency=low
* Fixed /tmp/buildd/* paths in binaries.
For some unknown reason the upstream Makefile modified a .h file at
the end of the "debian/rules build" target. During the following
"make install" one library got thus be re*compiled* - with /tmp/buildd
paths as sysconfdir (thanks to Peder Chr. Norgaard). Closes: #274050
-- Christian Hammers <ch@debian.org> Fri, 1 Oct 2004 01:21:02 +0200
quagga (0.96.5-10) unstable; urgency=medium
* The BGP routing daemon might freeze on network disturbances when
their peer is also a Quagga/Zebra router.
Applied patch from http://bugzilla.quagga.net/show_bug.cgi?id=102
which has been confirmed by the upstream author.
(thanks to Gunther Stammwitz)
* Changed --enable-pam to --with-libpam (thanks to Hasso Tepper).
Closes: #264562
* Added patch for vtysh (thanks to Hasso Tepper). Closes: #215919
-- Christian Hammers <ch@debian.org> Mon, 9 Aug 2004 15:33:02 +0200
quagga (0.96.5-9) unstable; urgency=low
* Rewrote the documentation chapter about SNMP support. Closes: #195653
* Added MPLS docs.
-- Christian Hammers <ch@debian.org> Thu, 29 Jul 2004 21:01:52 +0200
quagga (0.96.5-8) unstable; urgency=low
* Adjusted a grep in the initscript to also match a modprobe message
from older modutils packages (thanks to Faidon Paravoid).
-- Christian Hammers <ch@debian.org> Wed, 28 Jul 2004 21:19:02 +0200
quagga (0.96.5-7) unstable; urgency=low
* Added a "cd /etc/quagga/" to the init script as quagga tries to load
the config file first from the current working dir and then from the
config dir which could lead to confusion (thanks to Marco d'Itri).
Closes: #255078
* Removed warning regarding problems with the Debian kernels from
README.Debian as they are no longer valid (thanks to Raphael Hertzog).
Closes: #257580
* Added patch from Hasso Tepper that makes "terminal length 0" work
in vtysh (thanks to Matthias Wamser). Closes: #252579
-- Christian Hammers <ch@debian.org> Thu, 8 Jul 2004 21:53:21 +0200
quagga (0.96.5-6) unstable; urgency=low
* Try to load the capability module as it is needed now.
-- Christian Hammers <ch@debian.org> Tue, 8 Jun 2004 23:25:29 +0200
quagga (0.96.5-5) unstable; urgency=low
* Changed the homedir of the quagga user to /etc/quagga/ to allow
admins to put ~/.ssh/authorized_keys there (thanks to Matthias Wamser).
Closes: #252577
-- Christian Hammers <ch@debian.org> Sat, 5 Jun 2004 14:47:31 +0200
quagga (0.96.5-4) unstable; urgency=medium
* Fixed rules file to use the renamed ./configure option --enable-tcp-md5
(thanks to Matthias Wamser). Closes: #252141
-- Christian Hammers <ch@debian.org> Tue, 1 Jun 2004 22:58:32 +0200
quagga (0.96.5-3) unstable; urgency=low
* Provided default binary package name to all build depends that were
virtual packages (thanks to Goswin von Brederlow). Closes: #251625
-- Christian Hammers <ch@debian.org> Sat, 29 May 2004 22:48:53 +0200
quagga (0.96.5-2) unstable; urgency=low
* New upstream version.
* New md5 patch version (thanks to Niklas Jakobsson and Hasso Tepper).
Closes: #250985
* Fixes info file generation (thanks to Peder Chr. Norgaard).
Closes: #250992
* Added catalan debconf translation (thanks to Aleix Badia i Bosch).
Closes: #250118
* PATCHES:
This release contains BGP4 MD5 support which requires a kernel patch
to work. See /usr/share/doc/quagga/README.Debian.MD5.
(The patch is ht-20040525-0.96.5-bgp-md5.patch from Hasso Tepper)
-- Christian Hammers <ch@debian.org> Thu, 27 May 2004 20:09:37 +0200
quagga (0.96.5-1) unstable; urgency=low
* New upstream version.
* PATCHES:
This release contains BGP4 MD5 support which also requires a kernel patch.
See /usr/share/doc/quagga/README.Debian.MD5 and search for CAN-2004-0230.
-- Christian Hammers <ch@debian.org> Sun, 16 May 2004 17:40:40 +0200
quagga (0.96.4x-10) unstable; urgency=low
* SECURITY:
This release contains support for MD5 for BGP which is one suggested
prevention of the actually long known TCP SYN/RST attacks which got
much news in the last days as ideas were revealed that made them much
easier probable agains especially the BGP sessions than commonly known.
There are a lot of arguments agains the MD5 approach but some ISPs
started to require it.
See: CAN-2004-0230, http://www.us-cert.gov/cas/techalerts/TA04-111A.html
* PATCHES:
This release contains the MD5 patch from Hasso Tepper. It also seems to
required a kernel patch. See /usr/share/doc/quagga/README.Debian.MD5.
-- Christian Hammers <ch@debian.org> Thu, 29 Apr 2004 01:01:38 +0200
quagga (0.96.4x-9) unstable; urgency=low
* Fixed daemon loading order (thanks to Matt Kemner).
* Fixed typo in init script (thanks to Charlie Brett). Closes: #238582
-- Christian Hammers <ch@debian.org> Sun, 4 Apr 2004 15:32:18 +0200
quagga (0.96.4x-8) unstable; urgency=low
* Patched upstream source so that quagga header files end up in
/usr/include/quagga/. Closes: #233792
-- Christian Hammers <ch@debian.org> Mon, 23 Feb 2004 01:42:53 +0100
quagga (0.96.4x-7) unstable; urgency=low
* Fixed info file installation (thanks to Holger Dietze). Closes: #227579
* Added Japanese translation (thanks to Hideki Yamane). Closes: #227812
-- Christian Hammers <ch@debian.org> Sun, 18 Jan 2004 17:28:29 +0100
quagga (0.96.4x-6) unstable; urgency=low
* Added dependency to iproute.
* Initscript now checks not only for the pid file but also for the
daemons presence (thanks to Phil Gregory). Closes: #224389
* Added my patch to configure file permissions.
-- Christian Hammers <ch@debian.org> Mon, 15 Dec 2003 22:34:29 +0100
quagga (0.96.4x-5) unstable; urgency=low
* Added patch which gives bgpd the CAP_NET_RAW capability to allow it
to bind to special IPv6 link-local interfaces (Thanks to Bastian Blank).
Closes: #222930
* Made woody backport easier by applying Colin Watsons po-debconf hack.
Thanks to Marc Haber for suggesting it. Closes: #223527
* Made woody backport easier by applying a patch that removes some
obscure whitespaces inside an C macro. (Thanks to Marc Haber).
Closes: #223529
* Now uses /usr/bin/pager. Closes: #204070
* Added note about the "official woody backports" on my homepage.
-- Christian Hammers <ch@debian.org> Mon, 15 Dec 2003 20:39:06 +0100
quagga (0.96.4x-4) unstable; urgency=high
* SECURITY:
Fixes another bug that was originally reported against Zebra.
.
http://rhn.redhat.com/errata/RHSA-2003-307.html
Herbert Xu reported that Zebra can accept spoofed messages sent on the
kernel netlink interface by other users on the local machine. This could
lead to a local denial of service attack. The Common Vulnerabilities and
Exposures project (cve.mitre.org) has assigned the name CAN-2003-0858 to
this issue.
* Minor improvements to init script (thanks to Iustin Pop).
Closes: #220938
-- Christian Hammers <ch@debian.org> Sat, 22 Nov 2003 13:27:57 +0100
quagga (0.96.4x-3) unstable; urgency=low
* Changed "more" to "/usr/bin/pager" as default pager if $PAGER or
$VTYSH_PAGER is not set (thanks to Bastian Blank). Closes: #204070
* Made the directory (but not the config/log files!) world accessible
again on user request (thanks to Anand Kumria)). Closes: #213129
* No longer providing sample configuration in /etc/quagga/. They are
now only available in /usr/share/doc/quagga/ to avoid accidently
using them without changing the adresses (thanks to Marc Haber).
Closes: #215918
-- Christian Hammers <ch@debian.org> Sun, 16 Nov 2003 16:59:30 +0100
quagga (0.96.4x-2) unstable; urgency=low
* Fixed permission problem with pidfile (thanks to Kir Kostuchenko).
Closes: #220938
-- Christian Hammers <ch@debian.org> Sun, 16 Nov 2003 14:24:08 +0100
quagga (0.96.4x-1) unstable; urgency=low
* Reupload of 0.96.4. Last upload-in-a-hurry produced a totally
crappy .tar.gz file. Closes: #220621
-- Christian Hammers <ch@debian.org> Fri, 14 Nov 2003 19:45:57 +0100
quagga (0.96.4-1) unstable; urgency=high
* SECURITY: Remote DoS of protocol daemons.
Fix for a remote triggerable crash in vty layer. The management
ports ("telnet myrouter ospfd") should not be open to the internet!
* New upstream version.
- OSPF bugfixes.
- Some improvements for bgp and rip.
-- Christian Hammers <ch@debian.org> Thu, 13 Nov 2003 11:52:27 +0100
quagga (0.96.3-3) unstable; urgency=low
* Fixed pid file generation by substituting the daemons "-d" by the
start-stop-daemon option "--background" (thanks to Micha Gaisser).
Closes: #218103
-- Christian Hammers <ch@debian.org> Wed, 29 Oct 2003 05:17:49 +0100
quagga (0.96.3-2) unstable; urgency=low
* Readded GNOME-PRODUCT-ZEBRA-MIB.
-- Christian Hammers <ch@debian.org> Thu, 23 Oct 2003 06:17:03 +0200
quagga (0.96.3-1) unstable; urgency=medium
* New upstream version.
* Removed -u and -e in postrm due to problems with debhelper and userdel
(thanks to Adam Majer and Jaakko Niemi). Closes: #216770
* Removed SNMP MIBs as they are now included in libsnmp-base (thanks to
David Engel and Peter Gervai). Closes: #216138, #216086
* Fixed seq command in init script (thanks to Marc Haber). Closes: #215915
* Improved /proc check (thanks to Marc Haber). Closes: #212331
-- Christian Hammers <ch@debian.org> Thu, 23 Oct 2003 03:42:02 +0200
quagga (0.96.2-9) unstable; urgency=medium
* Removed /usr/share/info/dir.* which were accidently there and prevented
the installation by dpkg (thanks to Simon Raven). Closes: #212614
* Reworded package description (thanks to Anand Kumria). Closes: #213125
* Added french debconf translation (thanks to Christian Perrier).
Closes: #212803
-- Christian Hammers <ch@debian.org> Tue, 7 Oct 2003 13:26:58 +0200
quagga (0.96.2-8) unstable; urgency=low
* debian/rules now checks if /proc is mounted as ./configure needs
it but just fails with an obscure error message if it is absent.
(Thanks to Norbert Tretkowski). Closes: #212331
-- Christian Hammers <ch@debian.org> Tue, 23 Sep 2003 12:57:38 +0200
quagga (0.96.2-7) unstable; urgency=low
* Last build was rejected due to a buggy dpkg-dev version. Rebuild.
-- Christian Hammers <ch@debian.org> Mon, 22 Sep 2003 20:34:12 +0200
quagga (0.96.2-6) unstable; urgency=low
* Fixed init script so that is is now possible to just start
the bgpd but not the zebra daemon. Also daemons are now actually
started in the order defined their priority. (Thanks to Thomas Kaehn
and Jochen Friedrich) Closes: #210924
-- Christian Hammers <ch@debian.org> Fri, 19 Sep 2003 21:17:02 +0200
quagga (0.96.2-5) unstable; urgency=low
* For using quagga as BGP route server or similar, it is not
wanted to have the zebra daemon running too. For this reason
it can now be disabled in /etc/quagga/daemons, too.
(Thanks to Jochen Friedrich). Closes: #210924
* Attached *unapplied* patch for the ISIS protocol. I did not dare
to apply it as long as upstream does not do it but this way give
users the possibilities to use it if they like to.
(Thanks to Remco van Mook)
-- Christian Hammers <ch@debian.org> Wed, 17 Sep 2003 19:57:31 +0200
quagga (0.96.2-4) unstable; urgency=low
* Enabled IPV6 router advertisement feature by default on user request
(thanks to Jochen Friedrich and Hasso Tepper). Closes: #210732
* Updated GNU autoconf to let it build on hppa/parisc64 (thanks to
lamont). Closes: #210492
-- Christian Hammers <ch@debian.org> Sat, 13 Sep 2003 14:11:13 +0200
quagga (0.96.2-3) unstable; urgency=medium
* Removed unnecessary "-lcrypto" to avoid dependency against OpenSSL
which would require further copyright addtions.
-- Christian Hammers <ch@debian.org> Wed, 10 Sep 2003 01:37:28 +0200
quagga (0.96.2-2) unstable; urgency=low
* Added note that config files of quagga are in /etc/quagga and
not /etc/zebra for the zebra users that migrate to quagga.
(Thanks to Roberto Suarez Soto for the idea)
* Fixed setgid rights in /etc/quagga.
-- Christian Hammers <ch@debian.org> Wed, 27 Aug 2003 14:05:39 +0200
quagga (0.96.2-1) unstable; urgency=low
* This package has formally been known as "zebra-pj"!
* New upstream release.
Fixes "anoying OSPF problem".
* Modified group ownerships so that vtysh can now be used by normal
uses if they are in the quaggavty group.
-- Christian Hammers <ch@debian.org> Mon, 25 Aug 2003 23:40:14 +0200
quagga (0.96.1-1) unstable; urgency=low
* Zebra-pj, the fork of zebra has been renamed to quagga as the original
upstream author asked the new project membed not to use "zebra" in the
name. zebra-pj is obsolete.
-- Christian Hammers <ch@debian.org> Mon, 18 Aug 2003 23:37:20 +0200
zebra-pj (0.94+cvs20030721-1) unstable; urgency=low
* New CVS build.
- OSPF changes (integration of the OSPF API?)
- code cleanups (for ipv6?)
* Tightened Build-Deps to gcc-2.95 as 3.x does not compile a stable ospfd.
This is a known problem and has been discussed on the mailing list.
No other solutions so far.
-- Christian Hammers <ch@debian.org> Mon, 21 Jul 2003 23:52:00 +0200
zebra-pj (0.94+cvs20030701-1) unstable; urgency=low
* Initial Release.
-- Christian Hammers <ch@debian.org> Tue, 1 Jul 2003 01:58:06 +0200
|