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 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025
|
net-snmp (5.9.3+dfsg-2) unstable; urgency=medium
[ Helmut Grohne ]
* Fix FTCBFS: Closes: #1025922
+ Initialize architecture variables.
+ Fix build vs host confusion.
+ Use the host architecture pkg-config.
+ export a PERL5LIB for cross building.
+ cross.patch: Pass PERL5LIB along.
[ Debian Janitor ]
* Update lintian override info to new format on line 1, 2.
* Use secure URI in Homepage field.
[ Craig Small ]
* Remove email list from maintainers
* Add patch agent_set_null_varbind Closes: #1024020 fixes:
+ CVE-2022-44792 NULL Pointer Exception when handling ipDefaultTTL
+ CVE-2022-44793 NULL Pointer Exception when handling pv6IpForwarding
-- Craig Small <csmall@debian.org> Tue, 03 Jan 2023 13:01:46 +1100
net-snmp (5.9.3+dfsg-1) unstable; urgency=medium
* New upstream source
* Remove patch Link-libnetsnmptrapd-against-MYSQL_LIBS
-- Craig Small <csmall@debian.org> Mon, 18 Jul 2022 21:28:38 +1000
net-snmp (5.9.1+dfsg-4) unstable; urgency=medium
* d/snmpd.postinst: Just chown $SNMP_DIR/snmpd.conf if the file exists.
(Closes: #1012693)
-- Sergio Durigan Junior <sergiodj@debian.org> Sat, 11 Jun 2022 17:35:00 -0400
net-snmp (5.9.1+dfsg-3) unstable; urgency=medium
[ Sergio Durigan Junior ]
* Fix FTBFS when compiling against OpenSSL 3.0.
- d/p/Fix-the-build-against-OpenSSL-3.0.patch: Fix FTBFS when
compiling against OpenSSL 3.0.
- d/p/configure-static-linking-Fix-SSL-checks.patch: Fix SSL configure
checks. (Closes: #1006511)
* d/snmpd.service: Start the service after network-online.target.
Closes: #1001268
[ Debian Janitor ]
* Re-export upstream signing key without extra signatures.
* Update renamed lintian tag names in lintian overrides.
* Remove constraints unnecessary since buster:
+ Build-Depends: Drop versioned constraint on bash, debianutils, findutils
and perl.
+ snmpd: Drop versioned constraint on lsb-base in Depends.
+ snmptrapd: Drop versioned constraint on snmp in Replaces.
+ snmptrapd: Drop versioned constraint on snmp in Breaks.
+ snmp: Drop versioned constraint on libsnmp-base in Depends.
+ libsnmp-base: Drop versioned constraint on snmp in Replaces.
+ libsnmp-base: Drop versioned constraint on snmp in Breaks.
[ Craig Small ]
* Update to Debian standard 4.6.1, no change
-- Craig Small <csmall@debian.org> Sat, 11 Jun 2022 15:31:19 +1000
net-snmp (5.9.1+dfsg-2) unstable; urgency=medium
* Fix path for net-snmp-create-v3-user Closes: #997895
* Use pidof for net-snmp-create-v3-user so don't need procps
* Make snmpd.conf group readable Closes: #998152
* Reapplied perl callback patch Closes: #1011440
-- Craig Small <csmall@debian.org> Wed, 25 May 2022 22:09:23 +1000
net-snmp (5.9.1+dfsg-1) unstable; urgency=medium
[ Owen Evans ]
* Enable Blumenthal AES-192 and AES-256 encryption Closes: #972985
[ Ferenc Wágner ]
* Enable systemd integration and UDP socket activation
Closes: #983569
[ Sergio Durigan Junior ]
* d/libsnmp-dev.install: Don't install archive (.a) files.
The archive files are just temporary files generated in order to
create the final shared objects (.so), and we don't need to ship them
in the package.
[ Debian Janitor ]
* Trim trailing whitespace.
[ Vagrant Cascadian ]
* Embed path to ps and uname. Closes: #978598
[ Craig Small ]
* Make the perl agent code more tolerant of perl types, thanks
to Guillem Jover for the patch Closes: #977573
* Make CI files use correct libmariadb-dev package names
Closes: #975477
* mib2c: Add recommends and fix error message Closes: #990706
* Add configuration directory for snmpd
* New upstream release
* Add Recommends: procps for snmpd Closes: #993997
-- Craig Small <csmall@debian.org> Mon, 20 Sep 2021 21:35:58 +1000
net-snmp (5.9+dfsg-3) unstable; urgency=medium
* Source only upload - no changes Closes: #970798
-- Craig Small <csmall@debian.org> Fri, 25 Sep 2020 09:10:00 +1000
net-snmp (5.9+dfsg-2) unstable; urgency=medium
* Move SNMP.3pm back to perl package Closes: #969436
* Moved snmptrapd library into its own package to not pull in mysql
dependencies for snmp/snmpd Closes: #953948
-- Craig Small <csmall@debian.org> Sun, 06 Sep 2020 21:52:58 +1000
net-snmp (5.9+dfsg-1) unstable; urgency=medium
[ Sergio Durigan Junior ]
* Link libnetsnmptrapd against MYSQL_LIBS
- d/p/Link-libnetsnmptrapd-against-MYSQL_LIBS.patch: When building
with MySQL (MariaDB) support, this library must be linked against the
MySQL client library, or else it will have unresolved symbols.
(Closes: #886221)
[ Craig Small ]
* New upstream release
* Removed patches included in upstream
* Library soname changed to 40
* Remove dbg packages, no need to migrate as new soname
-- Craig Small <csmall@debian.org> Sat, 22 Aug 2020 17:11:17 +1000
net-snmp (5.8+dfsg-5) unstable; urgency=medium
* Allow extend to be read-only Closes: #966544
* Stop using mib_index files CVE-2020-15861 Closes: 966599
-- Craig Small <csmall@debian.org> Fri, 31 Jul 2020 20:29:41 +1000
net-snmp (5.8+dfsg-4) unstable; urgency=high
[ Sergio Durigan Junior ]
* Fix segmentation fault that happens when using the snmpv3
protocol with snmpbulkget. (LP #1877027) (Debian Bug #963713)
This is a rework of the patches introduced in the last release,
to fix CVE-2019-20892.
- d/p/move-securityStateRef-into-free_securityStateRef.patch:
Consolidate the check of the securityStateRef pointer into the
free_securityStateRef function.
- d/p/prevent-snmpv3-bulkget-errors-double-free.patch:
Prevent snmpv3 bulkget errors from becoming resulting in a
double free.
- d/p/fix-usmStateReference-free.patch:
Fix typo on usm_free_usmStateReference from last patch.
- d/p/unexport-struct-usmStateReference.patch:
Unexport struct usmStateReference and to prevent ABI breakages,
since it will be necessary to add a reference count to it.
- d/p/introduce-refcount-usmStateReference.patch:
Introduce refcount in the struct usmStateReference, and adjust
code to properly use the field.
- d/p/libsnmp-securitystateref: Rename to
d/p/move-securityStateRef-into-free_securityStateRef.
- d/p/doublefree_snmpusm: Rename to
d/p/prevent-snmpv3-bulkget-errors-double-free.patch.
[ Debian Janitor ]
* Trim trailing whitespace.
[ Craig Small ]
* snmpd: Disable extend mib Closes: #965166
* Don't ignore tmpfs filesystems
* snmpd: Command line uid/gid overrides configuration file
* Two previous fix CVE-2020-15862 and Closes: #685877
-- Craig Small <csmall@debian.org> Thu, 23 Jul 2020 21:35:08 +1000
net-snmp (5.8+dfsg-3) unstable; urgency=medium
[ Helmut Grohne ]
* Improve cross building: (Closes: #944953)
+ Build-Depends: perl-xs-dev for building a perl extension.
+ cross.patch: Detect mysql using pkg-config.
[ Craig Small ]
* Log ipv6 error once Closes: #944336
* Move net-snmp-create-v3-user to snmpd Closes: #953043
* snmpd: Quiet on access errors to mounts Closes: #792832
* snmpd: swinst_apt: Don't use dpkg directories Closes: #905668
* libsnmp: Fix double free crash CVE-2019-20892 Closes: #963713
* Enable TLS and DTLS transports Closes: #964054
[ Debian Janitor ]
* Trim trailing whitespace.
* Fix day-of-week for changelog entry 5.2.2-1.
-- Craig Small <csmall@debian.org> Thu, 02 Jul 2020 13:38:58 +1000
net-snmp (5.8+dfsg-2) unstable; urgency=medium
* All MIB directory values removed and just use the default compile-time
options, which is usually ok. Admins can add their own environment
settings or options to change. Closes: #942151
* Do not do parallel builds Closes: #942284
* Correct sedscript CPPFLAGS and libnetsnmptrapd LDFLAGS
* Also use default flags for restart on init scripts
-- Craig Small <csmall@debian.org> Wed, 23 Oct 2019 08:56:17 +1100
net-snmp (5.8+dfsg-1) unstable; urgency=medium
* New upstream release
- snmplib: handle large amount of file descriptors Closes: #754955
- BUG: 2815 Display UTF-8 characters again Closes: #898399
* Update to Debian standards 4.3.0
* Update debhelper to compat 12
* snmpd/snmptrapd: Log only warning and above. Closes: #792623
* snmpd/snmptrapd: Systemd unit logs to stdout
* Build depend on non-versions libsensors Closes: #917444
* Library soname updated to 35
* snmpd: Change pidfile mode to 0644 Closes: #528103
* Remove python modules Closes: #937131
* Respect defaults for sysvinit Closes: #932775
* Added snmpping.1 manpage
* Reduce logging for subcontainer Closes: #684721
* Do not enable DISMAN events Closes: #823201
* Update to standards 4.4.1
-- Craig Small <csmall@debian.org> Thu, 10 Oct 2019 22:37:15 +1100
net-snmp (5.7.3+dfsg-5) unstable; urgency=medium
* Use debhelper macros for shlibs Closes: #912685
* Relocate snmp.conf to libsnmp-base Closes: #914657
-- Craig Small <csmall@debian.org> Sat, 05 Jan 2019 16:16:10 +1100
net-snmp (5.7.3+dfsg-4) unstable; urgency=medium
[ Craig Small ]
* Use correct snmpwalk args in snmpcheck Closes: #898197
* Remove user only on purge Closes: #911216, #911132
[ Ondřej Nový ]
* d/copyright: Use https protocol in Format field
* d/control: Removing redundant Priority field in binary package
* d/changelog: Remove trailing whitespaces
* d/control: Remove trailing whitespaces
* d/watch: Use https protocol
[ Salvatore Bonaccorso ]
* snmpd crashes when receiving a GetNext PDU with multiple Varbinds
(CVE-2018-18065) (Closes: #910638)
-- Craig Small <csmall@debian.org> Fri, 26 Oct 2018 12:40:34 +1100
net-snmp (5.7.3+dfsg-3) unstable; urgency=medium
* Compile perl module after library Closes: #894626
-- Craig Small <csmall@debian.org> Wed, 04 Apr 2018 21:34:09 +1000
net-snmp (5.7.3+dfsg-2) unstable; urgency=medium
[ Craig Small ]
* New maintainer Closes: #835654
* Imported old NMU diff Closes: #851343, #852479
* Change VCS urls to salsa
* Update to standards 4.1.3 - no change
* Update to debhelper version 11
* Remove empty copyright file for libsnmp30
* snmp.prerm - remove killall
* snmpd and snmptrapd init scripts follow LSB minimal skeleton
Closes: #823079, #746397
* Drop Jochen Friedrich from Uploaders Closes: #891770
* Make snmpd and snmptrapd write pid files Closes: #878828
[ Hideki Yamane ]
* debian/control
- fix lintian error "old-style-config-script-multiarch-path" by adding
"Multi-Arch: no" to libsnmp-dev. It also fix multi-arch install
(Closes: #774775)
- note net-snmp-config script moved to libsnmp-dev (Closes: #801991)
Thanks to Vanush Misha Paturyan <misha@cs.nuim.ie>
* debian/libsnmp-perl.manpages
- fix to install perl modules man pages (Closes: #778539)
Thanks to Guillem Jover <gjover@sipwise.com> for the patch
* move debian/NEWS to debian/snmpd.NEWS (Closes: #586722, #587183)
* debian/control
- drop Hideki Yamane <henrich@debian.org> from Uploaders.
-- Craig Small <csmall@debian.org> Sat, 31 Mar 2018 20:00:51 +1100
net-snmp (5.7.3+dfsg-1.8) unstable; urgency=medium
* Non-maintainer upload.
* Add support for OpenSSL 1.1.0 and revert that were added
(Closes: #828449):
- add libssl-dev back as dependency of libsnmp-dev
- drop the guard which enforced libssl 1.0.2
- add -lcrypto back to pkg-config
-- Sebastian Andrzej Siewior <sebastian@breakpoint.cc> Sat, 23 Dec 2017 23:48:23 +0100
net-snmp (5.7.3+dfsg-1.7) unstable; urgency=medium
[ Niels Thykier ]
* Non-maintainer upload with the following changes from
other people.
[ Sebastian Andrzej Siewior ]
* drop dep on libssl1.0-dev in the dev package. (Closes: #851946)
* add a guard to catch users of the wrong library
* remove "-lcrypto" from the pkg-config when linking statically.
This is technical suboptimal and should ideally be reverted
for buster (when all packages migrate to the same ssl version).
[ Adrian Bunk ]
* Re-able "pie" hardening as its absence is causing issues for
reverse dependencies. (Closes: #852023)
-- Niels Thykier <niels@thykier.net> Tue, 24 Jan 2017 20:16:23 +0000
net-snmp (5.7.3+dfsg-1.6) unstable; urgency=medium
* Non-maintainer upload.
* Update Build-Depends to use libssl1.0-dev and
default-libmysqlclient-dev. (Closes: #846569, #836312)
* Use "perl" instead of the (now removed) "perl-modules" package
in Recommends.
* Add dh-python build-depends because dh_python2 asked for it.
* Drop debian/libsnmp30.postinst - its entire contents was handled
by debhelper.
-- Niels Thykier <niels@thykier.net> Sat, 14 Jan 2017 08:40:05 +0000
net-snmp (5.7.3+dfsg-1.5) unstable; urgency=medium
* Non-maintainer upload.
* Fix "FTBFS with Perl 5.24: error: conflicting types for 'U64'":
add patch from upstream git which removes the U64 typedef from the
Net-SNMP header files.
Thanks to Niky Tyni for extracting the patch.
(Closes: #825014)
* Additionally add another patch from upstream git which fixes
perl/*/Makefile.PL to fix build failures with Perl 5.24.
Cf. https://sourceforge.net/p/net-snmp/bugs/2712/
-- gregor herrmann <gregoa@debian.org> Fri, 02 Sep 2016 16:43:42 +0200
net-snmp (5.7.3+dfsg-1.4) unstable; urgency=medium
[ Sophie Brun ]
* Non-maintainer upload.
* Add a snmpd.service and a snmptrapd.service (Closes: #782243)
[ Raphaël Hertzog ]
* Fix the package so that it can build "Arch: all" without "Arch: any" (and
thus letting us make source only uploads).
-- Raphaël Hertzog <hertzog@debian.org> Mon, 20 Jun 2016 10:24:35 +0200
net-snmp (5.7.3+dfsg-1.3) unstable; urgency=medium
* _Really_ add missing Build-Depends: pkg-config on kfreebsd
(Closes: #810982).
-- Steinar H. Gunderson <sesse@debian.org> Thu, 31 Mar 2016 01:05:01 +0200
net-snmp (5.7.3+dfsg-1.2) unstable; urgency=medium
* Non-maintainer upload.
[ Steven Chamberlain ]
* Add missing Build-Depends: pkg-config on kfreebsd (Closes: #810982)
[ Steinar H. Gunderson ]
* Add --force-badname when creating the Debian-snmp user, as the name would
otherwise be rejected. (Closes: #819531)
-- Steinar H. Gunderson <sesse@debian.org> Wed, 30 Mar 2016 21:46:44 +0200
net-snmp (5.7.3+dfsg-1.1) unstable; urgency=medium
* Non-maintainer upload, done on top of the latest version in pkg-net-snmp
git, as well as adding Steven Chamberlain's kFreeBSD patches from
bug #810892.
[ Hideki Yamane ]
* debian/patches
- add Bug-788964-net-snmp-snmp_pdu_parse-DoS.patch (Closes: #788964)
- add 0026-fix-Bug-785380-incorrect-date-format.patch (Closes: #785380)
Thanks to Gabor Kiss <kissg@ssg.ki.iif.hu>
- add 0027-fix-455707-traptoemail-use-FQDN.patch (Closes: #455707)
Thanks to Ferenc Wagner <wferi@niif.hu>
* debian/snmpd.{preinst,postinst,postrm}
- change SNMP user from "snmp" to "Debian-snmp" to avoid confusion with
non-system user. It satisfy to work with some LDAP system. Thanks to
Vincent Bernat <bernat@debian.org> for suggestions.
(Closes: #794641, #794647)
* debian/snmp.preinst
- revert "killall", it is unnecessary anymore (Closes: #781257)
[ Steven Chamberlain ]
* Fix a typo in 26_kfreebsd.patch
* Add 27_kfreebsd.patch: (Closes: #810982)
- Add missing dependency of mibII/icmp on kfreebsd
- Add kfreebsd definitions not in GNU libc's icmp6.h
* Remove obsolete Fix-kfreebsd-builds-with-kernel-headers-10.patch
* Re-enable IPv6 on kfreebsd (Closes: #765846)
* Build with the libbsd overlay on kfreebsd, for nlist
[ Steinar H. Gunderson ]
* New patches, mostly for various bug fixes (some of them for crash bugs):
* fix_engineid_reprobe.diff: Do not probe engineID for USM
if it is already given. (Closes: #765873)
* callback_print.diff: Fix enum formatting when doing asynchronous queries
from Perl. (Closes: #765289)
* do_not_callback_for_failed_reports.diff: Fix access of freed data due to
callbacks for reports occasionally coming twice.
* fix_perl_bulk_gets.diff: Fix handling of truncated bulk get responses
in the Perl module. (Patch 1278 in upstream patch tracker.)
* let_perl_access_engineid.diff: Add a new functions to let Perl code
access the security engine ID.
-- Steinar H. Gunderson <sesse@debian.org> Tue, 29 Mar 2016 10:30:24 +0200
net-snmp (5.7.3+dfsg-1) unstable; urgency=medium
* Imported Upstream version 5.7.3+dfsg
* refresh debian/patches and drop unnecessary patches from upstream
* debian/control
- set Standards-Version: 3.9.6
-- Hideki Yamane <henrich@debian.org> Tue, 28 Apr 2015 20:58:18 +0900
net-snmp (5.7.2.1+dfsg-1) unstable; urgency=medium
* re-generate upstream source due to accidentally include non-free MIB files.
Now those are removed from source again (Closes: #782598)
-- Hideki Yamane <henrich@debian.org> Sun, 12 Apr 2015 06:38:47 +0900
net-snmp (5.7.2.1~dfsg-7) unstable; urgency=medium
* debian/patches
- add CVE-2014-3565.patch taken from upstream to fix CVE-2014-3565
(Closes: #760132)
-- Hideki Yamane <henrich@debian.org> Wed, 17 Sep 2014 15:56:45 +0900
net-snmp (5.7.2.1~dfsg-6.1) unstable; urgency=medium
* Non-maintainer upload.
* Fix "hardcodes /usr/lib/perl5":
Make debian/libsnmp-perl.install executable and use $Config{vendorarch} to
get the perl library directory. Patch from Niko Tyni.
(Closes: #751918)
* Fix "FTBFS on kfreebsd-amd64 - 'struct kinfo_proc' has no member
named 'kp_eproc'":
Add patch from Niko Tyni which fixes a DEFINE that changed between
kfreebsd-kernel-headers 9 and 10.
(Closes: #753144)
* Fix "snmpd: Memory leak when SNMP GET request id is zero":
add patch from upstream bug, prepared by Roland Stigge.
(Closes: #746225)
-- gregor herrmann <gregoa@debian.org> Fri, 18 Jul 2014 14:48:18 +0200
net-snmp (5.7.2.1~dfsg-6) unstable; urgency=medium
* debian/{snmpd.conf,patches/add_rocommunity6.patch}
- fix typo, thanks to Uwe Storbeck <uwe@ibr.ch> for the report
(Closes: #746399)
* debian/control
- libsnmp-dev: add "Depends: libpci-dev" (Closes: #744023)
-- Hideki Yamane <henrich@debian.org> Sun, 04 May 2014 10:55:05 +0900
net-snmp (5.7.2.1~dfsg-5) unstable; urgency=high
* debian/patches
- add ifmib.patch taken from upstream to work on systems without a PCI bus
Thanks to Chris Boot <debian@bootc.net> and Sergey Dorofeev
<sergey@fidoman.ru> for the report (Closes: #745919, #745956)
-- Hideki Yamane <henrich@debian.org> Sun, 27 Apr 2014 17:05:08 +0900
net-snmp (5.7.2.1~dfsg-4) unstable; urgency=medium
* debian/*.init
- fix incorrect sequence of options passed to start-stop-daemon
Thanks to Mehul Sanghvi <mehul.sanghvi@gmail.com> (Closes: #745828)
-- Hideki Yamane <henrich@debian.org> Sat, 26 Apr 2014 14:19:55 +0900
net-snmp (5.7.2.1~dfsg-3) unstable; urgency=medium
* Upload to unstable
* debian/snmptrapd.init
- fix "--force-reload" option (Closes: #525028)
-- Hideki Yamane <henrich@debian.org> Thu, 10 Apr 2014 00:08:03 +0900
net-snmp (5.7.2.1~dfsg-2) experimental; urgency=medium
* fix broken debian/snmpd.postinst
* debian/control
- fix dependency for snmptrapd since '/usr/bin/traptoemail' is also in
snmp (<< 5.7.2.1~dfsg-1)
-- Hideki Yamane <henrich@debian.org> Tue, 01 Apr 2014 23:15:15 +0900
net-snmp (5.7.2.1~dfsg-1) experimental; urgency=medium
* New upstream release
- fix DoS on ICMP-MIB as CVE-2014-2284 (Closes: #742817)
* Ack NMU (Closes: #717419)
* debian/patches
- add add_rocommunity6.patch to fix snmpwalk using ipv6 (Closes: #717179)
- add fix_manpage-has-errors-from-man.patch
- add agentx-crash.patch, taken from Fedora package. It fixes CVE-2012-6151
(Closes: #731625)
- add TrapReceiver.patch to fix CVE-2014-2285
* debian/control
- set Standards-Version: 3.9.5
- add "Build-Depends: libpci-dev" to enable libpci function that was
introduced in 5.7 (Closes: #741504)
- split snmptrapd from snmpd to allow to install only snmpd on systems that
will never issue traps (Closes: #314902)
+ Also it separates mysql dependency (Closes: #715486)
* debian/libsnmp-dev.install
- add missing net-snmp-create-v3-user (Closes: #726158, #718988)
* debian/upstream/signing-key.asc
- check upstream PGP key
* debian/rules
- add etherlike-mib/dot3StatsTable (Closes: #729732, LP#1251847)
* debian/snmpd.init
- relax start-stop-daemons avoid restart daemon before it terminates.
Thanks to Saj Goonatilleke <saj.goonatilleke@anchor.net.au> for the
patch (Closes: #640456)
- fix "init.d-script-does-not-source-init-functions" lintian warning
* debian/snmptrapd.init
- split it from snmpd.init (Closes: #724288)
* debian/snmpd.postinst
- fix weird user creation (Closes: #482041, #589040, #606784, #610630)
* debian/snmpd.postrm
- remove unnecessary old /var/agentx/master directory with purge
(Closes: #728546)
* debian/snmp.install
- move traptoemail to snmptrapd.install releated to above changes
* debian/{snmpd,snmptrapd}.default
- fix pid diretory (Closes: #611668)
* debian/README.Debian
- note snmpconf is in snmp package (Closes: #577649)
-- Hideki Yamane <henrich@debian.org> Sun, 30 Mar 2014 19:58:39 +0900
net-snmp (5.7.2~dfsg-8.1) unstable; urgency=low
* Non-maintainer upload.
* Move net-snmp-config to libsnmp-dev package (Closes: #716805)
* Mark libsnmp-base as Multi-Arch: foreign and drop Multi-Arch: same for
libsnmp-dev package (Closes: #708302)
-- Laurent Bigonville <bigon@debian.org> Sat, 13 Jul 2013 17:13:09 +0200
net-snmp (5.7.2~dfsg-8) unstable; urgency=low
* add libsnmp-perl.preinst to deal with empty directory by libsnmp15
package removal (Closes: #709761)
* {snmp,snmpd}.postinst: deal with "copyright file missing after upgrade
(policy 12.5)" (Closes: #709087)
-- Hideki Yamane <henrich@debian.org> Thu, 06 Jun 2013 08:49:02 +0900
net-snmp (5.7.2~dfsg-7) unstable; urgency=low
* debian/control
- libsnmp-base: update to more policy polite (Breaks/Replaces: libsnmp15
(<<5.7.2~dfsg-5)), thanks to James McCoy
* debian/snmp.preinst
- fix incomplete script.
-- Hideki Yamane <henrich@debian.org> Mon, 20 May 2013 14:19:36 +0900
net-snmp (5.7.2~dfsg-6) unstable; urgency=low
* debian/rules
- Fix Hurd build issue, thanks Pino Toscano <pino@debian.org> for
the patch (Closes: #708951)
* debian/snmpd.init
- patch from Ubuntu, LSBified
* debian/snmp.pre{inst,rm}
- patch from Ubuntu, Kill any/all processes owned by snmp user before
install/uninstall.
* debian/control
- add "Conflicts: libsnmp15" to libsnmp-base since moving net-snmp-config
in previous version cause trouble (Closes: #708983)
-- Hideki Yamane <henrich@debian.org> Mon, 20 May 2013 08:49:14 +0900
net-snmp (5.7.2~dfsg-5) unstable; urgency=low
* debian/control
- fix typo and improve description, thanks to Martin Eberhard Schauer
<Martin.E.Schauer@gmx.de> for the patch (Closes: #708519)
- libsnmp-base: add "Conflicts: libsnmp30 (<< 5.7.2~dfsg-5)" since
net-snmp-config file moves from libsnmp30 to libsnmp-base
(Closes: #708298)
- update descriptions
* debian/{libsnmp-base,libsnmp30}.install: update
-- Hideki Yamane <henrich@debian.org> Sun, 19 May 2013 23:09:52 +0900
net-snmp (5.7.2~dfsg-4) unstable; urgency=low
* debian/snmpd.{init,default,postinst}
- silly bug related to handle /var/run/agentx directory
(Closes: #708335, #708328) Thanks to Hilmar Preuße <hille42@web.de> and
Vincent Bernat <bernat@debian.org> for reporting
-- Hideki Yamane <henrich@debian.org> Wed, 15 May 2013 22:21:39 +0900
net-snmp (5.7.2~dfsg-3) unstable; urgency=low
* Upload to unstable
* debian/control
- specify version for "Breaks: libsnmp15"
-- Hideki Yamane <henrich@debian.org> Thu, 09 May 2013 20:38:28 +0900
net-snmp (5.7.2~dfsg-2) experimental; urgency=low
* debian/snmpd.{postinst,postrm}
- avoid failure with /var/run/agentx
* debian/control
- add "Breaks: libsnmp15" to snmp since snmp.conf moves from it.
-- Hideki Yamane <henrich@debian.org> Fri, 26 Apr 2013 16:02:01 +0900
net-snmp (5.7.2~dfsg-1) experimental; urgency=low
* debian/control
- add myself to Uploaders. Thanks, Jochen.
* debian/snmpd.{dirs,init,postinst}
- ensure /var/run/agentx exists since maybe /var/run would be tmpfs, so
would disappear with reboot. Thanks to lintian.
* debian/patches
- add fix_manpage-has-errors_break_line.patch
-- Hideki Yamane <henrich@debian.org> Fri, 26 Apr 2013 07:47:09 +0900
net-snmp (5.7.2~dfsg-1~0.2) experimental; urgency=low
* Non-maintainer upload.
* debian/rules
- don't specify installdocs -plibsnmp-perl twice.
- add dh_python2 to avoid missing dependency (Closes: #704864)
* debian/control
- set XS-Python-Version: 2.7 to avoid that dh_python2 would fail
-- Hideki Yamane <henrich@debian.org> Tue, 09 Apr 2013 10:42:56 +0900
net-snmp (5.7.2~dfsg-1~0.1) experimental; urgency=low
* Non-maintainer upload.
* New upstream version 5.7.2 (Closes: #557348, #631063, #684388, #599929,
#673197, #581185, #558356, #568550, #514842, #445608, #557186, #411858,
#428824, #611837, #495060, #527231, #583391, #572414, #668545, #344979,
#397573)
* debian/control
- set "Standards-Version: 3.9.4"
- set "Build-Depends: debhelper (>= 9)" to enable hardening
- set "Build-Depends: automake", instead of automake1.9
- drop "Build-Depends: python-central", use dh_python2 by default, instead
- remove duplicational "Priority:" and "Section:" fields
- make it "Multi-Arch" enable
- add description for non-free snmp-mibs-downloader for users' convinience
(Closes: #561124)
- add "Build-Depends: libmysqld-dev" to support MySQL
- add "Build-Depends: dh-autoreconf"
- use python-all (2.6.6-3~) instead of python-all-dev (>= 2.5.4-1~), python
(>=2.3.5-7) for Build-Depends
- add "Build-Depends: python2.7-dev"
- s/libsnmp-python/python-netsnmp/ as Python Policy compliant
(Closes: #661899)
- Add libsnmp-base to snmp and snmpd's Depends and remove it from
libsnmp30, also remove "Depends: libsnmp-perl (=${binary:Version})" from
libsnmp-dev to adjust dependencies in Multi-Arch compliant.
- simplify libsnmp-perl's Depends to avoid piuparts error
- remove "Conflicts: libsnmp-dev" from libsnmp-dev
- point to git://anonscm.debian.org/pkg-net-snmp/pkg-net-snmp.git for
Vcs-* fields
* debian/compat
- set 9
* debian/*.install
- split into *.manpages
* debian/fixman: drop it.
* debian/*.manpages (Closes: #505149)
- remove unnecessary"snmp" from tail of all man pages
* debian/libsnmp-base.install
- move /usr/share/mibs to /usr/share/snmp/mibs (probably, previous setting
was just wrong...)
- install all mibs/*.txt
* debian/libsnmp-dev.install
- change from "usr/lib/*" to "usr/lib/*/*" to deal with Multi-Arch
* debian/libsnmp30.install
- change from "usr/lib/*.so" to "usr/lib/*/*.so" to deal with Multi-Arch
* debian/snmp.dirs: remove it since unnecessary
* debian/snmpd.dirs: remove lintian overrides direcotry, add /etc/snmp
* debian/libsnmp-dev.dirs: add it
* debian/libsnmp-perl.examples: add it since dh_installexamples target in
previous debian/rules doesn't work correctly.
* debian/patches
- remove all *.README files
- add fix_typo_in_snmpd.conf.patch (Closes: #603593)
Thanks to Slavko <linux@slavino.sk>
- add fix_logging_option.patch (Closes: #616437)
- add fix_snmpcheck_perl_path.patch to provide snmpcheck (Closes: #44373)
- add net-snmp-config_multi-arch.patch to enable Multi-Arch
- add fix_regular_expression.patch enable to build under Multi-Arch
- add to snmptranslate.1.patch fix lintian "hyphen-used-as-minus-sign"
warnings
- add fix_spelling_error.patch to fix typo
- add after_RFC5378 to include some MIBs as DFSF-free code in RFC Documents.
- adjust and refresh 03_makefiles.patch
- add fix_man_error.patch
- drop 25_duplicate_iftable.patch and 44_nlist_kvm.patch since it cannot be
applied to current code.
- drop 32_mnttab_path.patch since it was merged to upstream as
configure.d/config_os_misc4
- drop 56_manpage.patch since most of patches are merged, and others are
unnecessary because upstream files are disappeared.
- refresh 61_vacm_missing_dependency_check.patch
- drop 63_fix_shell.patch since it was merged to upstream
- reapplied 64_missing_lib.patch since upstream source has been changed.
- drop 65_CVE-2012-2141.patch since it was merged to upstream
- drop 66_formatstrings.patch since almost merged to upstream, some of
code are changed in upstream and become unnecessary.
- move 08_defaultconfig.patch to debian/snmptrapd.conf
* debian/rules
- enable hardening
(TODO: building perl module would be failed without -pie)
- specify LDFLAGS to enable hardening
- add "--with autotools-dev,autoreconf"
- export DEB_BUILD_MAINT_OPTIONS to enable hardening
- drop "dh --with python-central" (Closes: #616913)
- drop "include /usr/share/python/python.mk"
- remove "$(PYVERS:%=debian/python-install-stamp-%)"
- move exist python targets under override_dh_install
- remove unnecessary .PHONY lines
- enable tests by removing no instructions with dh_auto_test line
- set DEB_HOST_MULTIARCH to enable Multi-Arch
- enable install snmpcheck
- don't specify to copy files but install them by using .install file
(mostly)
- enable mysql support
- enable AES support (Closes: #447705)
- don't make symlink for /usr/share/doc/libsnmp-perl since other are okay
but it has examples files.
- snmpd doc files link to libsnmp (Closes: #453124)
- libsnmp-perl doc files link to libsnmp
- adjust dh_strip for dbg package.
- adjust dh_clean target
- remove override_dh_auto_build since LD_RUN_PATH is clearly specified
during building perl modules
- add mibII/mta_sendmail to build modules (Closes: #641608)
- install copyright file manually for libsnmp30
- "get-orig-source:" target: really remove IANA files.
- improve specifying MIBs directory with new one.
- add "disman/event-mib" to MIB_MODULES, somehow changes in 5.2.2-5
disappeared (Closes: #562787)
* debian/clean
- most listed files are cared by autotools-dev, so removed.
* debian/snmp.conf: fix typo (Closes: #623499, #647468)
* debian/snmpd.init
- force remove pid files (Closes: #528104)
- deal with MIBs directory changes
* add libsnmp30.lintian-overrides since it seems to be false-positive.
* debian/snmpd.dirs: fix "using of /var/agentx conflicts with FHS"
RFC says "(It may create other, implementation-specific endpoints.)", so
FHS-compliant endpoint is more suitable for Debian system.
(Closes: #672063)
* debian/snmpd.lintian-overrides
- remove above overrides since it's unnecessary anomore.
* move snmp.conf from libsnmp30 to snmp.
* debian/snmpd.default
- Disable loading mteTrigger and mteTriggerConf modules as they don't
work without non-free MIBs.
* libsnmp-perl.postinst: remove it since it's not necesssary because
symlink is handled by debian/rules
-- Hideki Yamane <henrich@debian.org> Sun, 27 Jan 2013 11:57:29 +0900
net-snmp (5.4.3~dfsg-2.7) unstable; urgency=low
* Non-maintainer upload.
* debian/patches/27_kfreebsd_bug625985.patch: New patch, fix build error on
kfreebsd-*, by Steven Chamberlain (closes: #625985).
-- Michael Banck <mbanck@debian.org> Sat, 24 Nov 2012 13:30:51 +0100
net-snmp (5.4.3~dfsg-2.6) unstable; urgency=low
* Non-maintainer upload.
* debian/libsnmp-perl.postinst: Fix directory to symlink upgrade in
postinst (closes: #692949)
-- David Prévot <taffit@debian.org> Sun, 18 Nov 2012 09:24:30 -0400
net-snmp (5.4.3~dfsg-2.5) unstable; urgency=medium
* Non-maintainer upload by the Security Team.
* Fix CVE-2012-2141 by using Ubuntu's patch (Closes: #672492).
* Do not ship *.la files (Closes: #633166).
* Enable hardened build flags and fix missing format strings
(Closes: #657519).
* Source debconf before doing work in postinst (Closes: #626312).
* Fix check for existing snmp group in postinst (Closes: #609430).
* Use *-any architecture qualifiers (Closes: #634735).
* Add Indonesian debconf translation (Closes: #654166).
* Add Polish debconf translation (Closes: #661252).
-- Luk Claes <luk@debian.org> Sun, 27 May 2012 17:22:01 +0200
net-snmp (5.4.3~dfsg-2.4) unstable; urgency=low
* Non-maintainer upload.
* Trivial lintian fix: don't use braces in libsnmp-dev.install
* Fix pending l10n issues. Debconf translations:
- Korean (si-cheol KO). Closes: #630948
- Slovak (Slavko). Closes: #634988
- Serbian (Zlatan Todoric). Closes: #635066
- Serbian Latin (Zlatan Todoric). Closes: #635067
- Catalan; (Innocent De Marchi). Closes: #641829
-- Christian Perrier <bubulle@debian.org> Mon, 19 Dec 2011 07:34:31 +0100
net-snmp (5.4.3~dfsg-2.3) unstable; urgency=low
* Non-maintainer upload.
* Fix for init script status command when trapd is not running. Thanks to
Steve Camfield <steve.camfield@scamfield.co.uk> for the patch
(closes: #610306)
-- Stephen Gran <sgran@debian.org> Sat, 27 Aug 2011 09:10:09 +0000
net-snmp (5.4.3~dfsg-2.2) unstable; urgency=high
* Non-maintainer upload.
* Fix FTBFS on kfreebsd-* by updating 44_nlist_kvm.patch to detect nlist
(in libbsd), thanks to Jakub Wilk (Closes: #625985).
* Add build-dependency on libbsd-dev on kfreebsd-* accordingly.
-- Cyril Brulebois <kibi@debian.org> Mon, 09 May 2011 11:12:31 +0200
net-snmp (5.4.3~dfsg-2.1) unstable; urgency=high
[ Julien Cristau ]
* Non-maintainer upload to fix FTBFS (closes: #625730).
* Don't hardcode SHELL to /bin/sh in Makefile.top, libtool wants bash
(closes: #617212).
* Add missing libraries to link commands to make newer gcc happy (closes:
#555767, #615756).
[ Cyril Brulebois ]
* Do the 3.0 (quilt) dance to get Julien's patches applied.
* Add some bug closures.
-- Cyril Brulebois <kibi@debian.org> Sat, 07 May 2011 12:14:26 +0200
net-snmp (5.4.3~dfsg-2) unstable; urgency=high
* Add libperl-dev to libsnmp-dev dependencies (Closes: #608794)
* Add missing include to 61_vacm_missing_dependency_check.patch
(Closes: #602809)
* High urgency due to RC bug fixes
-- Jochen Friedrich <jochen@scram.de> Wed, 05 Jan 2011 13:03:32 +0100
net-snmp (5.4.3~dfsg-1) unstable; urgency=low
* New upstream version (Closes: #559109)
- includes fix for CVE-2008-4309
- includes fix for CVE-2008-6123 (Closes: #516801)
- AgentX support listens on localhost (only) by default
- support for monitoring large disks (>2Tb)
- improved handling of multiple matching access control entries
* Remove patches included upstream:
- 31_silence_subcontainer.patch
- 57_fix_ipv6_memleak.patch
- 59_fix_python.patch
* Update patches:
- 03_makefiles.patch
- 07_docfiles.patch
- 08_defaultconfig.patch
- 32_mnttab_path.patch
- 56_manpage.patch (Closes: #582400)
- 60_libsensors_api.patch (Closes: #575810)
* Switch to dpkg-source 3.0 (quilt) format
* Bump Standards version to 3.8.4
* Moved snmp.conf from snmp to libsnmp15
* Don't bind to 172.0.0.1 in snmpd.default anymore. This is now
done in the upstream sample snmpd.conf file. Trying to bind to
127.0.0.1 in both places will make snmpd fail to start, at all.
-- Jochen Friedrich <jochen@scram.de> Thu, 10 Jun 2010 18:02:54 +0200
net-snmp (5.4.2.1~dfsg-5) unstable; urgency=low
* Add conditional depends back that were lost in the build system
change (Closes: #560408)
* Install all provided NET-SNMP MIBs.
* Install snmp.conf with empty MIB list so snmp tools work without
complaining about missing MIBs. (Closes: #559200)
* Add /usr/share/mibs/site and /usr/share/snmp/mibs to MIB search path
(Closes: #560371)
-- Jochen Friedrich <jochen@scram.de> Tue, 15 Dec 2009 14:59:44 +0100
net-snmp (5.4.2.1~dfsg-4) unstable; urgency=low
* Update 26_kfreebsd.patch with patch from Petr Salinger
<Petr.Salinger@seznam.cz> (Closes: #557244).
* Applied patch from Jakub Wilk <ubanus@users.sf.net> to make the
python module compile with python2.6 (Closes: #557540).
* Suggests snmp-mibs-downloader from contrib to download MIBs.
Remove the download scripts from this package (Closes: #557434, #557682)
* Move net-snmp-config to libsnmp15 as it contains platform dependent
code (Closes: #558488). Also clean up old Replaces / Conflicts.
* Add patch from Pino Toscano <pino@kde.org> for hurd-i386 support.
Closes: #530289.
* Provide a new option --base-lib-cflags for CFLAGS without perl dependent
stuff. (Closes: #502806)
-- Jochen Friedrich <jochen@scram.de> Tue, 01 Dec 2009 18:40:38 +0100
net-snmp (5.4.2.1~dfsg-3) unstable; urgency=low
* Fix typo in NEWS.
* Add make to libsnmp-base dependency (Closes: #556632).
* Use dh7 build system instead of cdbs (Closes: #552976).
* Fix man page .so links so they get installed correctly.
* Replace download host for RFCs for a faster one and add some better
documentation that this step takes some time and that it can be repeated
in case of a problem. (Closes: #556633, #556778, #556787, #556788)
-- Jochen Friedrich <jochen@scram.de> Wed, 18 Nov 2009 16:54:11 +0100
net-snmp (5.4.2.1~dfsg-2) unstable; urgency=low
* Add upstream patch R17470 to fix debugging output and numeric OID
reporting. (Closes: #524203, #509562) Thanks to Luca Ferroni
<luca.ferroni@labs.it> for the patch.
* Fix long description of debug package.
* Switch to libsensors4. (Closes: #518898) Thanks to Jonathan Nieder
<jrnieder@gmail.com> for the patch.
-- Jochen Friedrich <jochen@scram.de> Thu, 12 Nov 2009 16:17:40 +0100
net-snmp (5.4.2.1~dfsg-1) unstable; urgency=low
* New upstream version
- includes patch for CVE-2008-6123 (Closes: #516801)
* remove patches applied upstream:
- 55_cve2008_4309.patch
- 54_fix_xen.patch
- 53_fix_python_regression.patch
- 52_suppress_registration_warnings.patch
- 51_allow_g_groupname.patch
- 50_cve2008_0960.patch
- 49_cve2008_2292_python.patch
- 48_cve2008_2292_perl.patch
- 47_prevent_partial_inserts.patch
- 46_ifname_crop.patch
- 45_process_race.patch
- 43_snmp_logging.patch
- 41_snmptrapd_close_handles.patch
* Updated patches:
- 31_silence_subcontainer.patch: Use upstream changeset 17254
- 25_duplicate_iftable.patch: Regenerated
- 03_makefiles.patch: Install Makefile.mib
* Removed non-free MIBS from distribution (Closes: #498475)
* Add debug package
* Implement "status" action in the init.d script. (Closes: #528107)
Thanks to Peter Eisentraut <petere@debian.org> for the patch
* Fix LSB dependencies (Closes: #541366). Thanks to Petter Reinholdtsen
<pere@hungry.com> for the patch.
* Let snmpd run as group snmp (Closes: #520724). Thanks to Russell Coker
<russell@coker.com.au> for the patch.
* Update standards version to 3.8.3.
* Get rid off lintian warnings.
* Fix memory leak when multiple interfaces have the same IPv6 address,
such as link-local addresses when VLAN subinterfaces are in use.
(Closes: #531056). Thanks to John Morrissey <jwm@horde.net> for the
patch.
* Rework build system (Closes: #528106)
* Change default configuration to make snmp daemons run without MIBs.
-- Jochen Friedrich <jochen@scram.de> Mon, 09 Nov 2009 18:29:10 +0100
net-snmp (5.4.1~dfsg-12) unstable; urgency=high
* Urgency high because of RC bug fix.
* Modify start action so it doesn't fail if the service is already running.
(Closes: #505237)
* Update Romanian translation (Closes: #505767)
Thanks to Eddy Petrișor <eddy.petrisor@gmail.com>.
-- Jochen Friedrich <jochen@scram.de> Tue, 16 Dec 2008 15:29:28 +0100
net-snmp (5.4.1~dfsg-11) unstable; urgency=high
* This update fixes the following security issue:
- CVE-2008-4309: A bug in the getbulk handling code could let anyone
with even minimal access crash the agent. (Closes: #504150)
-- Jochen Friedrich <jochen@scram.de> Mon, 03 Nov 2008 17:58:35 +0100
net-snmp (5.4.1~dfsg-10) unstable; urgency=high
* Fix python regression introduced by fix of CVE-2008-2292 (Closes: #497656)
* Fix xen dom0 problems (Closes: #500717)
-- Jochen Friedrich <jochen@scram.de> Mon, 06 Oct 2008 22:35:57 +0200
net-snmp (5.4.1~dfsg-9) unstable; urgency=low
* Ack NMU (Closes: #485945)
* Updated standards version to 3.8.0 (no changes)
* Update debconf translations:
o sv: Martin Bagge <brother@bsnet.se> (Closes: #491778)
o ja: Hideki Yamane (Debian-JP) <henrich@debian.or.jp> (Closes: #494118)
* Add patch to support -g {groupname} (Closes: #441871, #468577, #485948)
* Add official patch to suppress annoying warning in syslog (Closes: #493281)
* Fix default stop section in LSB header of start script.
-- Jochen Friedrich <jochen@scram.de> Fri, 29 Aug 2008 18:13:49 +0200
net-snmp (5.4.1~dfsg-8.1) unstable; urgency=high
* Non-maintainer upload by the Security Team.
* This update fixes the following security issue:
- CVE-2008-0960: The authentication code relies on the client specified
HMAC length which makes it easier for an attacker to match a correct HMAC
and authentication if a single byte HMAC is supplied (Closes: #485945)
-- Nico Golde <nion@debian.org> Thu, 12 Jun 2008 22:22:52 +0200
net-snmp (5.4.1~dfsg-8) unstable; urgency=low
* NACK NMU as the patch broke perl (Closes: #483588)
* Really fix CVE-2008-2292 using two upstream patches (Closes: #482333)
* Update nl translation (Closes: #460587)
* Update patch for support of long interface names to upstream version
-- Jochen Friedrich <jochen@scram.de> Tue, 03 Jun 2008 13:06:57 +0200
net-snmp (5.4.1~dfsg-7) unstable; urgency=low
* Add some more Conflicts: and Replaces: magic to allow moving
net-snmp-config to libsnmp-base. (Really Closes: #443420, #443396, #261686)
* Update debhelper to version 6
* Add patch for support of long interface names (Closes: #468260)
Thanks to Jonathan Steinert <debian@hachi.kuiki.net> for the patch.
* Add upstream patch to avoid a crash on pppoe tunnels (Closes: #451294)
* Convert copyright to UTF-8.
* Fix spelling error in NEWS: deamon -> daemon.
-- Jochen Friedrich <jochen@scram.de> Tue, 29 Apr 2008 18:37:23 +0200
net-snmp (5.4.1~dfsg-6) unstable; urgency=low
* Add Noah Meyerhans as uploader
* Add upstream patch for process regression (Closes: #460050)
* Fix build system for Perl 5.10 (Closes: #463059)
-- Jochen Friedrich <jochen@scram.de> Tue, 29 Jan 2008 14:43:18 +0100
net-snmp (5.4.1~dfsg-5) unstable; urgency=low
* Add upstream changeset 16721:
o snmplib: PATCH: 1806336: fix -LS option parsing (Closes: #444986)
* Add patch from Petr Salinger <Petr.Salinger@seznam.cz>:
o search nlist() in libkvm. (Closes: #449550)
* Add finish translation from Esko Arajärvi <edu@iki.fi>.
(Closes: #448421).
* Updated standards version to 3.7.3
o Add Homepage tag
o rename XS-Vcs-* to Vcs-*
-- Jochen Friedrich <jochen@scram.de> Fri, 28 Dec 2007 12:43:21 +0100
net-snmp (5.4.1~dfsg-4) unstable; urgency=low
* Do it right this time.
-- Jochen Friedrich <jochen@scram.de> Fri, 21 Sep 2007 21:20:30 +0200
net-snmp (5.4.1~dfsg-3) unstable; urgency=low
* Add some Conflicts: and Replaces: magic to allow moving
net-snmp-config to libsnmp-base. (Closes: #443420, #443396, #261686)
-- Jochen Friedrich <jochen@scram.de> Fri, 21 Sep 2007 16:47:48 +0200
net-snmp (5.4.1~dfsg-2) unstable; urgency=low
* Fixed extra MIB patch, so the extra MIBS are really added to the
Debian package.
* Update of GNOME-SMI (fixed a typo in the actual OID)
* Finally move 5.4.1 to unstable (Closes: #441948, #264938, #416965)
* Fixed snmp.install to not include mib2c-update.
* Fixed clean target.
-- Jochen Friedrich <jochen@scram.de> Thu, 20 Sep 2007 16:40:28 +0200
net-snmp (5.4.1~dfsg-1) experimental; urgency=low
* New upstream version
* Remove patches included in new upstream.
* Fix double inclusion of net-snmp-config man page
* Include stuff from 5.3.1-8:
o Rearrange snmpd.postrm to not run deluser twice.
o Add lintian override for false alarm caused by
the Smith review project.
o Add patch to snmptrapd to close its file handles (Closes: #391203)
-- Jochen Friedrich <jochen@scram.de> Thu, 02 Aug 2007 14:43:20 +0200
net-snmp (5.4~dfsg-2) experimental; urgency=low
[ Christian Perrier ]
* Debconf templates and debian/control reviewed by the debian-l10n-
english team as part of the Smith review project. Closes: #426232
* Debconf translation updates:
- Galician. Closes: #426836
- Vietnamese. Closes: #426842
- Czech. Closes: #426864
- Swedish. Closes: #426882
- Basque. Closes: #426933
- Portuguese. Closes: #427065
- Danish. Closes: #427158
- Spanish. Closes: #427377
- German. Closes: #427542
- Russian. Closes: #427820
- Italian. Closes: #428151
- Brazilian Portuguese. Closes: #428885, #428886
- Tamil. Closes: #428969
- French. Closes: #429814
[ Jochen Friedrich ]
* Include stuff from 5.3.1-6:
o Rename dev Package to libsnmp-dev as suggested by Kurt Roeckx
<kurt@roeckx.be> and Steve Langasek <vorlon@debian.org>
* Remove old template entry (Closes: #422972)
* Set PATH in init script (Closes: #429442)
-- Jochen Friedrich <jochen@scram.de> Tue, 03 Jul 2007 14:54:00 +0200
net-snmp (5.4~dfsg-1) experimental; urgency=low
[ Jochen Friedrich ]
* New upstream version (Closes: #279670, #412924, #416965)
* Remove official patches from 5.3.1 tree
* Add official patches
o memory leaks in ipAddress and CirdRoute tables (SF #1610155)
o tcp connection table leaks fds (SF #1611524)
* Patch from upstream svn for snmpd.8 man page
* Add python module
[ Thomas Anders ]
* Change makefile patch for 5.4.rc3
* Change docfile patch for 5.4
-- Jochen Friedrich <jochen@scram.de> Fri, 13 Apr 2007 16:16:02 +0200
net-snmp (5.3.1-3) unstable; urgency=low
* Move AgentX socket to RFC location.
* Update pktinfo patch from Jan Andres <jandres@gmx.net>
* Add official patches.
o disabling agentX breaks snmptrapd auth (SF #1527661)
o SNMP.pm gettable() patch (SF #1532044)
o 8 byte IpAddress value for 64bit non-linux systems (SF #1550635)
o memory leaks in ipAddress and CirdRoute tables (SF #1610160)
* Synchronize tree to 5.2.3-7.
o Don't fail postrm on non-existant deluser (Closes: #398540)
o Add German debconf translation (Closes: #397823)
Thanks to Helge Kreutzmann <debian@helgefjell.de>.
o Add Italian debconf translation (Closes: #398047)
Thanks to Luca Monducci <luca.mo@tiscali.it>.
o Add patch to hardcode mount table location (Closes: #370132)
o Add Romanian translation (Closes: #403949)
Thanks to stan ioan-eugen <stan.ieugen@gmail.com>.
o Update patch from Petr Salinger <Petr.Salinger@seznam.cz> for
kFreeBSD and Hurd support. (Closes: #402116)
o Fix restart of snmpd (Closes: #402568, #401306)
o Add Spanish translation (Closes: #402685)
Thanks to Javier Fernández-Sanguino Peña <jfs@computer.org>
o Add Brazilian Portuguese translation (Closes: #403549)
Thanks to André Luís Lopes" <andrelop@debian.org>
o Don't fail postrm on non-existant deluser (Closes: #398540)
o Add LSB section to startup file.
o Add Thomas Anders as co-Maintainer.
o Add missing copyrights to copyright file.
o Fix spelling errors and wrong path names in documentation.
-- Jochen Friedrich <jochen@scram.de> Wed, 11 Apr 2007 13:04:00 +0200
net-snmp (5.3.1-2) experimental; urgency=low
* Add kfreebsd support. Thanks to Petr Salinger
<Petr.Salinger@seznam.cz> (Closes: #380252)
* Add Russian translation. Thanks to Yuri Kozlov
<kozlov.y@gmail.com> (Closes: #380300)
* Update Czech translation. Thanks to Miroslav Kure
<kurem@upcase.inf.upol.cz> (Closes: #380528)
-- Jochen Friedrich <jochen@scram.de> Mon, 31 Jul 2006 16:57:13 +0200
net-snmp (5.3.1-1) experimental; urgency=low
* New upstream version (Closes: #358079, #252893)
* Convert build system to cdbs. (Closes: #323074)
* Add patch from Lars Ellenberg to answer with the same
IP address the request was sent to. (Closes: #111263)
* Add patch from Sven Schnelle to prevent duplicate iftable
entries (Closes: #368617)
-- Jochen Friedrich <jochen@scram.de> Wed, 26 Jul 2006 12:08:46 +0200
net-snmp (5.2.2-4) unstable; urgency=low
* Add French translation. Thanks to Thomas Huriaux
<thomas.huriaux@gmail.com> (Closes: #357928)
* Add Czech translation. Thanks to Miroslav Kure
<kurem@upcase.inf.upol.cz> (Closes: #358845)
* Add Dutch translation. Thanks to Vincent Zweije
<zweije@xs4all.nl> (Closes: #360441)
* Add Galician translation. Thanks to Jacobo Tarrio
<jtarrio@trasno.net> (Closes: #361778)
* Add Portuguese translation. Thanks to Rui Branco
<ruipb@debianpt.org> (Closes: #375018)
* Add patch from upstream to correct sysObjectID.
(Closes: #363399, #374065)
* Rearrange snmpd.postrm to not run deluser twice.
* Change build-depends to not depend on automake but on
automake1.9 (Closes: #376561)
* Build with -Wall (Closes: #323074)
* Add patch to make -Z support zero values. Path thanks
to Peder Chr. Norgaard <Peder.Chr.Norgaard@ericsson.com>
(Closes: #366817)
* Make init script support reloading configuration without
restart. (Closes: #367071)
* Execute dh_fixperm before dh_strip (Closes: #360253)
-- Jochen Friedrich <jochen@scram.de> Tue, 4 Jul 2006 15:23:54 +0200
net-snmp (5.2.2-3) unstable; urgency=low
* Add short description to debconf templates (Closes: #355119)
* Add Danish translation. Thanks to Claus Hindsgaul
<claus.hindsgaul@gmail.com> (Closes: #355375)
* Add patch to add m4 directory with extracted net-snmp specific
aclocal definitions. Required to make libtool work correctly
(Closes: #355850, #536123)
-- Jochen Friedrich <jochen@scram.de> Sat, 11 Mar 2006 12:10:10 +0100
net-snmp (5.2.2-2) unstable; urgency=low
* Redo CVS Checkout from alioth (Closes: #354779)
-- Jochen Friedrich <jochen@scram.de> Wed, 01 Mar 2006 20:32:01 +0100
net-snmp (5.2.2-1) unstable; urgency=low
* New upstream release
* Added man page for snmpnetstat53
* Fix typos in man pages. Thanks to Nicolas François
<nicolas.francois@centraliens.net> (Closes: #326515, #326530, #326532).
* Fix libsnmp9-dev dependencies. Thanks to Ahmed Baizid <ahmed@baizid.org>
(Closes: #343577).
* Listen on 127.0.0.1 by default and turn off SMUX port in
/etc/defaults/snmpd. (Closes: #294309, #314907, #216108)
* Remove dangling symlinks /etc/doc/snmp[d] -> libsnmp5 which might
eventually be left over from old packages. Thanks to "Mario 'BitKoenig'
Holbe" <Mario.Holbe@TU-Ilmenau.DE> (Closes: #336365)
* Run snmpd as snmp user by default (Closes: #275374, #337053)
* Depend and Builddepend libsnmpd9-dev on procps. Thanks to
Peder Chr. Norgaard <Peder.Chr.Norgaard> for pointing this out.
(Closes: #325840)
* Fix man page section mismatch found by lintian.
-- Jochen Friedrich <jochen@scram.de> Thu, 23 Feb 2006 15:05:32 +0100
net-snmp (5.2.1.2-4) unstable; urgency=low
* Version builddep on libssl-dev and rebuild, for openssl transition
Closes: #334010 Thanks to Henrique de Moraes Holschuh <hmh@debian.org>.
-- Jochen Friedrich <jochen@scram.de> Sat, 15 Oct 2005 09:24:26 +0200
net-snmp (5.2.1.2-3) unstable; urgency=low
* Apply official library-version-update-5.2.1.2.patch to clean up the
version mess (Closes: #322500)
* Replace error_snmp6.patch by upstream systemstats-snmp6.patch
* Added upstream inetNetToMedia-01.patch (Closes: #323038)
* Added ipaddress_linux.c-in_len-out_len-type.patch from
Julien BLACHE <jblache@debian.org> (Closes: #321713)
-- Jochen Friedrich <jochen@scram.de> Mon, 5 Sep 2005 21:19:30 +0200
net-snmp (5.2.1.2-2) unstable; urgency=low
* Don't print error message if ipv6 module is not loaded. (Closes: #319741)
* Added conflicts against all packages using libsnmp5 due to upstream
changing the binary API without increasing SONAME. See: #322500
-- Jochen Friedrich <jochen@scram.de> Thu, 28 Jul 2005 20:19:09 +0200
net-snmp (5.2.1.2-1) unstable; urgency=low
* New upstream release (Closes: #293902). Contains fix for CAN-2005-2177
* Acknowledge NMU (Closes: #302195, #302386). Many thanks to
Henrique de Moraes Holschuh for his quick action!
* Including ucd-snmp/diskio (Closes: #264938)
* Don't relink libraries (Closes: #243870)
* Link against libsensors on all archs again (Closes: 304103)
* Include fixproc (Closes: #310692)
* Updated standards version to 3.6.2
* Change to patch based build system (Closes: #292412)
* Updated GNOME-SMI.txt
-- Jochen Friedrich <jochen@scram.de> Wed, 20 Jul 2005 21:47:32 +0200
net-snmp (5.1.2-6.1) unstable; urgency=emergency
* NMU (with permission from maintainer)
* debian/rules: clean up libdir in all .la files installed to
/usr/lib, so as to avoid breaking all libtool builds (closes: #302195).
-- Henrique de Moraes Holschuh <hmh@debian.org> Thu, 31 Mar 2005 12:14:11 -0300
net-snmp (5.1.2-6) unstable; urgency=medium
* Backed out the unauthorized MIB changes. lm-sensors updates.
Closes: #274624, Downgrades: #249904
* Fixed debian/fixman to not mangle the man pages (Closes: #273779).
* Fixed snmpset.1 man page. Thanks to
Nicolas François (nicolas.francois@centraliens.net
(Closes: #274431)
* Fix from CVS for v3 enginetime wrapping problem (Closes: #271543).
* Backed out patch to skip over interfaces without stats.
This might have an impact on #254571, #261701. Should be retested.
-- Jochen Friedrich <jochen@scram.de> Fri, 1 Oct 2004 12:54:23 +0200
net-snmp (5.1.2-5) unstable; urgency=medium
* Commented out remaining MemShared message
Thanks to Johan Thelmén (Really closes: #244721)
* New version of lm-sensors from upstream (Thanks to Mike Slifcak).
lm-sensors is now enabled again on i386.
Closes: #264442, #267691, #249839, #249904, 266270
-- Jochen Friedrich <jochen@scram.de> Thu, 23 Sep 2004 18:45:41 +0200
net-snmp (5.1.2-4) unstable; urgency=medium
* Fix from CVS for scanning 64bit counters from /proc (Closes: #210364)
-- Jochen Friedrich <jochen@scram.de> Fri, 27 Aug 2004 10:12:07 +0200
net-snmp (5.1.2-3) unstable; urgency=high
* Fixed init script to not depend on defaults file (Closes: #267414)
-- Jochen Friedrich <jochen@scram.de> Mon, 23 Aug 2004 17:27:47 +0200
net-snmp (5.1.2-2) unstable; urgency=medium
* Disable lm-sensors support for i386 once again as it's not yet mature
enough for sarge:
- It seems to trash memory: (Downgrades: #264442)
- It doesn't work as expected: #249839, #249904
- It is a likely candidate for memory leakage (at least it
looks like the result of sensors_get_label() is never freed)
-- Jochen Friedrich <jochen@scram.de> Tue, 17 Aug 2004 00:11:58 +0200
net-snmp (5.1.2-1) unstable; urgency=low
* New upstream release (Closes: #237890, #236326, #217306, #261624)
o Linux 2.6 improvements (Closes: #225253, #244721)
o Misc 64bit processor fixes.
o Misc perl build and install fixes.
o Minor improvements to snmpnetstat (IPv6 output)
o Minor improvements to snmpdelta (error reporting)
* snmp now recommends perl-modules (Closes: #261687)
* added watch file.
* fixed some lintian errors and warnings.
-- Jochen Friedrich <jochen@scram.de> Tue, 10 Aug 2004 11:18:31 +0200
net-snmp (5.1.1-2) unstable; urgency=low
* Fix dependency of lm-sensors
* Remove library circular dependency (Closes: #229132)
-- Jochen Friedrich <jochen@scram.de> Fri, 9 Apr 2004 10:52:34 +0200
net-snmp (5.1.1-1) unstable; urgency=low
* New upstream release (Closes: #232602, #238129)
o Improvements on 64 bit architectures.
o A few minor memory leaks fixed.
o An extremely large number of minor bug fixes.
o Many perl module specific bug fixes.
o snmpd will safely handle more signals.
* Enabled and fixed lm-sensors, this time for real. Thanks
to Christopher Price <cprice@cs-home.com> for the patch.
(Closes: #240502)
-- Jochen Friedrich <jochen@scram.de> Tue, 6 Apr 2004 23:27:52 +0200
net-snmp (5.1-5) unstable; urgency=low
* Enabled lm-sensors support again.
* Fixed libsnmp-base postinst -> postrm (Closes: #236405)
-- Jochen Friedrich <jochen@scram.de> Sat, 13 Mar 2004 09:39:17 +0100
net-snmp (5.1-4) unstable; urgency=low
* Really fixed libwrap inclusion in net-snmp-config.in
(Closes: #232396)
-- Jochen Friedrich <jochen@scram.de> Mon, 23 Feb 2004 17:20:21 +0100
net-snmp (5.1-3) unstable; urgency=low
* Applied patch from CVS to fix HOST-RESOURCES-MIB. (Closes: #232374)
* Applied patch from CVS to fix output of strings containing
CR or LF chars (bug 864367 on SF). (Closes: #218210)
* Applied patch from CVS to fix syslog output.
* Disabled lm-sensors support until kernel module issues are resolved.
-- Jochen Friedrich <jochen@scram.de> Sat, 21 Feb 2004 00:29:06 +0100
net-snmp (5.1-2) unstable; urgency=low
* Fix IPv6 MIB leaking file handles. Thanks to <kaj.niemi@basen.net>
for pointing out the patch at
https://bugzilla.redhat.com/bugzilla/show_bug.cgi?id=85071.
(Closes: #159495)
* Fixed snmpd.defaults. Thanks to James Samuel
<james.samuel@uk.easynet.net> for the patch. (Closes: #232394)
* Fixed libwrap inclusion in net-snmp-config.in (Closes: #232396)
* Updated shlibs to match version 5.1 (Closes: #232422)
-- Jochen Friedrich <jochen@scram.de> Thu, 12 Feb 2004 19:30:57 +0100
net-snmp (5.1-1) unstable; urgency=low
* New upstream release (Closes: #224382)
* New maintainer (Closes: #230679)
* Bumped standards version to 3.6.1
* Ack old NMUs (Closes: #182426, #186834, #183041)
* Updated GNOME-SMI.txt
* Removed duplicate conffiles
* Fixed description to make litian happy
-- Jochen Friedrich <jochen@scram.de> Mon, 9 Feb 2004 23:38:57 +0100
net-snmp (5.0.9-3) unstable; urgency=low
* Only support lm-sensors on i386 (closes: #216500).
-- David Engel <david@debian.org> Wed, 19 Nov 2003 14:13:02 -0600
net-snmp (5.0.9-2) unstable; urgency=low
* Fixed problem with libsnmp5 depending on itself.
* Make sure sysconfdir is defined (fixes bad path in manpages).
* Fixed problem overwriting MIBs (closes: #216034).
-- David Engel <david@debian.org> Thu, 16 Oct 2003 14:09:38 -0500
net-snmp (5.0.9-1) unstable; urgency=low
* New upstream version (closes: #214660)
- snmp.conf(5) man page is now corrected (closes: #185888).
- Incorrect behaviour of snmpd allowing to bypass the access
restrictions using snmpbulkget is corrected (closes: #205952).
* Updated the debian/copyright file.
* Changed to work with current libtool and autoconf (closes: $208380).
* Link libraries with complete dependencies (closes: #199166).
* Updated package descriptions (closes: #210122, closes: #210017,
closes: #209704, closes: #209857, closes: #209905, closes: #209839).
* Added manpages for net-snmp-config, snmpvacm, encode_keychange
(closes: #182996) and tkmib (closes: #130684) from Jurij Smakov
<jurij@wooyd.org>.
* Fixed mib2c to look for config files in the correct places.
* Enabled support for the lm-sensors MIB (closes: #204543).
* Use the process name instead of the command-line when matching
processes with proc config file directives (closes: #204542) from
Philippe Troin <phil@fifi.org>.
* Really enabled dlmod support (closes: #180639).
* Don't use obsolete SO_BSDCOMPAT sockopt (closes: #201853).
* Don't print SMUX passwords in log file (closes: #195622).
* Fixed typo in default snmpd.conf (closes: #185366).
* Don't include build paths in SNMP.so (closes: #184610).
* Added the BGP4, OSPF and RIPv2 MIBs.
* Ignore interfaces with no statistics (closes: #159321).
* Added the GNOME SMI (closes: #196340).
-- David Engel <david@debian.org> Tue, 14 Oct 2003 18:12:36 -0500
net-snmp (5.0.8-1) unstable; urgency=low
* New upstream version.
-- David Engel <david@debian.org> Wed, 14 May 2003 17:02:42 -0500
net-snmp (5.0.7-1.1) unstable; urgency=low
* NMU based on patches by Paul Hampson <Paul.Hampson@anu.edu.au>
* Add proper dependencies to libsnmp5-dev. Closes: #183041.
* Use updated libtool for mips/mipsel. Closes: #182426.
* Run debian/fixman.sh using bash. Closes: #186834.
-- Daniel Schepler <schepler@debian.org> Sat, 26 Apr 2003 16:52:18 -0700
net-snmp (5.0.7-1) unstable; urgency=low
* New upstream version (closes:177127, closes:154323,
closes:154322).
* Enabled dlmod support in snmpd (closes:180639).
* Use current config.guess and config.sub (closes:172501).
-- David Engel <david@debian.org> Sun, 23 Feb 2003 23:01:45 -0600
net-snmp (5.0.6-1) unstable; urgency=low
* New upstream version.
* Use autoconf2.13 (closes:157117, closes:162441, closes:162781).
* Commented out example proc, exec, disk and load statements in the
default snmpd.conf (closes:164028). Users can re-enable them if
desired.
* Added a note to README.Debian about the new snmpcmd command line
syntax regarding community strings (closes:160198).
-- David Engel <david@debian.org> Wed, 23 Oct 2002 09:20:11 -0500
net-snmp (5.0.3-2) unstable; urgency=low
* Rebuild with perl 5.8.
* Install additional UCD compatibility headers (closes: #156166).
-- David Engel <david@debian.org> Sun, 1 Sep 2002 21:35:12 -0500
net-snmp (5.0.3-1) unstable; urgency=low
* New upstream version.
* Linked libraries with libcrypto and libwrap to get proper
dependencies. Updated net-snmp-config accordingly
(closes: #155153).
* Included the UCD compatibility headers and library
(closes: #155133).
* Fixed bad snmpinform symlink (closes: #155196).
* Fixed mib2c to look in /etc/snmp for config files
(closes: #155157).
-- David Engel <david@debian.org> Mon, 5 Aug 2002 21:01:27 -0500
net-snmp (5.0.2a-1) unstable; urgency=low
* New upstream version (closes: #147761).
* Added missing -f in init script.
-- David Engel <david@debian.org> Mon, 1 Jul 2002 21:36:08 -0500
ucd-snmp (4.2.5-1) unstable; urgency=low
* New upstream version (closes:145289).
-- David Engel <david@debian.org> Tue, 14 May 2002 19:31:02 -0500
ucd-snmp (4.2.4-2) unstable; urgency=low
* Made libucdmibs depend on libwrap (closes:144521).
-- David Engel <david@debian.org> Thu, 25 Apr 2002 15:27:40 -0500
ucd-snmp (4.2.4-1) unstable; urgency=low
* New upstream version.
* Rebuilt with SSL since cryto can now go in main.
* Explicitly use bash for the fixman script (closes:133652).
* Don't use LD_RUN_PATH in perl/SNMP.so.
* Fixed parsing of "-p udp:" in snmpd (closes:141176).
-- David Engel <david@debian.org> Tue, 23 Apr 2002 20:50:25 -0500
ucd-snmp (4.2.3-2) unstable; urgency=high
* Fixed potential buffer overflow in snmpnetstat (close:129243).
* Updated upstream URL in debian/copyright file (close:125669).
-- David Engel <david@debian.org> Mon, 28 Jan 2002 21:24:59 -0600
ucd-snmp (4.2.3-1) unstable; urgency=low
* New upstream version (closes:122331).
* Changed the snmpd syslog message when interface statistics are
not available from LOG_ERR to LOG_DEBUG (closes:121555).
* Added a note in README.Debian about changes to
ucd-snmp-includes.h (closes:121095).
-- David Engel <david@debian.org> Sat, 8 Dec 2001 20:11:34 -0600
ucd-snmp (4.2.2-1) unstable; urgency=low
* New upstream version (closes:111966, closes:112005, closes:112073,
closes:118795, closes:118848).
* Removed Build-Depends on essential sed package (closes:111212).
* Added the ucd-snmp.m4 autoconf file (closes:112078).
* Moved mib2c from libsnmp-perl to libsnmp4.2-dev (closes:112393).
* Remove /var/lib/snmp if libsnmp-base is purged (closes:113729).
* Fixed int/size_t errors in mib_api man page (closes:114478).
* Added a blurb in README.Debian about snmpconf (closes:115378).
* Enabled smux support.
* Moved the agentx socket from /var/agentx/master to /var/run/agents
for FHS compatibility (closes:120015).
-- David Engel <david@debian.org> Mon, 19 Nov 2001 13:33:59 -0600
ucd-snmp (4.2.1-6) testing unstable; urgency=high
* Fixed LD_LIBRARY_PATH build problem when running under fakeroot
(closes:107565, closes:104044).
* Applied ucd-snmp-4.2.1-security*.patch from Caldera to fix potential
buffer overflow, temp file race and group permission problems
(closes:109345, closes:109733).
* Documented the -s option in the snmpd manpage (closes:109639).
* Changed the FAQ to reference /usr and /etc instead of /usr/lcoal
(closes:107758).
* Removed duplicate build dependency on libtool (closes:107476).
Changed build dependency from perl5 to perl (>=5.6) (closes:107575).
* Fixed minor typo in snmpd manpage (closes:106326).
* Added symlinks for missing man pages (closes:99614) and renamed
section 3 and 5 man pages to *.[35]snmp to aboid possible conflicts
with other packages.
* Applied ucd-snmp-4.2-ia64.patch from RedHat to properly set the return
length of IP addresses on 64-bit architectures.
-- David Engel <david@debian.org> Sun, 2 Sep 2001 22:47:30 -0500
ucd-snmp (4.2.1-5) unstable; urgency=low
* Rebuilt without SSL (closes:98306, closes:102429). Will look
into doing a non-US version with SSL.
-- David Engel <david@debian.org> Sat, 7 Jul 2001 20:53:16 -0500
ucd-snmp (4.2.1-4) unstable; urgency=low
* Fixed bug uncovered by libtool upgrade which caused snmpd
not to build (closes:97965).
-- David Engel <david@debian.org> Fri, 18 May 2001 20:49:14 -0500
ucd-snmp (4.2.1-3) unstable; urgency=low
* Installed the libsnmp-perl module into the perl vendor
directory (closes:95530).
* Updated the description of the libsnmp-base package
(closes:97170).
* Upgraded to libtool 1.4 (closes:97660).
-- David Engel <david@debian.org> Thu, 17 May 2001 20:16:17 -0500
ucd-snmp (4.2.1-2) unstable; urgency=low
* Enabled SSL support.
* Included the agent libraries in the -dev package to allow
for building agent extensions.
-- David Engel <david@debian.org> Tue, 15 May 2001 20:15:56 -0500
ucd-snmp (4.2.1-1) unstable; urgency=low
* New upstream version.
* Gave up and added autoconf and libtool to Build-Depends:
(closes:92103).
* Fixed mib2c to use /etc/snmp instead of /usr/share/snmp.
-- David Engel <david@debian.org> Wed, 11 Apr 2001 23:39:52 -0500
ucd-snmp (4.2-7) unstable; urgency=low
* Fixed long standing bug where mibs were not processed if the
.index file was not present (closes: 89597).
* Fixed starting of snmptrapd to be controlled by TRAPDRUN like
it was intended and documented (closes: 90621).
-- David Engel <david@debian.org> Sun, 25 Mar 2001 17:51:09 -0600
ucd-snmp (4.2-6) unstable; urgency=low
* Avoid rerunning autoconf/header (Bug#89033).
-- David Engel <david@debian.org> Sun, 11 Mar 2001 17:08:41 -0600
ucd-snmp (4.2-5) unstable; urgency=low
* Fixed IBM S/390 build (Bug#88559).
-- David Engel <david@debian.org> Tue, 6 Mar 2001 19:56:11 -0600
ucd-snmp (4.2-4) unstable; urgency=low
* Fixed build installs into the live filesystem (Bug#87015).
-- David Engel <david@debian.org> Sun, 25 Feb 2001 22:12:21 -0600
ucd-snmp (4.2-3) unstable; urgency=low
* Removed the Pre-Depends for snmpd since it didn't fix the
problem I was trying to solve (Bug#85573).
-- David Engel <david@debian.org> Tue, 20 Feb 2001 20:08:41 -0600
ucd-snmp (4.2-2) unstable; urgency=low
* Created new libsnmp-base package to allow future libsnmpX.Y
packages to coexist (Bug#31253).
* Added a slight delay after stopping the daemons to let them
completely exit before restarting them (Bug#84696).
* Added a /etc/default/snmpd file to control daemon activity.
* Hopefully fixed strange error starting snmpd (Bug#58411).
* Changed package priorities to optional to match the overrides
file.
* Added tkmib and libsnmp-perl packages (Bug#78942).
-- David Engel <david@debian.org> Sun, 4 Feb 2001 13:27:26 -0600
ucd-snmp (4.2-1) unstable; urgency=low
* New upstream version (Bug#82876).
* Enabled ipv6 support (Bug#82879).
* Updated to packaging standard 3.2.1 (Bug#82878).
* Added BRIDGE- and SOURCE-ROUTING-MIBs (Bug#62696).
-- David Engel <david@debian.org> Sun, 21 Jan 2001 12:52:02 -0600
ucd-snmp (4.1.2-2) unstable; urgency=low
* Added real counter objects to the IPFWCHAINS MIB (George Bonser).
* Don't resolve addresses to names in the IPFWCHAINS MIB (George
Bonser).
* Update the IPFWCHAINS MIB information properly.
* Use /dev/null as logfile to force closing of std* (Bug#71959,
Bug#66898).
* Added a README.Debian file describing issues that are specific
to Debian (Bug#70421, Bug#66477).
-- David Engel <david@debian.org> Sun, 19 Nov 2000 21:39:38 -0600
ucd-snmp (4.1.2-1) unstable; urgency=low
* New upstream version.
* Fixed segfault in snmpd on processes with long command lines
(Bug#64333).
-- David Engel <david@debian.org> Mon, 22 May 2000 20:06:48 -0500
ucd-snmp (4.1.1-3) unstable; urgency=low
* Added the ipfwchains MIB module (Bug#63252).
-- David Engel <david@debian.org> Sat, 29 Apr 2000 21:36:34 -0500
ucd-snmp (4.1.1-2) frozen unstable; urgency=low
* Fixed incorrect .so directives in man3 pages which caused
several error messages from man_db.
-- David Engel <david@debian.org> Sat, 8 Apr 2000 11:48:23 -0500
ucd-snmp (4.1.1-1) frozen unstable; urgency=low
* New upstream version (Bug#60427).
* Fixed memory leaks in snmpd (Bug#49809).
* Installed snmpv3.h (Bug#60594).
* Turned on syslog logging in snmpd (Bug#60611).
-- David Engel <david@debian.org> Sat, 25 Mar 2000 20:45:07 -0600
ucd-snmp (4.0.1-9) frozen unstable; urgency=low
* Fixed more serious build problems (Bug#60381).
-- David Engel <david@debian.org> Tue, 14 Mar 2000 21:34:36 -0600
ucd-snmp (4.0.1-8) frozen unstable; urgency=low
* Removed execute permission from header files. (Bug#60369).
-- David Engel <david@debian.org> Tue, 14 Mar 2000 11:30:41 -0600
ucd-snmp (4.0.1-7) frozen unstable; urgency=low
* Backported important fixes from 4.1-1 to get into frozen.
* Removed hidden snmpd dependency on rpm (Bug#56471).
* Removed bad paths in snmpd (Bug#56498).
* Fixed segfault in snmpdelta (Bug#57486).
-- David Engel <david@debian.org> Sun, 13 Feb 2000 12:52:53 -0600
ucd-snmp (4.0.1-6) frozen unstable; urgency=low
* Issue a warning about retoring the default snmpd configuration
when upgrading from the older, incompatible version (Bug#55883).
-- David Engel <david@debian.org> Sat, 22 Jan 2000 20:45:26 -0600
ucd-snmp (4.0.1-5) unstable; urgency=low
* Install EXAMPLE.conf (Bug#51584).
-- David Engel <david@debian.org> Thu, 2 Dec 1999 19:55:00 -0600
ucd-snmp (4.0.1-4) unstable; urgency=low
* Change persistent directory to /var/lib/snmp (Bug#48151).
* Used LCD_TIME_SYNC_OPT.
-- David Engel <david@debian.org> Mon, 25 Oct 1999 11:29:17 -0500
ucd-snmp (4.0.1-3) unstable; urgency=low
* Removed snmpcheck, at least for now (Bug#44373).
* Fixed shlibs file (Bug#45577).
* Fixed build problems (Bug#45758).
* Use FHS /usr/share/{doc,man}.
-- David Engel <david@debian.org> Mon, 27 Sep 1999 20:50:55 -0500
ucd-snmp (4.0.1-2) unstable; urgency=low
* Fixed parse error in the default snmpd.conf file.
* Rebuilt with shared libwrap.
-- David Engel <david@debian.org> Fri, 27 Aug 1999 20:59:19 -0500
ucd-snmp (4.0.1-1) unstable; urgency=low
* New upstream version.
* Switched back to normal soname since it no longer conflicts with
the old one.
-- David Engel <david@debian.org> Wed, 25 Aug 1999 20:26:03 -0500
ucd-snmp (3.6.2-8) unstable; urgency=low
* Removed execute bit from MIB files (Bug#43300).
* Partially reverted previous interface fixes for 2.0 kernels.
-- David Engel <david@debian.org> Sat, 21 Aug 1999 23:08:26 -0500
ucd-snmp (3.6.2-7) unstable; urgency=low
* Fixed incompete arg checking (Bug#43126).
* Fixed ASN.1 length parsing on alpha (William Brioschi).
-- David Engel <david@debian.org> Wed, 18 Aug 1999 09:58:40 -0500
ucd-snmp (3.6.2-6) unstable; urgency=low
* Re-did some previous fixes properly.
-- David Engel <david@debian.org> Fri, 13 Aug 1999 10:43:20 -0500
ucd-snmp (3.6.2-5) unstable; urgency=low
* Fixed more interface calculation errors.
-- David Engel <david@debian.org> Thu, 12 Aug 1999 20:27:39 -0500
ucd-snmp (3.6.2-4) unstable; urgency=low
* Fixed the calculation of if{In,Out}Octets under Linux 2.2.
* Moved the .5 manpages to the libucdsnmp package (Bug#42759 and
Bug#42765).
* Started the snmptrapd daemon to replace the old snmptraplogd
package functionality (Bug#42792).
-- David Engel <david@debian.org> Tue, 10 Aug 1999 19:37:28 -0500
ucd-snmp (3.6.2-3) unstable; urgency=low
* Applied upstream patches 3, 4, 9 and 10.
-- David Engel <david@debian.org> Fri, 6 Aug 1999 21:59:43 -0500
ucd-snmp (3.6.2-2) unstable; urgency=low
* Don't use --disable-debugging.
* Fix calculation of ifNumber as interfaces are added and removed
(Bug#42452).
* Don't process packets in snmpd when recvfrom returns an error
(Bug#42465).
-- David Engel <david@debian.org> Thu, 5 Aug 1999 20:33:28 -0500
ucd-snmp (3.6.2-1) unstable; urgency=low
* Switched to UCD SNMP.
* Use debhelper.
-- David Engel <david@debian.org> Sat, 24 Jul 1999 20:33:10 -0500
snmp (3.6-3) unstable; urgency=low
* Split the snmpd agent into a separate package so the apps can
be installed without it (Bug#37560).
* Reduced the amount of information reported by the snmpd agent
by default (Bug#37169).
-- David Engel <david@debian.org> Wed, 19 May 1999 21:50:33 -0500
snmp (3.6-2) unstable; urgency=low
* Include libsnmp.a (Bug#34826).
* Change CWD to / before starting snmpd (Bug#35977).
-- David Engel <david@debian.org> Tue, 27 Apr 1999 12:01:30 -0500
snmp (3.6-1) frozen unstable; urgency=low
* New upstream version (mainly bug fixes).
-- David Engel <david@debian.org> Fri, 27 Nov 1998 21:59:51 -0600
snmp (3.5-4) unstable; urgency=low
* Install mib.h header file (Bug#25777).
-- David Engel <david@debian.org> Wed, 19 Aug 1998 20:48:44 -0500
snmp (3.5-3) frozen unstable; urgency=low
* Check for the existence of the rc script before running it
in the prerm script (Bug#21565).
-- David Engel <david@sw.ods.com> Mon, 11 May 1998 15:44:17 -0500
snmp (3.5-2) unstable; urgency=low
* Remove old /usr/doc/snmp directory in preinst. Is is now a
symlink to /usr/doc/libsnmp3.5.
* Fixed MIB parsing bug (Bug#19225).
-- David Engel <david@sw.ods.com> Sat, 14 Mar 1998 14:24:50 -0600
snmp (3.5-1) unstable; urgency=low
* New upstream version.
* Add libsnmp3.5 and libsnmp3.5-dev packages (Bug#16557).
* Explicitly link libsnmp.so.* with -lc (Bug#18315).
* Add restart|reload|force-reload support to init.d script
(Bug#17118).
-- David Engel <david@sw.ods.com> Wed, 18 Feb 1998 12:00:00 -0500
snmp (3.4-2) unstable; urgency=low
* Enable full dumping of debug packets.
* Change /etc/snmpd.conf to mode 600.
-- David Engel <david@sw.ods.com> Mon, 8 Dec 1997 13:43:41 -0600
snmp (3.4-1) unstable; urgency=low
* Updated to new upstream version.
* Fixes Bug#9855, Bug#11161 and Bug#11688.
-- David Engel <david@sw.ods.com> Thu, 7 Aug 1997 16:44:00 -0500
snmp (3.3-2) unstable; urgency=low
* Built with libc6.
* Updated init.d script messages to current standards.
-- David Engel <david@sw.ods.com> Tue, 13 May 1997 20:40:37 -0500
snmp (3.3-1) unstable; urgency=low
* Updated to new upstream version.
-- David Engel <david@sw.ods.com> Mon, 31 Mar 1997 19:13:44 -0600
snmp (3.2-2) unstable; urgency=low
* Converted to new packaging standards.
* Removed development files. They may be reappear in a
-dev package sometime in the future.
-- David Engel <david@debian.org> Wed, 19 Feb 1997 20:53:07 -0600
|