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 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642
|
2002-03-27 14:48 schoenw
* stub/: atm-mib.c, bridge-mib.c, disman-schedule-mib.c,
disman-script-mib.c, entity-mib.c, etherlike-mib.c,
host-resources-mib.c, host-resources-types.c, iana-language-mib.c,
if-mib.c, ip-forward-mib.c, ip-mib.c, mau-mib.c,
notification-log-mib.c, old-cisco-ip-mib.c, ospf-mib.c,
printer-mib.c, rapid-city.c, rfc1213-mib.c, snmp-community-mib.c,
snmp-framework-mib.c, snmp-mpd-mib.c, snmp-notification-mib.c,
snmp-target-mib.c, snmp-user-based-sm-mib.c,
snmp-view-based-acm-mib.c, snmpv2-mib.c, snmpv2-tm.c, tcp-mib.c,
tunnel-mib.c, ucd-snmp-mib.c, udp-mib.c: Regenerated stubs to
incorporate fixes in the smidump scli driver.
2002-03-27 14:42 schoenw
* snmp/g_utils.c: Fixed the size/range checking code to do and OR
rather than an AND. Added missing copy operations for some SNMP
data types.
2002-03-27 14:41 schoenw
* scli/fmt.c: Display TAddress values with an unknown TDomain in
hex rather than just ignoring it.
2002-03-27 14:40 schoenw
* scli/system.c: Display the storage type "other".
2002-03-26 17:52 schoenw
* scli/: fmt.c, snmp.c: Gracefully handle unknown transport
domains.
2002-03-26 17:26 schoenw
* stub/: atm-mib.c, atm-mib.h, bridge-mib.c, bridge-mib.h,
disman-schedule-mib.c, disman-schedule-mib.h, disman-script-mib.c,
disman-script-mib.h, entity-mib.c, entity-mib.h, etherlike-mib.c,
etherlike-mib.h, host-resources-mib.c, host-resources-mib.h,
host-resources-types.c, host-resources-types.h,
iana-language-mib.c, iana-language-mib.h, if-mib.c, if-mib.h,
ip-forward-mib.c, ip-forward-mib.h, ip-mib.c, ip-mib.h, mau-mib.c,
mau-mib.h, old-cisco-ip-mib.c, old-cisco-ip-mib.h, ospf-mib.c,
ospf-mib.h, printer-mib.c, printer-mib.h, rapid-city.c,
rapid-city.h, rfc1213-mib.c, rfc1213-mib.h, snmp-community-mib.c,
snmp-community-mib.h, snmp-framework-mib.c, snmp-framework-mib.h,
snmp-mpd-mib.c, snmp-mpd-mib.h, snmp-notification-mib.c,
snmp-notification-mib.h, snmp-target-mib.c, snmp-target-mib.h,
snmp-user-based-sm-mib.c, snmp-user-based-sm-mib.h,
snmp-view-based-acm-mib.c, snmp-view-based-acm-mib.h, snmpv2-mib.c,
snmpv2-mib.h, snmpv2-tm.c, snmpv2-tm.h, tcp-mib.c, tcp-mib.h,
tunnel-mib.c, tunnel-mib.h, ucd-snmp-mib.c, ucd-snmp-mib.h,
udp-mib.c, udp-mib.h: Regenerated all stubs to take advantage of
the new compiler backend which generates much smaller stubs.
2002-03-26 17:24 schoenw
* stub/: Makefile.am, notification-log-mib.c,
notification-log-mib.h: Added stubs for the NOTIFICATION-LOG-MIB.
2002-03-26 17:19 schoenw
* snmp/: g_utils.c, g_utils.h: Added functions that are called by
the stub code.
2002-03-26 17:16 schoenw
* scli/cmds.c: Fixed a typo.
2002-03-25 18:20 schoenw
* scli/system.c: Check whether entLastChangeTime is really
available.
2002-03-25 16:22 schoenw
* scli/system.c: Show last add/remove event times for interfaces
and physical entities.
2002-03-22 17:33 schoenw
* snmp/g_transport.c: Added an additional parameter for the port
number.
2002-03-22 17:19 schoenw
* snmp/g_transport.h: Added an additional parameter for the port
number.
2002-03-22 17:18 schoenw
* README: Updated the copyright years.
2002-03-22 17:17 schoenw
* doc/: Makefile.am, scli.texinfo, texinfo.tex: Started to describe
how one can extend scli. Added magic to include the mode/command
description from the scli "show scli mode" command.
2002-03-22 17:15 schoenw
* snmp/: g_dispatch.c, g_dispatch.h, g_session.c, g_session.h:
Changes to pass the port number around.
2002-03-22 17:13 schoenw
* scli/: basic.c, cmds.c, scli.c: Added code to pass the port
number around.
2002-03-19 21:51 schoenw
* scli/: monitor.c, system.c, vendors.c: Fixed int size problems
and added Lucent to the vendors we recognize.
2002-03-06 17:55 schoenw
* scli/cisco.c: Added a check for non-existing variables which
caused core dumps on some CISCO boxes.
2002-03-05 13:07 schoenw
* stub/: disman-script-mib.c, entity-mib.c, host-resources-mib.c,
if-mib.c, printer-mib.c, snmpv2-mib.c, ucd-snmp-mib.c: Regenerated
stubs to include size and range checking code.
2002-02-21 09:56 schoenw
* stub/: atm-mib.c, atm-mib.h, bridge-mib.c, bridge-mib.h,
disman-schedule-mib.c, disman-schedule-mib.h, disman-script-mib.c,
disman-script-mib.h, entity-mib.c, entity-mib.h, etherlike-mib.c,
etherlike-mib.h, host-resources-mib.c, host-resources-mib.h,
host-resources-types.c, host-resources-types.h,
iana-language-mib.c, iana-language-mib.h, if-mib.c, if-mib.h,
ip-forward-mib.c, ip-forward-mib.h, ip-mib.c, ip-mib.h, mau-mib.c,
mau-mib.h, old-cisco-ip-mib.c, old-cisco-ip-mib.h, ospf-mib.c,
ospf-mib.h, printer-mib.c, printer-mib.h, rapid-city.c,
rapid-city.h, rfc1213-mib.c, rfc1213-mib.h, snmp-community-mib.c,
snmp-community-mib.h, snmp-framework-mib.c, snmp-framework-mib.h,
snmp-mpd-mib.c, snmp-mpd-mib.h, snmp-notification-mib.c,
snmp-notification-mib.h, snmp-target-mib.c, snmp-target-mib.h,
snmp-user-based-sm-mib.c, snmp-user-based-sm-mib.h,
snmp-view-based-acm-mib.c, snmp-view-based-acm-mib.h, snmpv2-mib.c,
snmpv2-mib.h, snmpv2-tm.c, snmpv2-tm.h, tcp-mib.c, tcp-mib.h,
tunnel-mib.c, tunnel-mib.h, ucd-snmp-mib.c, ucd-snmp-mib.h,
udp-mib.c, udp-mib.h: Regenerated all the stubs with the current
stub generator.
2002-02-21 09:54 schoenw
* scli/: basic.c, cmds.c, monitor.c, scli.c, scli.h: Updates to
reflect changes in the SNMP API and minor cleanups.
2002-02-21 09:52 schoenw
* snmp/: g_snmp.c, g_snmp.h, g_utils.c, g_utils.h: Added some
string conversion tables and normalized type defines.
2002-02-20 12:14 schoenw
* scli/printer.c: Display zero-based counters for the markers.
2002-02-20 11:02 schoenw
* scli/printer.c: Added code to display supply capacity and current
level.
2002-02-19 11:46 schoenw
* scli/printer.c: Cosmetic fixes from Oliver.
2002-02-19 09:54 schoenw
* scli/printer.c: Minor cleanups for more consistency.
2002-02-19 08:45 schoenw
* proc/: if-mib-proc.c, if-mib-proc.h: Changed the function
prototype to allow machine generation.
2002-02-19 08:42 schoenw
* scli/printer.c: Started work on "show printer markers" and "show
printer supplies".
2002-02-19 08:37 schoenw
* scli/interface.c: Some minor speed improvements.
2002-02-18 16:09 schoenw
* proc/Makefile.am: Added missing snmp-view-based-acm-mib-proc.h.
2002-02-18 15:26 schoenw
* ChangeLog, NEWS: Updates for release 0.2.7.
2002-02-18 15:19 schoenw
* configure.in: Updates for release 0.2.7.
2002-02-18 15:12 schoenw
* scli/interface.c: Minor code cleanups.
2002-02-18 15:06 schoenw
* stub/: snmp-framework-mib.c, snmp-framework-mib.h: Regenerated
stubs to improve the error handling.
2002-02-15 15:08 schoenw
* proc/: snmp-view-based-acm-mib-proc.c,
snmp-view-based-acm-mib-proc.h: Updated the proc interface to be
more consistent with how an automatic interface would look like.
2002-02-15 15:07 schoenw
* stub/: snmp-notification-mib.c, snmp-notification-mib.h: Added
stubs for the SNMP-NOTIFICATION-MIB.
2002-02-15 15:05 schoenw
* scli/snmp.c: Added new commands: delete snmp vacm member, show
snmp target addresses, show snmp target parameters, show snmp
notification targets. Renamed show snmp vacm groups to show snmp
vacm member.
2002-02-15 15:03 schoenw
* scli/: fmt.c, scli.h: Added fmt_tdomain() and fmt_taddress().
2002-02-15 15:01 schoenw
* stub/Makefile.am: Added stubs for the SNMP-NOTIFICATION-MIB.
2002-02-13 16:03 schoenw
* proc/: snmp-view-based-acm-mib-proc.c,
snmp-view-based-acm-mib-proc.h: Added
snmp_view_based_acm_mib_proc_delete_member().
2002-02-13 16:02 schoenw
* stub/: Makefile.am, snmpv2-tm.c, snmpv2-tm.h: Added stubs for the
SNMPv2-TM module.
2002-02-11 14:35 schoenw
* scli/entity.c: Handle physical entities wich are not contained
anywhere.
2002-02-11 14:18 schoenw
* scli/basic.c: Added date and peer attributes to the XML output.
2002-02-11 14:18 schoenw
* scli/interface.c: Added code to show the physical entities which
contain interfaces in the "show interface details" command.
2002-02-07 11:35 schoenw
* scli/cmds.c: Added the show scli alarm info command to display
alarm information.
2002-02-07 11:34 schoenw
* scli/: basic.c, scli.h: Added a data structure for alarms.
2002-02-07 11:16 schoenw
* scli/snmp.c: Added the create snmp vacm member command.
2002-02-07 11:14 schoenw
* proc/: Makefile.am, snmp-view-based-acm-mib-proc.c,
snmp-view-based-acm-mib-proc.h, udp-mib-proc.c, udp-mib-proc.h:
Added procedure files for the UDP-MIB and the
SNMP-VIEW-BASED-ACM-MIB.
2002-02-07 11:13 schoenw
* snmp/: g_snmp_table.c, g_snmp_walk.c: Propagate the error
information back into the calling session.
2002-01-30 13:57 schoenw
* scli/interface.c: Implemented an experimental "alert interface
status" command.
2002-01-25 10:33 schoenw
* scli/basic.c: Experimental code to cleanup the error message
handling.
2002-01-25 10:32 schoenw
* scli/: atm.c, cmds.c, interface.c, nortel.c, scli.h, system.c:
Regular expression matching options are now configurable.
2002-01-20 23:10 schoenw
* README: Updated mailing list information.
2002-01-18 10:45 schoenw
* scli/disman.c: Updated to the MIB version in RFC RFC 3231.
2002-01-18 10:44 schoenw
* stub/: disman-schedule-mib.c, disman-schedule-mib.h: Updated to
the RFC 3231 version of the MIB.
2002-01-18 10:40 schoenw
* scli/cmds.c: Allow the set scli debugging command in xml mode.
2002-01-18 10:39 schoenw
* scli/scli.c: Fixed a command parsing bug.
2002-01-18 10:38 schoenw
* scli/system.c: The show system processes and monitor system
processes now accept regexp's to select a subset of all processes.
2002-01-10 11:12 schoenw
* scli/atm.c: Show the interface description in the "show atm
interface" commands.
2002-01-10 11:02 schoenw
* scli/fmt.c: Better line wrapping for fmt_display_string().
2002-01-10 11:01 schoenw
* scli/atm.c: Implemented regex matching for ATM interfaces.
2002-01-09 16:16 schoenw
* scli/netsnmp.c: Improved the display of the load values.
2002-01-08 20:02 schoenw
* scli/bridge.c: Improved the display of spanning tree information.
2002-01-08 12:08 schoenw
* scli/atm.c: Split the show atm interface command into two new
commands: show atm interface info and show atm interface details
2002-01-08 12:07 schoenw
* scli/netsnmp.c: New commands: show netsnmp load, set netsnmp
restart, show netsnmp exec, show netsnmp proc, dump netsnmp.
2002-01-08 12:05 schoenw
* scli/entity.c: Improved the documentation.
2002-01-07 16:32 schoenw
* scli/ospf.c: Fixed a formatting bug.
2002-01-07 16:28 schoenw
* scli/: entity.c, fmt.c: Fixed a bug where the string len check
was out of order. Fixed the entity details layout.
2002-01-05 17:15 schoenw
* scli/: bridge.c, cmds.c: Fixed some typos.
2002-01-05 17:13 schoenw
* scli/: Makefile.am, netsnmp.c, scli.c, scli.h: Added a netsnmp
mode.
2002-01-05 17:11 schoenw
* stub/: Makefile.am, snmp-view-based-acm-mib.c,
snmp-view-based-acm-mib.h, ucd-snmp-mib.c, ucd-snmp-mib.h: Added
stubs for the ucd-snmp/net-snmp private MIB.
2001-12-19 13:23 schoenw
* ChangeLog, NEWS, config.h.in, configure.in: Updates for release
0.2.6.
2001-12-19 12:33 schoenw
* scli/: cmds.c, scli.h: Made scli_cmd_open() unvisible across
modules.
2001-12-19 12:30 schoenw
* scli/: basic.c, cmds.c, monitor.c, scli.c, scli.h, system.c:
Adapted the code to recent changes in the gsnmp API. Improved the
handling of scli command line arguments by letting the interpreter
handle an open command rather than calling the command directly.
2001-12-19 12:27 schoenw
* snmp/: Makefile.am, g_dispatch.c, g_dispatch.h, g_session.c,
g_session.h, g_snmp.c, g_snmp.h, g_snmp_walk.c, g_snmp_walk.h,
g_transport.c, g_transport.h, g_utils.c, g_utils.h: Reworked the
name lookup code so that the name lookup happens when a new session
is created. Made it work on systems that do not have the service
name "snmp" defined. Added a new module that implements walks.
2001-12-19 12:25 schoenw
* scli/fmt.c: Added code to handle unprintable characters in
fmt_display_string().
2001-12-17 19:11 schoenw
* scli/: bridge.c, cmds.c: Minor code cleanups.
2001-12-17 19:10 schoenw
* scli/snmp.c: Reworked the whole mode. Added 'show snmp usm
users', 'dump snmp' and 'set snmp authentication traps' commands.
2001-12-17 19:08 schoenw
* scli/basic.c: Print the current time in recursive command mode.
2001-12-17 19:07 schoenw
* scli/: disman.c, scli.h, system.c, vendors.c: Changed the API to
lookup vendor information.
2001-12-17 19:06 schoenw
* scli/: interface.c, ip.c: Some speed improvements.
2001-12-12 19:31 schoenw
* scli/: basic.c, interface.c, scli.h: Sitched to numeric error
codes as this is what operators want.
2001-12-12 19:30 schoenw
* scli/nortel.c: Use strtol instead of sscanf.
2001-12-11 21:49 schoenw
* scli/disman.c: Added support for dry mode.
2001-12-11 21:30 schoenw
* scli/: printer.c, system.c: Added support for the dry mode.
2001-12-11 17:54 schoenw
* scli/: bridge.c, ether.c: Added support for the dry run mode.
2001-12-11 17:44 schoenw
* scli/: atm.c, scli.1.in: Fixed minor nits.
2001-12-11 17:40 schoenw
* scli/ospf.c: Added support for the dry run mode.
2001-12-11 17:39 schoenw
* scli/: cisco.c, nortel.c, ospf.c: Added support for the
2001-12-11 05:14 schoenw
* scli/: monitor.c, system.c: Use strtol instead of atoi.
2001-12-11 05:13 schoenw
* scli/: entity.c, snmp.c: Added support for dry runs.
2001-12-11 04:17 schoenw
* scli/: atm.c, ip.c: Added support for dry runs.
2001-12-11 03:57 schoenw
* scli/: interface.c, tcp.c, udp.c: Added support of the dry-run
mode.
2001-12-11 03:50 schoenw
* scli/: basic.c, scli.h: Introduces the scli_interp_dry macro.
2001-12-11 03:40 schoenw
* scli/scli.c: Changed the name of the command line option.
2001-12-10 23:58 schoenw
* scli/: basic.c, interface.c, monitor.c, scli.c, scli.h:
Implemented a dry mode where we check the syntax of commands but do
not actually execute them.
2001-12-10 19:50 schoenw
* snmp/g_snmp_table.c: Finish the table retrieval if we get a
noSuchName error.
2001-12-09 22:35 schoenw
* snmp/: g_snmp.c, g_snmp.h: Editorial cleanups.
2001-12-09 22:34 schoenw
* snmp/: g_snmp_table.c, g_snmp_table.h: Started to cleanup the
g_snmp_table module.
2001-12-09 22:33 schoenw
* snmp/: g_session.c, g_session.h: Added g_snmp_session_clone() and
changed the deallocation of community strings to be consistent.
2001-12-09 22:30 schoenw
* scli/basic.c: The SNMP library now deallocates the community
strings.
2001-12-09 22:30 schoenw
* scli/: fmt.c, system.c: Generally strip leading/trailing white
space from display strings.
2001-12-09 22:29 schoenw
* scli/: bridge.c, ip.c: Some performance improvements.
2001-12-07 01:45 schoenw
* ChangeLog, NEWS: Updates for release 0.2.5.
2001-12-07 01:43 schoenw
* README, TODO: Updated the support files.
2001-12-07 01:05 schoenw
* scli/: fmt.c, interface.c, ip.c: Added XML support for the "show
ip addresses" command.
2001-12-06 23:28 schoenw
* Makefile.am, PORTING: Started a PORTING file where I collect
porting notes submitted by users.
2001-12-06 06:48 schoenw
* scli/system.c: Strip more white spaces around strings to make UCD
SNMP output look nice.
2001-12-06 02:28 schoenw
* scli/scli.h: Fixed a number of conversion problems. Added still
somewhat incomplete code to support dynamic loadable plugins.
2001-12-06 02:16 schoenw
* acconfig.h: Added acconfig.h to define locally used parameters.
2001-12-06 02:09 schoenw
* scli/: basic.c, bridge.c, cisco.c, cmds.c, entity.c, fmt.c,
interface.c, monitor.c, nortel.c, system.c: Fixed a number of
conversion problems. Added still somewhat incomplete code to
support dynamic loadable plugins.
2001-12-06 02:06 schoenw
* config.h.in, configure.in: Bumped version number to 0.2.5. Added
checks for dynamic loadable modules.
2001-12-06 01:56 schoenw
* snmp/: g_session.h, g_snmp.h: Changed a few data members to
better reflect the actual sizes.
2001-12-06 01:38 schoenw
* stub/: disman-schedule-mib.c, disman-schedule-mib.h,
disman-script-mib.c, disman-script-mib.h, if-mib.c, if-mib.h:
Regenerated stubs using smidump version 0.3.0.
2001-12-06 01:29 schoenw
* scli/bridge.c: Added code to display the port description in the
"show bridge stats" command.
2001-11-23 08:48 schoenw
* scli/printer.c: Implemented the "show printer covers" command.
2001-11-22 09:30 schoenw
* ChangeLog, NEWS: Updates for release 0.2.4.
2001-11-22 09:29 schoenw
* scli/system.c: Added a missing line break.
2001-11-22 09:22 schoenw
* scli/nortel.c: Reordered the output generated by the dump nortel
command.
2001-11-22 09:21 schoenw
* scli/printer.c: Minor bug fixes.
2001-11-22 09:00 schoenw
* scli/: ether.c, scli.1.in, system.c: Fixed several minor typos.
2001-11-22 08:59 schoenw
* scli/printer.c: Implemented the "show printer outputs" command.
2001-11-21 18:28 schoenw
* scli/printer.c: Some refactoring to simplify the code.
2001-11-21 16:58 schoenw
* scli/printer.c: Better decode the subunit status value and
general code cleanup.
2001-11-15 18:29 schoenw
* scli/: basic.c, cmds.c, scli.c: Minor cleanups and better error
messages.
2001-10-11 11:01 schoenw
* scli/: atm.c, basic.c, bridge.c, cisco.c, cmds.c, disman.c,
entity.c, ether.c, interface.c, ip.c, monitor.c, nortel.c,
printer.c, scli.c, scli.h, snmp.c, system.c, tcp.c, udp.c:
Introduced SCLI_SYNTAX_NUMARGS. Reorganized the family of scli_eval
functions. Some code cleanup in various modes.
2001-10-05 18:00 schoenw
* configure.in: Bumped the version number.
2001-10-05 15:54 schoenw
* scli/nortel.c: Started an implementation of the "dump nortel
bridge vlan" command.
2001-10-05 15:52 schoenw
* scli/disman.c: Show RowStatus states in uppercase.
2001-10-05 15:51 schoenw
* scli/: basic.c, scli.c: Handle backslashes as one might expect.
2001-10-05 15:50 schoenw
* scli/snmp.c: Minor updates to produces less irritating output.
2001-10-05 15:33 schoenw
* scli/disman.c: Fixed the "show disman script" commands again.
2001-10-04 17:27 schoenw
* scli/: basic.c, scli.c: Started to implement backslash processing
as one expects under Unix.
2001-10-02 15:24 schoenw
* scli/: printer.c, system.c: Minor documentation fixes.
2001-09-30 22:51 schoenw
* scli/disman.c: Added an experimental "create disman run" command.
2001-09-30 22:49 schoenw
* scli/: interface.c, nortel.c, printer.c: Moved some code into
reusable procedures and cleaned up some stuff.
2001-09-30 22:40 schoenw
* scli/: interface.c, ip.c, system.c: Added "dump system", "dump
ip" and "dump interface" commands.
2001-09-30 22:33 schoenw
* proc/: Makefile.am, disman-script-mib-proc.c,
disman-script-mib-proc.h, if-mib-proc.c, rapid-city-proc.c,
rapid-city-proc.h: Added some more procedures - mostly extracted
from the scli command code.
2001-09-30 22:16 schoenw
* stub/: Makefile.am, atm-mib.c, atm-mib.h, bridge-mib.h,
disman-script-mib.c, disman-script-mib.h, if-mib.c, if-mib.h,
rapid-city.h, snmp-community-mib.h, tcp-mib.h: Regenerated some
stubs to test the new index size checking code.
2001-09-30 22:08 schoenw
* snmp/: g_snmp.h, g_utils.c: Added an experimental
G_SNMP_ERR_PROCEDURE error code.
2001-09-30 22:04 schoenw
* scli/: cmds.c, scli.1.in: Added a dump branch to the command
tree.
2001-09-30 22:03 schoenw
* scli/bridge.c: Avoid compiler warnings.
2001-09-28 20:51 schoenw
* ChangeLog, NEWS: Updates for release 0.2.3.
2001-09-28 20:46 schoenw
* scli/printer.c: Added missing syntax checks and cleaned up the
code.
2001-09-28 13:36 schoenw
* scli/nortel.c: Added the "set nortel bridge vlan default"
command.
2001-09-28 13:09 schoenw
* scli/nortel.c: The show nortel bridge vlan details command now
also shows that ports that use a vlan as their default.
2001-09-27 15:02 schoenw
* scli/printer.c: Some more output for printer interpreters.
2001-09-27 13:33 schoenw
* scli/printer.c: Fixed the xml format of "show printer console
lights".
2001-09-27 10:07 schoenw
* scli/printer.c: Added XML support to the show printer console and
show printer alerts commands. Started work on a show printer
interpreter command.
2001-09-27 10:02 schoenw
* scli/monitor.c: Explicitely set the return code when processing
'q'.
2001-09-27 10:01 schoenw
* scli/: basic.c, cmds.c: Added a "show scli schema" command and
fixed the propagation of SCLI_EXIT.
2001-09-27 10:00 schoenw
* scli/scli.1.in: Removed documentation for interactive commands
that are not available (although it would be nice to have them
implemented).
2001-09-27 09:59 schoenw
* scli/: system.c, interface.c: Do not rely on table augmentations
coming out 1:1.
2001-09-27 09:57 schoenw
* doc/: Makefile.am, scli.texinfo, stools.texinfo: Renamed
stools.texinfo to scli.texinfo.
2001-09-27 09:54 schoenw
* stub/: Makefile.am, rapid-city.c, rapid-city.h, rfc1213-mib.c,
rfc1213-mib.h: Regenerated some stubs to remove code that is not
currently being used by scli.
2001-09-26 11:59 schoenw
* configure.in: Bumped the version number.
2001-09-26 11:58 schoenw
* scli/printer.c: Reworked the "show printer display|lights|alerts"
commands to produce better output. Added documentation for these
commands.
2001-09-26 11:02 schoenw
* scli/nortel.c: Fixed a bug in the formatting of IdLists.
2001-09-26 10:35 schoenw
* scli/: bridge.c, ip.c: Minor cosmetic changes.
2001-09-25 16:11 schoenw
* ChangeLog, NEWS: Updates for release 0.2.2.
2001-09-25 15:59 schoenw
* scli/nortel.c: Finished the implementation of the "show nortel
bridge vlan ports" command.
2001-09-25 14:28 schoenw
* scli/printer.c: Added more monitoring commands.
2001-09-25 11:47 schoenw
* scli/nortel.c: Show the list of port members in the "show nortel
bridge vlan info" command.
2001-09-25 10:16 schoenw
* scli/bridge.c: Bug fixes.
2001-09-25 10:07 schoenw
* scli/: bridge.c, system.c: More human friendly output, added a
show bridge stp ports command.
2001-09-25 10:02 schoenw
* Makefile.am, TODO, configure.in: Updated to reflect the addition
of the proc subdirectory.
2001-09-25 09:48 schoenw
* scli/: Makefile.am, atm.c, basic.c, bridge.c, cisco.c, disman.c,
entity.c, ether.c, interface.c, ip.c, monitor.c, nortel.c, ospf.c,
printer.c, scli.h, snmp.c, system.c, tcp.c, udp.c: Many updates to
reflect the recent changes of the stub generator.
2001-09-25 09:47 schoenw
* proc/: Makefile.am, disman-script-mib-proc.c,
disman-script-mib-proc.h, if-mib-proc.c, if-mib-proc.h: Added first
bits of the procedures software layer.
2001-09-25 09:46 schoenw
* snmp/: g_dispatch.c, g_session.c, g_session.h, g_sha.h, g_snmp.h,
g_utils.c: Minor code cleanups.
2001-09-25 09:44 schoenw
* stub/: Makefile.am, atm-mib.c, atm-mib.h, bridge-mib.c,
bridge-mib.h, disman-schedule-mib.c, disman-schedule-mib.h,
disman-script-mib.c, disman-script-mib.h, entity-mib.c,
entity-mib.h, etherlike-mib.c, etherlike-mib.h,
host-resources-mib.c, host-resources-mib.h, host-resources-types.c,
host-resources-types.h, iana-language-mib.c, iana-language-mib.h,
if-mib.c, if-mib.h, ip-forward-mib.c, ip-forward-mib.h, ip-mib.c,
ip-mib.h, mau-mib.c, mau-mib.h, old-cisco-ip-mib.c,
old-cisco-ip-mib.h, ospf-mib.c, ospf-mib.h, printer-mib.c,
printer-mib.h, rapid-city.c, rapid-city.h, rapidcity-vlan-mib.c,
rapidcity-vlan-mib.h, rfc1213-mib.c, rfc1213-mib.h,
snmp-community-mib.c, snmp-community-mib.h, snmp-framework-mib.c,
snmp-framework-mib.h, snmp-mpd-mib.c, snmp-mpd-mib.h,
snmp-target-mib.c, snmp-target-mib.h, snmp-user-based-sm-mib.c,
snmp-user-based-sm-mib.h, snmp-view-based-acm-mib.c,
snmp-view-based-acm-mib.h, snmpv2-mib.c, snmpv2-mib.h, tcp-mib.c,
tcp-mib.h, tunnel-mib.c, tunnel-mib.h, udp-mib.c, udp-mib.h:
Regenerated stubs to reflect recent changes in the stub generator.
Replaced the RAPIDCITY-VLAN-MIB module with the RAPID-CITY module.
2001-09-20 16:35 schoenw
* scli/: interface.c, ip.c, ospf.c: Replaced some more xxx_enum()
functions.
2001-09-17 10:07 schoenw
* scli/: basic.c, fmt.c, interface.c, ip.c, scli.h, snmp.c,
system.c: Introduced new syntax error return codes. Improved the ip
mode implementation and its documentation.
2001-09-13 20:04 schoenw
* scli/snmp.c: Documentation updates and minor improvements.
2001-09-13 19:42 schoenw
* configure.in: Bumped the version number.
2001-09-11 14:54 schoenw
* scli/entity.c: Improved the formatting of "show entity details".
2001-09-11 14:54 schoenw
* scli/interface.c: Improved XML support.
2001-09-11 10:05 schoenw
* scli/Makefile.am: Removed dependencies so that source
distributions will not try to build scli.1.
2001-09-10 17:09 schoenw
* TODO: Minor housekeeping.
2001-09-10 17:08 schoenw
* ChangeLog, NEWS: Updates for release 0.2.1.
2001-09-10 16:58 schoenw
* scli/monitor.c: Use strchr() instead of index().
2001-09-10 16:54 schoenw
* scli/: atm.c, cmds.c, entity.c, interface.c, monitor.c, nortel.c,
system.c, tcp.c, udp.c: Updates to use the xpath for XML capable
commands. Implemented three more interface commands: set interface
[alias|promiscuous|notifications].
2001-09-10 15:40 schoenw
* scli/basic.c: Use the xpath element of the command data structure
to generate the root for XML formatted output.
2001-09-10 15:33 schoenw
* scli/Makefile.am: Changed the manual target back to scli.1 but
removed the dependencies that tried to build it everytime.
2001-09-07 18:39 schoenw
* configure.in: Bumped the version number.
2001-09-07 18:31 schoenw
* scli/Makefile.am: Renamed the scli.1 target so that this rule
does not cause problems in a distribution.
2001-09-07 17:52 schoenw
* scli/printer.c: Added the "monitor printer console" command.
2001-09-07 17:48 schoenw
* scli/: atm.c, bridge.c, cisco.c, cmds.c, disman.c, entity.c,
ether.c, interface.c, ip.c, nortel.c, ospf.c, printer.c, scli.h,
snmp.c, system.c, tcp.c, udp.c: Changed the struct scli_cmd so that
it can contain additional data for the XML output format driver.
2001-09-07 17:47 schoenw
* snmp/g_utils.c: Added a sanity check.
2001-09-05 09:42 schoenw
* scli/system.c: Reworked some commands, added better XML support,
updated the documentation.
2001-09-05 09:41 schoenw
* scli/: ether.c, interface.c: Code cleanup.
2001-09-05 09:41 schoenw
* scli/: fmt.c, scli.h: Removed fmt_kbytes() as it is not generally
useful.
2001-09-03 13:41 schoenw
* scli/system.c: Better XML support and some code reorganization.
2001-09-03 13:40 schoenw
* scli/: fmt.c, scli.h: Added fmt_display_string().
2001-09-03 12:31 schoenw
* scli/nortel.c: Display more information in "show nortel bridge
vlan details". Better support for XML output.
2001-08-31 10:55 schoenw
* scli/: Makefile.am, atm.c, basic.c, cmds.c, interface.c,
nortel.c, scli.h: Added a specific regex error code, removed
unneeded commands and added even more documentation.
2001-08-31 10:54 schoenw
* snmp/: g_utils.c, g_utils.h: Added a table to convert debug
levels to strings and vice versa.
2001-08-30 12:12 schoenw
* stub/: disman-script-mib.c, disman-script-mib.h: Updated to the
RFC 3165 version.
2001-08-30 12:11 schoenw
* scli/: disman.c, ether.c, interface.c, system.c, tcp.c: More
documentation updates.
2001-08-29 18:12 schoenw
* scli/ether.c: More documentation updates.
2001-08-29 11:27 schoenw
* scli/: entity.c, ether.c, interface.c, monitor.c, nortel.c,
printer.c, tcp.c, udp.c: Documentation updates.
2001-08-29 10:53 schoenw
* scli/scli.c: Fixed the completion of command aliases.
2001-08-29 10:53 schoenw
* scli/: Makefile.am, cmds.c, scli.1, scli.1.in: Extract the mode
descriptions in scli.1 from the scli program itself.
2001-08-29 10:51 schoenw
* scli/bridge.c: Started to work on a "show bridge stats" command.
2001-08-29 10:51 schoenw
* scli/basic.c: Improved error messages.
2001-08-29 10:50 schoenw
* scli/interface.c: Started to add XML support for "show interface
details".
2001-08-28 15:31 schoenw
* scli/interface.c: Several changes to improve the online help
system and to generate documentation from the source code.
2001-08-28 15:27 schoenw
* scli/: basic.c, cmds.c, disman.c, entity.c, nortel.c, system.c,
tcp.c, udp.c: Several changes to improve the online help system and
to generate documentation from the source code.
2001-08-27 15:15 schoenw
* ChangeLog, NEWS: Updates for release 0.2.0.
2001-08-27 15:09 schoenw
* autogen.sh: Replaced stools with scli.
2001-08-27 13:45 schoenw
* scli/scli.1: Updated the pointer to the web site.
2001-08-27 12:57 schoenw
* AUTHORS, Makefile.am, NEWS, README, TODO, configure.in: The
package stools is now called scli and stop is gone.
2001-08-27 12:56 schoenw
* scli/: cmds.c, scli.1: More documentation updates, make core set
commands work in XML mode.
2001-08-27 12:54 schoenw
* stub/Makefile.in: Removed Makefile.in from the CVS - autogen.sh
regenerates it.
2001-08-27 11:52 schoenw
* scli/: atm.c, basic.c, entity.c, nortel.c, scli.h, system.c,
tcp.c, udp.c, xml.c: Commands must use SCLI_CMD_FLAG_XML if they
are XML capable. Improved some of the XML formatters.
2001-08-27 10:37 schoenw
* scli/scli.1: Added some more documentation.
2001-08-27 10:12 schoenw
* scli/nortel.c: Implemented a command to assign ports to vlans.
Added xml output format.
2001-08-27 10:11 schoenw
* scli/system.c: Fixed some minor errors, updated the xml
formatting code.
2001-08-27 10:10 schoenw
* scli/disman.c: Code cleanup.
2001-08-27 10:09 schoenw
* scli/: Makefile.am, atm.c, scli.h, xml.c: Added xml formatting
utility functions.
2001-08-27 09:52 schoenw
* snmp/: g_asn1.c, g_asn1.h, g_session.c: Code cleanup.
2001-08-27 09:51 schoenw
* scli/: basic.c, interface.c, nortel.c, scli.1: Accept comments
anywhere in a command string. Started to document the scli commands
in the manual page.
2001-08-24 16:01 schoenw
* doc/stools.info: Removed stools.info from the CVS.
2001-08-24 15:59 schoenw
* snmp/g_session.c: Pass the error-index to the session which
invoked the request.
2001-08-23 17:32 schoenw
* scli/nortel.c: Added a command to create vlans on nortel baystack
bridges.
2001-08-23 11:18 schoenw
* scli/: basic.c, cisco.c, cmds.c, entity.c, interface.c, nortel.c,
scli.h, system.c: Fixed several minor errors. Implemented a "set
interface status" command.
2001-08-23 11:16 schoenw
* stub/: if-mib.c, if-mib.h, rapidcity-vlan-mib.c,
rapidcity-vlan-mib.h: Regenerated some modules in order to get
table write stubs.
2001-08-23 11:15 schoenw
* snmp/: g_utils.c, g_utils.h: Added more generally useful stuff to
the gsnmp library.
2001-08-22 17:42 schoenw
* snmp/Makefile.am: Fixed a stupid typo.
2001-08-22 17:40 schoenw
* TODO: Minor housekeeping.
2001-08-22 17:39 schoenw
* ChangeLog, NEWS: Updates for release 0.1.20.
2001-08-22 17:35 schoenw
* TODO: Minor housekeeping.
2001-08-22 17:33 schoenw
* scli/scli.c: Make sure scli can be compiled with older readline
libraries.
2001-08-22 17:07 schoenw
* scli/: Makefile.am, cisco.c, cmds.c, nortel.c, scli.c, scli.h:
Added modes for our CISCO and Nortel boxes.
2001-08-22 17:04 schoenw
* stub/: Makefile.am, Makefile.in, old-cisco-ip-mib.c,
old-cisco-ip-mib.h, rapidcity-vlan-mib.c, rapidcity-vlan-mib.h:
Added some more stubs for things we need at the Technical
University of Braunschweig.
2001-08-22 16:51 schoenw
* README: Note that we now require libxml2.
2001-08-22 16:51 schoenw
* autogen.sh: Removed libtool stuff we do not really need right
now.
2001-08-22 15:05 schoenw
* stub/: host-resources-types.c, host-resources-types.h,
iana-language-mib.c, iana-language-mib.h: Regenerated stubs after
fixing smidump to not generate dead code.
2001-08-22 14:59 schoenw
* stub/: Makefile.am, atm-mib.c, atm-mib.h, bridge-mib.c,
bridge-mib.h, disman-schedule-mib.c, disman-schedule-mib.h,
disman-script-mib.c, disman-script-mib.h, entity-mib.c,
entity-mib.h, etherlike-mib.c, etherlike-mib.h,
host-resources-mib.c, host-resources-mib.h, host-resources-types.c,
host-resources-types.h, iana-language-mib.c, iana-language-mib.h,
if-mib.c, if-mib.h, ip-forward-mib.c, ip-forward-mib.h, ip-mib.c,
ip-mib.h, mau-mib.c, mau-mib.h, ospf-mib.c, ospf-mib.h,
printer-mib.c, printer-mib.h, rfc1213-mib.c, rfc1213-mib.h,
snmp-community-mib.c, snmp-community-mib.h, snmp-framework-mib.c,
snmp-framework-mib.h, snmp-mpd-mib.c, snmp-mpd-mib.h,
snmp-target-mib.c, snmp-target-mib.h, snmp-user-based-sm-mib.c,
snmp-user-based-sm-mib.h, snmp-view-based-acm-mib.c,
snmp-view-based-acm-mib.h, snmpv2-mib.c, snmpv2-mib.h, stools.c,
stools.h, tcp-mib.c, tcp-mib.h, tunnel-mib.c, tunnel-mib.h,
udp-mib.c, udp-mib.h: Several changes to get rid of the stools.h
module.
2001-08-22 14:55 schoenw
* snmp/: Makefile.am, g_dispatch.c, g_md5.c, g_security.c,
g_session.c, g_sha.c, g_snmp.h, g_snmp_table.c, g_snmp_table.h,
g_transport.c, g_utils.c, g_utils.h: Added some stubs/stools.[ch]
functionality to the gsnmp engine.
2001-08-22 14:54 schoenw
* scli/vendors.c: Do not mention stools anymore.
2001-08-22 14:53 schoenw
* scli/: Makefile.am, atm.c, basic.c, bridge.c, cmds.c, disman.c,
entity.c, ether.c, fmt.c, interface.c, ip.c, monitor.c, ospf.c,
printer.c, scli.c, scli.h, snmp.c, system.c, tcp.c, udp.c,
vendors.c: Several changes to get rid of the stools.h module.
2001-08-21 18:48 schoenw
* scli/basic.c: Code cleanup to keep the compiler happy.
2001-08-21 18:45 schoenw
* scli/: basic.c, cmds.c, scli.1, scli.c, scli.h: The tokenizer now
accepts quoted strings and aliases should work now.
2001-08-16 17:42 schoenw
* autogen.sh: Added the autogen.sh script which should be used to
create the build environment from CVS.
2001-08-16 17:40 schoenw
* aclocal.m4, config.guess, config.sub: Removed files that do not
belong into the CVS.
2001-08-16 17:38 schoenw
* snmp/Makefile.in, stub/Makefile.in, Makefile.in, configure,
install-sh, missing, mkinstalldirs, doc/Makefile.in,
scli/Makefile.in: Removed files that are auto-generated. Use
autogen.sh instead.
2001-08-16 16:17 schoenw
* scli/fmt.c: Fixed a bug that caused 1g switches to appear as 1t
switches.
2001-08-16 14:25 schoenw
* scli/Makefile.am: Uncommented gscli rules since this is not yet
part of the CVS tree.
2001-08-16 09:57 schoenw
* Makefile.in, aclocal.m4, config.h.in, configure, configure.in:
Added configure checks for libxml2 and gtk.
2001-08-16 09:55 schoenw
* scli/: Makefile.am, Makefile.in, atm.c, basic.c, bridge.c,
cmds.c, disman.c, entity.c, ether.c, fmt.c, interface.c, ip.c,
ospf.c, printer.c, scli.h, snmp.c, system.c, tcp.c, udp.c: Use
libxml2 to generate XML output.
2001-08-16 09:50 schoenw
* stub/stools.h: Removed obsolete struct definition.
2001-08-15 12:51 schoenw
* scli/basic.c: Use putenv() instead of setenv() to be more
portable.
2001-08-15 12:01 schoenw
* scli/basic.c: Added more characters we do not allow in a pager
value.
2001-08-15 12:00 schoenw
* scli/: basic.c, cmds.c, scli.c, scli.h: Use a pipe instead of a
temporary file for the external pager. Validate the pager value so
that it does not contain magic shell characters. Added an scli
command to configure the pager.
2001-08-14 16:00 schoenw
* scli/basic.c: Do not mis-use the string value as a format string.
2001-08-14 15:52 schoenw
* scli/entity.c: Renamed "show system components" to "show system
entities" and wrote some XML formatting routines.
2001-08-14 15:51 schoenw
* scli/interface.c: Some experimental code to retrieve the physical
entity which implements a certain logical network interface.
2001-08-14 15:48 schoenw
* configure.in: Check for <termios.h> since it defines TIOCGWINSZ
under Solaris.
2001-08-14 14:45 schoenw
* scli/basic.c: Conditionally include <termios.h> which is needed
on Solaris machines that have resizeterm (probably ncurses) in
order to get a definition of TIOCGWINSZ.
2001-07-31 14:38 schoenw
* scli/: scli.c, scli.h: The --version option now better conforms
to GNU standards.
2001-07-31 14:38 schoenw
* scli/ip.c: Removed dead code.
2001-07-31 14:37 schoenw
* scli/: atm.c, tcp.c, udp.c: Minor code cleanup.
2001-07-11 12:49 schoenw
* stub/: snmpv2-mib.c, snmpv2-mib.h, stools.c: Regenerated stubs so
that we can use the write stub.
2001-07-11 12:48 schoenw
* snmp/: g_session.c, g_snmp.c, g_snmp.h: Improved debugging
support, added g_snmp_vbl_add() to the API.
2001-07-11 12:47 schoenw
* scli/: cmds.c, scli.c, system.c: Added code to configure
SNMPv2-MIB::system variables.
2001-06-29 15:07 schoenw
* configure, configure.in: Bumped version number and added
--enable-warnings configure option.
2001-06-29 10:26 schoenw
* snmp/g_session.c: Added a missing argument.
2001-06-29 10:22 schoenw
* scli/basic.c, snmp/g_dispatch.c, snmp/g_dispatch.h,
snmp/g_session.c, snmp/g_session.h, snmp/g_snmp.h,
snmp/g_snmp_table.c, snmp/g_transport.c, snmp/g_transport.h:
Cleaned up the SNMP transport implementation.
2001-06-28 09:50 schoenw
* scli/: basic.c, cmds.c, scli.c: Updates to reflect recent gsnmp
API improvements.
2001-06-28 09:49 schoenw
* snmp/: g_session.c, g_session.h, g_snmp.c, g_snmp.h,
g_snmp_table.c, g_transport.h: Fixed some more memory leaks,
reworked the session API, added debugging flags which allow to
enable/disable debugging output at runtime.
2001-06-28 09:46 schoenw
* stub/: atm-mib.c, bridge-mib.c, disman-schedule-mib.c,
disman-script-mib.c, entity-mib.c, etherlike-mib.c,
host-resources-mib.c, if-mib.c, ip-forward-mib.c, ip-mib.c,
mau-mib.c, ospf-mib.c, printer-mib.c, rfc1213-mib.c,
snmp-community-mib.c, snmp-framework-mib.c, snmp-mpd-mib.c,
snmp-target-mib.c, snmp-user-based-sm-mib.c,
snmp-view-based-acm-mib.c, snmpv2-mib.c, stools.c, stools.h,
tcp-mib.c, tunnel-mib.c, udp-mib.c: Replaced some stls wrappers
with the original entry point into gsnmp.
2001-06-27 17:12 schoenw
* snmp/g_session.c: Fixed another memory leak.
2001-06-26 17:08 schoenw
* snmp/: g_dispatch.c, g_session.c: Fixed two more memory leaks.
2001-06-22 09:41 schoenw
* scli/: atm.c, basic.c, bridge.c, cmds.c, disman.c, entity.c,
ether.c, interface.c, ip.c, monitor.c, ospf.c, printer.c, scli.h,
snmp.c, system.c, tcp.c, udp.c: Added code to properly handle
syntax errors.
2001-06-20 17:12 schoenw
* NEWS: Updates for release 0.1.19.
2001-06-20 17:11 schoenw
* ChangeLog: Generated the ChangeLog via cvs2cl.
2001-06-20 17:06 schoenw
* scli/interface.c: Rewrote the interface stack display function.
The regex now only matches the ifDescr value.
2001-06-20 15:03 schoenw
* scli/: basic.c, scli.c: Minor readline cleanups.
2001-06-20 14:34 schoenw
* scli/scli.c: Use rl_completion_matches() instead of
completion_matches() where available.
2001-06-20 14:34 schoenw
* configure, config.h.in, configure.in: Added a test to handle
readline version differences.
2001-06-20 14:28 schoenw
* scli/: basic.c, scli.c: Fixed the handling of SIGWINCH.
2001-06-20 12:28 schoenw
* scli/: bridge.c, ether.c, interface.c: Support larger interface
numbers. Added an initial version of the show interface stack
command implementation.
2001-06-20 11:08 schoenw
* scli/ospf.c: Minor layout updates.
2001-06-19 18:18 schoenw
* scli/interface.c: Use regular expressions to identify interfaces.
2001-06-19 12:41 schoenw
* scli/interface.c: Some more work on interface stacks. Still more
work needed to display interface stacks in a nice human friendly
way.
2001-06-19 11:45 schoenw
* scli/: basic.c, monitor.c, scli.c, scli.h: Provided a wrapper for
curses [de]initialization since some curses implementations do not
tolerate calls to endwin() if curses has not been initialized
before.
2001-06-19 08:48 schoenw
* scli/: interface.c, monitor.c, scli.c, tcp.c: Ported monitor
summary information over from the stop implementation.
2001-06-18 16:26 schoenw
* scli/: disman.c, ip.c: Changes to make headers more consistent.
Support DISMAN run and scheduler monitors.
2001-06-18 13:09 schoenw
* scli/monitor.c: The monitor.c module contains the code which
evaluates scli commands in monitor mode.
2001-06-18 13:07 schoenw
* scli/: Makefile.am, Makefile.in, atm.c, basic.c, bridge.c,
cmds.c, ether.c, fmt.c, interface.c, printer.c, scli.1, scli.c,
scli.h, system.c, tcp.c, udp.c: Integrated most of the stop
functionality into scli. Started to use g_print and friends to
allow for a future GUI for scli.
2001-06-15 16:32 schoenw
* scli/: cmds.c, scli.c, scli.h: Made the scli core command
implementations static.
2001-06-15 16:31 schoenw
* scli/basic.c: Register scli modes in alphabetical order.
2001-06-15 16:10 schoenw
* scli/system.c: Added some xml output functions. More work needed.
2001-06-14 13:24 schoenw
* scli/atm.c: Added xml support (which is easy since this mode does
basically nothing).
2001-06-14 13:14 schoenw
* scli/: disman.c, fmt.c, scli.h, system.c: Changed the signature
of some formatting functions.
2001-06-14 11:51 schoenw
* scli/tcp.c: Fixed inconsistencies in the XML output format.
2001-06-14 10:02 schoenw
* scli/udp.c: Use plain addresses and port numbers rather than
names in XML mode.
2001-06-14 10:00 schoenw
* scli/printer.c: More formatting updates.
2001-06-14 09:55 schoenw
* scli/: basic.c, scli.1, scli.c, scli.h, tcp.c, udp.c: Added a
command line option to produce XML output. Modified the udp and tcp
modes to actually generate XML. More work needed.
2001-06-13 17:52 schoenw
* scli/printer.c: And yet more updates. Enough for today I would
say.
2001-06-13 17:15 schoenw
* scli/printer.c: More code updates to handle multiple printers
better.
2001-06-13 14:53 schoenw
* scli/printer.c: Some more code to display console messages and
lights (!).
2001-06-13 12:26 schoenw
* scli/printer.c: Some more features that definately need even more
work.
2001-06-13 10:20 schoenw
* stub/: iana-language-mib.c, iana-language-mib.h: Regenerated
stubs for the IANA-LANGUAGE-MIB.
2001-06-13 09:47 schoenw
* snmp/g_session.c, snmp/g_session.h, snmp/g_snmp_table.c,
snmp/g_snmp_table.h, stub/atm-mib.c, stub/atm-mib.h,
stub/bridge-mib.c, stub/bridge-mib.h, stub/disman-schedule-mib.c,
stub/disman-schedule-mib.h, stub/disman-script-mib.c,
stub/disman-script-mib.h, stub/entity-mib.c, stub/entity-mib.h,
stub/etherlike-mib.c, stub/etherlike-mib.h,
stub/host-resources-mib.c, stub/host-resources-mib.h,
stub/if-mib.c, stub/if-mib.h, stub/ip-forward-mib.c,
stub/ip-forward-mib.h, stub/ip-mib.c, stub/ip-mib.h,
stub/mau-mib.c, stub/mau-mib.h, stub/ospf-mib.c, stub/ospf-mib.h,
stub/printer-mib.c, stub/printer-mib.h, stub/rfc1213-mib.c,
stub/rfc1213-mib.h, stub/snmp-community-mib.c,
stub/snmp-community-mib.h, stub/snmp-framework-mib.c,
stub/snmp-framework-mib.h, stub/snmp-mpd-mib.c,
stub/snmp-mpd-mib.h, stub/snmp-target-mib.c,
stub/snmp-target-mib.h, stub/snmp-user-based-sm-mib.c,
stub/snmp-user-based-sm-mib.h, stub/snmp-view-based-acm-mib.c,
stub/snmp-view-based-acm-mib.h, stub/snmpv2-mib.c,
stub/snmpv2-mib.h, stub/stools.c, stub/stools.h, stub/tcp-mib.c,
stub/tcp-mib.h, stub/tunnel-mib.c, stub/tunnel-mib.h,
stub/udp-mib.c, stub/udp-mib.h, scli/basic.c, scli/scli.h: Replaced
host_snmp with GSnmpSession.
2001-06-13 09:17 schoenw
* configure, configure.in: Bumped the version number to 0.1.19
again.
2001-06-13 09:14 schoenw
* scli/ospf.c: Some minor layout patches from Oliver Wellnitz.
2001-06-13 09:14 schoenw
* scli/: bridge.c, disman.c, printer.c: Minor code cleanups.
2001-06-12 17:30 schoenw
* ChangeLog: Generated the ChangeLog via cvs2cl.
2001-06-12 17:15 schoenw
* scli/printer.c: Fixed a bug where unterminated strings were
passed to snprintf().
2001-06-12 17:05 schoenw
* NEWS, configure, configure.in: Downgraded the version number to
0.1.18 since this was never released.
2001-06-12 16:45 schoenw
* scli/: cmds.c, scli.c, scli.h: Added some experimental code to
create, delete and show command aliases. Aliases are not yet used
by the interpreter.
2001-06-12 14:27 schoenw
* NEWS, configure, configure.in, snmp/Makefile.in: Bumped the
version number and updated the NEWS file.
2001-06-12 14:21 schoenw
* scli/: Makefile.am, Makefile.in, printer.c, scli.c, scli.h: Added
the scli printer mode contributed by Oliver Wellnitz.
2001-06-12 14:18 schoenw
* stub/: Makefile.am, Makefile.in, etherlike-mib.c,
etherlike-mib.h, printer-mib.c, printer-mib.h: Added stubs for the
Printer-MIB and regenerated the EtherLike-MIB stubs.
2001-06-12 12:48 schoenw
* scli/: atm.c, basic.c, bridge.c, cmds.c, disman.c, entity.c,
ether.c, interface.c, ip.c, ospf.c, scli.c, snmp.c, system.c,
tcp.c, udp.c: Updated code to use type names which include module
names.
2001-06-12 12:46 schoenw
* stub/: atm-mib.c, atm-mib.h, bridge-mib.c, bridge-mib.h,
disman-schedule-mib.c, disman-schedule-mib.h, disman-script-mib.c,
disman-script-mib.h, entity-mib.c, entity-mib.h,
host-resources-mib.c, host-resources-mib.h, if-mib.c, if-mib.h,
ip-forward-mib.c, ip-forward-mib.h, ip-mib.c, ip-mib.h, mau-mib.c,
mau-mib.h, snmpv2-mib.c, snmpv2-mib.h, tcp-mib.c, tcp-mib.h,
tunnel-mib.c, tunnel-mib.h, udp-mib.c, udp-mib.h: Regenerated stubs
to include module names in the typedefs.
2001-06-12 12:06 schoenw
* scli/: basic.c, cmds.c, scli.c, scli.h, snmp.c: Split the "show
scli" command into multiple sub-commands. Added an exported
function to retrieve the rows/cols of the terminal.
2001-06-07 12:57 schoenw
* scli/interface.c: Implemented an optional argument to select
interfaces by index or name.
2001-06-07 12:56 schoenw
* snmp/: g_snmp.c, g_snmp.h: Added utility functions to manipulate
varbind lists.
2001-06-07 12:53 schoenw
* stub/stools.c: Cleaned up a warning message.
2001-05-23 10:37 schoenw
* scli/vendors.c: Added NCD and Microsoft.
2001-05-23 10:37 schoenw
* scli/ether.c: Show the actual type for the MAUs.
2001-05-09 18:17 schoenw
* NEWS, configure, configure.in: Bumped the version number to
0.1.18.
2001-05-09 18:12 schoenw
* scli/: basic.c, cmds.c, ip.c, scli.c, scli.h: Added a "show scli"
command to display the current interpreter state.
2001-05-09 18:09 schoenw
* scli/scli.c: Initialize the interpreter's pager attribute from
the environement.
2001-05-09 18:05 schoenw
* scli/basic.c: Minor cleanup of the pager implementation.
2001-05-03 09:43 schoenw
* scli/bridge.c: Display more interface information in the port
table.
2001-04-27 15:59 schoenw
* scli/ip.c: Fixed even more address formatting bugs.
2001-04-27 15:51 schoenw
* scli/: bridge.c, ip.c: Fixed two formatting bugs just introduced
in the rewrite.
2001-04-27 15:42 schoenw
* config.h.in, configure, configure.in: Added more tests for
headers which might define ether_ntohost().
2001-04-27 15:41 schoenw
* scli/: bridge.c, fmt.c, interface.c, ip.c, ospf.c, scli.h, tcp.c,
udp.c: Rewrote the address formating code. The "show interface
details" and the "show ip mapping" commands now also report
ethernet names.
2001-04-27 13:45 schoenw
* config.h.in, configure, configure.in: Added some tests for
ethernet name lookup functions.
2001-04-27 13:44 schoenw
* scli/ip.c: Updated some command descriptions.
2001-04-27 13:43 schoenw
* scli/: bridge.c, fmt.c, scli.h: Added a function to format
ethernet addresses.
2001-04-17 11:47 schoenw
* snmp/g_snmp_table.c: Some fixes - I guess this really needs a
rewrite. Thanks Erik.
2001-04-14 17:51 schoenw
* scli/: Makefile.am, Makefile.in, ospf.c, scli.c, scli.h: Added
the ospf scli mode implementation contributed by Oliver Wellnitz.
2001-04-14 17:48 schoenw
* stub/: Makefile.am, Makefile.in, ospf-mib.c, ospf-mib.h: Added
stubs for the OSPF-MIB.
2001-04-12 16:53 schoenw
* ChangeLog: Generated the ChangeLog via cvs2cl.
2001-04-12 16:52 schoenw
* NEWS: Updates for release 0.1.17.
2001-04-12 16:46 schoenw
* snmp/g_snmp_table.c: Got rid of a nasty warning message.
2001-04-12 16:32 schoenw
* scli/disman.c: Added support for smLaunchMaxRunning and
smLaunchMaxCompleted.
2001-04-12 16:14 schoenw
* scli/disman.c: Improved the "show disman scheduler info" command
and added a new "show disman scheduler details" command.
2001-04-11 15:58 schoenw
* scli/snmp.c: Improved the display of VACM information.
2001-04-11 15:44 schoenw
* stub/snmp-view-based-acm-mib.c: Fixed the OID instance identifier
unpacking code.
2001-04-11 13:15 schoenw
* configure, configure.in: Bumped the version number.
2001-04-11 13:14 schoenw
* stub/: snmp-community-mib.c, snmp-community-mib.h,
snmp-framework-mib.c, snmp-framework-mib.h, snmp-mpd-mib.c,
snmp-mpd-mib.h, snmp-target-mib.c, snmp-target-mib.h,
snmp-user-based-sm-mib.c, snmp-user-based-sm-mib.h,
snmp-view-based-acm-mib.c, snmp-view-based-acm-mib.h: Regenerated
stubs to take advantage of the new type names.
2001-04-11 13:13 schoenw
* scli/snmp.c: Many updates to support the VACM MIB.
2001-04-11 13:12 schoenw
* scli/system.c: Use fmt_seconds() instead of fmt_hsec32().
2001-04-11 10:58 schoenw
* scli/ip.c: Implemented "show ip forwarding" based on the old RFC
1213 ipRouteTable.
2001-04-10 18:12 schoenw
* scli/ip.c: Added code to display the broken RFC 1213 routing
table.
2001-04-10 18:11 schoenw
* stub/: Makefile.am, Makefile.in, rfc1213-mib.c, rfc1213-mib.h:
Added stubs for the RFC1213-MIB (since this MIB defines the routing
table that most devices still support these days).
2001-04-10 11:20 schoenw
* scli/basic.c: Cleanup garbage left from the progress hooks.
2001-04-10 10:27 schoenw
* ChangeLog: Generated the ChangeLog via cvs2cl.
2001-04-10 10:26 schoenw
* NEWS, TODO: Updates for release 0.1.16.
2001-04-10 10:24 schoenw
* scli/basic.c: Added hooks which indicate how fast we retrieve
SNMP variables.
2001-04-10 10:23 schoenw
* scli/scli.c: Stifle the history file to contain only
$HISTFILESIZE entries.
2001-04-10 10:13 schoenw
* snmp/: g_snmp.c, g_snmp.h: Added hooks which are called when a
varbind list is decoded/encoded.
2001-04-09 12:58 schoenw
* scli/ip.c: The "show ip tunnel" command now shows interface names
(patch provided by Oliver Wellnitz <wellnitz@ibr.cs.tu-bs.de>).
2001-04-09 11:23 schoenw
* scli/: disman.c, entity.c, interface.c, system.c: Minor code
cleanups.
2001-04-09 11:02 schoenw
* stub/: host-resources-types.h, stools.c, stools.h: Implemented
stls_identity_get_label().
2001-04-06 17:47 schoenw
* scli/disman.c: Even nicer output for "show disman languages".
2001-04-06 17:05 schoenw
* scli/disman.c: More updates to support the RFC 2592 revision.
2001-04-06 15:48 schoenw
* stub/: Makefile.am, Makefile.in, atm-mib.c, bridge-mib.c,
disman-schedule-mib.c, disman-schedule-mib.h, disman-script-mib.c,
disman-script-mib.h, entity-mib.c, etherlike-mib.c,
host-resources-mib.c, host-resources-types.c, iana-language-mib.c,
if-mib.c, ip-forward-mib.c, ip-mib.c, mau-mib.c,
snmp-community-mib.c, snmp-framework-mib.c, snmp-mpd-mib.c,
snmp-target-mib.c, snmp-user-based-sm-mib.c,
snmp-view-based-acm-mib.c, snmpv2-mib.c, stools.c, stools.h,
tcp-mib.c, tunnel-mib.c, udp-mib.c: Regenerated stubs to make the
resulting C code more compact.
2001-04-06 15:45 schoenw
* scli/disman.c: Updates to support the upcoming RFC 2592 revision.
2001-04-04 23:32 schoenw
* stub/stools.c: Use mktime() to get the gmt offset computation
right.
2001-03-30 15:38 schoenw
* stub/stools.c, stub/stools.h, scli/fmt.c, scli/interface.c,
scli/system.c: Reworked the timeticks formatting code and started
to move it into the stools library so that it can be reused easily.
2001-03-30 10:43 schoenw
* scli/: Makefile.am, Makefile.in, atm.c, bridge.c, disman.c,
entity.c, ether.c, fmt.c, interface.c, ip.c, mau.c, scli.c, scli.h,
snmp.c, system.c, tcp.c, udp.c: Renamed mau.c to ether.c and
updated various modules to reflect internal API changes.
2001-03-30 10:21 schoenw
* stub/: atm-mib.c, atm-mib.h, bridge-mib.c, bridge-mib.h,
disman-schedule-mib.c, disman-schedule-mib.h, disman-script-mib.c,
disman-script-mib.h, entity-mib.c, entity-mib.h, etherlike-mib.c,
etherlike-mib.h, host-resources-mib.c, host-resources-mib.h,
if-mib.c, if-mib.h, ip-forward-mib.c, ip-forward-mib.h, ip-mib.c,
ip-mib.h, mau-mib.c, mau-mib.h, snmp-community-mib.c,
snmp-community-mib.h, snmp-target-mib.c, snmp-target-mib.h,
snmp-user-based-sm-mib.c, snmp-user-based-sm-mib.h,
snmp-view-based-acm-mib.c, snmp-view-based-acm-mib.h, snmpv2-mib.c,
snmpv2-mib.h, stools.c, stools.h, tcp-mib.c, tcp-mib.h,
tunnel-mib.c, tunnel-mib.h: Regenerated stubs to reflect changes in
the stls API.
2001-03-29 17:47 schoenw
* scli/: Makefile.am, Makefile.in, mau.c, scli.c, scli.h: Added a
media attachement (mau) mode. This probably needs all to be merged
at some time into an IEEE 802.3 mode which does all of this.
2001-03-29 16:46 schoenw
* stub/: Makefile.am, Makefile.in, etherlike-mib.c,
etherlike-mib.h, mau-mib.c, mau-mib.h: Added stubs for the MAU-MIB
and the EtherLike-MIB.
2001-03-29 14:45 schoenw
* scli/disman.c: Import the IANA language OIDs from the
iana-language-mib.h stub.
2001-03-29 14:44 schoenw
* scli/fmt.c: Fixed again some time formatting/computation
problems.
2001-03-29 14:41 schoenw
* stub/: Makefile.am, Makefile.in, iana-language-mib.c,
iana-language-mib.h: Added stubs for the IANA-LANGUAGE-MIB.
2001-03-29 14:35 schoenw
* scli/disman.c: Many improvements to produce more useful output.
2001-03-29 12:33 schoenw
* scli/scli.1: Added some more documentation to bring new users up
to speed.
2001-03-29 10:51 schoenw
* config.h.in, configure, configure.in: Added a check for
getaddrinfo().
2001-03-28 12:58 schoenw
* scli/scli.1: Documented the way scli interprets the PAGER
environment variable.
2001-03-28 12:12 schoenw
* scli/scli.c: Call scli_cmd_open() to handle arguments so that we
can benefit from any error handling in scli_cmd_open().
2001-03-28 12:11 schoenw
* scli/tcp.c: Use #defines rather than numbers for enumerated
values.
2001-03-28 12:08 schoenw
* stub/: Makefile.am, Makefile.in, atm-mib.c, atm-mib.h,
bridge-mib.c, bridge-mib.h, disman-schedule-mib.c,
disman-schedule-mib.h, disman-script-mib.c, disman-script-mib.h,
entity-mib.c, entity-mib.h, host-resources-mib.c,
host-resources-mib.h, host-resources-types.c,
host-resources-types.h, if-mib.c, if-mib.h, ip-forward-mib.c,
ip-forward-mib.h, ip-mib.c, ip-mib.h, snmp-community-mib.c,
snmp-community-mib.h, snmp-framework-mib.h, snmp-target-mib.c,
snmp-target-mib.h, snmp-user-based-sm-mib.c,
snmp-user-based-sm-mib.h, snmp-view-based-acm-mib.c,
snmp-view-based-acm-mib.h, snmpv2-mib.c, snmpv2-mib.h, tcp-mib.c,
tcp-mib.h, tunnel-mib.c, tunnel-mib.h: Regenerated stubs to include
#defines for enumerations and identities. Added the
host-resources-types stubs.
2001-03-28 10:18 schoenw
* scli/system.c: Improved the "show system devices" command.
2001-03-28 09:39 schoenw
* snmp/g_session.c: Do not lookup the address with each and every
request.
2001-03-27 17:26 schoenw
* scli/basic.c: Some portability fixes. I am sure this is not the
right solution. Need to study the POSIX termios specification to
get it "right".
2001-03-27 17:16 schoenw
* configure, configure.in: Bumped the version number.
2001-03-27 17:14 schoenw
* scli/: disman.c, fmt.c, scli.h: Added code to display information
about running disman scripts.
2001-03-27 17:14 schoenw
* scli/basic.c: Added code to get the number of columns on the
terminal.
2001-03-27 10:55 schoenw
* scli/basic.c: Make sure we use the pager only if we are
interactive.
2001-03-27 10:48 schoenw
* scli/: atm.c, basic.c, bridge.c, disman.c, entity.c, interface.c,
ip.c, scli.c, scli.h, snmp.c, system.c, tcp.c, udp.c: Reworked the
command creation interface. Intermediate nodes are now created
automatically.
2001-03-26 15:41 schoenw
* ChangeLog: Generated the ChangeLog via cvs2cl.
2001-03-26 15:35 schoenw
* NEWS, TODO: Updates for release 0.1.15.
2001-03-26 15:33 schoenw
* snmp/g_snmp_table.c: General cleanup and fixed a memory leak.
2001-03-26 15:04 schoenw
* stub/udp-mib.c: Updated to handle tables which only have
auxilliary columns.
2001-03-26 15:02 schoenw
* scli/: Makefile.am, Makefile.in, entity.c, fmt.c, scli.c, scli.h,
tcp.c, udp.c: Added new "show tcp listener" and "show udp listener"
commands.
2001-03-23 04:27 schoenw
* stub/bridge-mib.c: Regenerated stubs to get the RFC 1155 counters
right.
2001-03-23 04:09 schoenw
* scli/: atm.c, bridge.c, cmds.c, disman.c, entity.c, interface.c,
ip.c, scli.c, snmp.c, system.c, tcp.c: Cleaned up the code in the
help command which displays the command tree. Shortened the command
descriptions so that they can be used as headers in recursive
command evaluations.
2001-03-21 18:39 schoenw
* scli/basic.c: Added simple $PAGER support. Improved the output
format produced by recursive command invocations.
2001-03-20 16:17 schoenw
* config.h.in: Regenerated.
2001-03-20 16:15 schoenw
* scli/interface.c: Added a missing check whether the IP address
entries are really valid.
2001-03-19 21:45 schoenw
* stub/: atm-mib.c, bridge-mib.c, disman-schedule-mib.c,
disman-script-mib.c, entity-mib.c, host-resources-mib.c, if-mib.c,
ip-forward-mib.c, ip-mib.c, snmp-community-mib.c,
snmp-framework-mib.c, snmp-mpd-mib.c, snmp-target-mib.c,
snmp-user-based-sm-mib.c, snmp-view-based-acm-mib.c, snmpv2-mib.c,
tcp-mib.c, tunnel-mib.c, udp-mib.c: Regenerated the stubs to
include type checking code.
2001-03-19 17:57 schoenw
* AUTHORS, README: Updated the list of contributors and clarified
the pronounciation of the package name.
2001-03-19 17:55 schoenw
* config.h.in, configure, configure.in, scli/fmt.c: Integrated a
freebsd patch from John Sellens <jsellens@generalconcepts.com>.
2001-03-16 17:01 schoenw
* scli/tcp.c: Dynamically adjust the width of the columns.
2001-03-16 16:31 schoenw
* scli/interface.c: Do not try to guess interface names since this
can lead to confusion.
2001-03-16 16:30 schoenw
* scli/bridge.c: Fixed a bug in the "show bridge ports" command.
2001-03-16 10:10 schoenw
* NEWS, TODO, configure, configure.in: Bumped version number to
0.1.15.
2001-03-16 10:04 schoenw
* scli/: atm.c, basic.c, bridge.c, cmds.c, disman.c, entity.c,
interface.c, ip.c, scli.1, scli.c, scli.h, snmp.c, system.c, tcp.c:
Added "open" and "close" commands. Changed the command registration
so that modes can pass command specific flags. Moved the peer
initialization code to the basic.c module and made the host scli
argument optional. Changed the scli prompt to show the name of the
remote peer.
2001-03-15 18:04 schoenw
* scli/system.c: Dynamically adjust the width of the "Storage Area"
column in the "show system storage" command. Strip trailing white
space in the "show system processes" command. (Perhaps we should
invent a generic mechanism to validate printable strings before
they are actuall passed to the screen).
2001-03-15 14:29 schoenw
* ChangeLog: Generated the ChangeLog via cvs2cl.
2001-03-15 14:27 schoenw
* NEWS, aclocal.m4, configure, configure.in: Preparing for the
0.1.14 release of stools.
2001-03-15 14:22 schoenw
* stub/: Makefile.am, Makefile.in, atm-mib.c, atm-mib.h: Added
stubs for the ATM-MIB.
2001-03-15 14:21 schoenw
* scli/bridge.c: Added a "show bridge info" command (which needs
more work for spanning tree bridges).
2001-03-15 14:19 schoenw
* scli/system.c: Suppress bridge summary information if the device
reports 0 ports.
2001-03-14 22:25 schoenw
* scli/: Makefile.am, Makefile.in, atm.c, bridge.c, scli.c, scli.h:
Started work on an ATM mode. Minor cleanups of the bridge mode.
2001-03-14 21:52 schoenw
* scli/interface.c: Fixed a bug where the code assumed that an
ipAddrTable is always present. Enhanced the "show interface info"
command to adjust the width of the "Type" column dynamically.
2001-03-14 18:34 schoenw
* scli/ip.c: Added the "show ip media" command.
2001-03-14 14:33 schoenw
* scli/interface.c: Updated the output format generated by the
"show interface info" command.
2001-03-14 14:32 schoenw
* scli/bridge.c: Updated the "show bridge ports" command and added
a new "show bridge filter" command (which I could not yet test in
practice).
2001-03-14 14:31 schoenw
* scli/vendors.c: Updated the vendor code tables.
2001-03-14 10:52 schoenw
* scli/: Makefile.am, Makefile.in, bridge.c, interface.c, scli.c,
scli.h, system.c, vendors.c: Added the bridge mode ("show bridge
ports", "show bridge forwarding"). Incorporated a list of ieee
vendor codes to show vendors for MAC addresses.
2001-03-13 17:16 schoenw
* scli/ip.c: Prepared the "show ip tunnel" command to eventually
show the interface name.
2001-03-13 17:09 schoenw
* scli/: system.c, vendors.c: Display unknown vendors to encourage
people to update the vendor list.
2001-03-13 16:44 schoenw
* scli/disman.c: Added a "show disman launch info" command and some
general cleanups.
2001-03-12 15:05 schoenw
* scli/: basic.c, cmds.c, disman.c, entity.c, fmt.c, interface.c,
ip.c, scli.c, scli.h, snmp.c, system.c, tcp.c, vendors.c: Include
only those MIB stubs that are actually needed. Renamed the "show
interface tunnel" command to "show ip tunnel". Added new "show
interface info" and "show disman script info" commands.
2001-03-12 15:00 schoenw
* stub/: bridge-mib.c, bridge-mib.h, disman-schedule-mib.c,
disman-schedule-mib.h, disman-script-mib.c, disman-script-mib.h,
entity-mib.c, entity-mib.h, host-resources-mib.c,
host-resources-mib.h, if-mib.c, if-mib.h, ip-forward-mib.c,
ip-forward-mib.h, ip-mib.c, ip-mib.h, snmp-community-mib.c,
snmp-community-mib.h, snmp-framework-mib.c, snmp-framework-mib.h,
snmp-mpd-mib.c, snmp-mpd-mib.h, snmp-target-mib.c,
snmp-target-mib.h, snmp-user-based-sm-mib.c,
snmp-user-based-sm-mib.h, snmp-view-based-acm-mib.c,
snmp-view-based-acm-mib.h, snmpv2-mib.c, snmpv2-mib.h, stools.h,
tcp-mib.c, tcp-mib.h, tunnel-mib.c, tunnel-mib.h, udp-mib.c,
udp-mib.h: Regenerated stubs to include the MIB revision history.
Removed the default include of all MIB stub headers from stools.h.
2001-03-09 16:12 schoenw
* scli/interface.c: Minor formatting cleanup of the "show interface
tunnel" command.
2001-03-09 16:06 schoenw
* ChangeLog: Generated the ChangeLog via cvs2cl.
2001-03-09 16:04 schoenw
* NEWS, TODO, configure, configure.in: Preparing for the next
release.
2001-03-08 15:40 schoenw
* snmp/g_asn1.c: Fixed a sign decoding bug in
g_asn1_int32_decode().
2001-03-08 11:57 schoenw
* scli/: interface.c, ip.c: Oliver Wellnitz contributed a patch to
display tunnel information.
2001-03-08 11:56 schoenw
* stub/: Makefile.am, Makefile.in, bridge-mib.c, bridge-mib.h,
disman-schedule-mib.c, disman-schedule-mib.h, disman-script-mib.c,
disman-script-mib.h, entity-mib.c, entity-mib.h,
host-resources-mib.c, host-resources-mib.h, if-mib.c, if-mib.h,
ip-forward-mib.c, ip-forward-mib.h, ip-mib.c, ip-mib.h,
snmp-community-mib.c, snmp-community-mib.h, snmp-framework-mib.c,
snmp-framework-mib.h, snmp-mpd-mib.c, snmp-mpd-mib.h,
snmp-target-mib.c, snmp-target-mib.h, snmp-user-based-sm-mib.c,
snmp-user-based-sm-mib.h, snmp-view-based-acm-mib.c,
snmp-view-based-acm-mib.h, snmpv2-mib.c, snmpv2-mib.h, stools.h,
tcp-mib.c, tcp-mib.h, tunnel-mib.c, tunnel-mib.h, udp-mib.c,
udp-mib.h: Added stubs for the TUNNEL-MIB and regenerated stubs
with the released smidump version 0.2.14.
2001-03-05 15:31 schoenw
* stub/bridge-mib.c, stub/bridge-mib.h, stub/disman-schedule-mib.c,
stub/disman-schedule-mib.h, stub/disman-script-mib.c,
stub/disman-script-mib.h, stub/entity-mib.c, stub/entity-mib.h,
stub/host-resources-mib.c, stub/host-resources-mib.h,
scli/disman.c, scli/entity.c, scli/interface.c, scli/ip.c,
scli/snmp.c, scli/system.c, scli/tcp.c, stub/if-mib.c,
stub/if-mib.h, stub/ip-forward-mib.c, stub/ip-forward-mib.h,
stub/ip-mib.c, stub/ip-mib.h, stub/snmp-community-mib.c,
stub/snmp-community-mib.h, stub/snmp-framework-mib.c,
stub/snmp-framework-mib.h, stub/snmp-mpd-mib.c,
stub/snmp-mpd-mib.h, stub/snmp-target-mib.c,
stub/snmp-target-mib.h, stub/snmp-user-based-sm-mib.c,
stub/snmp-user-based-sm-mib.h, stub/snmp-view-based-acm-mib.c,
stub/snmp-view-based-acm-mib.h, stub/snmpv2-mib.c,
stub/snmpv2-mib.h, stub/tcp-mib.c, stub/tcp-mib.h, stub/udp-mib.c,
stub/udp-mib.h: Many updates to support an improved stub API.
2001-03-02 10:32 schoenw
* stub/: Makefile.am, Makefile.in, bridge-mib.c,
disman-schedule-mib.c, disman-script-mib.c, entity-mib.c,
host-resources-mib.c, if-mib.c, ip-forward-mib.c, ip-forward-mib.h,
ip-mib.c, snmp-community-mib.c, snmp-framework-mib.c,
snmp-mpd-mib.c, snmp-target-mib.c, snmp-user-based-sm-mib.c,
snmp-view-based-acm-mib.c, snmpv2-mib.c, stools.h, tcp-mib.c,
udp-mib.c: Added the IP-FORWARD-MIB and regenerated the stubs to
take advantage of some improvements in the smidump stools driver.
2001-03-02 10:28 schoenw
* scli/: Makefile.am, Makefile.in, ip.c, scli.c, scli.h, tcp.c:
Added an initial IP mode for scli.
2001-03-02 10:17 schoenw
* scli/: fmt.c, interface.c, scli.h: Added a fmt function to
convert IPv4 masks into a printable address prefix length. The
"show interface info" command now displays the prefix length rather
than the DNS name for each associated IP address.
2001-03-02 10:10 schoenw
* scli/fmt.c: Check for the unspecified case first before doing
host or service name lookups.
2001-03-02 10:10 schoenw
* scli/scli.c: Integrated a patch from Frank Strauss
<strauss@ibr.cs.tu-bs.de> to turn off filename completion.
2001-03-01 09:44 schoenw
* scli/tcp.c: Fixed a formatting bug with long host names.
2001-03-01 09:17 schoenw
* ChangeLog: Generated the ChangeLog via cvs2cl.
2001-03-01 08:57 schoenw
* Makefile.in, NEWS, configure, configure.in: Prepare for the
0.1.12 snapshot.
2001-03-01 08:55 schoenw
* scli/: fmt.c, interface.c, scli.h, tcp.c: Improved the formatting
of IPv4 addresses and port numbers.
2001-03-01 08:54 schoenw
* scli/system.c: The "show system info" now shows dates in a
logical order.
2001-02-28 17:38 schoenw
* stub/: bridge-mib.c, bridge-mib.h, disman-schedule-mib.c,
disman-schedule-mib.h, disman-script-mib.c, disman-script-mib.h,
entity-mib.c, entity-mib.h, host-resources-mib.c,
host-resources-mib.h, if-mib.c, if-mib.h, ip-mib.c, ip-mib.h,
snmp-community-mib.c, snmp-community-mib.h, snmp-framework-mib.c,
snmp-framework-mib.h, snmp-mpd-mib.c, snmp-mpd-mib.h,
snmp-target-mib.c, snmp-target-mib.h, snmp-user-based-sm-mib.c,
snmp-user-based-sm-mib.h, snmp-view-based-acm-mib.c,
snmp-view-based-acm-mib.h, snmpv2-mib.c, snmpv2-mib.h, tcp-mib.c,
tcp-mib.h, udp-mib.c, udp-mib.h: Improved the instance identifier
unpacking to handle some more cases.
2001-02-28 17:37 schoenw
* scli/: disman.c, entity.c, interface.c, snmp.c, system.c:
Improvements of the "show disman language" and "show interface
info" commands. Added a new "show disman scripts" command. Updated
the code to use the new stubs interface.
2001-02-28 17:26 schoenw
* scli/: Makefile.am, Makefile.in, scli.c, scli.h, tcp.c: Added the
tcp mode which displays existing tcp connections.
2001-02-27 11:07 schoenw
* ChangeLog: Generated the ChangeLog via cvs2cl.
2001-02-27 11:06 schoenw
* NEWS, TODO: Updates for the 0.1.11 release.
2001-02-27 11:04 schoenw
* scli/disman.c: Fixes some descriptive texts.
2001-02-27 11:01 schoenw
* scli/entity.c: Implementation of the "show physical components"
and the "show physical containment" command (which replace the
"show system entities" command).
2001-02-27 11:00 schoenw
* scli/system.c: Cleanup and some initial "show system devices"
command code.
2001-02-27 10:58 schoenw
* scli/interface.c: Renames "show interfaces" to "show interface
info" since we are going to add a "show interface stack" command
soon.
2001-02-26 16:32 schoenw
* ChangeLog: Generated the ChangeLog via cvs2cl.
2001-02-26 16:20 schoenw
* README, configure, configure.in: Prepare for release 0.1.11.
2001-02-26 16:13 schoenw
* scli/: Makefile.am, Makefile.in, scli.c, scli.h, snmp.c: Added an
initial snmp mode which needs much more work to be useful.
2001-02-26 16:12 schoenw
* scli/basic.c: Evaluate commands recursively on non-leaf nodes in
the command tree. (Not sure yet whether this is always a feature
or sometimes a bug.)
2001-02-26 16:11 schoenw
* scli/system.c: Renamed "show system" to "show system info". Set
the minimum column width to 20 in the "show system mounts" command.
2001-02-26 16:09 schoenw
* scli/interface.c: Renamed "show interface" to "show interfaces".
2001-02-26 16:03 schoenw
* stub/: snmp-framework-mib.c, snmp-mpd-mib.h: Forgot two files in
the last commit...
2001-02-26 16:02 schoenw
* stub/: Makefile.am, Makefile.in, snmp-community-mib.c,
snmp-community-mib.h, snmp-framework-mib.h, snmp-mpd-mib.c,
snmp-target-mib.c, snmp-target-mib.h, snmp-user-based-sm-mib.c,
snmp-user-based-sm-mib.h, snmp-view-based-acm-mib.c,
snmp-view-based-acm-mib.h, stools.h: Added the standard SNMPv3
remote administration MIBs to eventually support them. ;-)
2001-02-23 16:04 schoenw
* scli/system.c: Supress newlines if the sysDescr value is a zero
length string.
2001-02-23 15:59 schoenw
* stub/: bridge-mib.c, disman-schedule-mib.c, disman-script-mib.c,
entity-mib.c, host-resources-mib.c, if-mib.c, ip-mib.c,
snmpv2-mib.c, tcp-mib.c, udp-mib.c: The stub code now checks the
complete OID in the response again.
2001-02-21 17:38 schoenw
* ChangeLog: Generated the ChangeLog via cvs2cl. (This should
probably be automated.)
2001-02-21 17:34 schoenw
* TODO: Updated the ever growing TODO list.
2001-02-21 17:33 schoenw
* scli/entity.c: Added very experimental code to display the
containment hierarchy.
2001-02-21 17:31 schoenw
* scli/system.c: Replaced hrSWRunName with hrSWRunPath.
2001-02-21 17:30 schoenw
* doc/stools.texinfo: Some grammar/wording fixed from Frank
Strauss.
2001-02-21 17:29 schoenw
* scli/scli.1: Frank Strauss fixed the numbers in the manual pages.
2001-02-20 15:38 schoenw
* NEWS, TODO, configure, configure.in, doc/stools.info,
doc/stools.texinfo: Updated for version 0.1.10 of the stools
package.
2001-02-20 15:37 schoenw
* stub/: bridge-mib.c, disman-schedule-mib.c, disman-script-mib.c,
entity-mib.c, host-resources-mib.c, if-mib.c, ip-mib.c,
snmpv2-mib.c, tcp-mib.c, udp-mib.c: More compact stubs generated by
an improved stools smidump driver.
2001-02-20 15:32 schoenw
* scli/: Makefile.am, Makefile.in, disman.c, scli.c, scli.h: Added
a disman mode which needs much more work.
2001-02-20 15:30 schoenw
* scli/cmds.c: Fixed the help output for intermediate command nodes
without a description.
2001-02-20 15:29 schoenw
* scli/system.c: Added the "show system processes" command.
2001-02-20 15:28 schoenw
* scli/interface.c: Minor bug fixes to produce even nicer output.
;-)
2001-02-16 15:43 schoenw
* scli/system.c: Fixed the output of "show system storage".
2001-02-16 15:21 schoenw
* scli/scli.1: Fixed a typo.
2001-02-16 15:15 schoenw
* Makefile.in, NEWS, TODO, aclocal.m4, configure, configure.in,
doc/Makefile.in, snmp/Makefile.in: Updates for version 0.1.9 of the
stools package.
2001-02-16 15:13 schoenw
* scli/: Makefile.am, Makefile.in, basic.c, cmds.c, entity.c,
fmt.c, interface.c, scli.1, scli.c, scli.h, system.c: Major code
refactoring. New "show system mount" command and many minor command
improvements.
2001-02-16 15:12 schoenw
* stub/: Makefile.am, Makefile.in, bridge-mib.c, bridge-mib.h,
disman-schedule-mib.c, disman-schedule-mib.h, disman-script-mib.c,
disman-script-mib.h, stools.h: Added the BRIDGE-MIB,
DISMAN-SCRIPT-MIB and DISMAN-SCHEDULE-MIB.
2001-02-15 18:03 schoenw
* scli/system.c: Some more code to display a list of mounted
filesystems. Needs more work.
2001-02-15 13:00 schoenw
* Makefile.in, NEWS, config.h.in, configure, configure.in,
doc/Makefile.in, scli/Makefile.in, snmp/Makefile.in,
stub/Makefile.in: Added a few more configure checks and bumped
version number.
2001-02-15 12:59 schoenw
* snmp/: g_dispatch.c, g_dispatch.h, g_session.h, g_snmp.c,
g_transport.c: Several prototype fixes.
2001-02-15 12:58 schoenw
* scli/system.c: Implemented the "show system storage" command.
2001-02-15 12:57 schoenw
* stub/: stools.c, stools.h: Some prototype fixes.
2001-02-14 14:27 schoenw
* Makefile.in, NEWS, README, TODO, aclocal.m4, configure,
configure.in, doc/Makefile.in, scli/Makefile.in, scli/cmds.c,
scli/interface.c, scli/scli.1, scli/system.c, snmp/Makefile.in,
snmp/g_message.c, snmp/g_snmp.c, snmp/g_snmp.h, snmp/g_transport.c,
stub/Makefile.in: Documentation updates, fixes for constructions
that violate ANSI C, minor bug fixes and improved scli help output.
2001-02-14 14:25 schoenw
* doc/: stools.info, stools.texinfo: Added some initial text to the
stools documentation.
2001-02-13 16:16 schoenw
* AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, Makefile.in,
NEWS, README, TODO, aclocal.m4, config.guess, config.h.in,
config.sub, configure, configure.in, install-sh, missing,
mkinstalldirs, stamp-h.in, doc/Makefile.am, doc/Makefile.in,
doc/gpl.texinfo, doc/stools.info, doc/stools.texinfo,
doc/texinfo.tex, scli/Makefile.am, scli/Makefile.in, scli/basic.c,
scli/cmds.c, scli/getopt.c, scli/getopt.h, scli/getopt1.c,
scli/interface.c, scli/scli.1, scli/scli.c, scli/scli.h,
scli/system.c, scli/vendors.c, snmp/Makefile.am, snmp/Makefile.in,
snmp/g_asn1.c, snmp/g_asn1.h, snmp/g_dispatch.c, snmp/g_dispatch.h,
snmp/g_md5.c, snmp/g_md5.h, snmp/g_message.c, snmp/g_message.h,
snmp/g_security.c, snmp/g_security.h, snmp/g_session.c,
snmp/g_session.h, snmp/g_sha.c, snmp/g_sha.h, snmp/g_snmp.c,
snmp/g_snmp.h, snmp/g_snmp_table.c, snmp/g_snmp_table.h,
snmp/g_transport.c, snmp/g_transport.h, stub/Makefile.am,
stub/Makefile.in, stub/entity-mib.c, stub/entity-mib.h,
stub/host-resources-mib.c, stub/host-resources-mib.h,
stub/if-mib.c, stub/if-mib.h, stub/ip-mib.c, stub/ip-mib.h,
stub/snmpv2-mib.c, stub/snmpv2-mib.h, stub/stools.c, stub/stools.h,
stub/tcp-mib.c, stub/tcp-mib.h, stub/udp-mib.c, stub/udp-mib.h:
Initial revision
2001-02-13 16:16 schoenw
* AUTHORS, COPYING, ChangeLog, INSTALL, Makefile.am, Makefile.in,
NEWS, README, TODO, aclocal.m4, config.guess, config.h.in,
config.sub, configure, configure.in, install-sh, missing,
mkinstalldirs, stamp-h.in, doc/Makefile.am, doc/Makefile.in,
doc/gpl.texinfo, doc/stools.info, doc/stools.texinfo,
doc/texinfo.tex, scli/Makefile.am, scli/Makefile.in, scli/basic.c,
scli/cmds.c, scli/getopt.c, scli/getopt.h, scli/getopt1.c,
scli/interface.c, scli/scli.1, scli/scli.c, scli/scli.h,
scli/system.c, scli/vendors.c, snmp/Makefile.am, snmp/Makefile.in,
snmp/g_asn1.c, snmp/g_asn1.h, snmp/g_dispatch.c, snmp/g_dispatch.h,
snmp/g_md5.c, snmp/g_md5.h, snmp/g_message.c, snmp/g_message.h,
snmp/g_security.c, snmp/g_security.h, snmp/g_session.c,
snmp/g_session.h, snmp/g_sha.c, snmp/g_sha.h, snmp/g_snmp.c,
snmp/g_snmp.h, snmp/g_snmp_table.c, snmp/g_snmp_table.h,
snmp/g_transport.c, snmp/g_transport.h, stub/Makefile.am,
stub/Makefile.in, stub/entity-mib.c, stub/entity-mib.h,
stub/host-resources-mib.c, stub/host-resources-mib.h,
stub/if-mib.c, stub/if-mib.h, stub/ip-mib.c, stub/ip-mib.h,
stub/snmpv2-mib.c, stub/snmpv2-mib.h, stub/stools.c, stub/stools.h,
stub/tcp-mib.c, stub/tcp-mib.h, stub/udp-mib.c, stub/udp-mib.h:
initial stools version
|