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 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820
|
rtmp 1/ddp # routing table maintenance protocol
tcpmux 1/tcp # tcp port service multiplexer [rfc-1078], tcp port service multiplexer, tcp port multiplexer (rfc1078)
tcpmux 1/udp # tcp port service multiplexer
nbp 2/ddp # name binding protocol
compressnet 2/tcp # management utility
compressnet 2/udp # management utility
compressnet 3/tcp # compression process
compressnet 3/udp # compression process
echo 4/ddp # appletalk echo protocol
rje 5/tcp # remote job entry
rje 5/udp # remote job entry
zip 6/ddp # zone information protocol
echo 7/tcp # echo
echo 7/udp # echo
discard 9/tcp null sink # sink null, discard
discard 9/udp null sink # sink null, discard
systat 11/tcp users # active users
systat 11/udp users # active users
daytime 13/tcp # daytime (rfc 867)
daytime 13/udp # daytime (rfc 867)
netstat 15/tcp
qotd 17/tcp quote # quote of the day
qotd 17/udp quote # quote of the day
msp 18/tcp # message send protocol
msp 18/udp # message send protocol
chargen 19/tcp source ttytst # ttytst source character generator, character generator
chargen 19/udp source ttytst # ttytst source character generator, character generator
ftp-data 20/tcp # file transfer [default data], default ftp data port
ftp-data 20/udp # file transfer [default data]
ftp 21/tcp # file transfer [control], file transfer protocol
ftp 21/udp # file transfer [control]
ssh 22/tcp # secure shell login, ssh remote login protocol, secure shell
ssh 22/udp # secure shell login, ssh remote login protocol
telnet 23/tcp # telnet
telnet 23/udp # telnet
priv-mail 24/tcp # any private mail system
priv-mail 24/udp # any private mail system
smtp 25/tcp mail # simple mail transfer
smtp 25/udp mail # simple mail transfer
nsw-fe 27/tcp # nsw user system fe
nsw-fe 27/udp # nsw user system fe
msg-icp 29/tcp # msg icp
msg-icp 29/udp # msg icp
msg-auth 31/tcp # msg authentication
msg-auth 31/udp # msg authentication
dsp 33/tcp # display support protocol
dsp 33/udp # display support protocol
priv-print 35/tcp # any private printer server
priv-print 35/udp # any private printer server
time 37/tcp timserver # timserver, time
time 37/udp timserver # timserver, time
rap 38/tcp # route access protocol
rap 38/udp # route access protocol
rlp 39/tcp resource # resource location protocol
rlp 39/udp resource # resource location, resource location protocol
graphics 41/tcp # graphics
graphics 41/udp # graphics
name 42/tcp nameserver name # ien 116, host name server
name 42/udp nameserver name # host name server
nicname 43/tcp whois nicname # who is, nicname, usually to sri-nic
nicname 43/udp whois shois # who is, nicname
mpm-flags 44/tcp # mpm flags protocol
mpm-flags 44/udp # mpm flags protocol
mpm 45/tcp # message processing module [recv]
mpm 45/udp # message processing module [recv]
mpm-snd 46/tcp # mpm [default send]
mpm-snd 46/udp # mpm [default send]
ni-ftp 47/tcp # ni ftp
ni-ftp 47/udp # ni ftp
auditd 48/tcp # digital audit daemon
auditd 48/udp # digital audit daemon
tacacs 49/tcp # login host protocol (tacacs)
tacacs 49/udp # login host protocol (tacacs)
re-mail-ck 50/tcp # remote mail checking protocol
re-mail-ck 50/udp # remote mail checking protocol
la-maint 51/tcp # imp logical address maintenance
la-maint 51/udp # imp logical address maintenance
xns-time 52/tcp # xns time protocol
xns-time 52/udp # xns time protocol
domain 53/tcp nameserver # domain name server, name-domain server
domain 53/udp nameserver # domain name server
xns-ch 54/tcp # xns clearinghouse
xns-ch 54/udp # xns clearinghouse
isi-gl 55/tcp # isi graphics language
isi-gl 55/udp # isi graphics language
xns-auth 56/tcp # xns authentication
xns-auth 56/udp # xns authentication
mtp 57/tcp priv-term # any private terminal access, deprecated
priv-term 57/udp # any private terminal access
xns-mail 58/tcp # xns mail
xns-mail 58/udp # xns mail
priv-file 59/tcp # any private file service
priv-file 59/udp # any private file service
ni-mail 61/tcp # ni mail
ni-mail 61/udp # ni mail
acas 62/tcp # aca services
acas 62/udp # aca services
whois++ 63/tcp via-ftp # whois++, via systems - ftp & whois++
whois++ 63/udp via-ftp # whois++, via systems - ftp & whois++
covia 64/tcp # communications integrator (ci)
covia 64/udp # communications integrator (ci)
tacacs-ds 65/tcp # tacacs-database service
tacacs-ds 65/udp # tacacs-database service
sql*net 66/tcp # oracle sql*net
sql*net 66/udp # oracle sql*net
bootps 67/tcp dhcps # bootp server, bootstrap protocol server
bootps 67/udp dhcps # bootstrap protocol server
bootpc 68/tcp dhcpc # bootp client, bootstrap protocol client
bootpc 68/udp dhcpc # bootstrap protocol client
tftp 69/tcp # trivial file transfer
tftp 69/udp # trivial file transfer, trivial file transfer protocol
gopher 70/tcp gn # gopher, internet gopher
gopher 70/udp # gopher
netrjs-1 71/tcp # remote job service
netrjs-1 71/udp # remote job service
netrjs-2 72/tcp # remote job service
netrjs-2 72/udp # remote job service
netrjs-3 73/tcp # remote job service
netrjs-3 73/udp # remote job service
netrjs-4 74/tcp # remote job service
netrjs-4 74/udp # remote job service
priv-dial 75/tcp # any private dial out service
priv-dial 75/udp # any private dial out service
deos 76/tcp # distributed external object store
deos 76/udp # distributed external object store
rje 77/tcp netrjs priv-rje # any private rje service, netrjs
priv-rje 77/udp # any private rje service, netjrs
vettcp 78/tcp # vettcp
vettcp 78/udp # vettcp
finger 79/tcp # finger
finger 79/udp # finger
http 80/tcp http www-http www # worldwideweb http, world wide web http
http 80/udp www-http www # hypertext transfer protocol, world wide web http
hosts2-ns 81/tcp # hosts2 name server
hosts2-ns 81/udp # hosts2 name server
xfer 82/tcp # xfer utility
xfer 82/udp # xfer utility
mit-ml-dev 83/tcp # mit ml device
mit-ml-dev 83/udp # mit ml device
ctf 84/tcp # common trace facility
ctf 84/udp # common trace facility
mit-ml-dev 85/tcp # mit ml device
mit-ml-dev 85/udp # mit ml device
mfcobol 86/tcp # micro focus cobol
mfcobol 86/udp # micro focus cobol
link 87/tcp priv-term-l ttylink # any private terminal link, ttylink
kerberos 88/tcp krb5 kerberos kerberos-sec # kerberos v5, kerberos secondary port tcp, kerberos (v5), krb5 # kerberos (v5), kerberos
kerberos 88/udp kerberos kerberos-sec # kerberos (v5), krb5 # kerberos (v5), kerberos secondary port udp, kerberos
su-mit-tg 89/tcp # su/mit telnet gateway
su-mit-tg 89/udp # su/mit telnet gateway
dnsix 90/tcp # dnsix securit attribute token map
dnsix 90/udp # dnsix securit attribute token map
mit-dov 91/tcp # mit dover spooler
mit-dov 91/udp # mit dover spooler
npp 92/tcp # network printing protocol
npp 92/udp # network printing protocol
dcp 93/tcp # device control protocol
dcp 93/udp # device control protocol
objcall 94/tcp # tivoli object dispatcher
objcall 94/udp # tivoli object dispatcher
supdup 95/tcp # supdup, bsd supdupd(8)
supdup 95/udp # supdup
dixie 96/tcp # dixie protocol specification
dixie 96/udp # dixie protocol specification
swift-rvf 97/tcp # swift remote virtural file protocol
swift-rvf 97/udp # swift remote virtural file protocol
tacnews 98/tcp linuxconf # added by linuxconf rpm, tac news
tacnews 98/udp # tac news
metagram 99/tcp # metagram relay
metagram 99/udp # metagram relay
newacct 100/tcp # [unauthorized use]
hostname 101/tcp hostnames hostname # usually from sri-nic, nic host name server, hostnames nic host name server, usually to sri-nic
hostname 101/udp hostnames # nic host name server, hostnames nic host name server
iso-tsap 102/tcp tsap # tsap iso-tsap class 0, part of isode., iso-tsap class 0
iso-tsap 102/udp tsap # tsap iso-tsap class 0, iso-tsap class 0
gppitnp 103/tcp x400 # iso e-mail, genesis point-to-point trans net, or x400 iso email, iso mail, genesis point-to-point trans net
gppitnp 103/udp # genesis point-to-point trans net
acr-nema 104/tcp x400-snd # acr-nema digital imag. & comm. 300
acr-nema 104/udp # acr-nema digital imag. & comm. 300
cso 105/tcp cso-ns csnet-ns cso # also used by cso name server, ccso name server protocol, mailbox name nameserver
cso 105/udp cso-ns csnet-ns cso # ccso name server protocol, mailbox name nameserver
3com-tsmux 106/tcp 3com-tsmux pop3pw # 3com-tsmux, eudora compatible pw changer
3com-tsmux 106/udp # 3com-tsmux
rtelnet 107/tcp # remote telnet, remote telnet service
rtelnet 107/udp # remote telnet service
snagas 108/tcp # sna gateway access server
snagas 108/udp # sna gateway access server
pop2 109/tcp postoffice pop-2 # postoffice v.2, post office protocol - version 2, post office, post office protocol 2, pop version 2
pop2 109/udp postoffice pop-2 # postoffice v.2, post office protocol - version 2
pop3 110/tcp pop3 pop-3 # pop version 3, postoffice v.3, post office, post office protocol - version 3, post office protocol 3
pop3 110/udp pop-3 # postoffice v.3, post office protocol - version 3
sunrpc 111/tcp rpcbind portmap # portmapper, rpcbind, remote procedure call, sun remote procedure call
sunrpc 111/udp rpcbind portmap # portmapper, rpcbind, sun remote procedure call
mcidas 112/tcp # mcidas data transmission protocol
mcidas 112/udp # mcidas data transmission protocol
ident 113/tcp authentication auth ident tap # authentication service, ident, tap, authentication service
auth 113/udp ident tap # authentication service, ident, tap, authentication service
audionews 114/tcp # audio news multicast
audionews 114/udp # audio news multicast
sftp 115/tcp # simple file transfer protocol
sftp 115/udp # simple file transfer protocol
ansanotify 116/tcp # ansa rex notify
ansanotify 116/udp # ansa rex notify
uucp-path 117/tcp # uucp path service
uucp-path 117/udp # uucp path service
sqlserv 118/tcp # sql services
sqlserv 118/udp # sql services
nntp 119/tcp readnews usenet untp # usenet news transfer protocol, network news transfer, network news transfer protocol
nntp 119/udp usenet # network news transfer protocol
cfdptkt 120/tcp # cfdptkt
cfdptkt 120/udp # cfdptkt
erpc 121/tcp # encore expedited remote pro.call
erpc 121/udp # encore expedited remote pro.call
smakynet 122/tcp # smakynet
smakynet 122/udp # smakynet
ntp 123/tcp # network time protocol
ntp 123/udp # network time protocol
ansatrader 124/tcp # ansa rex trader
ansatrader 124/udp # ansa rex trader
locus-map 125/tcp # locus pc-interface net map ser
locus-map 125/udp # locus pc-interface net map ser
unitary 126/tcp # unisys unitary login
unitary 126/udp # unisys unitary login
locus-con 127/tcp # locus pc-interface conn server
locus-con 127/udp # locus pc-interface conn server
gss-xlicen 128/tcp # gss x license verification
gss-xlicen 128/udp # gss x license verification
pwdgen 129/tcp # password generator protocol
pwdgen 129/udp # password generator protocol
cisco-fna 130/tcp # cisco fnative
cisco-fna 130/udp # cisco fnative
cisco-tna 131/tcp # cisco tnative
cisco-tna 131/udp # cisco tnative
cisco-sys 132/tcp # cisco sysmaint
cisco-sys 132/udp # cisco sysmaint
statsrv 133/tcp # statistics service
statsrv 133/udp # statistics service
ingres-net 134/tcp # ingres-net service
ingres-net 134/udp # ingres-net service
epmap 135/tcp epmap loc-srv # dce endpoint resolution, location service, ncs local location broker
epmap 135/udp epmap loc-srv # dce endpoint resolution, location service
profile 136/tcp # profile naming system
profile 136/udp # profile naming system
netbios-ns 137/tcp # netbios name service
netbios-ns 137/udp # netbios name service
netbios-dgm 138/tcp # netbios datagram service
netbios-dgm 138/udp # netbios datagram service
netbios-ssn 139/tcp # netbios session service
netbios-ssn 139/udp # netbios session service
emfis-data 140/tcp # emfis data service
emfis-data 140/udp # emfis data service
emfis-cntl 141/tcp # emfis control service
emfis-cntl 141/udp # emfis control service
bl-idm 142/tcp # britton-lee idm
bl-idm 142/udp # britton-lee idm
imap 143/tcp imap2 imap4 imap # interactive mail access prot, interim mail access proto v2, internet message access protocol, interim mail access protocol v2
imap 143/udp imap2 imap4 # internet message access protocol, interim mail access protocol v2
uma 144/tcp news NeWS # universal management architecture, news window system, window system
uma 144/udp news NeWS # universal management architecture, news window system, window system
uaac 145/tcp # uaac protocol
uaac 145/udp # uaac protocol
iso-tp0 146/tcp # iso-ip0
iso-tp0 146/udp # iso-ip0
iso-ip 147/tcp # iso-ip
iso-ip 147/udp # iso-ip
jargon 148/tcp jargon cronus # jargon, cronus-support
jargon 148/udp jargon cronus # jargon, cronus-support
aed-512 149/tcp # aed 512 emulation service
aed-512 149/udp # aed 512 emulation service
sql-net 150/tcp # sql-net
sql-net 150/udp # sql-net
hems 151/tcp # hems
hems 151/udp # hems
bftp 152/tcp # background file transfer proto, background file transfer program
bftp 152/udp # background file transfer program
sgmp 153/tcp # sgmp
sgmp 153/udp # sgmp
netsc-prod 154/tcp # netsc
netsc-prod 154/udp # netsc
netsc-dev 155/tcp # netsc
netsc-dev 155/udp # netsc
sqlsrv 156/tcp # sql service
sqlsrv 156/udp # sql service
knet-cmp 157/tcp # knet/vm command/message protocol
knet-cmp 157/udp # knet/vm command/message protocol
pcmail-srv 158/tcp # pcmail server
pcmail-srv 158/udp # pcmail server
nss-routing 159/tcp # nss-routing
nss-routing 159/udp # nss-routing
sgmp-traps 160/tcp # sgmp-traps
sgmp-traps 160/udp # sgmp-traps
snmp 161/tcp # snmp
snmp 161/udp # simple net mgmt proto, snmp
snmptrap 162/tcp snmp-trap # snmp-trap, snmptrap
snmptrap 162/udp snmp-trap snmptrap # snmp-trap, snmptrap, traps for snmp
cmip-man 163/tcp # iso mgmt over ip (cmot), cmip/tcp manager
cmip-man 163/udp # cmip/tcp manager
cmip-agent 164/tcp # cmip/tcp agent
smip-agent 164/udp cmip-agent # cmip/tcp agent
xns-courier 165/tcp # xerox
xns-courier 165/udp # xerox
s-net 166/tcp # sirius systems
s-net 166/udp # sirius systems
namp 167/tcp # namp
namp 167/udp # namp
rsvd 168/tcp # rsvd
rsvd 168/udp # rsvd
send 169/tcp # send
send 169/udp # send
print-srv 170/tcp # network postscript
print-srv 170/udp # network postscript
multiplex 171/tcp # network innovations multiplex
multiplex 171/udp # network innovations multiplex
cl/1 172/tcp # network innovations cl/1
cl/1 172/udp # network innovations cl/1
xyplex-mux 173/tcp # xyplex
xyplex-mux 173/udp # xyplex
mailq 174/tcp # mailq, zmailer mta
mailq 174/udp # mailq
vmnet 175/tcp # vmnet
vmnet 175/udp # vmnet
genrad-mux 176/tcp # genrad-mux
genrad-mux 176/udp # genrad-mux
xdmcp 177/tcp # x display manager control protocol, x display mgr. control proto
xdmcp 177/udp # x display manager control protocol
nextstep 178/tcp NeXTStep nextstep NextStep # nextstep window server, nextstep window
nextstep 178/udp NeXTStep nextstep NextStep # nextstep window server, server
bgp 179/tcp # border gateway proto., border gateway protocol
bgp 179/udp # border gateway protocol
ris 180/tcp # intergraph
ris 180/udp # intergraph
unify 181/tcp # unify
unify 181/udp # unify
audit 182/tcp # unisys audit sitp
audit 182/udp # unisys audit sitp
ocbinder 183/tcp # ocbinder
ocbinder 183/udp # ocbinder
ocserver 184/tcp # ocserver
ocserver 184/udp # ocserver
remote-kis 185/tcp # remote-kis
remote-kis 185/udp # remote-kis
kis 186/tcp # kis protocol
kis 186/udp # kis protocol
aci 187/tcp # application communication interface
aci 187/udp # application communication interface
mumps 188/tcp # plus five's mumps
mumps 188/udp # plus five's mumps
qft 189/tcp # queued file transport
qft 189/udp # queued file transport
gacp 190/tcp # gateway access control protocol
gacp 190/udp cacp # gateway access control protocol
prospero 191/tcp # prospero directory service, cliff neuman's prospero
prospero 191/udp # prospero directory service
osu-nms 192/tcp # osu network monitoring system
osu-nms 192/udp # osu network monitoring system
srmp 193/tcp # spider remote monitoring protocol
srmp 193/udp # spider remote monitoring protocol
irc 194/tcp # internet relay chat protocol, internet relay chat
irc 194/udp # internet relay chat protocol
dn6-nlm-aud 195/tcp # dnsix network level module audit
dn6-nlm-aud 195/udp # dnsix network level module audit
dn6-smm-red 196/tcp # dnsix session mgt module audit redir
dn6-smm-red 196/udp # dnsix session mgt module audit redir
dls 197/tcp # directory location service
dls 197/udp # directory location service
dls-mon 198/tcp # directory location service monitor
dls-mon 198/udp # directory location service monitor
smux 199/tcp # snmp unix multiplexer, smux
smux 199/udp # smux
src 200/tcp # ibm system resource controller
src 200/udp # ibm system resource controller
at-rtmp 201/tcp # appletalk routing maintenance, appletalk routing
at-rtmp 201/udp # appletalk routing maintenance
at-nbp 202/tcp # appletalk name binding
at-nbp 202/udp # appletalk name binding
at-3 203/tcp # appletalk unused
at-3 203/udp # appletalk unused
at-echo 204/tcp # appletalk echo
at-echo 204/udp # appletalk echo
at-5 205/tcp # appletalk unused
at-5 205/udp # appletalk unused
at-zis 206/tcp # appletalk zone information
at-zis 206/udp # appletalk zone information
at-7 207/tcp # appletalk unused
at-7 207/udp # appletalk unused
at-8 208/tcp # appletalk unused
at-8 208/udp # appletalk unused
qmtp 209/tcp tam # the quick mail transfer protocol, trivial authenticated mail protocol
qmtp 209/udp tam # the quick mail transfer protocol, trivial authenticated mail protocol
z39.50 210/tcp z3950 wais # wais, ansi z39.50, ansi z39.50, niso z39.50 database
z39.50 210/udp z3950 wais # wais, ansi z39.50, ansi z39.50
914c/g 211/tcp # texas instruments 914c/g terminal
914c/g 211/udp # texas instruments 914c/g terminal
anet 212/tcp # atexsstr
anet 212/udp # atexsstr
ipx 213/tcp # ipx
ipx 213/udp # ipx
vmpwscs 214/tcp # vm pwscs
vmpwscs 214/udp # vm pwscs
softpc 215/tcp # insignia solutions
softpc 215/udp # insignia solutions
CAIlic 216/tcp atls # access technology license server, computer associates int'l license server
CAIlic 216/udp atls # access technology license server, computer associates int'l license server
dbase 217/tcp # dbase unix
dbase 217/udp # dbase unix
mpp 218/tcp # netix message posting protocol
mpp 218/udp # netix message posting protocol
uarps 219/tcp # unisys arps
uarps 219/udp # unisys arps
imap3 220/tcp # interactive mail access, interactive mail access protocol v3
imap3 220/udp # protocol v3, interactive mail access protocol v3
fln-spx 221/tcp # berkeley rlogind with spx auth
fln-spx 221/udp # berkeley rlogind with spx auth
rsh-spx 222/tcp # berkeley rshd with spx auth
rsh-spx 222/udp # berkeley rshd with spx auth
cdc 223/tcp # certificate distribution center
cdc 223/udp # certificate distribution center
direct 242/tcp # direct
direct 242/udp # direct
sur-meas 243/tcp # survey measurement
sur-meas 243/udp # survey measurement
dayna 244/tcp # dayna
dayna 244/udp # dayna
link 245/tcp # link
link 245/udp # link
dsp3270 246/tcp # display systems protocol
dsp3270 246/udp # display systems protocol
subntbcst_tftp 247/tcp # subntbcst_tftp
subntbcst_tftp 247/udp # subntbcst_tftp
bhfhs 248/tcp # bhfhs
bhfhs 248/udp # bhfhs
rap 256/tcp # rap
rap 256/udp # rap
set 257/tcp # secure electronic transaction
set 257/udp # secure electronic transaction
yak-chat 258/tcp # yak winsock personal chat
yak-chat 258/udp # yak winsock personal chat
esro-gen 259/tcp # efficient short remote operations
esro-gen 259/udp # efficient short remote operations
openport 260/tcp # openport
openport 260/udp # openport
nsiiops 261/tcp # iiop name service over tls/ssl
nsiiops 261/udp # iiop name service over tls/ssl
arcisdms 262/tcp # arcisdms
arcisdms 262/udp # arcisdms
hdap 263/tcp # hdap
hdap 263/udp # hdap
bgmp 264/tcp # bgmp
bgmp 264/udp # bgmp
http-mgmt 280/tcp # http-mgmt
http-mgmt 280/udp # http-mgmt
personal-link 281/tcp # personal link
personal-link 281/udp # personal link
cableport-ax 282/tcp # cable port a/x
cableport-ax 282/udp # cable port a/x
novastorbakcup 308/tcp # novastor backup
novastorbakcup 308/udp # novastor backup
entrusttime 309/tcp # entrusttime
entrusttime 309/udp # entrusttime
bhmds 310/tcp # bhmds
bhmds 310/udp # bhmds
asip-webadmin 311/tcp # appleshare ip webadmin
asip-webadmin 311/udp # appleshare ip webadmin
vslmp 312/tcp # vslmp
vslmp 312/udp # vslmp
magenta-logic 313/tcp # magenta logic
magenta-logic 313/udp # magenta logic
opalis-robot 314/tcp # opalis robot
opalis-robot 314/udp # opalis robot
dpsi 315/tcp # dpsi
dpsi 315/udp # dpsi
decauth 316/tcp # decauth
decauth 316/udp # decauth
zannet 317/tcp # zannet
zannet 317/udp # zannet
pip 321/tcp # pip
pip 321/udp # pip
pdap 344/tcp # prospero data access protocol
pdap 344/udp # prospero data access protocol
pawserv 345/tcp # perf analysis workbench
pawserv 345/udp # perf analysis workbench
zserv 346/tcp # zebra server
zserv 346/udp # zebra server
fatserv 347/tcp # fatmen server
fatserv 347/udp # fatmen server
csi-sgwp 348/tcp # cabletron management protocol
csi-sgwp 348/udp # cabletron management protocol
mftp 349/tcp # mftp
mftp 349/udp # mftp
matip-type-a 350/tcp # matip type a
matip-type-a 350/udp # matip type a
matip-type-b 351/tcp bhoetty # bhoetty (added 5/21/97), unassigned but widespread use, matip type b or bhoetty, matip type b
matip-type-b 351/udp bhoetty # unassigned but widespread use, matip type b or bhoetty, bhoetty, matip type b
dtag-ste-sb 352/tcp bhoedap4 # dtag, bhoedap4 (added 5/21/97), unassigned but widespread use, dtag, or bhoedap4, dtag (assigned long ago)
dtag-ste-sb 352/udp bhoedap4 # dtag, unassigned but widespread use, dtag, or bhoedap4, bhoedap4
ndsauth 353/tcp # ndsauth
ndsauth 353/udp # ndsauth
bh611 354/tcp # bh611
bh611 354/udp # bh611
datex-asn 355/tcp # datex-asn
datex-asn 355/udp # datex-asn
cloanto-net-1 356/tcp # cloanto net 1
cloanto-net-1 356/udp # cloanto net 1
bhevent 357/tcp # bhevent
bhevent 357/udp # bhevent
shrinkwrap 358/tcp # shrinkwrap
shrinkwrap 358/udp # shrinkwrap
tenebris_nts 359/tcp # tenebris network trace service
tenebris_nts 359/udp # tenebris network trace service
scoi2odialog 360/tcp # scoi2odialog
scoi2odialog 360/udp # scoi2odialog
semantix 361/tcp # semantix
semantix 361/udp # semantix
srssend 362/tcp # srs send
srssend 362/udp # srs send
rsvp_tunnel 363/tcp # rsvp tunnel
rsvp_tunnel 363/udp # rsvp tunnel
aurora-cmgr 364/tcp # aurora cmgr
aurora-cmgr 364/udp # aurora cmgr
dtk 365/tcp # deception tool kit (lame -- see www.all.net), dtk, deception tool kit - fred cohen <fc@all.net>
dtk 365/udp # deception tool kit (lame -- see www.all.net), dtk, deception tool kit - fred cohen <fc@all.net>
odmr 366/tcp # odmr
odmr 366/udp # odmr
mortgageware 367/tcp # mortgageware
mortgageware 367/udp # mortgageware
qbikgdp 368/tcp # qbikgdp
qbikgdp 368/udp # qbikgdp
rpc2portmap 369/tcp # rpc2portmap
rpc2portmap 369/udp # rpc2portmap
codaauth2 370/tcp # codaauth2
codaauth2 370/udp # codaauth2
clearcase 371/tcp # clearcase
clearcase 371/udp # clearcase
ulistproc 372/tcp ulistserv ulistproc # unix listserv, listprocessor
ulistproc 372/udp ulistserv ulistproc # unix listserv, listprocessor
legent-1 373/tcp # legent corporation (now computer associates intl.), legent corporation
legent-1 373/udp # legent corporation (now computer associates intl.), legent corporation
legent-2 374/tcp # legent corporation (now computer associates intl.), legent corporation
legent-2 374/udp # legent corporation (now computer associates intl.), legent corporation
hassle 375/tcp # hassle
hassle 375/udp # hassle
nip 376/tcp # amiga envoy net inquiry prot., amiga envoy network inquiry proto
nip 376/udp # amiga envoy net inquiry prot., amiga envoy network inquiry proto
tnETOS 377/tcp # nec corporation
tnETOS 377/udp # nec corporation
dsETOS 378/tcp # nec corporation
dsETOS 378/udp # nec corporation
is99c 379/tcp # tia/eia/is-99 modem client
is99c 379/udp # tia/eia/is-99 modem client
is99s 380/tcp # tia/eia/is-99 modem server
is99s 380/udp # tia/eia/is-99 modem server
hp-collector 381/tcp # hp performance data collector
hp-collector 381/udp # hp performance data collector
hp-managed-node 382/tcp # hp performance data managed node
hp-managed-node 382/udp # hp performance data managed node
hp-alarm-mgr 383/tcp # hp performance data alarm manager
hp-alarm-mgr 383/udp # hp performance data alarm manager
arns 384/tcp # a remote network server system
arns 384/udp # a remote network server system
ibm-app 385/tcp # ibm application
ibm-app 385/udp # ibm application
asa 386/tcp # asa message router object def.
asa 386/udp # asa message router object def.
aurp 387/tcp # appletalk update-based routing pro.
aurp 387/udp # appletalk update-based routing pro.
unidata-ldm 388/tcp # unidata ldm version 4
unidata-ldm 388/udp # unidata ldm version 4
ldap 389/tcp # lightweight directory access protocol
ldap 389/udp # lightweight directory access protocol
uis 390/tcp # uis
uis 390/udp # uis
synotics-relay 391/tcp # synoptics snmp relay port
synotics-relay 391/udp # synoptics snmp relay port
synotics-broker 392/tcp # synoptics port broker port
synotics-broker 392/udp # synoptics port broker port
dis 393/tcp # data interpretation system
dis 393/udp # data interpretation system
embl-ndt 394/tcp # embl nucleic data transfer
embl-ndt 394/udp # embl nucleic data transfer
netcp 395/tcp # netscout control protocol
netcp 395/udp # netscout control protocol
netware-ip 396/tcp # novell netware over ip
netware-ip 396/udp # novell netware over ip
mptn 397/tcp # multi protocol trans. net.
mptn 397/udp # multi protocol trans. net.
kryptolan 398/tcp # kryptolan
kryptolan 398/udp # kryptolan
iso-tsap-c2 399/tcp # iso-tsap class 2, iso transport class 2 non-control over tcp
iso-tsap-c2 399/udp # iso-tsap class 2, iso transport class 2 non-control over tcp
work-sol 400/tcp # workstation solutions
work-sol 400/udp # workstation solutions
ups 401/tcp # uninterruptible power supply
ups 401/udp # uninterruptible power supply
genie 402/tcp # genie protocol
genie 402/udp # genie protocol
decap 403/tcp # decap
decap 403/udp # decap
nced 404/tcp # nced
nced 404/udp # nced
ncld 405/tcp # ncld
ncld 405/udp # ncld
imsp 406/tcp # interactive mail support protocol
imsp 406/udp # interactive mail support protocol
timbuktu 407/tcp # timbuktu
timbuktu 407/udp # timbuktu
prm-sm 408/tcp # prospero resource manager sys. man.
prm-sm 408/udp # prospero resource manager sys. man.
prm-nm 409/tcp # prospero resource manager node man.
prm-nm 409/udp # prospero resource manager node man.
decladebug 410/tcp # decladebug remote debug protocol
decladebug 410/udp # decladebug remote debug protocol
rmt 411/tcp # remote mt protocol
rmt 411/udp # remote mt protocol
synoptics-trap 412/tcp # trap convention port
synoptics-trap 412/udp # trap convention port
smsp 413/tcp # smsp
smsp 413/udp # smsp
infoseek 414/tcp # infoseek
infoseek 414/udp # infoseek
bnet 415/tcp # bnet
bnet 415/udp # bnet
silverplatter 416/tcp # silverplatter
silverplatter 416/udp # silverplatter
onmux 417/tcp # onmux
onmux 417/udp # onmux
hyper-g 418/tcp # hyper-g
hyper-g 418/udp # hyper-g
ariel1 419/tcp # ariel
ariel1 419/udp # ariel
smpte 420/tcp # smpte
smpte 420/udp # smpte
ariel2 421/tcp # ariel
ariel2 421/udp # ariel
ariel3 422/tcp # ariel
ariel3 422/udp # ariel
opc-job-start 423/tcp # ibm operations planning and control start
opc-job-start 423/udp # ibm operations planning and control start
opc-job-track 424/tcp # ibm operations planning and control track
opc-job-track 424/udp # ibm operations planning and control track
icad-el 425/tcp # icad
icad-el 425/udp # icad
smartsdp 426/tcp # smartsdp
smartsdp 426/udp # smartsdp
svrloc 427/tcp # server location
svrloc 427/udp # server location
ocs_cmu 428/tcp # ocs_cmu
ocs_cmu 428/udp # ocs_cmu
ocs_amu 429/tcp # ocs_amu
ocs_amu 429/udp # ocs_amu
utmpsd 430/tcp # utmpsd
utmpsd 430/udp # utmpsd
utmpcd 431/tcp # utmpcd
utmpcd 431/udp # utmpcd
iasd 432/tcp # iasd
iasd 432/udp # iasd
nnsp 433/tcp usenet # network news transfer, usenet, network news transfer, nnsp
nnsp 433/udp # nnsp
mobileip-agent 434/tcp # mobileip-agent
mobileip-agent 434/udp # mobileip-agent
mobilip-mn 435/tcp # mobilip-mn
mobilip-mn 435/udp # mobilip-mn
dna-cml 436/tcp # dna-cml
dna-cml 436/udp # dna-cml
comscm 437/tcp # comscm
comscm 437/udp # comscm
dsfgw 438/tcp # dsfgw
dsfgw 438/udp # dsfgw
dasp 439/tcp # dasp thomas obermair
dasp 439/udp # dasp tommy@inlab.m.eunet.de
sgcp 440/tcp # sgcp
sgcp 440/udp # sgcp
decvms-sysmgt 441/tcp # decvms-sysmgt
decvms-sysmgt 441/udp # decvms-sysmgt
cvc_hostd 442/tcp # cvc_hostd
cvc_hostd 442/udp # cvc_hostd
https 443/tcp # secure http (ssl), http protocol over tls/ssl
https 443/udp # http protocol over tls/ssl
snpp 444/tcp # simple network paging protocol
snpp 444/udp # simple network paging protocol
microsoft-ds 445/tcp # microsoft-ds
microsoft-ds 445/udp # microsoft-ds
ddm-rdb 446/tcp # ddm-rdb
ddm-rdb 446/udp # ddm-rdb
ddm-dfm 447/tcp # ddm-rfm
ddm-dfm 447/udp # ddm-rfm
ddm-ssl 448/tcp ddm-byte # ddm-ssl, ddm-byte
ddm-ssl 448/udp ddm-byte # ddm-ssl, ddm-byte
as-servermap 449/tcp # as server mapper
as-servermap 449/udp # as server mapper
tserver 450/tcp # tserver
tserver 450/udp # tserver
sfs-smp-net 451/tcp # cray network semaphore server
sfs-smp-net 451/udp # cray network semaphore server
sfs-config 452/tcp # cray sfs config server
sfs-config 452/udp # cray sfs config server
creativeserver 453/tcp # creativeserver
creativeserver 453/udp # creativeserver
contentserver 454/tcp # contentserver
contentserver 454/udp # contentserver
creativepartnr 455/tcp # creativepartnr
creativepartnr 455/udp # creativepartnr
macon-tcp 456/tcp # macon-tcp
macon-udp 456/udp # macon-udp
scohelp 457/tcp # scohelp
scohelp 457/udp # scohelp
appleqtc 458/tcp # apple quick time
appleqtc 458/udp # apple quick time
ampr-rcmd 459/tcp # ampr-rcmd
ampr-rcmd 459/udp # ampr-rcmd
skronk 460/tcp # skronk
skronk 460/udp # skronk
datasurfsrv 461/tcp # datarampsrv
datasurfsrv 461/udp # datarampsrv
datasurfsrvsec 462/tcp # datarampsrvsec
datasurfsrvsec 462/udp # datarampsrvsec
alpes 463/tcp # alpes
alpes 463/udp # alpes
kpasswd 464/tcp kpasswd5 # kerberos (v5), kpasswd
kpasswd 464/udp kpasswd5 # kerberos (v5), kpasswd
smtps 465/tcp # smtp protocol over tls/ssl (was ssmtp)
smtps 465/udp # smtp protocol over tls/ssl (was ssmtp)
digital-vrc 466/tcp # digital-vrc
digital-vrc 466/udp # digital-vrc
mylex-mapd 467/tcp # mylex-mapd
mylex-mapd 467/udp # mylex-mapd
photuris 468/tcp # proturis, photuris key management
photuris 468/udp # proturis
rcp 469/tcp # radio control protocol
rcp 469/udp # radio control protocol
scx-proxy 470/tcp # scx-proxy
scx-proxy 470/udp # scx-proxy
mondex 471/tcp # mondex
mondex 471/udp # mondex
ljk-login 472/tcp # ljk-login
ljk-login 472/udp # ljk-login
hybrid-pop 473/tcp # hybrid-pop
hybrid-pop 473/udp # hybrid-pop
tn-tl-w1 474/tcp # tn-tl-w1
tn-tl-w2 474/udp # tn-tl-w2
tcpnethaspsrv 475/tcp # tcpnethaspsrv
tcpnethaspsrv 475/udp # tcpnethaspsrv
tn-tl-fd1 476/tcp # tn-tl-fd1
tn-tl-fd1 476/udp # tn-tl-fd1
ss7ns 477/tcp # ss7ns
ss7ns 477/udp # ss7ns
spsc 478/tcp # spsc
spsc 478/udp # spsc
iafserver 479/tcp # iafserver
iafserver 479/udp # iafserver
iafdbase 480/tcp loadsrv # iafdbase
iafdbase 480/udp # iafdbase
ph 481/tcp dvs # ph service
ph 481/udp # ph service
bgs-nsi 482/tcp # bgs-nsi
bgs-nsi 482/udp xlog # bgs-nsi
ulpnet 483/tcp # ulpnet
ulpnet 483/udp # ulpnet
integra-sme 484/tcp # integra software management environment
integra-sme 484/udp # integra software management environment
powerburst 485/tcp # air soft power burst
powerburst 485/udp # air soft power burst
avian 486/tcp sstats # avian
avian 486/udp # avian
saft 487/tcp # saft simple asynchronous file transfer
saft 487/udp # saft simple asynchronous file transfer
gss-http 488/tcp # gss-http
gss-http 488/udp # gss-http
nest-protocol 489/tcp # nest-protocol
nest-protocol 489/udp # nest-protocol
micom-pfs 490/tcp # micom-pfs
micom-pfs 490/udp # micom-pfs
go-login 491/tcp # go-login
go-login 491/udp # go-login
ticf-1 492/tcp # transport independent convergence for fna
ticf-1 492/udp # transport independent convergence for fna
ticf-2 493/tcp # transport independent convergence for fna
ticf-2 493/udp # transport independent convergence for fna
pov-ray 494/tcp # pov-ray
pov-ray 494/udp # pov-ray
intecourier 495/tcp # intecourier
intecourier 495/udp # intecourier
pim-rp-disc 496/tcp # pim-rp-disc
pim-rp-disc 496/udp # pim-rp-disc
dantz 497/tcp # dantz
dantz 497/udp # dantz
siam 498/tcp # siam
siam 498/udp # siam
iso-ill 499/tcp # iso ill protocol
iso-ill 499/udp # iso ill protocol
isakmp 500/tcp # isakmp
isakmp 500/udp # isakmp key management, isakmp
stmf 501/tcp # stmf
stmf 501/udp # stmf
asa-appl-proto 502/tcp # asa-appl-proto
asa-appl-proto 502/udp # asa-appl-proto
intrinsa 503/tcp # intrinsa
intrinsa 503/udp # intrinsa
citadel 504/tcp # citadel
citadel 504/udp # citadel
mailbox-lm 505/tcp # mailbox-lm
mailbox-lm 505/udp # mailbox-lm
ohimsrv 506/tcp # ohimsrv
ohimsrv 506/udp # ohimsrv
crs 507/tcp # crs
crs 507/udp # crs
xvttp 508/tcp # xvttp
xvttp 508/udp # xvttp
snare 509/tcp # snare
snare 509/udp # snare
fcp 510/tcp # firstclass protocol
fcp 510/udp # firstclass protocol
passgo 511/tcp # passgo
passgo 511/udp # passgo
exec 512/tcp # remote execution, remote process execution;, bsd rexecd(8)
comsat 512/udp comsat biff # biff the dog, used by mail system to notify users, comsat
login 513/tcp # bsd rlogind(8), remote login a la telnet;, remote login
who 513/udp whod # remote who, maintains data bases showing who's, bsd rwhod(8)
shell 514/tcp cmd # like exec, but automatic, bsd rshd(8), remote command shell, no passwords used, cmd
syslog 514/udp # system logger, bsd syslogd(8)
printer 515/tcp spooler # line printer spooler, spooler, spooler (lpd)
printer 515/udp spooler # spooler, spooler (lpd)
videotex 516/tcp # videotex
videotex 516/udp # videotex
talk 517/tcp # like tenex link, but across
talk 517/udp # talk protocols, like tenex link, but across, bsd talkd(8)
ntalk 518/tcp # (talkd)
ntalk 518/udp # (talkd)
utime 519/tcp unixtime # unixtime
utime 519/udp unixtime # unixtime
efs 520/tcp # extended file name server
router 520/udp router routed route # local routing process (on site);, router routed -- rip, rip
ripng 521/tcp efs # ripng, extended file name server
ripng 521/udp # ripng
ulp 522/tcp # ulp
ulp 522/udp # ulp
ibm-db2 523/tcp # ibm-db2
ibm-db2 523/udp # ibm-db2
ncp 524/tcp # ncp
ncp 524/udp # ncp
timed 525/tcp timeserver # timeserver
timed 525/udp timeserver # timeserver
tempo 526/tcp newdate # newdate
tempo 526/udp newdate # newdate
stx 527/tcp # stock ixchange
stx 527/udp # stock ixchange
custix 528/tcp # customer ixchange
custix 528/udp # customer ixchange
irc-serv 529/tcp # irc-serv
irc-serv 529/udp # irc-serv
courier 530/tcp rpc # rpc, experimental
courier 530/udp rpc # rpc
conference 531/tcp chat # chat
conference 531/udp chat # chat
netnews 532/tcp readnews # readnews
netnews 532/udp readnews # readnews
netwall 533/tcp # for emergency broadcasts
netwall 533/udp # -for emergency broadcasts, for emergency broadcasts
mm-admin 534/tcp # megamedia admin
mm-admin 534/udp # megamedia admin
iiop 535/tcp # iiop
iiop 535/udp # iiop
opalis-rdv 536/tcp # opalis-rdv
opalis-rdv 536/udp # opalis-rdv
nmsp 537/tcp # networked media streaming protocol
nmsp 537/udp # networked media streaming protocol
gdomap 538/tcp # gdomap
gdomap 538/udp # gdomap
apertus-ldp 539/tcp # apertus technologies load determination
apertus-ldp 539/udp # apertus technologies load determination
uucp 540/tcp uucpd # uucp daemon, uucpd
uucp 540/udp uucpd # uucpd
uucp-rlogin 541/tcp rdistd rdist # rdist daemon, uucp-rlogin
uucp-rlogin 541/udp # uucp-rlogin
commerce 542/tcp # commerce
commerce 542/udp # commerce
klogin 543/tcp # kerberos (v4/v5), kerberos authenticated rlogin, kerberized `rlogin' (v5), kerberos `rlogin'
klogin 543/udp # kerberos (v4/v5)
kshell 544/tcp krcmd # kerberos `rsh', krcmd, kerberos (v4/v5), krcmd kerberos (v4/v5), kerberized `rsh' (v5), and remote shell
kshell 544/udp krcmd # krcmd, kerberos (v4/v5), krcmd kerberos (v4/v5)
appleqtcsrvr 545/tcp ekshell # kerberos encrypted remote shell -kfall, appleqtcsrvr
appleqtcsrvr 545/udp # appleqtcsrvr
dhcpv6-client 546/tcp # dhcpv6 client
dhcpv6-client 546/udp # dhcpv6 client
dhcpv6-server 547/tcp # dhcpv6 server
dhcpv6-server 547/udp # dhcpv6 server
afpovertcp 548/tcp # appleshareip protocol, afp over tcp
afpovertcp 548/udp # appleshareip protocol, afp over tcp
idfp 549/tcp # idfp
idfp 549/udp # idfp
new-rwho 550/tcp new-who # new-who
new-rwho 550/udp new-who # new-who, experimental
cybercash 551/tcp # cybercash
cybercash 551/udp # cybercash
deviceshare 552/tcp # deviceshare
deviceshare 552/udp # deviceshare
pirp 553/tcp # pirp
pirp 553/udp # pirp
rtsp 554/tcp # real time stream control protocol
rtsp 554/udp # real time stream control protocol
dsf 555/tcp
dsf 555/udp
remotefs 556/tcp rfs_server rfs # rfs server, brunhoff remote filesystem, rfs, rfs_server, brunhoff remote filesystem
remotefs 556/udp rfs_server rfs # rfs server, brunhoff remote filesystem, rfs, rfs_server, brunhoff remote filesystem
openvms-sysipc 557/tcp # openvms-sysipc
openvms-sysipc 557/udp # openvms-sysipc
sdnskmp 558/tcp # sdnskmp
sdnskmp 558/udp # sdnskmp
teedtap 559/tcp # teedtap
teedtap 559/udp # teedtap
rmonitor 560/tcp rmonitord # rmonitord
rmonitor 560/udp rmonitord # experimental, rmonitord
monitor 561/tcp
monitor 561/udp # experimental
chshell 562/tcp chcmd # chcmd
chshell 562/udp chcmd # chcmd
nntps 563/tcp snews snntp # nntp protocol over tls/ssl (was snntp), nntp protocol over tls/ssl
nntps 563/udp snews snntp # nntp protocol over tls/ssl (was snntp), nntp protocol over tls/ssl
9pfs 564/tcp # plan 9 file service
9pfs 564/udp # plan 9 file service
whoami 565/tcp # whoami
whoami 565/udp # whoami
streettalk 566/tcp # streettalk
streettalk 566/udp # streettalk
banyan-rpc 567/tcp # banyan-rpc
banyan-rpc 567/udp # banyan-rpc
ms-shuttle 568/tcp # microsoft shuttle
ms-shuttle 568/udp # microsoft shuttle
ms-rome 569/tcp # microsoft rome
ms-rome 569/udp # microsoft rome
meter 570/tcp # demon
meter 570/udp # demon
meter 571/tcp umeter # udemon
meter 571/udp umeter # udemon
sonar 572/tcp # sonar
sonar 572/udp # sonar
banyan-vip 573/tcp # banyan-vip
banyan-vip 573/udp # banyan-vip
ftp-agent 574/tcp # ftp software agent system
ftp-agent 574/udp # ftp software agent system
vemmi 575/tcp # vemmi
vemmi 575/udp # vemmi
ipcd 576/tcp # ipcd
ipcd 576/udp # ipcd
vnas 577/tcp # vnas
vnas 577/udp # vnas
ipdd 578/tcp # ipdd
ipdd 578/udp # ipdd
decbsrv 579/tcp # decbsrv
decbsrv 579/udp # decbsrv
sntp-heartbeat 580/tcp # sntp heartbeat
sntp-heartbeat 580/udp # sntp heartbeat
bdp 581/tcp # bundle discovery protocol
bdp 581/udp # bundle discovery protocol
scc-security 582/tcp # scc security
scc-security 582/udp # scc security
philips-vc 583/tcp # philips video-conferencing
philips-vc 583/udp # philips video-conferencing
keyserver 584/tcp # key server
keyserver 584/udp # key server
imap4-ssl 585/tcp # imap4+ssl (use of 585 is not recommended,, imap4+ssl (use 993 instead)
imap4-ssl 585/udp # use 993 instead), imap4+ssl (use 993 instead)
password-chg 586/tcp # password change
password-chg 586/udp # password change
submission 587/tcp # submission
submission 587/udp # submission
cal 588/tcp # cal
cal 588/udp # cal
eyelink 589/tcp # eyelink
eyelink 589/udp # eyelink
tns-cml 590/tcp # tns cml
tns-cml 590/udp # tns cml
http-alt 591/tcp # filemaker, inc. - http alternate, filemaker, inc. - http alternate (see port 80)
http-alt 591/udp # filemaker, inc. - http alternate, filemaker, inc. - http alternate (see port 80)
eudora-set 592/tcp # eudora set
eudora-set 592/udp # eudora set
http-rpc-epmap 593/tcp # http rpc ep map
http-rpc-epmap 593/udp # http rpc ep map
tpip 594/tcp # tpip
tpip 594/udp # tpip
cab-protocol 595/tcp # cab protocol
cab-protocol 595/udp # cab protocol
smsd 596/tcp # smsd
smsd 596/udp # smsd
ptcnameservice 597/tcp # ptc name service
ptcnameservice 597/udp # ptc name service
sco-websrvrmg3 598/tcp # sco web server manager 3
sco-websrvrmg3 598/udp # sco web server manager 3
acp 599/tcp # aeolon core protocol
acp 599/udp # aeolon core protocol
ipcserver 600/tcp pcserver # sun ipc server, ecd integrated pc board srvr
ipcserver 600/udp # sun ipc server
urm 606/tcp # cray unified resource manager
urm 606/udp # cray unified resource manager
nqs 607/tcp # nqs
nqs 607/udp # nqs
sift-uft 608/tcp # sender-initiated/unsolicited file transfer
sift-uft 608/udp # sender-initiated/unsolicited file transfer
npmp-trap 609/tcp # npmp-trap
npmp-trap 609/udp # npmp-trap
npmp-local 610/tcp # npmp-local
npmp-local 610/udp # npmp-local
npmp-gui 611/tcp # npmp-gui
npmp-gui 611/udp # npmp-gui
hmmp-ind 612/tcp # hmmp indication
hmmp-ind 612/udp # hmmp indication
hmmp-op 613/tcp # hmmp operation
hmmp-op 613/udp # hmmp operation
sshell 614/tcp # sslshell
sshell 614/udp # sslshell
sco-inetmgr 615/tcp # internet configuration manager
sco-inetmgr 615/udp # internet configuration manager
sco-sysmgr 616/tcp # sco system administration server
sco-sysmgr 616/udp # sco system administration server
sco-dtmgr 617/tcp # sco desktop administration server
sco-dtmgr 617/udp # sco desktop administration server
dei-icda 618/tcp # dei-icda
dei-icda 618/udp # dei-icda
digital-evm 619/tcp # digital evm
digital-evm 619/udp # digital evm
sco-websrvrmgr 620/tcp # sco webserver manager
sco-websrvrmgr 620/udp # sco webserver manager
escp-ip 621/tcp # escp
escp-ip 621/udp # escp
collaborator 622/tcp # collaborator
collaborator 622/udp # collaborator
aux_bus_shunt 623/tcp # aux bus shunt
aux_bus_shunt 623/udp # aux bus shunt
cryptoadmin 624/tcp # crypto admin
cryptoadmin 624/udp # crypto admin
dec_dlm 625/tcp # dec dlm
dec_dlm 625/udp # dec dlm
asia 626/tcp # asia
asia 626/udp # asia
passgo-tivoli 627/tcp # passgo tivoli
passgo-tivoli 627/udp # passgo tivoli
qmqp 628/tcp # qmqp
qmqp 628/udp # qmqp
3com-amp3 629/tcp # 3com amp3
3com-amp3 629/udp # 3com amp3
rda 630/tcp # rda
rda 630/udp # rda
ipp 631/tcp # ipp (internet printing protocol)
ipp 631/udp # ipp (internet printing protocol)
bmpp 632/tcp # bmpp
bmpp 632/udp # bmpp
servstat 633/tcp # service status update (sterling software)
servstat 633/udp # service status update (sterling software)
ginad 634/tcp # ginad
ginad 634/udp # ginad
rlzdbase 635/tcp # rlz dbase
rlzdbase 635/udp mount # nfs mount service, rlz dbase
ldaps 636/tcp # ldap protocol over tls/ssl (was sldap)
ldaps 636/udp # ldap protocol over tls/ssl (was sldap)
lanserver 637/tcp # lanserver
lanserver 637/udp # lanserver
mcns-sec 638/tcp # mcns-sec
mcns-sec 638/udp # mcns-sec
msdp 639/tcp # msdp
msdp 639/udp # msdp
entrust-sps 640/tcp # entrust-sps
entrust-sps 640/udp pcnfs # entrust-sps, pc-nfs dos authentication
repcmd 641/tcp # repcmd
repcmd 641/udp # repcmd
esro-emsdp 642/tcp # esro-emsdp v1.3
esro-emsdp 642/udp # esro-emsdp v1.3
sanity 643/tcp # sanity
sanity 643/udp # sanity
dwr 644/tcp # dwr
dwr 644/udp # dwr
pssc 645/tcp # pssc
pssc 645/udp # pssc
ldp 646/tcp # ldp
ldp 646/udp # ldp
dhcp-failover 647/tcp # dhcp failover
dhcp-failover 647/udp # dhcp failover
rrp 648/tcp # registry registrar protocol (rrp)
rrp 648/udp # registry registrar protocol (rrp)
aminet 649/tcp # aminet
aminet 649/udp # aminet
obex 650/tcp # obex
obex 650/udp bwnfs # bw-nfs dos authentication, obex
ieee-mms 651/tcp # ieee mms
ieee-mms 651/udp # ieee mms
udlr-dtcp 652/tcp # udlr_dtcp
udlr-dtcp 652/udp # udlr_dtcp
mdqs 666/tcp doom # doom id software
mdqs 666/udp doom # doom id software
disclose 667/tcp # campaign contribution disclosures - sdr technologies
disclose 667/udp # campaign contribution disclosures - sdr technologies
mecomm 668/tcp # mecomm
mecomm 668/udp # mecomm
meregister 669/tcp # meregister
meregister 669/udp # meregister
vacdsm-sws 670/tcp # vacdsm-sws
vacdsm-sws 670/udp # vacdsm-sws
vacdsm-app 671/tcp # vacdsm-app
vacdsm-app 671/udp # vacdsm-app
vpps-qua 672/tcp # vpps-qua
vpps-qua 672/udp # vpps-qua
cimplex 673/tcp # cimplex
cimplex 673/udp # cimplex
acap 674/tcp # acap
acap 674/udp # acap
dctp 675/tcp # dctp
dctp 675/udp # dctp
vpps-via 676/tcp # vpps via
vpps-via 676/udp # vpps via
vpp 677/tcp # virtual presence protocol
vpp 677/udp # virtual presence protocol
ggf-ncp 678/tcp # gnu gereration foundation ncp
ggf-ncp 678/udp # gnu generation foundation ncp
mrm 679/tcp # mrm
mrm 679/udp # mrm
entrust-aaas 680/tcp # entrust-aaas
entrust-aaas 680/udp # entrust-aaas
entrust-aams 681/tcp # entrust-aams
entrust-aams 681/udp # entrust-aams
xfr 682/tcp # xfr
xfr 682/udp # xfr
corba-iiop 683/tcp # corba iiop
corba-iiop 683/udp # corba iiop
corba-iiop-ssl 684/tcp # corba iiop ssl
corba-iiop-ssl 684/udp # corba iiop ssl
mdc-portmapper 685/tcp # mdc port mapper
mdc-portmapper 685/udp # mdc port mapper
hcp-wismar 686/tcp # hardware control protocol wismar
hcp-wismar 686/udp # hardware control protocol wismar
asipregistry 687/tcp # asipregistry
asipregistry 687/udp # asipregistry
elcsd 704/tcp # errlog copy/server daemon
elcsd 704/udp # errlog copy/server daemon
agentx 705/tcp # agentx
agentx 705/udp # agentx
borland-dsj 707/tcp # borland dsj
borland-dsj 707/udp # borland dsj
entrust-kmsh 709/tcp entrustmanager # entrustmanager - nortel des auth network see 389/tcp, entrustmanager, entrust key management service handler
entrust-kmsh 709/udp entrustmanager # entrustmanager - nortel des auth network see 389/tcp, entrustmanager, entrust key management service handler
entrust-ash 710/tcp # entrust administration service handler
entrust-ash 710/udp # entrust administration service handler
cisco-tdp 711/tcp # cisco tdp
cisco-tdp 711/udp # cisco tdp
netviewdm1 729/tcp # ibm netview dm/6000 server/client
netviewdm1 729/udp # ibm netview dm/6000 server/client
netviewdm2 730/tcp # ibm netview dm/6000 send/tcp
netviewdm2 730/udp # ibm netview dm/6000 send/tcp
netviewdm3 731/tcp # ibm netview dm/6000 receive/tcp
netviewdm3 731/udp # ibm netview dm/6000 receive/tcp
netcp 740/tcp # netscout control protocol
netcp 740/udp # netscout control protocol
netgw 741/tcp # netgw
netgw 741/udp # netgw
netrcs 742/tcp # network based rev. cont. sys.
netrcs 742/udp # network based rev. cont. sys.
flexlm 744/tcp # flexible license manager
flexlm 744/udp # flexible license manager
fujitsu-dev 747/tcp # fujitsu device control
fujitsu-dev 747/udp # fujitsu device control
ris-cm 748/tcp # russell info sci calendar manager
ris-cm 748/udp # russell info sci calendar manager
kerberos-adm 749/tcp # kerberos administration, kerberos `kadmin' (v5), kerberos 5 admin/changepw
kerberos-adm 749/udp # kerberos administration, kerberos 5 admin/changepw
rfile 750/tcp kerberos4 kerberos-iv kdc kerberos # kerberos (v4), kdc kerberos (v4), kerberos (server) tcp, kerberos key server, kerberos authentication--tdp
loadav 750/udp kerberos4 kerberos-iv kdc kerberos # kerberos authentication--udp, kerberos (v4), kdc kerberos (v4), kerberos version iv, kerberos key server, kerberos (server) udp
pump 751/tcp kerberos_master kerberos-master # kerberos `kadmin' (v4), kerberos admin server tcp, kerberos authentication
pump 751/udp kerberos_master kerberos-master # kerberos `kadmin' (v4), kerberos authentication, kerberos admin server udp
qrh 752/tcp
qrh 752/udp
rrh 753/tcp
rrh 753/udp
tell 754/tcp krb5_prop krb_prop # kerberos/v5 server propagation, send, kerberos slave propagation
tell 754/udp # send
nlogin 758/tcp
nlogin 758/udp
con 759/tcp
con 759/udp
ns 760/tcp kreg krbupdate # kerberos registration, bsd kerberos registration, kerberos (v4) registration, kreg kerberos (v4) registration
ns 760/udp
rxe 761/tcp kpasswd kpwd # kerberos "passwd", kpwd kerberos (v4) "passwd", kerberos (v4) "passwd", bsd kerberos `passwd'
rxe 761/udp
quotad 762/tcp
quotad 762/udp
cycleserv 763/tcp
cycleserv 763/udp
omserv 764/tcp
omserv 764/udp
webster 765/tcp # network dictionary
webster 765/udp
phonebook 767/tcp # phone
phonebook 767/udp # phone
vid 769/tcp
vid 769/udp
cadlock 770/tcp
cadlock 770/udp
rtip 771/tcp
rtip 771/udp
cycleserv2 772/tcp
cycleserv2 772/udp
submit 773/tcp
notify 773/udp
rpasswd 774/tcp
acmaint_dbd 774/udp
entomb 775/tcp
acmaint_transd 775/udp
wpages 776/tcp
wpages 776/udp
multiling-http 777/tcp # multiling http
multiling-http 777/udp # multiling http
wpgs 780/tcp
wpgs 780/udp
hp-collector 781/tcp # hp performance data collector
hp-collector 781/udp # hp performance data collector
hp-managed-node 782/tcp # hp performance data managed node
hp-managed-node 782/udp # hp performance data managed node
hp-alarm-mgr 783/tcp # hp performance data alarm manager
hp-alarm-mgr 783/udp # hp performance data alarm manager
concert 786/tcp # concert
concert 786/udp # concert
qsc 787/tcp # qsc
qsc 787/udp # qsc
mdbs_daemon 800/tcp
mdbs_daemon 800/udp
device 801/tcp
device 801/udp
fcp-udp 810/tcp # fcp
fcp-udp 810/udp # fcp datagram
itm-mcell-s 828/tcp # itm-mcell-s
itm-mcell-s 828/udp # itm-mcell-s
pkix-3-ca-ra 829/tcp # pkix-3 ca/ra
pkix-3-ca-ra 829/udp # pkix-3 ca/ra
supfilesrv 871/tcp # sup server, for sup
rsync 873/tcp # rsync server, rsync
rsync 873/udp # rsync
iclcnet-locate 886/tcp # icl conetion locate server
iclcnet-locate 886/udp # icl conetion locate server
iclcnet_svinfo 887/tcp # icl conetion server info
iclcnet_svinfo 887/udp # icl conetion server info
accessbuilder 888/tcp cddb cddbp # accessbuilder, audio cd database, cd database protocol, or audio cd database
accessbuilder 888/udp # accessbuilder
omginitialrefs 900/tcp # omg initial refs
omginitialrefs 900/udp # omg initial refs
swat 901/tcp # add swat service used via inetd
xact-backup 911/tcp # xact-backup
xact-backup 911/udp # xact-backup
ftps-data 989/tcp # ftp protocol, data, over tls/ssl
ftps-data 989/udp # ftp protocol, data, over tls/ssl
ftps 990/tcp # ftp protocol, control, over tls/ssl
ftps 990/udp # ftp protocol, control, over tls/ssl
nas 991/tcp # netnews administration system
nas 991/udp # netnews administration system
telnets 992/tcp # telnet protocol over tls/ssl
telnets 992/udp # telnet protocol over tls/ssl
imaps 993/tcp simap # imap over ssl, imap4 protocol over tls/ssl
imaps 993/udp # imap4 protocol over tls/ssl
ircs 994/tcp # irc protocol over tls/ssl
ircs 994/udp # irc protocol over tls/ssl
pop3s 995/tcp # pop3 protocol over tls/ssl (was spop3)
pop3s 995/udp # pop3 protocol over tls/ssl (was spop3)
vsinet 996/tcp xtreelic # vsinet, xtree license server
vsinet 996/udp # vsinet
maitrd 997/tcp
maitrd 997/udp
busboy 998/tcp
puparp 998/udp
garcon 999/tcp puprouter
applix 999/udp puprouter # applix ac
cadlock 1000/tcp
ock 1000/udp
ufsd 1008/tcp ufsd # ufsd # ufs-aware server, ufs-aware server
ufsd 1008/udp ufsd
surf 1010/tcp # surf
surf 1010/udp # surf
blackjack 1025/tcp listen # network blackjack, listener rfs remote_file_sharing
blackjack 1025/udp # network blackjack
nterm 1026/tcp # remote_login network_terminal
iad1 1030/tcp # bbn iad
iad1 1030/udp # bbn iad
iad2 1031/tcp # bbn iad
iad2 1031/udp # bbn iad
iad3 1032/tcp # bbn iad
iad3 1032/udp # bbn iad
neod1 1047/tcp # sun's neo object request broker
neod1 1047/udp # sun's neo object request broker
neod2 1048/tcp # sun's neo object request broker
neod2 1048/udp # sun's neo object request broker
nim 1058/tcp # nim
nim 1058/udp # nim
nimreg 1059/tcp # nimreg
nimreg 1059/udp # nimreg
instl_boots 1067/tcp # installation bootstrap proto. serv.
instl_boots 1067/udp # installation bootstrap proto. serv.
instl_bootc 1068/tcp # installation bootstrap proto. cli.
instl_bootc 1068/udp # installation bootstrap proto. cli.
socks 1080/tcp # socks
socks 1080/udp # socks
ansoft-lm-1 1083/tcp # anasoft license manager
ansoft-lm-1 1083/udp # anasoft license manager
ansoft-lm-2 1084/tcp # anasoft license manager
ansoft-lm-2 1084/udp # anasoft license manager
sunclustermgr 1097/tcp # sun cluster manager
sunclustermgr 1097/udp # sun cluster manager
rmiactivation 1098/tcp # rmi activation
rmiactivation 1098/udp # rmi activation
rmiregistry 1099/tcp # rmi registry
rmiregistry 1099/udp # rmi registry
xaudio 1103/tcp # xaserver # x audio server
kpop 1109/tcp # pop with kerberos
nfsd-status 1110/tcp # cluster status info
nfsd-keepalive 1110/udp # client status info
lmsocialserver 1111/tcp # lm social server
lmsocialserver 1111/udp # lm social server
msql 1112/tcp # mini-sql server
murray 1123/tcp # murray
murray 1123/udp # murray
supfiledbg 1127/tcp # sup debugging, for sup
nfa 1155/tcp # network file access
nfa 1155/udp # network file access
health-polling 1161/tcp # health polling
health-polling 1161/udp # health polling
health-trap 1162/tcp # health trap
health-trap 1162/udp # health trap
phone 1167/udp # conference calling
skkserv 1178/tcp # skk (kanji input)
mc-client 1180/tcp # millicent client proxy
mc-client 1180/udp # millicent client proxy
lupa 1212/tcp # lupa
lupa 1212/udp # lupa
nerv 1222/tcp # sni r&d network
nerv 1222/udp # sni r&d network
search-agent 1234/tcp # infoseek search agent
search-agent 1234/udp # infoseek search agent
nmsd 1239/tcp # nmsd
nmsd 1239/udp # nmsd
msg 1241/tcp # remote message server
hermes 1248/tcp
hermes 1248/udp
h323hostcallsc 1300/tcp # h323 host call secure
h323hostcallsc 1300/udp # h323 host call secure
bmc_patroldb 1313/tcp # bmc_patroldb
bmc-patroldb 1313/udp # bmc_patroldb
pdps 1314/tcp # photoscript distributed printing system
pdps 1314/udp # photoscript distributed printing system
pip 1321/tcp # pip
pip 1321/udp # pip
digital-notary 1335/tcp # digital notary protocol
digital-notary 1335/udp # digital notary protocol
vpjp 1345/tcp # vpjp
vpjp 1345/udp # vpjp
alta-ana-lm 1346/tcp # alta analytics license manager
alta-ana-lm 1346/udp # alta analytics license manager
bbn-mmc 1347/tcp # multi media conferencing
bbn-mmc 1347/udp # multi media conferencing
bbn-mmx 1348/tcp # multi media conferencing
bbn-mmx 1348/udp # multi media conferencing
sbook 1349/tcp # registration network protocol
sbook 1349/udp # registration network protocol
editbench 1350/tcp # registration network protocol
editbench 1350/udp # registration network protocol
equationbuilder 1351/tcp # digital tool works (mit)
equationbuilder 1351/udp # digital tool works (mit)
lotusnote 1352/tcp # lotus note
lotusnote 1352/udp # lotus note
relief 1353/tcp # relief consulting
relief 1353/udp # relief consulting
rightbrain 1354/tcp # rightbrain software
rightbrain 1354/udp # rightbrain software
intuitive-edge 1355/tcp # intuitive edge
intuitive-edge 1355/udp # intuitive edge
cuillamartin 1356/tcp # cuillamartin company
cuillamartin 1356/udp # cuillamartin company
pegboard 1357/tcp # electronic pegboard
pegboard 1357/udp # electronic pegboard
connlcli 1358/tcp # connlcli
connlcli 1358/udp # connlcli
ftsrv 1359/tcp # ftsrv
ftsrv 1359/udp # ftsrv
mimer 1360/tcp # mimer
mimer 1360/udp # mimer
linx 1361/tcp # linx
linx 1361/udp # linx
timeflies 1362/tcp # timeflies
timeflies 1362/udp # timeflies
ndm-requester 1363/tcp # network datamover requester
ndm-requester 1363/udp # network datamover requester
ndm-server 1364/tcp # network datamover server
ndm-server 1364/udp # network datamover server
adapt-sna 1365/tcp # network software associates
adapt-sna 1365/udp # network software associates
netware-csp 1366/tcp # novell netware comm service platform
netware-csp 1366/udp # novell netware comm service platform
dcs 1367/tcp # dcs
dcs 1367/udp # dcs
screencast 1368/tcp # screencast
screencast 1368/udp # screencast
gv-us 1369/tcp # globalview to unix shell
gv-us 1369/udp # globalview to unix shell
us-gv 1370/tcp # unix shell to globalview
us-gv 1370/udp # unix shell to globalview
fc-cli 1371/tcp # fujitsu config protocol
fc-cli 1371/udp # fujitsu config protocol
fc-ser 1372/tcp # fujitsu config protocol
fc-ser 1372/udp # fujitsu config protocol
chromagrafx 1373/tcp # chromagrafx
chromagrafx 1373/udp # chromagrafx
molly 1374/tcp # epi software systems
molly 1374/udp # epi software systems
bytex 1375/tcp # bytex
bytex 1375/udp # bytex
ibm-pps 1376/tcp # ibm person to person software
ibm-pps 1376/udp # ibm person to person software
cichlid 1377/tcp # cichlid license manager
cichlid 1377/udp # cichlid license manager
elan 1378/tcp # elan license manager
elan 1378/udp # elan license manager
dbreporter 1379/tcp # integrity solutions
dbreporter 1379/udp # integrity solutions
telesis-licman 1380/tcp # telesis network license manager
telesis-licman 1380/udp # telesis network license manager
apple-licman 1381/tcp # apple network license manager
apple-licman 1381/udp # apple network license manager
udt_os 1382/tcp
udt_os 1382/udp
gwha 1383/tcp # gw hannaway network license manager
gwha 1383/udp # gw hannaway network license manager
os-licman 1384/tcp # objective solutions license manager
os-licman 1384/udp # objective solutions license manager
atex_elmd 1385/tcp # atex publishing license manager
atex_elmd 1385/udp # atex publishing license manager
checksum 1386/tcp # checksum license manager
checksum 1386/udp # checksum license manager
cadsi-lm 1387/tcp # computer aided design software inc lm
cadsi-lm 1387/udp # computer aided design software inc lm
objective-dbc 1388/tcp # objective solutions database cache
objective-dbc 1388/udp # objective solutions database cache
iclpv-dm 1389/tcp # document manager
iclpv-dm 1389/udp # document manager
iclpv-sc 1390/tcp # storage controller
iclpv-sc 1390/udp # storage controller
iclpv-sas 1391/tcp # storage access server
iclpv-sas 1391/udp # storage access server
iclpv-pm 1392/tcp # print manager
iclpv-pm 1392/udp # print manager
iclpv-nls 1393/tcp # network log server
iclpv-nls 1393/udp # network log server
iclpv-nlc 1394/tcp # network log client
iclpv-nlc 1394/udp # network log client
iclpv-wsm 1395/tcp # pc workstation manager software
iclpv-wsm 1395/udp # pc workstation manager software
dvl-activemail 1396/tcp # dvl active mail
dvl-activemail 1396/udp # dvl active mail
audio-activmail 1397/tcp # audio active mail
audio-activmail 1397/udp # audio active mail
video-activmail 1398/tcp # video active mail
video-activmail 1398/udp # video active mail
cadkey-licman 1399/tcp # cadkey license manager
cadkey-licman 1399/udp # cadkey license manager
cadkey-tablet 1400/tcp # cadkey tablet daemon
cadkey-tablet 1400/udp # cadkey tablet daemon
goldleaf-licman 1401/tcp # goldleaf license manager
goldleaf-licman 1401/udp # goldleaf license manager
prm-sm-np 1402/tcp # prospero resource manager
prm-sm-np 1402/udp # prospero resource manager
prm-nm-np 1403/tcp # prospero resource manager
prm-nm-np 1403/udp # prospero resource manager
igi-lm 1404/tcp # infinite graphics license manager
igi-lm 1404/udp # infinite graphics license manager
ibm-res 1405/tcp # ibm remote execution starter
ibm-res 1405/udp # ibm remote execution starter
netlabs-lm 1406/tcp # netlabs license manager
netlabs-lm 1406/udp # netlabs license manager
dbsa-lm 1407/tcp # dbsa license manager
dbsa-lm 1407/udp # dbsa license manager
sophia-lm 1408/tcp # sophia license manager
sophia-lm 1408/udp # sophia license manager
here-lm 1409/tcp # here license manager
here-lm 1409/udp # here license manager
hiq 1410/tcp # hiq license manager
hiq 1410/udp # hiq license manager
af 1411/tcp # audiofile
af 1411/udp # audiofile
innosys 1412/tcp # innosys
innosys 1412/udp # innosys
innosys-acl 1413/tcp # innosys-acl
innosys-acl 1413/udp # innosys-acl
ibm-mqseries 1414/tcp # ibm mqseries
ibm-mqseries 1414/udp # ibm mqseries
dbstar 1415/tcp # dbstar
dbstar 1415/udp # dbstar
novell-lu6.2 1416/tcp # novell lu6.2
novell-lu6.2 1416/udp # novell lu6.2
timbuktu-srv1 1417/tcp # timbuktu service 1 port
timbuktu-srv1 1417/udp # timbuktu service 1 port
timbuktu-srv2 1418/tcp # timbuktu service 2 port
timbuktu-srv2 1418/udp # timbuktu service 2 port
timbuktu-srv3 1419/tcp # timbuktu service 3 port
timbuktu-srv3 1419/udp # timbuktu service 3 port
timbuktu-srv4 1420/tcp # timbuktu service 4 port
timbuktu-srv4 1420/udp # timbuktu service 4 port
gandalf-lm 1421/tcp # gandalf license manager
gandalf-lm 1421/udp # gandalf license manager
autodesk-lm 1422/tcp # autodesk license manager
autodesk-lm 1422/udp # autodesk license manager
essbase 1423/tcp # essbase arbor software
essbase 1423/udp # essbase arbor software
hybrid 1424/tcp # hybrid encryption protocol
hybrid 1424/udp # hybrid encryption protocol
zion-lm 1425/tcp # zion software license manager
zion-lm 1425/udp # zion software license manager
sais 1426/tcp sas-1 # satellite-data acquisition system 1
sais 1426/udp sas-1 # satellite-data acquisition system 1
mloadd 1427/tcp # mloadd monitoring tool
mloadd 1427/udp # mloadd monitoring tool
informatik-lm 1428/tcp # informatik license manager
informatik-lm 1428/udp # informatik license manager
nms 1429/tcp # hypercom nms
nms 1429/udp # hypercom nms
tpdu 1430/tcp # hypercom tpdu
tpdu 1430/udp # hypercom tpdu
rgtp 1431/tcp # reverse gossip transport
rgtp 1431/udp # reverse gossip transport
blueberry-lm 1432/tcp # blueberry software license manager
blueberry-lm 1432/udp # blueberry software license manager
ms-sql-s 1433/tcp # microsoft-sql-server
ms-sql-s 1433/udp # microsoft-sql-server
ms-sql-m 1434/tcp # microsoft-sql-monitor
ms-sql-m 1434/udp # microsoft-sql-monitor
ibm-cics 1435/tcp # ibm cics
ibm-cics 1435/udp # ibm cics
saism 1436/tcp sas-2 # satellite-data acquisition system 2
saism 1436/udp sas-2 # satellite-data acquisition system 2
tabula 1437/tcp # tabula
tabula 1437/udp # tabula
eicon-server 1438/tcp # eicon security agent/server
eicon-server 1438/udp # eicon security agent/server
eicon-x25 1439/tcp # eicon x25/sna gateway
eicon-x25 1439/udp # eicon x25/sna gateway
eicon-slp 1440/tcp # eicon service location protocol
eicon-slp 1440/udp # eicon service location protocol
cadis-1 1441/tcp # cadis license management
cadis-1 1441/udp # cadis license management
cadis-2 1442/tcp # cadis license management
cadis-2 1442/udp # cadis license management
ies-lm 1443/tcp # integrated engineering software
ies-lm 1443/udp # integrated engineering software
marcam-lm 1444/tcp # marcam license management, marcam license management
marcam-lm 1444/udp # marcam license management, marcam license management
proxima-lm 1445/tcp # proxima license manager
proxima-lm 1445/udp # proxima license manager
ora-lm 1446/tcp # optical research associates license manager
ora-lm 1446/udp # optical research associates license manager
apri-lm 1447/tcp # applied parallel research lm
apri-lm 1447/udp # applied parallel research lm
oc-lm 1448/tcp # openconnect license manager
oc-lm 1448/udp # openconnect license manager
peport 1449/tcp # peport
peport 1449/udp # peport
dwf 1450/tcp # tandem distributed workbench facility
dwf 1450/udp # tandem distributed workbench facility
infoman 1451/tcp # ibm information management
infoman 1451/udp # ibm information management
gtegsc-lm 1452/tcp # gte government systems license man
gtegsc-lm 1452/udp # gte government systems license man
genie-lm 1453/tcp # genie license manager
genie-lm 1453/udp # genie license manager
interhdl_elmd 1454/tcp # interhdl license manager
interhdl_elmd 1454/udp # interhdl license manager
esl-lm 1455/tcp # esl license manager
esl-lm 1455/udp # esl license manager
dca 1456/tcp # dca
dca 1456/udp # dca
valisys-lm 1457/tcp # valisys license manager
valisys-lm 1457/udp # valisys license manager
nrcabq-lm 1458/tcp # nichols research corp.
nrcabq-lm 1458/udp # nichols research corp.
proshare1 1459/tcp # proshare notebook application
proshare1 1459/udp # proshare notebook application
proshare2 1460/tcp # proshare notebook application
proshare2 1460/udp # proshare notebook application
ibm_wrless_lan 1461/tcp # ibm wireless lan
ibm_wrless_lan 1461/udp # ibm wireless lan
world-lm 1462/tcp # world license manager
world-lm 1462/udp # world license manager
nucleus 1463/tcp # nucleus
nucleus 1463/udp # nucleus
msl_lmd 1464/tcp # msl license manager
msl_lmd 1464/udp # msl license manager
pipes 1465/tcp # pipes platform
pipes 1465/udp # pipes platform mfarlin@peerlogic.com
oceansoft-lm 1466/tcp # ocean software license manager
oceansoft-lm 1466/udp # ocean software license manager
csdmbase 1467/tcp # csdmbase
csdmbase 1467/udp # csdmbase
csdm 1468/tcp # csdm
csdm 1468/udp # csdm
aal-lm 1469/tcp # active analysis limited license manager
aal-lm 1469/udp # active analysis limited license manager
uaiact 1470/tcp # universal analytics
uaiact 1470/udp # universal analytics
csdmbase 1471/tcp # csdmbase
csdmbase 1471/udp # csdmbase
csdm 1472/tcp # csdm
csdm 1472/udp # csdm
openmath 1473/tcp # openmath
openmath 1473/udp # openmath
telefinder 1474/tcp # telefinder
telefinder 1474/udp # telefinder
taligent-lm 1475/tcp # taligent license manager
taligent-lm 1475/udp # taligent license manager
clvm-cfg 1476/tcp # clvm-cfg
clvm-cfg 1476/udp # clvm-cfg
ms-sna-server 1477/tcp # ms-sna-server
ms-sna-server 1477/udp # ms-sna-server
ms-sna-base 1478/tcp # ms-sna-base
ms-sna-base 1478/udp # ms-sna-base
dberegister 1479/tcp # dberegister
dberegister 1479/udp # dberegister
pacerforum 1480/tcp # pacerforum
pacerforum 1480/udp # pacerforum
airs 1481/tcp # airs
airs 1481/udp # airs
miteksys-lm 1482/tcp # miteksys license manager
miteksys-lm 1482/udp # miteksys license manager
afs 1483/tcp # afs license manager
afs 1483/udp # afs license manager
confluent 1484/tcp # confluent license manager
confluent 1484/udp # confluent license manager
lansource 1485/tcp # lansource
lansource 1485/udp # lansource
nms_topo_serv 1486/tcp # nms_topo_serv
nms_topo_serv 1486/udp # nms_topo_serv
localinfosrvr 1487/tcp # localinfosrvr
localinfosrvr 1487/udp # localinfosrvr
docstor 1488/tcp # docstor
docstor 1488/udp # docstor
dmdocbroker 1489/tcp # dmdocbroker
dmdocbroker 1489/udp # dmdocbroker
insitu-conf 1490/tcp # insitu-conf
insitu-conf 1490/udp # insitu-conf
anynetgateway 1491/tcp # anynetgateway
anynetgateway 1491/udp # anynetgateway
stone-design-1 1492/tcp # stone-design-1
stone-design-1 1492/udp # stone-design-1
netmap_lm 1493/tcp # netmap_lm
netmap_lm 1493/udp # netmap_lm
ica 1494/tcp # ica
ica 1494/udp # ica
cvc 1495/tcp # cvc
cvc 1495/udp # cvc
liberty-lm 1496/tcp # liberty-lm
liberty-lm 1496/udp # liberty-lm
rfx-lm 1497/tcp # rfx-lm
rfx-lm 1497/udp # rfx-lm
sybase-sqlany 1498/tcp watcom-sql # sybase sql any
sybase-sqlany 1498/udp watcom-sql # sybase sql any
fhc 1499/tcp # federico heinz consultora
fhc 1499/udp # federico heinz consultora
vlsi-lm 1500/tcp # vlsi license manager
vlsi-lm 1500/udp # vlsi license manager
saiscm 1501/tcp sas-3 # satellite-data acquisition system 3
saiscm 1501/udp sas-3 # satellite-data acquisition system 3
shivadiscovery 1502/tcp # shiva
shivadiscovery 1502/udp # shiva
imtc-mcs 1503/tcp # databeam
imtc-mcs 1503/udp # databeam
evb-elm 1504/tcp # evb software engineering license manager
evb-elm 1504/udp # evb software engineering license manager
funkproxy 1505/tcp # funk software, inc.
funkproxy 1505/udp # funk software, inc.
utcd 1506/tcp # universal time daemon (utcd)
utcd 1506/udp # universal time daemon (utcd)
symplex 1507/tcp # symplex
symplex 1507/udp # symplex
diagmond 1508/tcp # diagmond
diagmond 1508/udp # diagmond
robcad-lm 1509/tcp # robcad, ltd. license manager
robcad-lm 1509/udp # robcad, ltd. license manager
mvx-lm 1510/tcp # midland valley exploration ltd. lic. man.
mvx-lm 1510/udp # midland valley exploration ltd. lic. man.
3l-l1 1511/tcp # 3l-l1
3l-l1 1511/udp # 3l-l1
wins 1512/tcp # microsoft's windows internet name service
wins 1512/udp # microsoft's windows internet name service
fujitsu-dtc 1513/tcp # fujitsu systems business of america, inc
fujitsu-dtc 1513/udp # fujitsu systems business of america, inc
fujitsu-dtcns 1514/tcp # fujitsu systems business of america, inc
fujitsu-dtcns 1514/udp # fujitsu systems business of america, inc
ifor-protocol 1515/tcp # ifor-protocol
ifor-protocol 1515/udp # ifor-protocol
vpad 1516/tcp # virtual places audio data
vpad 1516/udp # virtual places audio data
vpac 1517/tcp # virtual places audio control
vpac 1517/udp # virtual places audio control
vpvd 1518/tcp # virtual places video data
vpvd 1518/udp # virtual places video data
vpvc 1519/tcp # virtual places video control
vpvc 1519/udp # virtual places video control
atm-zip-office 1520/tcp # atm zip office
atm-zip-office 1520/udp # atm zip office
ncube-lm 1521/tcp # ncube license manager
ncube-lm 1521/udp # ncube license manager
ricardo-lm 1522/tcp rna-lm # ricardo north america license manager
ricardo-lm 1522/udp rna-lm # ricardo north america license manager
cichild-lm 1523/tcp # cichild
cichild-lm 1523/udp # cichild
ingreslock 1524/tcp # ingres
ingreslock 1524/udp # ingres
orasrv 1525/tcp prospero-np # oracle or prospero directory service non-priv, prospero directory service non-priv, prospero non-privileged, oracle
orasrv 1525/udp prospero-np # prospero directory service non-priv, oracle
pdap-np 1526/tcp # prospero data access prot non-priv
pdap-np 1526/udp # prospero data access prot non-priv
tlisrv 1527/tcp # oracle
tlisrv 1527/udp # oracle
mciautoreg 1528/tcp # micautoreg
mciautoreg 1528/udp # micautoreg
coauthor 1529/tcp gnatsd support prmsd # cygnus bug tracker, prmsd gnatsd # cygnus bug tracker, oracle
coauthor 1529/udp # oracle
rap-service 1530/tcp # rap-service
rap-service 1530/udp # rap-service
rap-listen 1531/tcp # rap-listen
rap-listen 1531/udp # rap-listen
miroconnect 1532/tcp # miroconnect
miroconnect 1532/udp # miroconnect
virtual-places 1533/tcp # virtual places software
virtual-places 1533/udp # virtual places software
micromuse-lm 1534/tcp # micromuse-lm
micromuse-lm 1534/udp # micromuse-lm
ampr-info 1535/tcp # ampr-info
ampr-info 1535/udp # ampr-info
ampr-inter 1536/tcp # ampr-inter
ampr-inter 1536/udp # ampr-inter
sdsc-lm 1537/tcp # isi-lm
sdsc-lm 1537/udp # isi-lm
3ds-lm 1538/tcp # 3ds-lm
3ds-lm 1538/udp # 3ds-lm
intellistor-lm 1539/tcp # intellistor license manager
intellistor-lm 1539/udp # intellistor license manager
rds 1540/tcp # rds
rds 1540/udp # rds
rds2 1541/tcp # rds2
rds2 1541/udp # rds2
gridgen-elmd 1542/tcp # gridgen-elmd
gridgen-elmd 1542/udp # gridgen-elmd
simba-cs 1543/tcp # simba-cs
simba-cs 1543/udp # simba-cs
aspeclmd 1544/tcp # aspeclmd
aspeclmd 1544/udp # aspeclmd
vistium-share 1545/tcp # vistium-share
vistium-share 1545/udp # vistium-share
abbaccuray 1546/tcp # abbaccuray
abbaccuray 1546/udp # abbaccuray
laplink 1547/tcp # laplink
laplink 1547/udp # laplink
axon-lm 1548/tcp # axon license manager
axon-lm 1548/udp # axon license manager
shivahose 1549/tcp # shiva hose
shivasound 1549/udp # shiva sound
3m-image-lm 1550/tcp # image storage license manager 3m company
3m-image-lm 1550/udp # image storage license manager 3m company
hecmtl-db 1551/tcp # hecmtl-db
hecmtl-db 1551/udp # hecmtl-db
pciarray 1552/tcp # pciarray
pciarray 1552/udp # pciarray
sna-cs 1553/tcp # sna-cs
sna-cs 1553/udp # sna-cs
caci-lm 1554/tcp # caci products company license manager
caci-lm 1554/udp # caci products company license manager
livelan 1555/tcp # livelan
livelan 1555/udp # livelan
ashwin 1556/tcp # ashwin ci tecnologies
ashwin 1556/udp # ashwin ci tecnologies
arbortext-lm 1557/tcp # arbortext license manager
arbortext-lm 1557/udp # arbortext license manager
xingmpeg 1558/tcp # xingmpeg
xingmpeg 1558/udp # xingmpeg
web2host 1559/tcp # web2host
web2host 1559/udp # web2host
asci-val 1560/tcp # asci-val
asci-val 1560/udp # asci-val
facilityview 1561/tcp # facilityview
facilityview 1561/udp # facilityview
pconnectmgr 1562/tcp # pconnectmgr
pconnectmgr 1562/udp # pconnectmgr
cadabra-lm 1563/tcp # cadabra license manager
cadabra-lm 1563/udp # cadabra license manager
pay-per-view 1564/tcp # pay-per-view
pay-per-view 1564/udp # pay-per-view
winddlb 1565/tcp # windd
winddlb 1565/udp # windd
corelvideo 1566/tcp # corelvideo
corelvideo 1566/udp # corelvideo
jlicelmd 1567/tcp # jlicelmd
jlicelmd 1567/udp # jlicelmd
tsspmap 1568/tcp # tsspmap
tsspmap 1568/udp # tsspmap
ets 1569/tcp # ets
ets 1569/udp # ets
orbixd 1570/tcp # orbixd
orbixd 1570/udp # orbixd
rdb-dbs-disp 1571/tcp # oracle remote data base
rdb-dbs-disp 1571/udp # oracle remote data base
chip-lm 1572/tcp # chipcom license manager
chip-lm 1572/udp # chipcom license manager
itscomm-ns 1573/tcp # itscomm-ns
itscomm-ns 1573/udp # itscomm-ns
mvel-lm 1574/tcp # mvel-lm
mvel-lm 1574/udp # mvel-lm
oraclenames 1575/tcp # oraclenames
oraclenames 1575/udp # oraclenames
moldflow-lm 1576/tcp # moldflow-lm
moldflow-lm 1576/udp # moldflow-lm
hypercube-lm 1577/tcp # hypercube-lm
hypercube-lm 1577/udp # hypercube-lm
jacobus-lm 1578/tcp # jacobus license manager
jacobus-lm 1578/udp # jacobus license manager
ioc-sea-lm 1579/tcp # ioc-sea-lm
ioc-sea-lm 1579/udp # ioc-sea-lm
tn-tl-r1 1580/tcp # tn-tl-r1
tn-tl-r2 1580/udp # tn-tl-r2
mil-2045-47001 1581/tcp # mil-2045-47001
mil-2045-47001 1581/udp # mil-2045-47001
msims 1582/tcp # msims
msims 1582/udp # msims
simbaexpress 1583/tcp # simbaexpress
simbaexpress 1583/udp # simbaexpress
tn-tl-fd2 1584/tcp # tn-tl-fd2
tn-tl-fd2 1584/udp # tn-tl-fd2
intv 1585/tcp # intv
intv 1585/udp # intv
ibm-abtact 1586/tcp # ibm-abtact
ibm-abtact 1586/udp # ibm-abtact
pra_elmd 1587/tcp # pra_elmd
pra_elmd 1587/udp # pra_elmd
triquest-lm 1588/tcp # triquest-lm
triquest-lm 1588/udp # triquest-lm
vqp 1589/tcp # vqp
vqp 1589/udp # vqp
gemini-lm 1590/tcp # gemini-lm
gemini-lm 1590/udp # gemini-lm
ncpm-pm 1591/tcp # ncpm-pm
ncpm-pm 1591/udp # ncpm-pm
commonspace 1592/tcp # commonspace
commonspace 1592/udp # commonspace
mainsoft-lm 1593/tcp # mainsoft-lm
mainsoft-lm 1593/udp # mainsoft-lm
sixtrak 1594/tcp # sixtrak
sixtrak 1594/udp # sixtrak
radio 1595/tcp # radio
radio 1595/udp # radio
radio-sm 1596/tcp # radio-sm
radio-bc 1596/udp # radio-bc
orbplus-iiop 1597/tcp # orbplus-iiop
orbplus-iiop 1597/udp # orbplus-iiop
picknfs 1598/tcp # picknfs
picknfs 1598/udp # picknfs
simbaservices 1599/tcp # simbaservices
simbaservices 1599/udp # simbaservices
issd 1600/tcp
issd 1600/udp
aas 1601/tcp # aas
aas 1601/udp # aas
inspect 1602/tcp # inspect
inspect 1602/udp # inspect
picodbc 1603/tcp # pickodbc
picodbc 1603/udp # pickodbc
icabrowser 1604/tcp # icabrowser
icabrowser 1604/udp # icabrowser
slp 1605/tcp # salutation manager (salutation protocol)
slp 1605/udp # salutation manager (salutation protocol)
slm-api 1606/tcp # salutation manager (slm-api)
slm-api 1606/udp # salutation manager (slm-api)
stt 1607/tcp # stt
stt 1607/udp # stt
smart-lm 1608/tcp # smart corp. license manager
smart-lm 1608/udp # smart corp. license manager
isysg-lm 1609/tcp # isysg-lm
isysg-lm 1609/udp # isysg-lm
taurus-wh 1610/tcp # taurus-wh
taurus-wh 1610/udp # taurus-wh
ill 1611/tcp # inter library loan
ill 1611/udp # inter library loan
netbill-trans 1612/tcp # netbill transaction server
netbill-trans 1612/udp # netbill transaction server
netbill-keyrep 1613/tcp # netbill key repository
netbill-keyrep 1613/udp # netbill key repository
netbill-cred 1614/tcp # netbill credential server
netbill-cred 1614/udp # netbill credential server
netbill-auth 1615/tcp # netbill authorization server
netbill-auth 1615/udp # netbill authorization server
netbill-prod 1616/tcp # netbill product server
netbill-prod 1616/udp # netbill product server
nimrod-agent 1617/tcp # nimrod inter-agent communication
nimrod-agent 1617/udp # nimrod inter-agent communication
skytelnet 1618/tcp # skytelnet
skytelnet 1618/udp # skytelnet
xs-openstorage 1619/tcp # xs-openstorage
xs-openstorage 1619/udp # xs-openstorage
faxportwinport 1620/tcp # faxportwinport
faxportwinport 1620/udp # faxportwinport
softdataphone 1621/tcp # softdataphone
softdataphone 1621/udp # softdataphone
ontime 1622/tcp # ontime
ontime 1622/udp # ontime
jaleosnd 1623/tcp # jaleosnd
jaleosnd 1623/udp # jaleosnd
udp-sr-port 1624/tcp # udp-sr-port
udp-sr-port 1624/udp # udp-sr-port
svs-omagent 1625/tcp # svs-omagent
svs-omagent 1625/udp # svs-omagent
shockwave 1626/tcp # shockwave
shockwave 1626/udp # shockwave
t128-gateway 1627/tcp # t.128 gateway
t128-gateway 1627/udp # t.128 gateway
longtalk-norm 1628/tcp # longtalk normal
longtalk-norm 1628/udp # longtalk normal
longtalk-urgnt 1629/tcp # longtalk urgent
longtalk-urgnt 1629/udp # longtalk urgent
oraclenet8cman 1630/tcp # oracle net8 cman
oraclenet8cman 1630/udp # oracle net8 cman
visitview 1631/tcp # visit view
visitview 1631/udp # visit view
pammratc 1632/tcp # pammratc
pammratc 1632/udp # pammratc
pammrpc 1633/tcp # pammrpc
pammrpc 1633/udp # pammrpc
loaprobe 1634/tcp # log on america probe
loaprobe 1634/udp # log on america probe
edb-server1 1635/tcp # edb server 1
edb-server1 1635/udp # edb server 1
cncp 1636/tcp # cablenet control protocol
cncp 1636/udp # cablenet control protocol
cnap 1637/tcp # cablenet admin protocol
cnap 1637/udp # cablenet admin protocol
cnip 1638/tcp # cablenet info protocol
cnip 1638/udp # cablenet info protocol
cert-initiator 1639/tcp # cert-initiator
cert-initiator 1639/udp # cert-initiator
cert-responder 1640/tcp # cert-responder
cert-responder 1640/udp # cert-responder
invision 1641/tcp # invision
invision 1641/udp # invision
isis-am 1642/tcp # isis-am
isis-am 1642/udp # isis-am
isis-ambc 1643/tcp # isis-ambc
isis-ambc 1643/udp # isis-ambc
saiseh 1644/tcp # satellite-data acquisition system 4
datametrics 1645/tcp # datametrics
datametrics 1645/udp radius # radius authentication, datametrics
sa-msg-port 1646/tcp # sa-msg-port
sa-msg-port 1646/udp radacct # sa-msg-port, radius accounting
rsap 1647/tcp # rsap
rsap 1647/udp # rsap
concurrent-lm 1648/tcp # concurrent-lm
concurrent-lm 1648/udp # concurrent-lm
kermit 1649/tcp # kermit
kermit 1649/udp # kermit
nkd 1650/tcp # nkd
nkd 1650/udp # nkd
shiva_confsrvr 1651/tcp # shiva_confsrvr
shiva_confsrvr 1651/udp # shiva_confsrvr
xnmp 1652/tcp # xnmp
xnmp 1652/udp # xnmp
alphatech-lm 1653/tcp # alphatech-lm
alphatech-lm 1653/udp # alphatech-lm
stargatealerts 1654/tcp # stargatealerts
stargatealerts 1654/udp # stargatealerts
dec-mbadmin 1655/tcp # dec-mbadmin
dec-mbadmin 1655/udp # dec-mbadmin
dec-mbadmin-h 1656/tcp # dec-mbadmin-h
dec-mbadmin-h 1656/udp # dec-mbadmin-h
fujitsu-mmpdc 1657/tcp # fujitsu-mmpdc
fujitsu-mmpdc 1657/udp # fujitsu-mmpdc
sixnetudr 1658/tcp # sixnetudr
sixnetudr 1658/udp # sixnetudr
sg-lm 1659/tcp # silicon grail license manager
sg-lm 1659/udp # silicon grail license manager
skip-mc-gikreq 1660/tcp # skip-mc-gikreq
skip-mc-gikreq 1660/udp # skip-mc-gikreq
netview-aix-1 1661/tcp # netview-aix-1
netview-aix-1 1661/udp # netview-aix-1
netview-aix-2 1662/tcp # netview-aix-2
netview-aix-2 1662/udp # netview-aix-2
netview-aix-3 1663/tcp # netview-aix-3
netview-aix-3 1663/udp # netview-aix-3
netview-aix-4 1664/tcp # netview-aix-4
netview-aix-4 1664/udp # netview-aix-4
netview-aix-5 1665/tcp # netview-aix-5
netview-aix-5 1665/udp # netview-aix-5
netview-aix-6 1666/tcp # netview-aix-6
netview-aix-6 1666/udp # netview-aix-6
netview-aix-7 1667/tcp # netview-aix-7
netview-aix-7 1667/udp # netview-aix-7
netview-aix-8 1668/tcp # netview-aix-8
netview-aix-8 1668/udp # netview-aix-8
netview-aix-9 1669/tcp # netview-aix-9
netview-aix-9 1669/udp # netview-aix-9
netview-aix-10 1670/tcp # netview-aix-10
netview-aix-10 1670/udp # netview-aix-10
netview-aix-11 1671/tcp # netview-aix-11
netview-aix-11 1671/udp # netview-aix-11
netview-aix-12 1672/tcp # netview-aix-12
netview-aix-12 1672/udp # netview-aix-12
proshare-mc-1 1673/tcp # intel proshare multicast
proshare-mc-1 1673/udp # intel proshare multicast
proshare-mc-2 1674/tcp # intel proshare multicast
proshare-mc-2 1674/udp # intel proshare multicast
pdp 1675/tcp # pacific data products
pdp 1675/udp # pacific data products
netcomm1 1676/tcp # netcomm1
netcomm2 1676/udp # netcomm2
groupwise 1677/tcp # groupwise
groupwise 1677/udp # groupwise
prolink 1678/tcp # prolink
prolink 1678/udp # prolink
darcorp-lm 1679/tcp # darcorp-lm
darcorp-lm 1679/udp # darcorp-lm
microcom-sbp 1680/tcp # microcom-sbp
microcom-sbp 1680/udp # microcom-sbp
sd-elmd 1681/tcp # sd-elmd
sd-elmd 1681/udp # sd-elmd
lanyon-lantern 1682/tcp # lanyon-lantern
lanyon-lantern 1682/udp # lanyon-lantern
ncpm-hip 1683/tcp # ncpm-hip
ncpm-hip 1683/udp # ncpm-hip
snaresecure 1684/tcp # snaresecure
snaresecure 1684/udp # snaresecure
n2nremote 1685/tcp # n2nremote
n2nremote 1685/udp # n2nremote
cvmon 1686/tcp # cvmon
cvmon 1686/udp # cvmon
nsjtp-ctrl 1687/tcp # nsjtp-ctrl
nsjtp-ctrl 1687/udp # nsjtp-ctrl
nsjtp-data 1688/tcp # nsjtp-data
nsjtp-data 1688/udp # nsjtp-data
firefox 1689/tcp # firefox
firefox 1689/udp # firefox
ng-umds 1690/tcp # ng-umds
ng-umds 1690/udp # ng-umds
empire-empuma 1691/tcp # empire-empuma
empire-empuma 1691/udp # empire-empuma
sstsys-lm 1692/tcp # sstsys-lm
sstsys-lm 1692/udp # sstsys-lm
rrirtr 1693/tcp # rrirtr
rrirtr 1693/udp # rrirtr
rrimwm 1694/tcp # rrimwm
rrimwm 1694/udp # rrimwm
rrilwm 1695/tcp # rrilwm
rrilwm 1695/udp # rrilwm
rrifmm 1696/tcp # rrifmm
rrifmm 1696/udp # rrifmm
rrisat 1697/tcp # rrisat
rrisat 1697/udp # rrisat
rsvp-encap-1 1698/tcp # rsvp-encapsulation-1
rsvp-encap-1 1698/udp # rsvp-encapsulation-1
rsvp-encap-2 1699/tcp # rsvp-encapsulation-2
rsvp-encap-2 1699/udp # rsvp-encapsulation-2
mps-raft 1700/tcp # mps-raft
mps-raft 1700/udp # mps-raft
l2f 1701/tcp l2tp # l2tp, l2f
l2f 1701/udp l2tp # l2tp, l2f
deskshare 1702/tcp # deskshare
deskshare 1702/udp # deskshare
hb-engine 1703/tcp # hb-engine
hb-engine 1703/udp # hb-engine
bcs-broker 1704/tcp # bcs-broker
bcs-broker 1704/udp # bcs-broker
slingshot 1705/tcp # slingshot
slingshot 1705/udp # slingshot
jetform 1706/tcp # jetform
jetform 1706/udp # jetform
vdmplay 1707/tcp # vdmplay
vdmplay 1707/udp # vdmplay
gat-lmd 1708/tcp # gat-lmd
gat-lmd 1708/udp # gat-lmd
centra 1709/tcp # centra
centra 1709/udp # centra
impera 1710/tcp # impera
impera 1710/udp # impera
pptconference 1711/tcp # pptconference
pptconference 1711/udp # pptconference
registrar 1712/tcp # resource monitoring service
registrar 1712/udp # resource monitoring service
conferencetalk 1713/tcp # conferencetalk
conferencetalk 1713/udp # conferencetalk
sesi-lm 1714/tcp # sesi-lm
sesi-lm 1714/udp # sesi-lm
houdini-lm 1715/tcp # houdini-lm
houdini-lm 1715/udp # houdini-lm
xmsg 1716/tcp # xmsg
xmsg 1716/udp # xmsg
fj-hdnet 1717/tcp # fj-hdnet
fj-hdnet 1717/udp # fj-hdnet
h323gatedisc 1718/tcp # h323gatedisc
h323gatedisc 1718/udp # h323gatedisc
h323gatestat 1719/tcp # h323gatestat
h323gatestat 1719/udp # h323gatestat
h323hostcall 1720/tcp # h323hostcall
h323hostcall 1720/udp # h323hostcall
caicci 1721/tcp # caicci
caicci 1721/udp # caicci
hks-lm 1722/tcp # hks license manager
hks-lm 1722/udp # hks license manager
pptp 1723/tcp # point-to-point tunnelling protocol, pptp
pptp 1723/udp # pptp
csbphonemaster 1724/tcp # csbphonemaster
csbphonemaster 1724/udp # csbphonemaster
iden-ralp 1725/tcp # iden-ralp
iden-ralp 1725/udp # iden-ralp
iberiagames 1726/tcp # iberiagames
iberiagames 1726/udp # iberiagames
winddx 1727/tcp # winddx
winddx 1727/udp # winddx
telindus 1728/tcp # telindus
telindus 1728/udp # telindus
citynl 1729/tcp # citynl license management
citynl 1729/udp # citynl license management
roketz 1730/tcp # roketz
roketz 1730/udp # roketz
msiccp 1731/tcp # msiccp
msiccp 1731/udp # msiccp
proxim 1732/tcp # proxim
proxim 1732/udp # proxim
siipat 1733/tcp # sims - siipat protocol for alarm transmission
siipat 1733/udp # sims - siipat protocol for alarm transmission
cambertx-lm 1734/tcp # camber corporation license management
cambertx-lm 1734/udp # camber corporation license management
privatechat 1735/tcp # privatechat
privatechat 1735/udp # privatechat
street-stream 1736/tcp # street-stream
street-stream 1736/udp # street-stream
ultimad 1737/tcp # ultimad
ultimad 1737/udp # ultimad
gamegen1 1738/tcp # gamegen1
gamegen1 1738/udp # gamegen1
webaccess 1739/tcp # webaccess
webaccess 1739/udp # webaccess
encore 1740/tcp # encore
encore 1740/udp # encore
cisco-net-mgmt 1741/tcp # cisco-net-mgmt
cisco-net-mgmt 1741/udp # cisco-net-mgmt
3Com-nsd 1742/tcp # 3com-nsd
3Com-nsd 1742/udp # 3com-nsd
cinegrfx-lm 1743/tcp # cinema graphics license manager
cinegrfx-lm 1743/udp # cinema graphics license manager
ncpm-ft 1744/tcp # ncpm-ft
ncpm-ft 1744/udp # ncpm-ft
remote-winsock 1745/tcp # remote-winsock
remote-winsock 1745/udp # remote-winsock
ftrapid-1 1746/tcp # ftrapid-1
ftrapid-1 1746/udp # ftrapid-1
ftrapid-2 1747/tcp # ftrapid-2
ftrapid-2 1747/udp # ftrapid-2
oracle-em1 1748/tcp # oracle-em1
oracle-em1 1748/udp # oracle-em1
aspen-services 1749/tcp # aspen-services
aspen-services 1749/udp # aspen-services
sslp 1750/tcp # simple socket library's portmaster
sslp 1750/udp # simple socket library's portmaster
swiftnet 1751/tcp # swiftnet
swiftnet 1751/udp # swiftnet
lofr-lm 1752/tcp # leap of faith research license manager
lofr-lm 1752/udp # leap of faith research license manager
translogic-lm 1753/tcp # translogic license manager
translogic-lm 1753/udp # translogic license manager
oracle-em2 1754/tcp # oracle-em2
oracle-em2 1754/udp # oracle-em2
ms-streaming 1755/tcp # ms-streaming
ms-streaming 1755/udp # ms-streaming
capfast-lmd 1756/tcp # capfast-lmd
capfast-lmd 1756/udp # capfast-lmd
cnhrp 1757/tcp # cnhrp
cnhrp 1757/udp # cnhrp
tftp-mcast 1758/tcp # tftp-mcast
tftp-mcast 1758/udp # tftp-mcast
spss-lm 1759/tcp # spss license manager
spss-lm 1759/udp # spss license manager
www-ldap-gw 1760/tcp # www-ldap-gw
www-ldap-gw 1760/udp # www-ldap-gw
cft-0 1761/tcp # cft-0
cft-0 1761/udp # cft-0
cft-1 1762/tcp # cft-1
cft-1 1762/udp # cft-1
cft-2 1763/tcp # cft-2
cft-2 1763/udp # cft-2
cft-3 1764/tcp # cft-3
cft-3 1764/udp # cft-3
cft-4 1765/tcp # cft-4
cft-4 1765/udp # cft-4
cft-5 1766/tcp # cft-5
cft-5 1766/udp # cft-5
cft-6 1767/tcp # cft-6
cft-6 1767/udp # cft-6
cft-7 1768/tcp # cft-7
cft-7 1768/udp # cft-7
bmc-net-adm 1769/tcp # bmc-net-adm
bmc-net-adm 1769/udp # bmc-net-adm
bmc-net-svc 1770/tcp # bmc-net-svc
bmc-net-svc 1770/udp # bmc-net-svc
vaultbase 1771/tcp # vaultbase
vaultbase 1771/udp # vaultbase
essweb-gw 1772/tcp # essweb gateway
essweb-gw 1772/udp # essweb gateway
kmscontrol 1773/tcp # kmscontrol
kmscontrol 1773/udp # kmscontrol
global-dtserv 1774/tcp # global-dtserv
global-dtserv 1774/udp # global-dtserv
femis 1776/tcp # federal emergency management information system
femis 1776/udp # federal emergency management information system
powerguardian 1777/tcp # powerguardian
powerguardian 1777/udp # powerguardian
prodigy-intrnet 1778/tcp # prodigy-internet
prodigy-intrnet 1778/udp # prodigy-internet
pharmasoft 1779/tcp # pharmasoft
pharmasoft 1779/udp # pharmasoft
dpkeyserv 1780/tcp # dpkeyserv
dpkeyserv 1780/udp # dpkeyserv
answersoft-lm 1781/tcp # answersoft-lm
answersoft-lm 1781/udp # answersoft-lm
hp-hcip 1782/tcp # hp-hcip
hp-hcip 1782/udp # hp-hcip
fjris 1783/tcp # fujitsu remote install service
fjris 1783/udp # fujitsu remote install service
finle-lm 1784/tcp # finle license manager
finle-lm 1784/udp # finle license manager
windlm 1785/tcp # wind river systems license manager
windlm 1785/udp # wind river systems license manager
funk-logger 1786/tcp # funk-logger
funk-logger 1786/udp # funk-logger
funk-license 1787/tcp # funk-license
funk-license 1787/udp # funk-license
psmond 1788/tcp # psmond
psmond 1788/udp # psmond
hello 1789/tcp # hello
hello 1789/udp # hello
nmsp 1790/tcp # narrative media streaming protocol
nmsp 1790/udp # narrative media streaming protocol
ea1 1791/tcp # ea1
ea1 1791/udp # ea1
ibm-dt-2 1792/tcp # ibm-dt-2
ibm-dt-2 1792/udp # ibm-dt-2
rsc-robot 1793/tcp # rsc-robot
rsc-robot 1793/udp # rsc-robot
cera-bcm 1794/tcp # cera-bcm
cera-bcm 1794/udp # cera-bcm
dpi-proxy 1795/tcp # dpi-proxy
dpi-proxy 1795/udp # dpi-proxy
vocaltec-admin 1796/tcp # vocaltec server administration
vocaltec-admin 1796/udp # vocaltec server administration
uma 1797/tcp # uma
uma 1797/udp # uma
etp 1798/tcp # event transfer protocol
etp 1798/udp # event transfer protocol
netrisk 1799/tcp # netrisk
netrisk 1799/udp # netrisk
ansys-lm 1800/tcp # ansys-license manager
ansys-lm 1800/udp # ansys-license manager
msmq 1801/tcp # microsoft message que
msmq 1801/udp # microsoft message que
concomp1 1802/tcp # concomp1
concomp1 1802/udp # concomp1
hp-hcip-gwy 1803/tcp # hp-hcip-gwy
hp-hcip-gwy 1803/udp # hp-hcip-gwy
enl 1804/tcp # enl
enl 1804/udp # enl
enl-name 1805/tcp # enl-name
enl-name 1805/udp # enl-name
musiconline 1806/tcp # musiconline
musiconline 1806/udp # musiconline
fhsp 1807/tcp # fujitsu hot standby protocol
fhsp 1807/udp # fujitsu hot standby protocol
oracle-vp2 1808/tcp # oracle-vp2
oracle-vp2 1808/udp # oracle-vp2
oracle-vp1 1809/tcp # oracle-vp1
oracle-vp1 1809/udp # oracle-vp1
jerand-lm 1810/tcp # jerand license manager
jerand-lm 1810/udp # jerand license manager
scientia-sdb 1811/tcp # scientia-sdb
scientia-sdb 1811/udp # scientia-sdb
radius 1812/tcp # radius
radius 1812/udp # radius, radius authentication protocol (rfc 2138)
radius-acct 1813/tcp # radius accounting
radius-acct 1813/udp radacct # radius accounting protocol (rfc 2139), radius accounting
tdp-suite 1814/tcp # tdp suite
tdp-suite 1814/udp # tdp suite
mmpft 1815/tcp # mmpft
mmpft 1815/udp # mmpft
harp 1816/tcp # harp
harp 1816/udp # harp
rkb-oscs 1817/tcp # rkb-oscs
rkb-oscs 1817/udp # rkb-oscs
etftp 1818/tcp # enhanced trivial file transfer protocol
etftp 1818/udp # enhanced trivial file transfer protocol
plato-lm 1819/tcp # plato license manager
plato-lm 1819/udp # plato license manager
mcagent 1820/tcp # mcagent
mcagent 1820/udp # mcagent
donnyworld 1821/tcp # donnyworld
donnyworld 1821/udp # donnyworld
es-elmd 1822/tcp # es-elmd
es-elmd 1822/udp # es-elmd
unisys-lm 1823/tcp # unisys natural language license manager
unisys-lm 1823/udp # unisys natural language license manager
metrics-pas 1824/tcp # metrics-pas
metrics-pas 1824/udp # metrics-pas
direcpc-video 1825/tcp # direcpc video
direcpc-video 1825/udp # direcpc video
ardt 1826/tcp # ardt
ardt 1826/udp # ardt
asi 1827/tcp # asi
asi 1827/udp # asi
itm-mcell-u 1828/tcp # itm-mcell-u
itm-mcell-u 1828/udp # itm-mcell-u
optika-emedia 1829/tcp # optika emedia
optika-emedia 1829/udp # optika emedia
net8-cman 1830/tcp # oracle net8 cman admin
net8-cman 1830/udp # oracle net8 cman admin
myrtle 1831/tcp # myrtle
myrtle 1831/udp # myrtle
tht-treasure 1832/tcp # thoughttreasure
tht-treasure 1832/udp # thoughttreasure
udpradio 1833/tcp # udpradio
udpradio 1833/udp # udpradio
ardusuni 1834/tcp # ardus unicast
ardusuni 1834/udp # ardus unicast
ardusmul 1835/tcp # ardus multicast
ardusmul 1835/udp # ardus multicast
ste-smsc 1836/tcp # ste-smsc
ste-smsc 1836/udp # ste-smsc
csoft1 1837/tcp # csoft1
csoft1 1837/udp # csoft1
talnet 1838/tcp # talnet
talnet 1838/udp # talnet
netopia-vo1 1839/tcp # netopia-vo1
netopia-vo1 1839/udp # netopia-vo1
netopia-vo2 1840/tcp # netopia-vo2
netopia-vo2 1840/udp # netopia-vo2
netopia-vo3 1841/tcp # netopia-vo3
netopia-vo3 1841/udp # netopia-vo3
netopia-vo4 1842/tcp # netopia-vo4
netopia-vo4 1842/udp # netopia-vo4
netopia-vo5 1843/tcp # netopia-vo5
netopia-vo5 1843/udp # netopia-vo5
gsi 1850/tcp # gsi
gsi 1850/udp # gsi
ctcd 1851/tcp # ctcd
ctcd 1851/udp # ctcd
sunscalar-svc 1860/tcp # sunscalar services
sunscalar-svc 1860/udp # sunscalar services
lecroy-vicp 1861/tcp # lecroy vicp
lecroy-vicp 1861/udp # lecroy vicp
techra-server 1862/tcp # techra-server
techra-server 1862/udp # techra-server
msnp 1863/tcp # msnp
msnp 1863/udp # msnp
paradym-31port 1864/tcp # paradym 31 port
paradym-31port 1864/udp # paradym 31 port
entp 1865/tcp # entp
entp 1865/udp # entp
sunscalar-dns 1870/tcp # sunscalar dns service
sunscalar-dns 1870/udp # sunscalar dns service
ibm-mqseries2 1881/tcp # ibm mqseries
ibm-mqseries2 1881/udp # ibm mqseries
vista-4gl 1895/tcp # vista 4gl
vista-4gl 1895/udp # vista 4gl
mc2studios 1899/tcp # mc2studios
mc2studios 1899/udp # mc2studios
fjicl-tep-a 1901/tcp # fujitsu icl terminal emulator program a
fjicl-tep-a 1901/udp # fujitsu icl terminal emulator program a
fjicl-tep-b 1902/tcp # fujitsu icl terminal emulator program b
fjicl-tep-b 1902/udp # fujitsu icl terminal emulator program b
linkname 1903/tcp # local link name resolution
linkname 1903/udp # local link name resolution
fjicl-tep-c 1904/tcp # fujitsu icl terminal emulator program c
fjicl-tep-c 1904/udp # fujitsu icl terminal emulator program c
sugp 1905/tcp # secure up.link gateway protocol
sugp 1905/udp # secure up.link gateway protocol
tpmd 1906/tcp # tportmapperreq
tpmd 1906/udp # tportmapperreq
intrastar 1907/tcp # intrastar
intrastar 1907/udp # intrastar
dawn 1908/tcp # dawn
dawn 1908/udp # dawn
global-wlink 1909/tcp # global world link
global-wlink 1909/udp # global world link
ultrabac 1910/tcp # ultrabac
ultrabac 1910/udp # ultrabac
mtp 1911/tcp # starlight networks multimedia transport protocol
mtp 1911/udp # starlight networks multimedia transport protocol
rhp-iibp 1912/tcp # rhp-iibp
rhp-iibp 1912/udp # rhp-iibp
armadp 1913/tcp # armadp
armadp 1913/udp # armadp
elm-momentum 1914/tcp # elm-momentum
elm-momentum 1914/udp # elm-momentum
facelink 1915/tcp # facelink
facelink 1915/udp # facelink
persona 1916/tcp # persoft persona
persona 1916/udp # persoft persona
noagent 1917/tcp # noagent
noagent 1917/udp # noagent
can-nds 1918/tcp # candle directory service - nds
can-nds 1918/udp # candle directory service - nds
can-dch 1919/tcp # candle directory service - dch
can-dch 1919/udp # candle directory service - dch
can-ferret 1920/tcp # candle directory service - ferret
can-ferret 1920/udp # candle directory service - ferret
noadmin 1921/tcp # noadmin
noadmin 1921/udp # noadmin
tapestry 1922/tcp # tapestry
tapestry 1922/udp # tapestry
spice 1923/tcp # spice
spice 1923/udp # spice
xiip 1924/tcp # xiip
xiip 1924/udp # xiip
close-combat 1944/tcp # close-combat
close-combat 1944/udp # close-combat
dialogic-elmd 1945/tcp # dialogic-elmd
dialogic-elmd 1945/udp # dialogic-elmd
tekpls 1946/tcp # tekpls
tekpls 1946/udp # tekpls
hlserver 1947/tcp # hlserver
hlserver 1947/udp # hlserver
eye2eye 1948/tcp # eye2eye
eye2eye 1948/udp # eye2eye
ismaeasdaqlive 1949/tcp # isma easdaq live
ismaeasdaqlive 1949/udp # isma easdaq live
ismaeasdaqtest 1950/tcp # isma easdaq test
ismaeasdaqtest 1950/udp # isma easdaq test
bcs-lmserver 1951/tcp # bcs-lmserver
bcs-lmserver 1951/udp # bcs-lmserver
mpnjsc 1952/tcp # mpnjsc
mpnjsc 1952/udp # mpnjsc
rapidbase 1953/tcp # rapid base
rapidbase 1953/udp # rapid base
intersys-cache 1972/tcp # cache
intersys-cache 1972/udp # cache
dlsrap 1973/tcp # data link switching remote access protocol
dlsrap 1973/udp # data link switching remote access protocol
bb 1984/tcp # bb
bb 1984/udp # bb
hsrp 1985/tcp # hot standby router protocol
hsrp 1985/udp # hot standby router protocol
licensedaemon 1986/tcp # cisco license management
licensedaemon 1986/udp # cisco license management
tr-rsrb-p1 1987/tcp # cisco rsrb priority 1 port
tr-rsrb-p1 1987/udp # cisco rsrb priority 1 port
tr-rsrb-p2 1988/tcp # cisco rsrb priority 2 port
tr-rsrb-p2 1988/udp # cisco rsrb priority 2 port
tr-rsrb-p3 1989/tcp mshnet # mhsnet system, cisco rsrb priority 3 port
tr-rsrb-p3 1989/udp mshnet # mhsnet system, cisco rsrb priority 3 port
stun-p1 1990/tcp # cisco stun priority 1 port
stun-p1 1990/udp # cisco stun priority 1 port
stun-p2 1991/tcp # cisco stun priority 2 port
stun-p2 1991/udp # cisco stun priority 2 port
stun-p3 1992/tcp ipsendmsg # ipsendmsg, cisco stun priority 3 port
stun-p3 1992/udp ipsendmsg # ipsendmsg, cisco stun priority 3 port
snmp-tcp-port 1993/tcp # cisco snmp tcp port
snmp-tcp-port 1993/udp # cisco snmp tcp port
stun-port 1994/tcp # cisco serial tunnel port
stun-port 1994/udp # cisco serial tunnel port
perf-port 1995/tcp # cisco perf port
perf-port 1995/udp # cisco perf port
tr-rsrb-port 1996/tcp # cisco remote srb port
tr-rsrb-port 1996/udp # cisco remote srb port
gdp-port 1997/tcp # cisco gateway discovery protocol
gdp-port 1997/udp # cisco gateway discovery protocol
x25-svc-port 1998/tcp # cisco x.25 service (xot)
x25-svc-port 1998/udp # cisco x.25 service (xot)
tcp-id-port 1999/tcp # cisco identification port
tcp-id-port 1999/udp # cisco identification port
callbook 2000/tcp
callbook 2000/udp
dc 2001/tcp
wizard 2001/udp # curry
globe 2002/tcp
globe 2002/udp
cfingerd 2003/tcp # gnu finger
mailbox 2004/tcp
emce 2004/udp # ccws mm conf
berknet 2005/tcp deslogin # encrypted symmetric telnet/login
oracle 2005/udp
invokator 2006/tcp
raid-cc 2006/udp # raid
dectalk 2007/tcp
raid-am 2007/udp
conf 2008/tcp
terminaldb 2008/udp
news 2009/tcp
whosockami 2009/udp
search 2010/tcp
pipe_server 2010/udp
raid-cc 2011/tcp # raid
servserv 2011/udp
ttyinfo 2012/tcp
raid-ac 2012/udp
raid-am 2013/tcp
raid-cd 2013/udp
troff 2014/tcp
raid-sf 2014/udp
cypress 2015/tcp
raid-cs 2015/udp
bootserver 2016/tcp
bootserver 2016/udp
cypress-stat 2017/tcp
bootclient 2017/udp
terminaldb 2018/tcp
rellpack 2018/udp
whosockami 2019/tcp
about 2019/udp
xinupageserver 2020/tcp
xinupageserver 2020/udp
servexec 2021/tcp
xinuexpansion1 2021/udp
down 2022/tcp
xinuexpansion2 2022/udp
xinuexpansion3 2023/tcp
xinuexpansion3 2023/udp
xinuexpansion4 2024/tcp
xinuexpansion4 2024/udp
ellpack 2025/tcp
xribs 2025/udp
scrabble 2026/tcp
scrabble 2026/udp
shadowserver 2027/tcp
shadowserver 2027/udp
submitserver 2028/tcp
submitserver 2028/udp
device2 2030/tcp
device2 2030/udp
blackboard 2032/tcp
blackboard 2032/udp
glogger 2033/tcp
glogger 2033/udp
scoremgr 2034/tcp
scoremgr 2034/udp
imsldoc 2035/tcp
imsldoc 2035/udp
objectmanager 2038/tcp
objectmanager 2038/udp
lam 2040/tcp
lam 2040/udp
interbase 2041/tcp
interbase 2041/udp
isis 2042/tcp # isis
isis 2042/udp # isis
isis-bcast 2043/tcp # isis-bcast
isis-bcast 2043/udp # isis-bcast
rimsl 2044/tcp
rimsl 2044/udp
cdfunc 2045/tcp
cdfunc 2045/udp
sdfunc 2046/tcp
sdfunc 2046/udp
dls 2047/tcp
dls 2047/udp
dls-monitor 2048/tcp
dls-monitor 2048/udp
shilp 2049/tcp nfsd nfs # networked file system, nfs server daemon, nfs server daemon (cots), network file system - sun microsystems, sun nfs, nfs server
shilp 2049/udp nfsd nfs # networked file system, nfs server daemon (clts), nfs server daemon, network file system - sun microsystems, sun nfs, nfs server
dlsrpn 2065/tcp # data link switch read port number
dlsrpn 2065/udp # data link switch read port number
dlswpn 2067/tcp # data link switch write port number
dlswpn 2067/udp # data link switch write port number
lrp 2090/tcp # load report protocol
lrp 2090/udp # load report protocol
prp 2091/tcp # prp
prp 2091/udp # prp
descent3 2092/tcp # descent 3
descent3 2092/udp # descent 3
nbx-cc 2093/tcp # nbx cc
nbx-cc 2093/udp # nbx cc
nbx-au 2094/tcp # nbx au
nbx-au 2094/udp # nbx au
nbx-ser 2095/tcp # nbx ser
nbx-ser 2095/udp # nbx ser
nbx-dir 2096/tcp # nbx dir
nbx-dir 2096/udp # nbx dir
amiganetfs 2100/tcp # amiganetfs
amiganetfs 2100/udp # amiganetfs
rtcm-sc104 2101/tcp # rtcm-sc104
rtcm-sc104 2101/udp # rtcm-sc104
zephyr-srv 2102/tcp # zephyr server
zephyr-srv 2102/udp # zephyr server
zephyr-clt 2103/tcp # zephyr serv-hm connection
zephyr-clt 2103/udp # zephyr serv-hm connection
zephyr-hm 2104/tcp # zephyr hostmanager
zephyr-hm 2104/udp # zephyr hostmanager
minipay 2105/tcp eklogin # kerberos (v4) encrypted rlogin, kerberos encrypted `rlogin', kerberos encrypted rlogin, minipay
minipay 2105/udp eklogin # kerberos (v4) encrypted rlogin, minipay
ekshell 2106/tcp ekshell2 # kerberos (v4) encrypted rshell, what u of colorado @ boulder uses?
ekshell 2106/udp # kerberos (v4) encrypted rshell
rkinit 2108/tcp # kerberos remote kinit, kerberos (v4) remote initialization
rkinit 2108/udp # kerberos (v4) remote initialization
kx 2111/tcp # x over kerberos
kip 2112/tcp # ip over kerberos
kauth 2120/tcp # remote kauth
mc-gt-srv 2180/tcp # millicent vendor gateway server
mc-gt-srv 2180/udp # millicent vendor gateway server
ici 2200/tcp # ici
ici 2200/udp # ici
ats 2201/tcp # advanced training system program
ats 2201/udp # advanced training system program
imtc-map 2202/tcp # int. multimedia teleconferencing cosortium
imtc-map 2202/udp # int. multimedia teleconferencing cosortium
kali 2213/tcp # kali
kali 2213/udp # kali
ganymede 2220/tcp # ganymede
ganymede 2220/udp # ganymede
unreg-ab1 2221/tcp # allen-bradley unregistered port
unreg-ab1 2221/udp # allen-bradley unregistered port
unreg-ab2 2222/tcp # allen-bradley unregistered port
unreg-ab2 2222/udp # allen-bradley unregistered port
inreg-ab3 2223/tcp # allen-bradley unregistered port
inreg-ab3 2223/udp # allen-bradley unregistered port
ivs-video 2232/tcp # ivs video default
ivs-video 2232/udp # ivs video default
infocrypt 2233/tcp # infocrypt
infocrypt 2233/udp # infocrypt
directplay 2234/tcp # directplay
directplay 2234/udp # directplay
sercomm-wlink 2235/tcp # sercomm-wlink
sercomm-wlink 2235/udp # sercomm-wlink
nani 2236/tcp # nani
nani 2236/udp # nani
optech-port1-lm 2237/tcp # optech port1 license manager
optech-port1-lm 2237/udp # optech port1 license manager
aviva-sna 2238/tcp # aviva sna server
aviva-sna 2238/udp # aviva sna server
imagequery 2239/tcp # image query
imagequery 2239/udp # image query
recipe 2240/tcp # recipe
recipe 2240/udp # recipe
ivsd 2241/tcp # ivs daemon
ivsd 2241/udp # ivs daemon
foliocorp 2242/tcp # folio remote server
foliocorp 2242/udp # folio remote server
xmquery 2279/tcp # xmquery
xmquery 2279/udp # xmquery
lnvpoller 2280/tcp # lnvpoller
lnvpoller 2280/udp # lnvpoller
lnvconsole 2281/tcp # lnvconsole
lnvconsole 2281/udp # lnvconsole
lnvalarm 2282/tcp # lnvalarm
lnvalarm 2282/udp # lnvalarm
lnvstatus 2283/tcp # lnvstatus
lnvstatus 2283/udp # lnvstatus
lnvmaps 2284/tcp # lnvmaps
lnvmaps 2284/udp # lnvmaps
lnvmailmon 2285/tcp # lnvmailmon
lnvmailmon 2285/udp # lnvmailmon
nas-metering 2286/tcp # nas-metering
nas-metering 2286/udp # nas-metering
dna 2287/tcp # dna
dna 2287/udp # dna
netml 2288/tcp # netml
netml 2288/udp # netml
konshus-lm 2294/tcp # konshus license manager (flex)
konshus-lm 2294/udp # konshus license manager (flex)
advant-lm 2295/tcp # advant license manager
advant-lm 2295/udp # advant license manager
theta-lm 2296/tcp # theta license manager (rainbow)
theta-lm 2296/udp # theta license manager (rainbow)
d2k-datamover1 2297/tcp # d2k datamover 1
d2k-datamover1 2297/udp # d2k datamover 1
d2k-datamover2 2298/tcp # d2k datamover 2
d2k-datamover2 2298/udp # d2k datamover 2
pc-telecommute 2299/tcp # pc telecommute
pc-telecommute 2299/udp # pc telecommute
cvmmon 2300/tcp # cvmmon
cvmmon 2300/udp # cvmmon
cpq-wbem 2301/tcp # compaq http
cpq-wbem 2301/udp # compaq http
binderysupport 2302/tcp # bindery support
binderysupport 2302/udp # bindery support
proxy-gateway 2303/tcp # proxy gateway
proxy-gateway 2303/udp # proxy gateway
attachmate-uts 2304/tcp # attachmate uts
attachmate-uts 2304/udp # attachmate uts
mt-scaleserver 2305/tcp # mt scaleserver
mt-scaleserver 2305/udp # mt scaleserver
tappi-boxnet 2306/tcp # tappi boxnet
tappi-boxnet 2306/udp # tappi boxnet
pehelp 2307/tcp # pehelp
pehelp 2307/udp # pehelp
sdhelp 2308/tcp # sdhelp
sdhelp 2308/udp # sdhelp
sdserver 2309/tcp # sd server
sdserver 2309/udp # sd server
sdclient 2310/tcp # sd client
sdclient 2310/udp # sd client
messageservice 2311/tcp # message service
messageservice 2311/udp # message service
iapp 2313/tcp # iapp (inter access point protocol)
iapp 2313/udp # iapp (inter access point protocol)
cr-websystems 2314/tcp # cr websystems
cr-websystems 2314/udp # cr websystems
precise-sft 2315/tcp # precise sft.
precise-sft 2315/udp # precise sft.
sent-lm 2316/tcp # sent license manager
sent-lm 2316/udp # sent license manager
attachmate-g32 2317/tcp # attachmate g32
attachmate-g32 2317/udp # attachmate g32
cadencecontrol 2318/tcp # cadence control
cadencecontrol 2318/udp # cadence control
infolibria 2319/tcp # infolibria
infolibria 2319/udp # infolibria
siebel-ns 2320/tcp # siebel ns
siebel-ns 2320/udp # siebel ns
rdlap 2321/tcp # rdlap over udp
rdlap 2321/udp # rdlap
ofsd 2322/tcp # ofsd
ofsd 2322/udp # ofsd
3d-nfsd 2323/tcp # 3d-nfsd
3d-nfsd 2323/udp # 3d-nfsd
cosmocall 2324/tcp # cosmocall
cosmocall 2324/udp # cosmocall
designspace-lm 2325/tcp # design space license management
designspace-lm 2325/udp # design space license management
idcp 2326/tcp # idcp
idcp 2326/udp # idcp
xingcsm 2327/tcp # xingcsm
xingcsm 2327/udp # xingcsm
netrix-sftm 2328/tcp # netrix sftm
netrix-sftm 2328/udp # netrix sftm
nvd 2329/tcp # nvd
nvd 2329/udp # nvd
tscchat 2330/tcp # tscchat
tscchat 2330/udp # tscchat
agentview 2331/tcp # agentview
agentview 2331/udp # agentview
rcc-host 2332/tcp # rcc host
rcc-host 2332/udp # rcc host
snapp 2333/tcp # snapp
snapp 2333/udp # snapp
ace-client 2334/tcp # ace client auth
ace-client 2334/udp # ace client auth
ace-proxy 2335/tcp # ace proxy
ace-proxy 2335/udp # ace proxy
appleugcontrol 2336/tcp # apple ug control
appleugcontrol 2336/udp # apple ug control
ideesrv 2337/tcp # ideesrv
ideesrv 2337/udp # ideesrv
norton-lambert 2338/tcp # norton lambert
norton-lambert 2338/udp # norton lambert
3com-webview 2339/tcp # 3com webview
3com-webview 2339/udp # 3com webview
wrs_registry 2340/tcp # wrs registry
wrs_registry 2340/udp # wrs registry
xiostatus 2341/tcp # xio status
xiostatus 2341/udp # xio status
manage-exec 2342/tcp # seagate manage exec
manage-exec 2342/udp # seagate manage exec
nati-logos 2343/tcp # nati logos
nati-logos 2343/udp # nati logos
fcmsys 2344/tcp # fcmsys
fcmsys 2344/udp # fcmsys
dbm 2345/tcp # dbm
dbm 2345/udp # dbm
redstorm_join 2346/tcp # game connection port
redstorm_join 2346/udp # game connection port
redstorm_find 2347/tcp # game announcement and location
redstorm_find 2347/udp # game announcement and location
redstorm_info 2348/tcp # information to query for game status
redstorm_info 2348/udp # information to query for game status
redstorm_diag 2349/tcp # diagnostics port
redstorm_diag 2349/udp # disgnostics port
psbserver 2350/tcp # psbserver
psbserver 2350/udp # psbserver
psrserver 2351/tcp # psrserver
psrserver 2351/udp # psrserver
pslserver 2352/tcp # pslserver
pslserver 2352/udp # pslserver
pspserver 2353/tcp # pspserver
pspserver 2353/udp # pspserver
psprserver 2354/tcp # psprserver
psprserver 2354/udp # psprserver
psdbserver 2355/tcp # psdbserver
psdbserver 2355/udp # psdbserver
gxtelmd 2356/tcp # gxt license managemant
gxtelmd 2356/udp # gxt license managemant
unihub-server 2357/tcp # unihub server
unihub-server 2357/udp # unihub server
futrix 2358/tcp # futrix
futrix 2358/udp # futrix
flukeserver 2359/tcp # flukeserver
flukeserver 2359/udp # flukeserver
nexstorindltd 2360/tcp # nexstorindltd
nexstorindltd 2360/udp # nexstorindltd
ovsessionmgr 2389/tcp # openview session mgr
ovsessionmgr 2389/udp # openview session mgr
rsmtp 2390/tcp # rsmtp
rsmtp 2390/udp # rsmtp
3com-net-mgmt 2391/tcp # 3com net management
3com-net-mgmt 2391/udp # 3com net management
tacticalauth 2392/tcp # tactical auth
tacticalauth 2392/udp # tactical auth
ms-olap1 2393/tcp # ms olap 1
ms-olap1 2393/udp # ms olap 1
ms-olap2 2394/tcp # ms olap 2
ms-olap2 2394/udp # ma olap 2
lan900_remote 2395/tcp # lan900 remote
lan900_remote 2395/udp # lan900 remote
wusage 2396/tcp # wusage
wusage 2396/udp # wusage
ncl 2397/tcp # ncl
ncl 2397/udp # ncl
orbiter 2398/tcp # orbiter
orbiter 2398/udp # orbiter
fmpro-fdal 2399/tcp # filemaker, inc. - data access layer
fmpro-fdal 2399/udp # filemaker, inc. - data access layer
opequus-server 2400/tcp # opequus server
opequus-server 2400/udp # opequus server
cvspserver 2401/tcp # cvspserver, cvs network server
cvspserver 2401/udp # cvspserver, cvs network server
taskmaster2000 2402/tcp # taskmaster 2000 server
taskmaster2000 2402/udp # taskmaster 2000 server
taskmaster2000 2403/tcp # taskmaster 2000 web
taskmaster2000 2403/udp # taskmaster 2000 web
iec870-5-104 2404/tcp # iec870-5-104
iec870-5-104 2404/udp # iec870-5-104
trc-netpoll 2405/tcp # trc netpoll
trc-netpoll 2405/udp # trc netpoll
jediserver 2406/tcp # jediserver
jediserver 2406/udp # jediserver
orion 2407/tcp # orion
orion 2407/udp # orion
optimanet 2408/tcp # optimanet
optimanet 2408/udp # optimanet
sns-protocol 2409/tcp # sns protocol
sns-protocol 2409/udp # sns protocol
vrts-registry 2410/tcp # vrts registry
vrts-registry 2410/udp # vrts registry
netwave-ap-mgmt 2411/tcp # netwave ap management
netwave-ap-mgmt 2411/udp # netwave ap management
cdn 2412/tcp # cdn
cdn 2412/udp # cdn
orion-rmi-reg 2413/tcp # orion-rmi-reg
orion-rmi-reg 2413/udp # orion-rmi-reg
interlingua 2414/tcp # interlingua
interlingua 2414/udp # interlingua
comtest 2415/tcp # comtest
comtest 2415/udp # comtest
rmtserver 2416/tcp # rmt server
rmtserver 2416/udp # rmt server
composit-server 2417/tcp # composit server
composit-server 2417/udp # composit server
cas 2418/tcp # cas
cas 2418/udp # cas
attachmate-s2s 2419/tcp # attachmate s2s
attachmate-s2s 2419/udp # attachmate s2s
dslremote-mgmt 2420/tcp # dsl remote management
dslremote-mgmt 2420/udp # dsl remote management
g-talk 2421/tcp # g-talk
g-talk 2421/udp # g-talk
crmsbits 2422/tcp # crmsbits
crmsbits 2422/udp # crmsbits
rnrp 2423/tcp # rnrp
rnrp 2423/udp # rnrp
kofax-svr 2424/tcp # kofax-svr
kofax-svr 2424/udp # kofax-svr
fjitsuappmgr 2425/tcp # fujitsu app manager
fjitsuappmgr 2425/udp # fujitsu app manager
applianttcp 2426/tcp # appliant tcp
appliantudp 2426/udp # appliant udp
stgcp 2427/tcp # simple telephony gateway control protocol
stgcp 2427/udp # simple telephony gateway control protocol
ott 2428/tcp # one way trip time
ott 2428/udp # one way trip time
ft-role 2429/tcp # ft-role
ft-role 2429/udp # ft-role
venus 2430/tcp # venus
venus 2430/udp # venus
venus-se 2431/tcp # venus-se
venus-se 2431/udp # venus-se
codasrv 2432/tcp # codasrv
codasrv 2432/udp # codasrv
codasrv-se 2433/tcp # codasrv-se
codasrv-se 2433/udp # codasrv-se
pxc-epmap 2434/tcp # pxc-epmap
pxc-epmap 2434/udp # pxc-epmap
optilogic 2435/tcp # optilogic
optilogic 2435/udp # optilogic
topx 2436/tcp # top/x
topx 2436/udp # top/x
unicontrol 2437/tcp # unicontrol
unicontrol 2437/udp # unicontrol
msp 2438/tcp # msp
msp 2438/udp # msp
sybasedbsynch 2439/tcp # sybasedbsynch
sybasedbsynch 2439/udp # sybasedbsynch
spearway 2440/tcp # spearway lockers
spearway 2440/udp # spearway lockser
pvsw-inet 2441/tcp # pvsw-inet
pvsw-inet 2441/udp # pvsw-inet
netangel 2442/tcp # netangel
netangel 2442/udp # netangel
powerclientcsf 2443/tcp # powerclient central storage facility
powerclientcsf 2443/udp # powerclient central storage facility
btpp2sectrans 2444/tcp # bt pp2 sectrans
btpp2sectrans 2444/udp # bt pp2 sectrans
dtn1 2445/tcp # dtn1
dtn1 2445/udp # dtn1
bues_service 2446/tcp # bues_service
bues_service 2446/udp # bues_service
ovwdb 2447/tcp # openview nnm daemon
ovwdb 2447/udp # openview nnm daemon
hpppssvr 2448/tcp # hpppsvr
hpppssvr 2448/udp # hpppsvr
ratl 2449/tcp # ratl
ratl 2449/udp # ratl
netadmin 2450/tcp # netadmin
netadmin 2450/udp # netadmin
netchat 2451/tcp # netchat
netchat 2451/udp # netchat
snifferclient 2452/tcp # snifferclient
snifferclient 2452/udp # snifferclient
madge-om 2453/tcp # madge-om
madge-om 2453/udp # madge-om
indx-dds 2454/tcp # indx-dds
indx-dds 2454/udp # indx-dds
wago-io-system 2455/tcp # wago-io-system
wago-io-system 2455/udp # wago-io-system
altav-remmgt 2456/tcp # altav-remmgt
altav-remmgt 2456/udp # altav-remmgt
rapido-ip 2457/tcp # rapido_ip
rapido-ip 2457/udp # rapido_ip
griffin 2458/tcp # griffin
griffin 2458/udp # griffin
community 2459/tcp # community
community 2459/udp # community
ms-theater 2460/tcp # ms-theater
ms-theater 2460/udp # ms-theater
qadmifoper 2461/tcp # qadmifoper
qadmifoper 2461/udp # qadmifoper
qadmifevent 2462/tcp # qadmifevent
qadmifevent 2462/udp # qadmifevent
symbios-raid 2463/tcp # symbios raid
symbios-raid 2463/udp # symbios raid
direcpc-si 2464/tcp # direcpc si
direcpc-si 2464/udp # direcpc si
lbm 2465/tcp # load balance management
lbm 2465/udp # load balance management
lbf 2466/tcp # load balance forwarding
lbf 2466/udp # load balance forwarding
high-criteria 2467/tcp # high criteria
high-criteria 2467/udp # high criteria
qip_msgd 2468/tcp # qip_msgd
qip_msgd 2468/udp # qip_msgd
mti-tcs-comm 2469/tcp # mti-tcs-comm
mti-tcs-comm 2469/udp # mti-tcs-comm
taskman_port 2470/tcp # taskman port
taskman_port 2470/udp # taskman port
seaodbc 2471/tcp # seaodbc
seaodbc 2471/udp # seaodbc
c3 2472/tcp # c3
c3 2472/udp # c3
aker-cdp 2473/tcp # aker-cdp
aker-cdp 2473/udp # aker-cdp
vitalanalysis 2474/tcp # vital analysis
vitalanalysis 2474/udp # vital analysis
ace-server 2475/tcp # ace server
ace-server 2475/udp # ace server
ace-svr-prop 2476/tcp # ace server propagation
ace-svr-prop 2476/udp # ace server propagation
ssm-cvs 2477/tcp # secursight certificate valifation service
ssm-cvs 2477/udp # secursight certificate valifation service
ssm-cssps 2478/tcp # secursight authentication server (sll)
ssm-cssps 2478/udp # secursight authentication server (ssl)
ssm-els 2479/tcp # secursight event logging server (ssl)
ssm-els 2479/udp # secursight event logging server (ssl)
lingwood 2480/tcp # lingwood's detail
lingwood 2480/udp # lingwood's detail
giop 2481/tcp # oracle giop
giop 2481/udp # oracle giop
giop-ssl 2482/tcp # oracle giop ssl
giop-ssl 2482/udp # oracle giop ssl
ttc 2483/tcp # oracle ttc
ttc 2483/udp # oracel ttc
ttc-ssl 2484/tcp # oracle ttc ssl
ttc-ssl 2484/udp # oracle ttc ssl
netobjects1 2485/tcp # net objects1
netobjects1 2485/udp # net objects1
netobjects2 2486/tcp # net objects2
netobjects2 2486/udp # net objects2
pns 2487/tcp # policy notice service
pns 2487/udp # policy notice service
moy-corp 2488/tcp # moy corporation
moy-corp 2488/udp # moy corporation
tsilb 2489/tcp # tsilb
tsilb 2489/udp # tsilb
qip_qdhcp 2490/tcp # qip_qdhcp
qip_qdhcp 2490/udp # qip_qdhcp
conclave-cpp 2491/tcp # conclave cpp
conclave-cpp 2491/udp # conclave cpp
groove 2492/tcp # groove
groove 2492/udp # groove
talarian-mqs 2493/tcp # talarian mqs
talarian-mqs 2493/udp # talarian mqs
bmc-ar 2494/tcp # bmc ar
bmc-ar 2494/udp # bmc ar
fast-rem-serv 2495/tcp # fast remote services
fast-rem-serv 2495/udp # fast remote services
dirgis 2496/tcp # dirgis
dirgis 2496/udp # dirgis
quaddb 2497/tcp # quad db
quaddb 2497/udp # quad db
odn-castraq 2498/tcp # odn-castraq
odn-castraq 2498/udp # odn-castraq
unicontrol 2499/tcp # unicontrol
unicontrol 2499/udp # unicontrol
rtsserv 2500/tcp # resource tracking system server
rtsserv 2500/udp # resource tracking system server
rtsclient 2501/tcp # resource tracking system client
rtsclient 2501/udp # resource tracking system client
kentrox-prot 2502/tcp # kentrox protocol
kentrox-prot 2502/udp # kentrox protocol
nms-dpnss 2503/tcp # nms-dpnss
nms-dpnss 2503/udp # nms-dpnss
wlbs 2504/tcp # wlbs
wlbs 2504/udp # wlbs
torque-traffic 2505/tcp # torque-traffic
torque-traffic 2505/udp # torque-traffic
jbroker 2506/tcp # jbroker
jbroker 2506/udp # jbroker
spock 2507/tcp # spock
spock 2507/udp # spock
datastore 2508/tcp # datastore
datastore 2508/udp # datastore
fjmpss 2509/tcp # fjmpss
fjmpss 2509/udp # fjmpss
fjappmgrbulk 2510/tcp # fjappmgrbulk
fjappmgrbulk 2510/udp # fjappmgrbulk
metastorm 2511/tcp # metastorm
metastorm 2511/udp # metastorm
citrixima 2512/tcp # citrix ima
citrixima 2512/udp # citrix ima
citrixadmin 2513/tcp # citrix admin
citrixadmin 2513/udp # citrix admin
facsys-ntp 2514/tcp # facsys ntp
facsys-ntp 2514/udp # facsys ntp
facsys-router 2515/tcp # facsys router
facsys-router 2515/udp # facsys router
maincontrol 2516/tcp # main control
maincontrol 2516/udp # main control
call-sig-trans 2517/tcp # call signalling transport
call-sig-trans 2517/udp # call signalling transport
willy 2518/tcp # willy
willy 2518/udp # willy
globmsgsvc 2519/tcp # globmsgsvc
globmsgsvc 2519/udp # globmsgsvc
pvsw 2520/tcp # pvsw
pvsw 2520/udp # pvsw
adaptecmgr 2521/tcp # adaptec manager
adaptecmgr 2521/udp # adaptec manager
windb 2522/tcp # windb
windb 2522/udp # windb
qke-llc-v3 2523/tcp # qke llc v.3
qke-llc-v3 2523/udp # qke llc v.3
optiwave-lm 2524/tcp # optiwave license management
optiwave-lm 2524/udp # optiwave license management
ms-v-worlds 2525/tcp # ms v-worlds
ms-v-worlds 2525/udp # ms v-worlds
ema-sent-lm 2526/tcp # ema license manager
ema-sent-lm 2526/udp # ema license manager
iqserver 2527/tcp # iq server
iqserver 2527/udp # iq server
ncr_ccl 2528/tcp # ncr ccl
ncr_ccl 2528/udp # ncr ccl
utsftp 2529/tcp # uts ftp
utsftp 2529/udp # uts ftp
vrcommerce 2530/tcp # vr commerce
vrcommerce 2530/udp # vr commerce
ito-e-gui 2531/tcp # ito-e gui
ito-e-gui 2531/udp # ito-e gui
ovtopmd 2532/tcp # ovtopmd
ovtopmd 2532/udp # ovtopmd
snifferserver 2533/tcp # snifferserver
snifferserver 2533/udp # snifferserver
combox-web-acc 2534/tcp # combox web access
combox-web-acc 2534/udp # combox web access
mdhcp 2535/tcp # mdhcp
mdhcp 2535/udp # mdhcp
btpp2audctr1 2536/tcp # btpp2audctr1
btpp2audctr1 2536/udp # btpp2audctr1
upgrade 2537/tcp # upgrade protocol
upgrade 2537/udp # upgrade protocol
vnwk-prapi 2538/tcp # vnwk-prapi
vnwk-prapi 2538/udp # vnwk-prapi
vsiadmin 2539/tcp # vsi admin
vsiadmin 2539/udp # vsi admin
lonworks 2540/tcp # lonworks
lonworks 2540/udp # lonworks
lonworks2 2541/tcp # lonworks2
lonworks2 2541/udp # lonworks2
davinci 2542/tcp # davinci
davinci 2542/udp # davinci
reftek 2543/tcp # reftek
reftek 2543/udp # reftek
novell-zen 2544/tcp # novell zen
sis-emt 2545/tcp # sis-emt
sis-emt 2545/udp # sis-emt
vytalvaultbrtp 2546/tcp # vytalvaultbrtp
vytalvaultbrtp 2546/udp # vytalvaultbrtp
vytalvaultvsmp 2547/tcp # vytalvaultvsmp
vytalvaultvsmp 2547/udp # vytalvaultvsmp
vytalvaultpipe 2548/tcp # vytalvaultpipe
vytalvaultpipe 2548/udp # vytalvaultpipe
ipass 2549/tcp # ipass
ipass 2549/udp # ipass
ads 2550/tcp # ads
ads 2550/udp # ads
isg-uda-server 2551/tcp # isg uda server
isg-uda-server 2551/udp # isg uda server
call-logging 2552/tcp # call logging
call-logging 2552/udp # call logging
efidiningport 2553/tcp # efidiningport
efidiningport 2553/udp # efidiningport
vcnet-link-v10 2554/tcp # vcnet-link v10
vcnet-link-v10 2554/udp # vcnet-link v10
compaq-wcp 2555/tcp # compaq wcp
compaq-wcp 2555/udp # compaq wcp
nicetec-nmsvc 2556/tcp # nicetec-nmsvc
nicetec-nmsvc 2556/udp # nicetec-nmsvc
nicetec-mgmt 2557/tcp # nicetec-mgmt
nicetec-mgmt 2557/udp # nicetec-mgmt
pclemultimedia 2558/tcp # pcle multi media
pclemultimedia 2558/udp # pcle multi media
lstp 2559/tcp # lstp
lstp 2559/udp # lstp
labrat 2560/tcp # labrat
labrat 2560/udp # labrat
mosaixcc 2561/tcp # mosaixcc
mosaixcc 2561/udp # mosaixcc
delibo 2562/tcp # delibo
delibo 2562/udp # delibo
cti-redwood 2563/tcp # cti redwood
cti-redwood 2563/udp # cti redwood
hp-3000-telnet 2564/tcp # hp 3000 ns/vt block mode telnet
coord-svr 2565/tcp # coordinator server
coord-svr 2565/udp # coordinator server
pcs-pcw 2566/tcp # pcs-pcw
pcs-pcw 2566/udp # pcs-pcw
clp 2567/tcp # cisco line protocol
clp 2567/udp # cisco line protocol
spamtrap 2568/tcp # spam trap
spamtrap 2568/udp # spam trap
sonuscallsig 2569/tcp # sonus call signal
sonuscallsig 2569/udp # sonus call signal
hs-port 2570/tcp # hs port
hs-port 2570/udp # hs port
cecsvc 2571/tcp # cecsvc
cecsvc 2571/udp # cecsvc
ibp 2572/tcp # ibp
ibp 2572/udp # ibp
trustestablish 2573/tcp # trust establish
trustestablish 2573/udp # trust establish
blockade-bpsp 2574/tcp # blockade bpsp
blockade-bpsp 2574/udp # blockade bpsp
hl7 2575/tcp # hl7
hl7 2575/udp # hl7
tclprodebugger 2576/tcp # tcl pro debugger
tclprodebugger 2576/udp # tcl pro debugger
scipticslsrvr 2577/tcp # scriptics lsrvr
scipticslsrvr 2577/udp # scriptics lsrvr
rvs-isdn-dcp 2578/tcp # rvs isdn dcp
rvs-isdn-dcp 2578/udp # rvs isdn dcp
mpfoncl 2579/tcp # mpfoncl
mpfoncl 2579/udp # mpfoncl
tributary 2580/tcp # tributay, tributary
argis-te 2581/tcp # argis te
argis-te 2581/udp # argis te
argis-ds 2582/tcp # argis ds
argis-ds 2582/udp # argis ds
mon 2583/tcp # mon
mon 2583/udp # mon
netrek 2592/tcp # netrek
netrek 2592/udp # netrek
mns-mail 2593/tcp # mns mail notice service
mns-mail 2593/udp # mns mail notice service
dts 2594/tcp # data base server
dts 2594/udp # data base server
zebrasrv 2600/tcp # zebra service
zebra 2601/tcp # zebra vty
ripd 2602/tcp # ripd vty
ripngd 2603/tcp # ripngd vty
ospfd 2604/tcp # ospfd vty
bgpd 2605/tcp # bgpd vty
webster 2627/tcp # network dictionary
webster 2627/udp
dict 2628/tcp # dict
dict 2628/udp # dict
sitaraserver 2629/tcp # sitara server
sitaraserver 2629/udp # sitara server
sitaramgmt 2630/tcp # sitara management
sitaramgmt 2630/udp # sitara management
sitaradir 2631/tcp # sitara dir
sitaradir 2631/udp # sitara dir
irdg-post 2632/tcp # irdg post
irdg-post 2632/udp # irdg post
interintelli 2633/tcp # interintelli
interintelli 2633/udp # interintelli
pk-electronics 2634/tcp # pk electronics
pk-electronics 2634/udp # pk electronics
backburner 2635/tcp # back burner
backburner 2635/udp # back burner
solve 2636/tcp # solve
solve 2636/udp # solve
imdocsvc 2637/tcp # import document service
imdocsvc 2637/udp # import document service
sybaseanywhere 2638/tcp # sybase anywhere
sybaseanywhere 2638/udp # sybase anywhere
aminet 2639/tcp # aminet
aminet 2639/udp # aminet
sai_sentlm 2640/tcp # sabbagh associates licence manager
sai_sentlm 2640/udp # sabbagh associates licence manager
hdl-srv 2641/tcp # hdl server
hdl-srv 2641/udp # hdl server
tragic 2642/tcp # tragic
tragic 2642/udp # tragic
gte-samp 2643/tcp # gte-samp
gte-samp 2643/udp # gte-samp
travsoft-ipx-t 2644/tcp # travsoft ipx tunnel
travsoft-ipx-t 2644/udp # travsoft ipx tunnel
novell-ipx-cmd 2645/tcp # novell ipx cmd
novell-ipx-cmd 2645/udp # novell ipx cmd
and-lm 2646/tcp # and licence manager
and-lm 2646/udp # and license manager
syncserver 2647/tcp # syncserver
syncserver 2647/udp # syncserver
upsnotifyprot 2648/tcp # upsnotifyprot
upsnotifyprot 2648/udp # upsnotifyprot
vpsipport 2649/tcp # vpsipport
vpsipport 2649/udp # vpsipport
eristwoguns 2650/tcp # eristwoguns
eristwoguns 2650/udp # eristwoguns
ebinsite 2651/tcp # ebinsite
ebinsite 2651/udp # ebinsite
interpathpanel 2652/tcp # interpathpanel
interpathpanel 2652/udp # interpathpanel
sonus 2653/tcp # sonus
sonus 2653/udp # sonus
corel_vncadmin 2654/tcp # corel vnc admin
corel_vncadmin 2654/udp # corel vnc admin
unglue 2655/tcp # unix nt glue
unglue 2655/udp # unix nt glue
kana 2656/tcp # kana
kana 2656/udp # kana
sns-dispatcher 2657/tcp # sns dispatcher
sns-dispatcher 2657/udp # sns dispatcher
sns-admin 2658/tcp # sns admin
sns-admin 2658/udp # sns admin
sns-query 2659/tcp # sns query
sns-query 2659/udp # sns query
gcmonitor 2660/tcp # gc monitor
gcmonitor 2660/udp # gc monitor
olhost 2661/tcp # olhost
olhost 2661/udp # olhost
bintec-capi 2662/tcp # bintec-capi
bintec-capi 2662/udp # bintec-capi
bintec-tapi 2663/tcp # bintec-tapi
bintec-tapi 2663/udp # bintec-tapi
command-mq-gm 2664/tcp # command mq gm
command-mq-gm 2664/udp # command mq gm
command-mq-pm 2665/tcp # command mq pm
command-mq-pm 2665/udp # command mq pm
extensis 2666/tcp # extensis
extensis 2666/udp # extensis
alarm-clock-s 2667/tcp # alarm clock server
alarm-clock-s 2667/udp # alarm clock server
alarm-clock-c 2668/tcp # alarm clock client
alarm-clock-c 2668/udp # alarm clock client
toad 2669/tcp # toad
toad 2669/udp # toad
tve-announce 2670/tcp # tve announce
tve-announce 2670/udp # tve announce
newlixreg 2671/tcp # newlixreg
newlixreg 2671/udp # newlixreg
nhserver 2672/tcp # nhserver
nhserver 2672/udp # nhserver
firstcall42 2673/tcp # first call 42
firstcall42 2673/udp # first call 42
ewnn 2674/tcp # ewnn
ewnn 2674/udp # ewnn
ttc-etap 2675/tcp # ttc etap
ttc-etap 2675/udp # ttc etap
simslink 2676/tcp # simslink
simslink 2676/udp # simslink
gadgetgate1way 2677/tcp # gadget gate 1 way
gadgetgate1way 2677/udp # gadget gate 1 way
gadgetgate2way 2678/tcp # gadget gate 2 way
gadgetgate2way 2678/udp # gadget gate 2 way
syncserverssl 2679/tcp # sync server ssl
syncserverssl 2679/udp # sync server ssl
pxc-sapxom 2680/tcp # pxc-sapxom
pxc-sapxom 2680/udp # pxc-sapxom
mpnjsomb 2681/tcp # mpnjsomb
mpnjsomb 2681/udp # mpnjsomb
srsp 2682/tcp # srsp
srsp 2682/udp # srsp
ncdloadbalance 2683/tcp # ncdloadbalance
ncdloadbalance 2683/udp # ncdloadbalance
mpnjsosv 2684/tcp # mpnjsosv
mpnjsosv 2684/udp # mpnjsosv
mpnjsocl 2685/tcp # mpnjsocl
mpnjsocl 2685/udp # mpnjsocl
mpnjsomg 2686/tcp # mpnjsomg
mpnjsomg 2686/udp # mpnjsomg
pq-lic-mgmt 2687/tcp # pq-lic-mgmt
pq-lic-mgmt 2687/udp # pq-lic-mgmt
tqdata 2700/tcp # tqdata
tqdata 2700/udp # tqdata
listen 2766/tcp # system v listener port
www-dev 2784/tcp # world wide web - development
www-dev 2784/udp # world wide web - development
aic-np 2785/tcp # aic-np
aic-np 2785/udp # aic-np
aic-oncrpc 2786/tcp # aic-oncrpc - destiny mcd database
aic-oncrpc 2786/udp # aic-oncrpc - destiny mcd database
piccolo 2787/tcp # piccolo - cornerstone software
piccolo 2787/udp # piccolo - cornerstone software
fryeserv 2788/tcp # netware loadable module - seagate software
fryeserv 2788/udp # netware loadable module - seagate software
media-agent 2789/tcp # media agent
media-agent 2789/udp # media agent
itm-lm 2828/tcp # itm license manager
itm-lm 2828/udp # itm license manager
mao 2908/tcp # mao
mao 2908/udp # mao
funk-dialout 2909/tcp # funk dialout
funk-dialout 2909/udp # funk dialout
tdaccess 2910/tcp # tdaccess
tdaccess 2910/udp # tdaccess
blockade 2911/tcp # blockade
blockade 2911/udp # blockade
epicon 2912/tcp # epicon
epicon 2912/udp # epicon
boosterware 2913/tcp # booster ware
boosterware 2913/udp # booster ware
gamelobby 2914/tcp # game lobby
gamelobby 2914/udp # game lobby
tksocket 2915/tcp # tk socket
tksocket 2915/udp # tk socket
elvin_server 2916/tcp # elvin server
elvin_server 2916/ucp # elvin server
elvin_client 2917/tcp # elvin client
elvin_client 2917/udp # elvin client
kastenchasepad 2918/tcp # kasten chase pad
kastenchasepad 2918/udp # kasten chase pad
netclip 2971/tcp # net clip
netclip 2971/udp # net clip
pmsm-webrctl 2972/tcp # pmsm webrctl
pmsm-webrctl 2972/udp # pmsm webrctl
svnetworks 2973/tcp # sv networks
svnetworks 2973/udp # sv networks
signal 2974/tcp # signal
signal 2974/udp # signal
fjmpcm 2975/tcp # fujitsu configuration management service
fjmpcm 2975/udp # fujitsu configuration management service
realsecure 2998/tcp # real secure
realsecure 2998/udp # real secure
remoteware-un 2999/tcp # remoteware unassigned
remoteware-un 2999/udp # remoteware unassigned
hbci 3000/tcp ppp remoteware-cl # user-level ppp daemon, remoteware client, hbci
hbci 3000/udp remoteware-cl # remoteware client, hbci
redwood-broker 3001/tcp # redwood broker
redwood-broker 3001/udp # redwood broker
exlm-agent 3002/tcp remoteware-srv # remoteware server, exlm agent
exlm-agent 3002/udp remoteware-srv # remoteware server, exlm agent
cgms 3003/tcp # cgms
cgms 3003/udp # cgms
csoftragent 3004/tcp # csoft agent
csoftragent 3004/udp # csoft agent
geniuslm 3005/tcp deslogin # genius license manager, encrypted symmetric telnet/login
geniuslm 3005/udp # genius license manager
ii-admin 3006/tcp deslogind # instant internet admin
ii-admin 3006/udp # instant internet admin
lotusmtap 3007/tcp # lotus mail tracking agent protocol
lotusmtap 3007/udp # lotus mail tracking agent protocol
midnight-tech 3008/tcp # midnight technologies
midnight-tech 3008/udp # midnight technologies
pxc-ntfy 3009/tcp # pxc-ntfy
pxc-ntfy 3009/udp # pxc-ntfy
gw 3010/tcp # telerate workstation
ping-pong 3010/udp # telerate workstation
trusted-web 3011/tcp # trusted web
trusted-web 3011/udp # trusted web
twsdss 3012/tcp # trusted web client
twsdss 3012/udp # trusted web client
gilatskysurfer 3013/tcp # gilat sky surfer
gilatskysurfer 3013/udp # gilat sky surfer
broker_service 3014/tcp # broker service
broker_service 3014/udp # broker service
nati-dstp 3015/tcp # nati dstp
nati-dstp 3015/udp # nati dstp
notify_srvr 3016/tcp # notify server
notify_srvr 3016/udp # notify server
event_listener 3017/tcp # event listener
event_listener 3017/udp # event listener
srvc_registry 3018/tcp # service registry
srvc_registry 3018/udp # service registry
resource_mgr 3019/tcp # resource manager
resource_mgr 3019/udp # resource manager
cifs 3020/tcp # cifs
cifs 3020/udp # cifs
agriserver 3021/tcp # agri server
agriserver 3021/udp # agri server
csregagent 3022/tcp # csregagent
csregagent 3022/udp # csregagent
magicnotes 3023/tcp # magicnotes
magicnotes 3023/udp # magicnotes
nds_sso 3024/tcp # nds_sso
nds_sso 3024/udp # nds_sso
arepa-raft 3025/tcp # arepa raft
arepa-raft 3025/udp # arepa raft
agri-gateway 3026/tcp # agri gateway
agri-gateway 3026/udp # agri gateway
LiebDevMgmt_C 3027/tcp # liebdevmgmt_c
LiebDevMgmt_C 3027/udp # liebdevmgmt_c
LiebDevMgmt_DM 3028/tcp # liebdevmgmt_dm
LiebDevMgmt_DM 3028/udp # liebdevmgmt_dm
LiebDevMgmt_A 3029/tcp # liebdevmgmt_a
LiebDevMgmt_A 3029/udp # liebdevmgmt_a
arepa-cas 3030/tcp # arepa cas
arepa-cas 3030/udp # arepa cas
hlserver 3047/tcp # fast security hl server
hlserver 3047/udp # fast security hl server
pctrader 3048/tcp # sierra net pc trader
pctrader 3048/udp # sierra net pc trader
nsws 3049/tcp NSWS cfs # cryptographic file system (nfs) (proposed), nsws
nsws 3049/udp NSWS cfs # nsws, cryptographic file system (nfs)
gds_db 3050/tcp # gds_db
gds_db 3050/udp # gds_db
interserver 3060/tcp # interserver
interserver 3060/udp # interserver
stm_pproc 3080/tcp # stm_pproc
stm_pproc 3080/udp # stm_pproc
sj3 3086/tcp # sj3 (kanji input)
cardbox 3105/tcp # cardbox
cardbox 3105/udp # cardbox
cardbox-http 3106/tcp # cardbox http
cardbox-http 3106/udp # cardbox http
squid-http 3128/tcp
icpv2 3130/tcp # icpv2
icpv2 3130/udp squid-ipc # icpv2
netbookmark 3131/tcp # net book mark
netbookmark 3131/udp # net book mark
vmodem 3141/tcp # vmodem
vmodem 3141/udp # vmodem
rdc-wh-eos 3142/tcp # rdc wh eos
rdc-wh-eos 3142/udp # rdc wh eos
seaview 3143/tcp # sea view
seaview 3143/udp # sea view
tarantella 3144/tcp # tarantella
tarantella 3144/udp # tarantella
csi-lfap 3145/tcp # csi-lfap
csi-lfap 3145/udp # csi-lfap
rfio 3147/tcp # rfio
rfio 3147/udp # rfio
nm-game-admin 3148/tcp # netmike game administrator
nm-game-admin 3148/udp # netmike game administrator
nm-game-server 3149/tcp # netmike game server
nm-game-server 3149/udp # netmike game server
nm-asses-admin 3150/tcp # netmike assessor administrator
nm-asses-admin 3150/udp # netmike assessor administrator
nm-assessor 3151/tcp # netmike assessor
nm-assessor 3151/udp # netmike assessor
mc-brk-srv 3180/tcp # millicent broker server
mc-brk-srv 3180/udp # millicent broker server
ccmail 3264/tcp # cc:mail/lotus
ccmail 3264/udp # cc:mail/lotus
altav-tunnel 3265/tcp # altav tunnel
altav-tunnel 3265/udp # altav tunnel
ns-cfg-server 3266/tcp # ns cfg server
ns-cfg-server 3266/udp # ns cfg server
ibm-dial-out 3267/tcp # ibm dial out
ibm-dial-out 3267/udp # ibm dial out
msft-gc 3268/tcp # microsoft global catalog
msft-gc 3268/udp # microsoft global catalog
msft-gc-ssl 3269/tcp # microsoft global catalog with ldap/ssl
msft-gc-ssl 3269/udp # microsoft global catalog with ldap/ssl
verismart 3270/tcp # verismart
verismart 3270/udp # verismart
csoft-prev 3271/tcp # csoft prev port
csoft-prev 3271/udp # csoft prev port
user-manager 3272/tcp # fujitsu user manager
user-manager 3272/udp # fujitsu user manager
sxmp 3273/tcp # simple extensible multiplexed protocol
sxmp 3273/udp # simple extensible multiplexed protocol
ordinox-server 3274/tcp # ordinox server
ordinox-server 3274/udp # ordinox server
samd 3275/tcp # samd
samd 3275/udp # samd
maxim-asics 3276/tcp # maxim asics
maxim-asics 3276/udp # maxim asics
awg-proxy 3277/tcp # awg proxy
awg-proxy 3277/udp # awg proxy
lkcmserver 3278/tcp # lkcm server
lkcmserver 3278/udp # lkcm server
admind 3279/tcp # admind
admind 3279/udp # admind
vs-server 3280/tcp # vs server
vs-server 3280/udp # vs server
sysopt 3281/tcp # sysopt
sysopt 3281/udp # sysopt
datusorb 3282/tcp # datusorb
datusorb 3282/udp # datusorb
net-assistant 3283/tcp # net assistant
net-assistant 3283/udp # net assistant
4talk 3284/tcp # 4talk
4talk 3284/udp # 4talk
plato 3285/tcp # plato
plato 3285/udp # plato
e-net 3286/tcp # e-net
e-net 3286/udp # e-net
directvdata 3287/tcp # directvdata
directvdata 3287/udp # directvdata
cops 3288/tcp # cops
cops 3288/udp # cops
enpc 3289/tcp # enpc
enpc 3289/udp # enpc
caps-lm 3290/tcp # caps logistics toolkit - lm
caps-lm 3290/udp # caps logistics toolkit - lm
sah-lm 3291/tcp # s a holditch & associates - lm
sah-lm 3291/udp # s a holditch & associates - lm
cart-o-rama 3292/tcp # cart o rama
cart-o-rama 3292/udp # cart o rama
fg-fps 3293/tcp # fg-fps
fg-fps 3293/udp # fg-fps
fg-gip 3294/tcp # fg-gip
fg-gip 3294/udp # fg-gip
dyniplookup 3295/tcp # dynamic ip lookup
dyniplookup 3295/udp # dynamic ip lookup
rib-slm 3296/tcp # rib license manager
rib-slm 3296/udp # rib license manager
cytel-lm 3297/tcp # cytel license manager
cytel-lm 3297/udp # cytel license manager
transview 3298/tcp # transview
transview 3298/udp # transview
pdrncs 3299/tcp # pdrncs
pdrncs 3299/udp # pdrncs
bmcpatrolagent 3300/tcp # bmc patrol agent
bmcpatrolagent 3300/udp # bmc patrol agent
bmcpatrolrnvu 3301/tcp # bmc patrol rendezvous
bmcpatrolrnvu 3301/udp # bmc patrol rendezvous
mcs-fastmail 3302/tcp # mcs fastmail
mcs-fastmail 3302/udp # mcs fastmail
opsession-clnt 3303/tcp # op session client
opsession-clnt 3303/udp # op session client
opsession-srvr 3304/tcp # op session server
opsession-srvr 3304/udp # op session server
odette-ftp 3305/tcp # odette-ftp
odette-ftp 3305/udp # odette-ftp
mysql 3306/tcp # mysql
mysql 3306/udp # mysql
opsession-prxy 3307/tcp # op session proxy
opsession-prxy 3307/udp # op session proxy
tns-server 3308/tcp # tns server
tns-server 3308/udp # tns server
tns-adv 3309/tcp # tns adv
tns-adv 3309/udp # tnd adv
dyna-access 3310/tcp # dyna access
dyna-access 3310/udp # dyna access
mcns-tel-ret 3311/tcp # mcns tel ret
mcns-tel-ret 3311/udp # mcns tel ret
appman-server 3312/tcp # application management server
appman-server 3312/udp # application management server
uorb 3313/tcp # unify object broker
uorb 3313/udp # unify object broker
uohost 3314/tcp # unify object host
uohost 3314/udp # unify object host
cdid 3315/tcp # cdid
cdid 3315/udp # cdid
aicc-cmi 3316/tcp # aicc/cmi
aicc-cmi 3316/udp # aicc/cmi
vsaiport 3317/tcp # vsai port
vsaiport 3317/udp # vsai port
ssrip 3318/tcp # swith to swith routing information protocol
ssrip 3318/udp # swith to swith routing information protocol
sdt-lmd 3319/tcp # sdt license manager
sdt-lmd 3319/udp # sdt license manager
officelink2000 3320/tcp # office link 2000
officelink2000 3320/udp # office link 2000
vnsstr 3321/tcp # vnsstr
vnsstr 3321/udp # vnsstr
active-net 3322/ # active networks
active-net 3323/ # active networks
active-net 3324/ # active networks
active-net 3325/ # active networks
sftu 3326/tcp # sftu
sftu 3326/udp # sftu
bbars 3327/tcp # bbars
bbars 3327/udp # bbars
egptlm 3328/tcp # eaglepoint license manager
egptlm 3328/udp # eaglepoint license manager
hp-device-disc 3329/tcp # hp device disc
hp-device-disc 3329/udp # hp device disc
mcs-calypsoicf 3330/tcp # mcs calypso icf
mcs-calypsoicf 3330/udp # mcs calypso icf
mcs-messaging 3331/tcp # mcs messaging
mcs-messaging 3331/udp # mcs messaging
mcs-mailsvr 3332/tcp # mcs mail server
mcs-mailsvr 3332/udp # mcs mail server
dec-notes 3333/tcp # dec notes
dec-notes 3333/udp # dec notes
directv-web 3334/tcp # direct tv webcasting
directv-web 3334/udp # direct tv webcasting
directv-soft 3335/tcp # direct tv software updates
directv-soft 3335/udp # direct tv software updates
directv-tick 3336/tcp # direct tv tickers
directv-tick 3336/udp # direct tv tickers
directv-catlg 3337/tcp # direct tv data catalog
directv-catlg 3337/udp # direct tv data catalog
anet-b 3338/tcp # omf data b
anet-b 3338/udp # omf data b
anet-l 3339/tcp # omf data l
anet-l 3339/udp # omf data l
anet-m 3340/tcp # omf data m
anet-m 3340/udp # omf data m
anet-h 3341/tcp # omf data h
anet-h 3341/udp # omf data h
webtie 3342/tcp # webtie
webtie 3342/udp # webtie
ms-cluster-net 3343/tcp # ms cluster net
ms-cluster-net 3343/udp # ms cluster net
bnt-manager 3344/tcp # bnt manager
bnt-manager 3344/udp # bnt manager
influence 3345/tcp # influence
influence 3345/udp # influence
trnsprntproxy 3346/tcp # trnsprnt proxy
trnsprntproxy 3346/udp # trnsprnt proxy
phoenix-rpc 3347/tcp # phoenix rpc
phoenix-rpc 3347/udp # phoenix rpc
pangolin-laser 3348/tcp # pangolin laser
pangolin-laser 3348/udp # pangolin laser
chevinservices 3349/tcp # chevin services
chevinservices 3349/udp # chevin services
findviatv 3350/tcp # findviatv
findviatv 3350/udp # findviatv
btrieve 3351/tcp # btrieve
btrieve 3351/udp # btrieve
ssql 3352/tcp # ssql
ssql 3352/udp # ssql
fatpipe 3353/tcp # fatpipe
fatpipe 3353/udp # fatpipe
suitjd 3354/tcp # suitjd
suitjd 3354/udp # suitjd
ordinox-dbase 3355/tcp # ordinox dbase
ordinox-dbase 3355/udp # ordinox dbase
upnotifyps 3356/tcp # upnotifyps
upnotifyps 3356/udp # upnotifyps
adtech-test 3357/tcp # adtech test ip
adtech-test 3357/udp # adtech test ip
mpsysrmsvr 3358/tcp # mp sys rmsvr
mpsysrmsvr 3358/udp # mp sys rmsvr
wg-netforce 3359/tcp # wg netforce
wg-netforce 3359/udp # wg netforce
kv-server 3360/tcp # kv server
kv-server 3360/udp # kv server
kv-agent 3361/tcp # kv agent
kv-agent 3361/udp # kv agent
dj-ilm 3362/tcp # dj ilm
dj-ilm 3362/udp # dj ilm
nati-vi-server 3363/tcp # nati vi server
nati-vi-server 3363/udp # nati vi server
creativeserver 3364/tcp # creative server
creativeserver 3364/udp # creative server
contentserver 3365/tcp # content server
contentserver 3365/udp # content server
creativepartnr 3366/tcp # creative partner
creativepartnr 3366/udp # creative partner
satvid-datalnk 3367/ # satellite video data link
satvid-datalnk 3368/ # satellite video data link
satvid-datalnk 3369/ # satellite video data link
satvid-datalnk 3370/ # satellite video data link
satvid-datalnk 3371/ # satellite video data link
tip2 3372/tcp # tip 2
tip2 3372/udp # tip 2
lavenir-lm 3373/tcp # lavenir license manager
lavenir-lm 3373/udp # lavenir license manager
cluster-disc 3374/tcp # cluster disc
cluster-disc 3374/udp # cluster disc
vsnm-agent 3375/tcp # vsnm agent
vsnm-agent 3375/udp # vsnm agent
cdborker 3376/tcp # cd broker
cdbroker 3376/udp # cd broker
cogsys-lm 3377/tcp # cogsys network license manager
cogsys-lm 3377/udp # cogsys network license manager
wsicopy 3378/tcp # wsicopy
wsicopy 3378/udp # wsicopy
socorfs 3379/tcp # socorfs
socorfs 3379/udp # socorfs
sns-channels 3380/tcp # sns channels
sns-channels 3380/udp # sns channels
geneous 3381/tcp # geneous
geneous 3381/udp # geneous
fujitsu-neat 3382/tcp # fujitsu network enhanced antitheft function
fujitsu-neat 3382/udp # fujitsu network enhanced antitheft function
esp-lm 3383/tcp # enterprise software products license manager
esp-lm 3383/udp # enterprise software products license manager
hp-clic 3384/tcp # cluster management services
hp-clic 3384/udp # hardware management
qnxnetman 3385/tcp # qnxnetman
qnxnetman 3385/udp # qnxnetman
gprs-data 3386/tcp # gprs data
gprs-sig 3386/udp # gprs sig
backroomnet 3387/tcp # back room net
backroomnet 3387/udp # back room net
cbserver 3388/tcp # cb server
cbserver 3388/udp # cb server
ms-wbt-server 3389/tcp # ms wbt server
ms-wbt-server 3389/udp # ms wbt server
dsc 3390/tcp # distributed service coordinator
dsc 3390/udp # distributed service coordinator
savant 3391/tcp # savant
savant 3391/udp # savant
efi-lm 3392/tcp # efi license management
efi-lm 3392/udp # efi license management
d2k-tapestry1 3393/tcp # d2k tapestry client to server
d2k-tapestry1 3393/udp # d2k tapestry client to server
d2k-tapestry2 3394/tcp # d2k tapestry server to server
d2k-tapestry2 3394/udp # d2k tapestry server to server
dyna-lm 3395/tcp # dyna license manager (elam)
dyna-lm 3395/udp # dyna license manager (elam)
printer_agent 3396/tcp # printer agent
printer_agent 3396/udp # printer agent
cloanto-lm 3397/tcp # cloanto license manager
cloanto-lm 3397/udp # cloanto license manager
mercantile 3398/tcp # mercantile
mercantile 3398/udp # mercantile
bmap 3421/tcp # bull apprise portmapper
bmap 3421/udp # bull apprise portmapper
mira 3454/tcp # apple remote access protocol
prsvp 3455/tcp # rsvp port
prsvp 3455/udp rsvp-encap # rsvp port, rsvp encapsulated in udp
vat 3456/tcp # vat default data
vat 3456/udp # vat default data
vat-control 3457/tcp # vat default control
vat-control 3457/udp # vat default control
d3winosfi 3458/tcp # d3winosfi
d3winosfi 3458/udp # dswinosfi
integral 3459/tcp # integral
integral 3459/udp # integral
edm-manager 3460/tcp # edm manger
edm-manager 3460/udp # edm manger
edm-stager 3461/tcp # edm stager
edm-stager 3461/udp # edm stager
edm-std-notify 3462/tcp track # edm std notify, software distribution
edm-std-notify 3462/udp # edm std notify
edm-adm-notify 3463/tcp # edm adm notify
edm-adm-notify 3463/udp # edm adm notify
edm-mgr-sync 3464/tcp # edm mgr sync
edm-mgr-sync 3464/udp # edm mgr sync
edm-mgr-cntrl 3465/tcp # edm mgr cntrl
edm-mgr-cntrl 3465/udp # edm mgr cntrl
workflow 3466/tcp # workflow
workflow 3466/udp # workflow
rcst 3467/tcp # rcst
rcst 3467/udp # rcst
ttcmremotectrl 3468/tcp # ttcm remote controll
ttcmremotectrl 3468/udp # ttcm remote controll
pluribus 3469/tcp # pluribus
pluribus 3469/udp # pluribus
jt400 3470/tcp # jt400
jt400 3470/udp # jt400
jt400-ssl 3471/tcp # jt400-ssl
jt400-ssl 3471/udp # jt400-ssl
watcomdebug 3563/tcp # watcom debug
watcomdebug 3563/udp # watcom debug
harlequinorb 3672/tcp # harlequinorb
harlequinorb 3672/udp # harlequinorb
udt_os 3900/tcp # unidata udt os
udt_os 3900/udp # unidata udt os
mapper-nodemgr 3984/tcp # mapper network node manager
mapper-nodemgr 3984/udp # mapper network node manager
mapper-mapethd 3985/tcp # mapper tcp/ip server
mapper-mapethd 3985/udp # mapper tcp/ip server
mapper-ws_ethd 3986/tcp # mapper workstation server
mapper-ws_ethd 3986/udp # mapper workstation server
centerline 3987/tcp # centerline
centerline 3987/udp # centerline
terabase 4000/tcp # terabase
terabase 4000/udp # terabase
newoak 4001/tcp # newoak
newoak 4001/udp # newoak
netcheque 4008/tcp # netcheque accounting
netcheque 4008/udp # netcheque accounting
chimera-hwm 4009/tcp # chimera hwm
chimera-hwm 4009/udp # chimera hwm
samsung-unidex 4010/tcp # samsung unidex
samsung-unidex 4010/udp # samsung unidex
altserviceboot 4011/tcp # alternate service boot
altserviceboot 4011/udp # alternate service boot
pda-gate 4012/tcp # pda gate
pda-gate 4012/udp # pda gate
acl-manager 4013/tcp # acl manager
acl-manager 4013/udp # acl manager
taiclock 4014/tcp # taiclock
taiclock 4014/udp # taiclock
talarian-mcast1 4015/tcp # talarian mcast
talarian-mcast1 4015/udp # talarian mcast
talarian-mcast2 4016/tcp # talarian mcast
talarian-mcast2 4016/udp # talarian mcast
talarian-mcast3 4017/tcp # talarian mcast
talarian-mcast3 4017/udp # talarian mcast
talarian-mcast4 4018/tcp # talarian mcast
talarian-mcast4 4018/udp # talarian mcast
talarian-mcast5 4019/tcp # talarian mcast
talarian-mcast5 4019/udp # talarian mcast
lockd 4045/tcp
lockd 4045/udp # nfs lock daemon/manager
bre 4096/tcp # bre (bridge relay element)
bre 4096/udp # bre (bridge relay element)
patrolview 4097/tcp # patrol view
patrolview 4097/udp # patrol view
drmsfsd 4098/tcp # drmsfsd
drmsfsd 4098/udp # drmsfsd
dpcp 4099/tcp # dpcp
dpcp 4099/udp # dpcp
nuts_dem 4132/tcp # nuts daemon
nuts_dem 4132/udp # nuts daemon
nuts_bootp 4133/tcp # nuts bootp server
nuts_bootp 4133/udp # nuts bootp server
nifty-hmi 4134/tcp # nifty-serve hmi protocol
nifty-hmi 4134/udp # nifty-serve hmi protocol
oirtgsvc 4141/tcp # workflow server
oirtgsvc 4141/udp # workflow server
oidocsvc 4142/tcp # document server
oidocsvc 4142/udp # document server
oidsr 4143/tcp # document replication
oidsr 4143/udp # document replication
wincim 4144/tcp # pc windows compuserve.com protocol
jini-discovery 4160/tcp # jini discovery
jini-discovery 4160/udp # jini discovery
vrml-multi-use 4200/ # vrml multi user systems
vrml-multi-use 4201/ # vrml multi user systems
vrml-multi-use 4202/ # vrml multi user systems
vrml-multi-use 4203/ # vrml multi user systems
vrml-multi-use 4204/ # vrml multi user systems
vrml-multi-use 4205/ # vrml multi user systems
vrml-multi-use 4206/ # vrml multi user systems
vrml-multi-use 4207/ # vrml multi user systems
vrml-multi-use 4208/ # vrml multi user systems
vrml-multi-use 4209/ # vrml multi user systems
vrml-multi-use 4210/ # vrml multi user systems
vrml-multi-use 4211/ # vrml multi user systems
vrml-multi-use 4212/ # vrml multi user systems
vrml-multi-use 4213/ # vrml multi user systems
vrml-multi-use 4214/ # vrml multi user systems
vrml-multi-use 4215/ # vrml multi user systems
vrml-multi-use 4216/ # vrml multi user systems
vrml-multi-use 4217/ # vrml multi user systems
vrml-multi-use 4218/ # vrml multi user systems
vrml-multi-use 4219/ # vrml multi user systems
vrml-multi-use 4220/ # vrml multi user systems
vrml-multi-use 4221/ # vrml multi user systems
vrml-multi-use 4222/ # vrml multi user systems
vrml-multi-use 4223/ # vrml multi user systems
vrml-multi-use 4224/ # vrml multi user systems
vrml-multi-use 4225/ # vrml multi user systems
vrml-multi-use 4226/ # vrml multi user systems
vrml-multi-use 4227/ # vrml multi user systems
vrml-multi-use 4228/ # vrml multi user systems
vrml-multi-use 4229/ # vrml multi user systems
vrml-multi-use 4230/ # vrml multi user systems
vrml-multi-use 4231/ # vrml multi user systems
vrml-multi-use 4232/ # vrml multi user systems
vrml-multi-use 4233/ # vrml multi user systems
vrml-multi-use 4234/ # vrml multi user systems
vrml-multi-use 4235/ # vrml multi user systems
vrml-multi-use 4236/ # vrml multi user systems
vrml-multi-use 4237/ # vrml multi user systems
vrml-multi-use 4238/ # vrml multi user systems
vrml-multi-use 4239/ # vrml multi user systems
vrml-multi-use 4240/ # vrml multi user systems
vrml-multi-use 4241/ # vrml multi user systems
vrml-multi-use 4242/ # vrml multi user systems
vrml-multi-use 4243/ # vrml multi user systems
vrml-multi-use 4244/ # vrml multi user systems
vrml-multi-use 4245/ # vrml multi user systems
vrml-multi-use 4246/ # vrml multi user systems
vrml-multi-use 4247/ # vrml multi user systems
vrml-multi-use 4248/ # vrml multi user systems
vrml-multi-use 4249/ # vrml multi user systems
vrml-multi-use 4250/ # vrml multi user systems
vrml-multi-use 4251/ # vrml multi user systems
vrml-multi-use 4252/ # vrml multi user systems
vrml-multi-use 4253/ # vrml multi user systems
vrml-multi-use 4254/ # vrml multi user systems
vrml-multi-use 4255/ # vrml multi user systems
vrml-multi-use 4256/ # vrml multi user systems
vrml-multi-use 4257/ # vrml multi user systems
vrml-multi-use 4258/ # vrml multi user systems
vrml-multi-use 4259/ # vrml multi user systems
vrml-multi-use 4260/ # vrml multi user systems
vrml-multi-use 4261/ # vrml multi user systems
vrml-multi-use 4262/ # vrml multi user systems
vrml-multi-use 4263/ # vrml multi user systems
vrml-multi-use 4264/ # vrml multi user systems
vrml-multi-use 4265/ # vrml multi user systems
vrml-multi-use 4266/ # vrml multi user systems
vrml-multi-use 4267/ # vrml multi user systems
vrml-multi-use 4268/ # vrml multi user systems
vrml-multi-use 4269/ # vrml multi user systems
vrml-multi-use 4270/ # vrml multi user systems
vrml-multi-use 4271/ # vrml multi user systems
vrml-multi-use 4272/ # vrml multi user systems
vrml-multi-use 4273/ # vrml multi user systems
vrml-multi-use 4274/ # vrml multi user systems
vrml-multi-use 4275/ # vrml multi user systems
vrml-multi-use 4276/ # vrml multi user systems
vrml-multi-use 4277/ # vrml multi user systems
vrml-multi-use 4278/ # vrml multi user systems
vrml-multi-use 4279/ # vrml multi user systems
vrml-multi-use 4280/ # vrml multi user systems
vrml-multi-use 4281/ # vrml multi user systems
vrml-multi-use 4282/ # vrml multi user systems
vrml-multi-use 4283/ # vrml multi user systems
vrml-multi-use 4284/ # vrml multi user systems
vrml-multi-use 4285/ # vrml multi user systems
vrml-multi-use 4286/ # vrml multi user systems
vrml-multi-use 4287/ # vrml multi user systems
vrml-multi-use 4288/ # vrml multi user systems
vrml-multi-use 4289/ # vrml multi user systems
vrml-multi-use 4290/ # vrml multi user systems
vrml-multi-use 4291/ # vrml multi user systems
vrml-multi-use 4292/ # vrml multi user systems
vrml-multi-use 4293/ # vrml multi user systems
vrml-multi-use 4294/ # vrml multi user systems
vrml-multi-use 4295/ # vrml multi user systems
vrml-multi-use 4296/ # vrml multi user systems
vrml-multi-use 4297/ # vrml multi user systems
vrml-multi-use 4298/ # vrml multi user systems
vrml-multi-use 4299/ # vrml multi user systems
corelccam 4300/tcp # corel ccam
corelccam 4300/udp # corel ccam
rwhois 4321/tcp # remote who is
rwhois 4321/udp # remote who is
msql 4333/tcp # mini-sql server
unicall 4343/tcp # unicall
unicall 4343/udp # unicall
vinainstall 4344/tcp # vinainstall
vinainstall 4344/udp # vinainstall
m4-network-as 4345/tcp # macro 4 network as
m4-network-as 4345/udp # macro 4 network as
elanlm 4346/tcp # elan lm
elanlm 4346/udp # elan lm
lansurveyor 4347/tcp # lan surveyor
lansurveyor 4347/udp # lan surveyor
itose 4348/tcp # itose
itose 4348/udp # itose
fsportmap 4349/tcp # file system port map
fsportmap 4349/udp # file system port map
net-device 4350/tcp # net device
net-device 4350/udp # net device
plcy-net-svcs 4351/tcp # plcy net services
plcy-net-svcs 4351/udp # plcy net services
f5-iquery 4353/tcp # f5 iquery
f5-iquery 4353/udp # f5 iquery
saris 4442/tcp # saris
saris 4442/udp # saris
pharos 4443/tcp # pharos
pharos 4443/udp # pharos
krb524 4444/tcp nv-video # nv video default, krb524, kerberos 5 to 4 ticket xlator
krb524 4444/udp nv-video # nv video default, krb524
upnotifyp 4445/tcp # upnotifyp
upnotifyp 4445/udp # upnotifyp
n1-fwp 4446/tcp # n1-fwp
n1-fwp 4446/udp # n1-fwp
n1-rmgmt 4447/tcp # n1-rmgmt
n1-rmgmt 4447/udp # n1-rmgmt
asc-slmd 4448/tcp # asc licence manager
asc-slmd 4448/udp # asc licence manager
privatewire 4449/tcp # privatewire
privatewire 4449/udp # privatewire
camp 4450/tcp # camp
camp 4450/udp # camp
ctisystemmsg 4451/tcp # cti system msg
ctisystemmsg 4451/udp # cti system msg
ctiprogramload 4452/tcp # cti program load
ctiprogramload 4452/udp # cti program load
nssalertmgr 4453/tcp # nss alert manager
nssalertmgr 4453/udp # nss alert manager
nssagentmgr 4454/tcp # nss agent manager
nssagentmgr 4454/udp # nss agent manager
prchat-user 4455/tcp # pr chat user
prchat-user 4455/udp # pr chat user
prchat-server 4456/tcp # pr chat server
prchat-server 4456/udp # pr chat server
prRegister 4457/tcp # pr register
prRegister 4457/udp # pr register
sae-urn 4500/tcp # sae-urn
sae-urn 4500/udp # sae-urn
urn-x-cdchoice 4501/tcp # urn-x-cdchoice
urn-x-cdchoice 4501/udp # urn-x-cdchoice
worldscores 4545/tcp # worldscores
worldscores 4545/udp # worldscores
sf-lm 4546/tcp # sf license manager (sentinel)
sf-lm 4546/udp # sf license manager (sentinel)
lanner-lm 4547/tcp # lanner license manager
lanner-lm 4547/udp # lanner license manager
fax 4557/tcp # flexfax fax transmission service, fax transmission service
hylafax 4559/tcp # hylafax client-server protocol
rfa 4672/tcp # remote file access server
rfa 4672/udp # remote file access server
iims 4800/tcp # icona instant messenging system
iims 4800/udp # icona instant messenging system
iwec 4801/tcp # icona web embedded chat
iwec 4801/udp # icona web embedded chat
ilss 4802/tcp # icona license system server
ilss 4802/udp # icona license system server
htcp 4827/tcp # htcp
htcp 4827/udp # htcp
phrelay 4868/tcp # photon relay
phrelay 4868/udp # photon relay
phrelaydbg 4869/tcp # photon relay debug
phrelaydbg 4869/udp # photon relay debug
abbs 4885/tcp # abbs
abbs 4885/udp # abbs
commplex-main 5000/tcp fics # free internet chess server
commplex-main 5000/udp
commplex-link 5001/tcp
commplex-link 5001/udp
rfe 5002/tcp # radio free ethernet
rfe 5002/udp # radio free ethernet, actually uses udp only
fmpro-internal 5003/tcp # filemaker, inc. - proprietary transport
fmpro-internal 5003/udp # filemaker, inc. - proprietary name binding
avt-profile-1 5004/tcp # avt-profile-1
avt-profile-1 5004/udp # avt-profile-1
avt-profile-2 5005/tcp # avt-profile-2
avt-profile-2 5005/udp # avt-profile-2
telelpathstart 5010/tcp # telepathstart
telelpathstart 5010/udp # telepathstart
telelpathattack 5011/tcp # telepathattack
telelpathattack 5011/udp # telepathattack
zenginkyo-1 5020/tcp # zenginkyo-1
zenginkyo-1 5020/udp # zenginkyo-1
zenginkyo-2 5021/tcp # zenginkyo-2
zenginkyo-2 5021/udp # zenginkyo-2
mmcc 5050/tcp # multimedia conference control tool
mmcc 5050/udp # multimedia conference control tool
ita-agent 5051/tcp # ita agent
ita-agent 5051/udp # ita agent
ita-manager 5052/tcp # ita manager
ita-manager 5052/udp # ita manager
sip 5060/tcp # sip
sip 5060/udp # sip
rmonitor_secure 5145/tcp
rmonitor_secure 5145/udp
atmp 5150/tcp # ascend tunnel management protocol
atmp 5150/udp # ascend tunnel management protocol
esri_sde 5151/tcp # esri sde instance
esri_sde 5151/udp # esri sde remote start
sde-discovery 5152/tcp # esri sde instance discovery
sde-discovery 5152/udp # esri sde instance discovery
ife_icorp 5165/tcp # ife_1corp
ife_icorp 5165/udp # ife_1corp
aol 5190/tcp # america-online
aol 5190/udp # america-online
aol-1 5191/tcp # americaonline1
aol-1 5191/udp # americaonline1
aol-2 5192/tcp # americaonline2
aol-2 5192/udp # americaonline2
aol-3 5193/tcp # americaonline3
aol-3 5193/udp # americaonline3
targus-aib1 5200/tcp # targus aib 1
targus-aib1 5200/udp # targus aib 1
targus-aib2 5201/tcp # targus aib 2
targus-aib2 5201/udp # targus aib 2
sgi-dgl 5232/tcp # sgi distributed graphics
padl2sim 5236/tcp
padl2sim 5236/udp
pk 5272/tcp # pk
pk 5272/udp # pk
hacl-hb 5300/tcp # ha cluster heartbeat, # ha cluster heartbeat
hacl-hb 5300/udp # ha cluster heartbeat, # ha cluster heartbeat
hacl-gs 5301/tcp # # ha cluster general services, ha cluster general services
hacl-gs 5301/udp # # ha cluster general services, ha cluster general services
hacl-cfg 5302/tcp # ha cluster configuration, # ha cluster configuration
hacl-cfg 5302/udp # ha cluster configuration, # ha cluster configuration
hacl-probe 5303/tcp # ha cluster probing, # ha cluster probing
hacl-probe 5303/udp # ha cluster probing, # ha cluster probing
hacl-local 5304/tcp # # ha cluster commands
hacl-local 5304/udp
hacl-test 5305/tcp # # ha cluster test
hacl-test 5305/udp
sun-mc-grp 5306/tcp # sun mc group
sun-mc-grp 5306/udp # sun mc group
sco-aip 5307/tcp # sco aip
sco-aip 5307/udp # sco aip
cfengine 5308/tcp # cfengine
cfengine 5308/udp # cfengine
jprinter 5309/tcp # j printer
jprinter 5309/udp # j printer
outlaws 5310/tcp # outlaws
outlaws 5310/udp # outlaws
tmlogin 5311/tcp # tm login
tmlogin 5311/udp # tm login
excerpt 5400/tcp # excerpt search
excerpt 5400/udp # excerpt search
excerpts 5401/tcp # excerpt search secure
excerpts 5401/udp # excerpt search secure
mftp 5402/tcp # mftp
mftp 5402/udp # mftp
hpoms-ci-lstn 5403/tcp # hpoms-ci-lstn
hpoms-ci-lstn 5403/udp # hpoms-ci-lstn
hpoms-dps-lstn 5404/tcp # hpoms-dps-lstn
hpoms-dps-lstn 5404/udp # hpoms-dps-lstn
netsupport 5405/tcp # netsupport
netsupport 5405/udp # netsupport
systemics-sox 5406/tcp # systemics sox
systemics-sox 5406/udp # systemics sox
foresyte-clear 5407/tcp # foresyte-clear
foresyte-clear 5407/udp # foresyte-clear
foresyte-sec 5408/tcp # foresyte-sec
foresyte-sec 5408/udp # foresyte-sec
salient-dtasrv 5409/tcp # salient data server
salient-dtasrv 5409/udp # salient data server
salient-usrmgr 5410/tcp # salient user manager
salient-usrmgr 5410/udp # salient user manager
actnet 5411/tcp # actnet
actnet 5411/udp # actnet
continuus 5412/tcp # continuus
continuus 5412/udp # continuus
wwiotalk 5413/tcp # wwiotalk
wwiotalk 5413/udp # wwiotalk
statusd 5414/tcp # statusd
statusd 5414/udp # statusd
ns-server 5415/tcp # ns server
ns-server 5415/udp # ns server
sns-gateway 5416/tcp # sns gateway
sns-gateway 5416/udp # sns gateway
sns-agent 5417/tcp # sns agent
sns-agent 5417/udp # sns agent
mcntp 5418/tcp # mcntp
mcntp 5418/udp # mcntp
dj-ice 5419/tcp # dj-ice
dj-ice 5419/udp # dj-ice
cylink-c 5420/tcp # cylink-c
cylink-c 5420/udp # cylink-c
postgres 5432/tcp # postgres database server
fcp-addr-srvr1 5500/tcp # fcp-addr-srvr1
fcp-addr-srvr1 5500/udp # fcp-addr-srvr1
fcp-addr-srvr2 5501/tcp # fcp-addr-srvr2
fcp-addr-srvr2 5501/udp # fcp-addr-srvr2
fcp-srvr-inst1 5502/tcp # fcp-srvr-inst1
fcp-srvr-inst1 5502/udp # fcp-srvr-inst1
fcp-srvr-inst2 5503/tcp # fcp-srvr-inst2
fcp-srvr-inst2 5503/udp # fcp-srvr-inst2
fcp-cics-gw1 5504/tcp # fcp-cics-gw1
fcp-cics-gw1 5504/udp # fcp-cics-gw1
personal-agent 5555/tcp # personal agent
personal-agent 5555/udp rplay # personal agent
esinstall 5599/tcp # enterprise security remote install
esinstall 5599/udp # enterprise security remote install
esmmanager 5600/tcp # enterprise security manager
esmmanager 5600/udp # enterprise security manager
esmagent 5601/tcp # enterprise security agent
esmagent 5601/udp # enterprise security agent
a1-msc 5602/tcp # a1-msc
a1-msc 5602/udp # a1-msc
a1-bs 5603/tcp # a1-bs
a1-bs 5603/udp # a1-bs
a3-sdunode 5604/tcp # a3-sdunode
a3-sdunode 5604/udp # a3-sdunode
a4-sdunode 5605/tcp # a4-sdunode
a4-sdunode 5605/udp # a4-sdunode
pcanywheredata 5631/tcp # pcanywheredata
pcanywheredata 5631/udp # pcanywheredata
pcanywherestat 5632/tcp # pcanywherestat
pcanywherestat 5632/udp # pcanywherestat
rrac 5678/tcp # remote replication agent connection
rrac 5678/udp # remote replication agent connection
dccm 5679/tcp # direct cable connect manager
dccm 5679/udp # direct cable connect manager
canna 5680/tcp # canna (japanese input)
proshareaudio 5713/tcp # proshare conf audio
proshareaudio 5713/udp # proshare conf audio
prosharevideo 5714/tcp # proshare conf video
prosharevideo 5714/udp # proshare conf video
prosharedata 5715/tcp # proshare conf data
prosharedata 5715/udp # proshare conf data
prosharerequest 5716/tcp # proshare conf request
prosharerequest 5716/udp # proshare conf request
prosharenotify 5717/tcp # proshare conf notify
prosharenotify 5717/udp # proshare conf notify
openmail 5729/tcp # openmail user agent layer
openmail 5729/udp # openmail user agent layer
unieng 5730/tcp # netscape suiteware
unisnc 5731/tcp # netscape suiteware
unidas 5732/tcp # netscape suiteware
ida-discover1 5741/tcp # ida discover port 1
ida-discover1 5741/udp # ida discover port 1
ida-discover2 5742/tcp # ida discover port 2
ida-discover2 5742/udp # ida discover port 2
fcopy-server 5745/tcp # fcopy-server
fcopy-server 5745/udp # fcopy-server
fcopys-server 5746/tcp # fcopys-server
fcopys-server 5746/udp # fcopys-server
openmailg 5755/tcp # openmail desk gateway server
openmailg 5755/udp # openmail desk gateway server
x500ms 5757/tcp # openmail x.500 directory server
x500ms 5757/udp # openmail x.500 directory server
openmailns 5766/tcp # openmail newmail server
openmailns 5766/udp # openmail newmail server
s-openmail 5767/tcp # openmail suer agent layer (secure)
s-openmail 5767/udp # openmail suer agent layer (secure)
openmailpxy 5768/tcp # openmail cmts server
openmailpxy 5768/udp # openmail cmts server
vnc 5900/tcp # orl virtual network client
ncd-pref-tcp 5977/tcp # ncd preferences tcp port
ncd-diag-tcp 5978/tcp # ncd diagnostic tcp port
ncd-conf-tcp 5979/tcp # ncd configuration tcp port
ncd-pref 5997/tcp # ncd preferences telnet port
ncd-diag 5998/tcp # ncd diagnostic telnet port
ncd-conf 5999/tcp # ncd configuration telnet port
x11 6000/tcp xterm X11 # x window system, x-windows server
x11 6000/udp # x window system
x11 6001/tcp xwin # x window system, x-windows server
x11 6001/udp # x window system
x11 6002/tcp xwin # x window system, x-windows server
x11 6002/udp # x window system
x11 6003/tcp xwin # x window system, x-windows server
x11 6003/udp # x window system
x11 6004/tcp xwin # x window system, x-windows server
x11 6004/udp # x window system
x11 6005/tcp xwin # x window system, x-windows server
x11 6005/udp # x window system
x11 6006/tcp xwin # x window system, x-windows server
x11 6006/udp # x window system
x11 6007/tcp xwin # x window system, x-windows server
x11 6007/udp # x window system
x11 6008/tcp # x window system
x11 6008/udp # x window system
x11 6009/tcp # x window system
x11 6009/udp # x window system
x11 6010/tcp # x window system
x11 6010/udp # x window system
x11 6011/tcp # x window system
x11 6011/udp # x window system
x11 6012/tcp # x window system
x11 6012/udp # x window system
x11 6013/tcp # x window system
x11 6013/udp # x window system
x11 6014/tcp # x window system
x11 6014/udp # x window system
x11 6015/tcp # x window system
x11 6015/udp # x window system
x11 6016/tcp # x window system
x11 6016/udp # x window system
x11 6017/tcp # x window system
x11 6017/udp # x window system
x11 6018/tcp # x window system
x11 6018/udp # x window system
x11 6019/tcp # x window system
x11 6019/udp # x window system
x11 6020/tcp # x window system
x11 6020/udp # x window system
x11 6021/tcp # x window system
x11 6021/udp # x window system
x11 6022/tcp # x window system
x11 6022/udp # x window system
x11 6023/tcp # x window system
x11 6023/udp # x window system
x11 6024/tcp # x window system
x11 6024/udp # x window system
x11 6025/tcp # x window system
x11 6025/udp # x window system
x11 6026/tcp # x window system
x11 6026/udp # x window system
x11 6027/tcp # x window system
x11 6027/udp # x window system
x11 6028/tcp # x window system
x11 6028/udp # x window system
x11 6029/tcp # x window system
x11 6029/udp # x window system
x11 6030/tcp # x window system
x11 6030/udp # x window system
x11 6031/tcp # x window system
x11 6031/udp # x window system
x11 6032/tcp # x window system
x11 6032/udp # x window system
x11 6033/tcp # x window system
x11 6033/udp # x window system
x11 6034/tcp # x window system
x11 6034/udp # x window system
x11 6035/tcp # x window system
x11 6035/udp # x window system
x11 6036/tcp # x window system
x11 6036/udp # x window system
x11 6037/tcp # x window system
x11 6037/udp # x window system
x11 6038/tcp # x window system
x11 6038/udp # x window system
x11 6039/tcp # x window system
x11 6039/udp # x window system
x11 6040/tcp # x window system
x11 6040/udp # x window system
x11 6041/tcp # x window system
x11 6041/udp # x window system
x11 6042/tcp # x window system
x11 6042/udp # x window system
x11 6043/tcp # x window system
x11 6043/udp # x window system
x11 6044/tcp # x window system
x11 6044/udp # x window system
x11 6045/tcp # x window system
x11 6045/udp # x window system
x11 6046/tcp # x window system
x11 6046/udp # x window system
x11 6047/tcp # x window system
x11 6047/udp # x window system
x11 6048/tcp # x window system
x11 6048/udp # x window system
x11 6049/tcp # x window system
x11 6049/udp # x window system
x11 6050/tcp # x window system
x11 6050/udp # x window system
x11 6051/tcp # x window system
x11 6051/udp # x window system
x11 6052/tcp # x window system
x11 6052/udp # x window system
x11 6053/tcp # x window system
x11 6053/udp # x window system
x11 6054/tcp # x window system
x11 6054/udp # x window system
x11 6055/tcp # x window system
x11 6055/udp # x window system
x11 6056/tcp # x window system
x11 6056/udp # x window system
x11 6057/tcp # x window system
x11 6057/udp # x window system
x11 6058/tcp # x window system
x11 6058/udp # x window system
x11 6059/tcp # x window system
x11 6059/udp # x window system
x11 6060/tcp # x window system
x11 6060/udp # x window system
x11 6061/tcp # x window system
x11 6061/udp # x window system
x11 6062/tcp # x window system
x11 6062/udp # x window system
x11 6063/tcp # x window system
x11 6063/udp # x window system
softcm 6110/tcp # hp softbench cm
softcm 6110/udp # hp softbench cm
spc 6111/tcp # hp softbench sub-process control
spc 6111/udp # hp softbench sub-process control
dtspcd 6112/tcp dtspc # dtspcd, cde subprocess control
dtspcd 6112/udp # dtspcd
backup-express 6123/tcp # backup express
backup-express 6123/udp # backup express
meta-corp 6141/tcp # meta corporation license manager
meta-corp 6141/udp # meta corporation license manager
aspentec-lm 6142/tcp # aspen technology license manager
aspentec-lm 6142/udp # aspen technology license manager
watershed-lm 6143/tcp # watershed license manager
watershed-lm 6143/udp # watershed license manager
statsci1-lm 6144/tcp # statsci license manager - 1
statsci1-lm 6144/udp # statsci license manager - 1
statsci2-lm 6145/tcp # statsci license manager - 2
statsci2-lm 6145/udp # statsci license manager - 2
lonewolf-lm 6146/tcp # lone wolf systems license manager
lonewolf-lm 6146/udp # lone wolf systems license manager
montage-lm 6147/tcp # montage license manager
montage-lm 6147/udp # montage license manager
ricardo-lm 6148/tcp # ricardo north america license manager
ricardo-lm 6148/udp # ricardo north america license manager
tal-pod 6149/tcp # tal-pod
tal-pod 6149/udp # tal-pod
crip 6253/tcp # crip
crip 6253/udp # crip
clariion-evr01 6389/tcp # clariion-evr01
clariion-evr01 6389/udp # clariion-evr01
skip-cert-recv 6455/tcp # skip certificate receive
skip-cert-send 6456/tcp # skip certificate send
lvision-lm 6471/tcp # lvision license manager
lvision-lm 6471/udp # lvision license manager
boks 6500/tcp # boks master
boks 6500/udp # boks master
boks_servc 6501/tcp # boks servc
boks_servc 6501/udp # boks servc
boks_servm 6502/tcp # boks servm
boks_servm 6502/udp # boks servm
boks_clntd 6503/tcp # boks clntd
boks_clntd 6503/udp # boks clntd
badm_priv 6505/tcp # boks admin private port
badm_priv 6505/udp # boks admin private port
badm_pub 6506/tcp # boks admin public port
badm_pub 6506/udp # boks admin public port
bdir_priv 6507/tcp # boks dir server, private port
bdir_priv 6507/udp # boks dir server, private port
bdir_pub 6508/tcp # boks dir server, public port
bdir_pub 6508/udp # boks dir server, public port
fg-sysupdate 6550/tcp # fg-sysupdate
fg-sysupdate 6550/udp # fg-sysupdate
xdsxdm 6558/tcp
xdsxdm 6558/udp
ircu 6665/tcp # ircu
ircu 6665/udp # ircu
ircu 6666/tcp irc-serv # ircu, internet relay chat server
ircu 6666/udp # ircu
ircu 6667/tcp ircd irc # often used irc port (also see 194), ircu, internet relay chat
ircu 6667/udp # ircu
ircu 6668/tcp irc # ircu, internet relay chat
ircu 6668/udp # ircu
ircu 6669/tcp # ircu
ircu 6669/udp # ircu
vocaltec-gold 6670/tcp # vocaltec global online directory
vocaltec-gold 6670/udp # vocaltec global online directory
vision_server 6672/tcp # vision_server
vision_server 6672/udp # vision_server
vision_elmd 6673/tcp # vision_elmd
vision_elmd 6673/udp # vision_elmd
kti-icad-srvr 6701/tcp # kti/icad nameserver
kti-icad-srvr 6701/udp # kti/icad nameserver
hnmp 6790/tcp # hnmp
hnmp 6790/udp # hnmp
ambit-lm 6831/tcp # ambit-lm
ambit-lm 6831/udp # ambit-lm
netmo-default 6841/tcp # netmo default
netmo-default 6841/udp # netmo default
netmo-http 6842/tcp # netmo http
netmo-http 6842/udp # netmo http
acmsoda 6969/tcp # acmsoda
acmsoda 6969/udp # acmsoda
iatp-highpri 6998/tcp # iatp-highpri
iatp-highpri 6998/udp # iatp-highpri
iatp-normalpri 6999/tcp # iatp-normalpri
iatp-normalpri 6999/udp # iatp-normalpri
afs3-fileserver 7000/tcp # file server itself, msdos, file server itself
afs3-fileserver 7000/udp # afs fileserver, file server itself
afs3-callback 7001/tcp # callbacks to cache managers
afs3-callback 7001/udp # callbacks to cache managers, afs callback server
afs3-prserver 7002/tcp # users & groups database
afs3-prserver 7002/udp # afs protection server, users & groups database
afs3-vlserver 7003/tcp # volume location database
afs3-vlserver 7003/udp # afs volumelocation server, volume location database
afs3-kaserver 7004/tcp # afs/kerberos authentication service
afs3-kaserver 7004/udp # afs kerberos authenication server, afs/kerberos authentication service
afs3-volser 7005/tcp # volume managment server
afs3-volser 7005/udp # afs volume server, volume managment server
afs3-errors 7006/tcp # error interpretation service
afs3-errors 7006/udp # afs error server ?, error interpretation service
afs3-bos 7007/tcp # basic overseer process
afs3-bos 7007/udp # afs basic over-see server ?, basic overseer process
afs3-update 7008/tcp # server-to-server updater
afs3-update 7008/udp # server-to-server updater, ?
afs3-rmtsys 7009/tcp # remote cache manager service
afs3-rmtsys 7009/udp # remote cache manager service, ?
ups-onlinet 7010/tcp # onlinet uninterruptable power supplies
ups-onlinet 7010/udp # onlinet uninterruptable power supplies
dpserve 7020/tcp # dp serve
dpserve 7020/udp # dp serve
dpserveadmin 7021/tcp # dp serve admin
dpserveadmin 7021/udp # dp serve admin
arcp 7070/tcp # arcp
arcp 7070/udp # arcp
lazy-ptop 7099/tcp # lazy-ptop
lazy-ptop 7099/udp # lazy-ptop
font-service 7100/tcp fs # x font service, font server
font-service 7100/udp # x font service
virprot-lm 7121/tcp # virtual prototypes license manager
virprot-lm 7121/udp # virtual prototypes license manager
clutild 7174/tcp # clutild
clutild 7174/udp # clutild
fodms 7200/tcp # fodms flip
fodms 7200/udp # fodms flip
dlip 7201/tcp # dlip
dlip 7201/udp # dlip
icb 7326/tcp # internet citizen's band
winqedit 7395/tcp # winqedit
winqedit 7395/udp # winqedit
pmdmgr 7426/tcp # openview dm postmaster manager
pmdmgr 7426/udp # openview dm postmaster manager
oveadmgr 7427/tcp # openview dm event agent manager
oveadmgr 7427/udp # openview dm event agent manager
ovladmgr 7428/tcp # openview dm log agent manager
ovladmgr 7428/udp # openview dm log agent manager
opi-sock 7429/tcp # openview dm rqt communication
opi-sock 7429/udp # openview dm rqt communication
xmpv7 7430/tcp # openview dm xmpv7 api pipe
xmpv7 7430/udp # openview dm xmpv7 api pipe
pmd 7431/tcp # openview dm ovc/xmpv3 api pipe
pmd 7431/udp # openview dm ovc/xmpv3 api pipe
faximum 7437/tcp # faximum
faximum 7437/udp # faximum
telops-lmd 7491/tcp # telops-lmd
telops-lmd 7491/udp # telops-lmd
pafec-lm 7511/tcp # pafec-lm
pafec-lm 7511/udp # pafec-lm
nta-ds 7544/tcp # flowanalyzer displayserver
nta-ds 7544/udp # flowanalyzer displayserver
nta-us 7545/tcp # flowanalyzer utilityserver
nta-us 7545/udp # flowanalyzer utilityserver
vsi-omega 7566/tcp # vsi omega
vsi-omega 7566/udp # vsi omega
aries-kfinder 7570/tcp # aries kfinder
aries-kfinder 7570/udp # aries kfinder
sun-lm 7588/tcp # sun license manager
sun-lm 7588/udp # sun license manager
pmdfmgt 7633/tcp # pmdf management
pmdfmgt 7633/udp # pmdf management
cucme-1 7648/udp # cucme live video/audio server
cucme-2 7649/udp # cucme live video/audio server
cucme-3 7650/udp # cucme live video/audio server
cucme-4 7651/udp # cucme live video/audio server
cbt 7777/tcp # cbt
cbt 7777/udp # cbt
accu-lmgr 7781/tcp # accu-lmgr
accu-lmgr 7781/udp # accu-lmgr
t2-drm 7932/tcp # tier 2 data resource manager
t2-drm 7932/udp # tier 2 data resource manager
t2-brm 7933/tcp # tier 2 business rules manager
t2-brm 7933/udp # tier 2 business rules manager
quest-vista 7980/tcp # quest vista
quest-vista 7980/udp # quest vista
irdmi2 7999/tcp # irdmi2
irdmi2 7999/udp # irdmi2
irdmi 8000/tcp # irdmi
irdmi 8000/udp # irdmi
vcom-tunnel 8001/tcp # vcom tunnel
vcom-tunnel 8001/udp # vcom tunnel
http-alt 8008/tcp # http alternate
http-alt 8008/udp # http alternate
pro-ed 8032/tcp # proed
pro-ed 8032/udp # proed
mindprint 8033/tcp # mindprint
mindprint 8033/udp # mindprint
http-alt 8080/tcp # http alternate (see port 80)
http-alt 8080/udp # http alternate (see port 80)
trivnet1 8200/tcp # trivnet
trivnet1 8200/udp # trivnet
trivnet2 8201/tcp # trivnet
trivnet2 8201/udp # trivnet
lm-perfworks 8204/tcp # lm perfworks
lm-perfworks 8204/udp # lm perfworks
lm-instmgr 8205/tcp # lm instmgr
lm-instmgr 8205/udp # lm instmgr
lm-dta 8206/tcp # lm dta
lm-dta 8206/udp # lm dta
lm-sserver 8207/tcp # lm sserver
lm-sserver 8207/udp # lm sserver
server-find 8351/tcp # server find
server-find 8351/udp # server find
cruise-enum 8376/tcp # cruise enum
cruise-enum 8376/udp # cruise enum
cruise-swroute 8377/tcp # cruise swroute
cruise-swroute 8377/udp # cruise swroute
cruise-config 8378/tcp # cruise config
cruise-config 8378/udp # cruise config
cruise-diags 8379/tcp # cruise diags
cruise-diags 8379/udp # cruise diags
cruise-update 8380/tcp # cruise update
cruise-update 8380/udp # cruise update
cvd 8400/tcp # cvd
cvd 8400/udp # cvd
sabarsd 8401/tcp # sabarsd
sabarsd 8401/udp # sabarsd
abarsd 8402/tcp # abarsd
abarsd 8402/udp # abarsd
admind 8403/tcp # admind
admind 8403/udp # admind
npmp 8450/tcp # npmp
npmp 8450/udp # npmp
vp2p 8473/tcp # virtual point to point
vp2p 8473/udp # virtual point to point
rtsp-alt 8554/tcp # rtsp alternate (see port 554)
rtsp-alt 8554/udp # rtsp alternate (see port 554)
natd 8668/divert # network address translation
ibus 8733/tcp # ibus
ibus 8733/udp # ibus
ultraseek-http 8765/tcp # ultraseek http
ultraseek-http 8765/udp # ultraseek http
cddbp-alt 8880/tcp # cddbp
cddbp-alt 8880/udp # cddbp
ddi-tcp-1 8888/tcp # newsedge server tcp (tcp 1)
ddi-udp-1 8888/udp # newsedge server udp (udp 1)
ddi-tcp-2 8889/tcp # desktop data tcp 1
ddi-udp-2 8889/udp # newsedge server broadcast
ddi-tcp-3 8890/tcp # desktop data tcp 2
ddi-udp-3 8890/udp # newsedge client broadcast
ddi-tcp-4 8891/tcp # desktop data tcp 3: ness application
ddi-udp-4 8891/udp # desktop data udp 3: ness application
ddi-tcp-5 8892/tcp # desktop data tcp 4: farm product
ddi-udp-5 8892/udp # desktop data udp 4: farm product
ddi-tcp-6 8893/tcp # desktop data tcp 5: newsedge/web application
ddi-udp-6 8893/udp # desktop data udp 5: newsedge/web application
ddi-tcp-7 8894/tcp # desktop data tcp 6: coal application
ddi-udp-7 8894/udp # desktop data udp 6: coal application
jmb-cds1 8900/tcp # jmb-cds 1
jmb-cds1 8900/udp # jmb-cds 1
jmb-cds2 8901/tcp # jmb-cds 2
jmb-cds2 8901/udp # jmb-cds 2
cslistener 9000/tcp # cslistener
cslistener 9000/udp # cslistener
kastenxpipe 9001/tcp # kastenx pipe
kastenxpipe 9001/udp # kastenx pipe
sctp 9006/tcp # sctp
sctp 9006/udp # sctp
websm 9090/tcp # websm
websm 9090/udp # websm
jetdirect 9100/tcp # hp jetdirect card
wap-wsp 9200/tcp # wap connectionless session service
wap-wsp 9200/udp # wap connectionless session service
wap-wsp-wtp 9201/tcp # wap session service
wap-wsp-wtp 9201/udp # wap session service
wap-wsp-s 9202/tcp # wap secure connectionless session service
wap-wsp-s 9202/udp # wap secure connectionless session service
wap-wsp-wtp-s 9203/tcp # wap secure session service
wap-wsp-wtp-s 9203/udp # wap secure session service
wap-vcard 9204/tcp # wap vcard
wap-vcard 9204/udp # wap vcard
wap-vcal 9205/tcp # wap vcal
wap-vcal 9205/udp # wap vcal
wap-vcard-s 9206/tcp # wap vcard secure
wap-vcard-s 9206/udp # wap vcard secure
wap-vcal-s 9207/tcp # wap vcal secure
wap-vcal-s 9207/udp # wap vcal secure
ismserver 9500/tcp # ismserver
ismserver 9500/udp # ismserver
man 9535/tcp
man 9535/udp
msgsys 9594/tcp # message system
msgsys 9594/udp # message system
pds 9595/tcp # ping discovery service
pds 9595/udp # ping discovery service
sd 9876/tcp # session director
sd 9876/udp # session director
cyborg-systems 9888/tcp # cyborg systems
cyborg-systems 9888/udp # cyborg systems
monkeycom 9898/tcp # monkeycom
monkeycom 9898/udp # monkeycom
palace 9992/tcp # palace
palace 9992/udp # palace
palace 9993/tcp # palace
palace 9993/udp # palace
palace 9994/tcp # palace
palace 9994/udp # palace
palace 9995/tcp # palace
palace 9995/udp # palace
palace 9996/tcp # palace
palace 9996/udp # palace
palace 9997/tcp # palace
palace 9997/udp # palace
distinct32 9998/tcp # distinct32
distinct32 9998/udp # distinct32
distinct 9999/tcp # distinct
distinct 9999/udp # distinct
ndmp 10000/tcp # network data management protocol
ndmp 10000/udp # network data management protocol
stel 10005/tcp # secure telnet
mvs-capacity 10007/tcp # mvs capacity
mvs-capacity 10007/udp # mvs capacity
amanda 10080/tcp # amanda
amanda 10080/udp # amanda, amanda backup util, dump server control
amandaidx 10082/tcp # amanda indexing
amidxtape 10083/tcp # amanda tape indexing
irisa 11000/tcp # irisa
irisa 11000/udp # irisa
metasys 11001/tcp # metasys
metasys 11001/udp # metasys
vce 11111/tcp # viral computing environment (vce)
vce 11111/udp # viral computing environment (vce)
atm-uhas 11367/tcp # atm uhas
atm-uhas 11367/udp # atm uhas
entextxid 12000/tcp # ibm enterprise extender sna xid exchange
entextxid 12000/udp # ibm enterprise extender sna xid exchange
entextnetwk 12001/tcp # ibm enterprise extender sna cos network priority
entextnetwk 12001/udp # ibm enterprise extender sna cos network priority
entexthigh 12002/tcp # ibm enterprise extender sna cos high priority
entexthigh 12002/udp # ibm enterprise extender sna cos high priority
entextmed 12003/tcp # ibm enterprise extender sna cos medium priority
entextmed 12003/udp # ibm enterprise extender sna cos medium priority
entextlow 12004/tcp # ibm enterprise extender sna cos low priority
entextlow 12004/udp # ibm enterprise extender sna cos low priority
NetBus 12345/tcp # netbus backdoor trojan
NetBus 12346/tcp # netbus backdoor trojan
tsaf 12753/tcp # tsaf port
tsaf 12753/udp # tsaf port
i-zipqd 13160/tcp # i-zipqd
i-zipqd 13160/udp # i-zipqd
bprd 13720/tcp # bprd protocol (veritas netbackup)
bprd 13720/udp # bprd protocol (veritas netbackup)
bpbrm 13721/tcp # bpbrm protocol (veritas netbackup)
bpbrm 13721/udp # bpbrm protocol (veritas netbackup)
bpcd 13782/tcp # veritas netbackup
bpcd 13782/udp # veritas netbackup
vopied 13783/tcp # vopied protocol
vopied 13783/udp # vopied protocol
dsmcc-config 13818/tcp # dsmcc config
dsmcc-config 13818/udp # dsmcc config
dsmcc-session 13819/tcp # dsmcc session messages
dsmcc-session 13819/udp # dsmcc session messages
dsmcc-passthru 13820/tcp # dsmcc pass-thru messages
dsmcc-passthru 13820/udp # dsmcc pass-thru messages
dsmcc-download 13821/tcp # dsmcc download protocol
dsmcc-download 13821/udp # dsmcc download protocol
dsmcc-ccp 13822/tcp # dsmcc channel change protocol
dsmcc-ccp 13822/udp # dsmcc channel change protocol
itu-sccp-ss7 14001/tcp # itu sccp (ss7)
itu-sccp-ss7 14001/udp # itu sccp (ss7)
netserialext1 16360/tcp # netserialext1
netserialext1 16360/udp # netserialext1
netserialext2 16361/tcp # netserialext2
netserialext2 16361/udp # netserialext2
netserialext3 16367/tcp # netserialext3
netserialext3 16367/udp # netserialext3
netserialext4 16368/tcp # netserialext4
netserialext4 16368/udp # netserialext4
isode-dua 17007/tcp
isode-dua 17007/udp
chipper 17219/tcp # chipper
chipper 17219/udp # chipper
biimenu 18000/tcp # beckman instruments, inc.
biimenu 18000/udp # beckman instruments, inc.
hp-sco 19410/tcp # hp-sco
hp-sco 19410/udp # hp-sco
hp-sca 19411/tcp # hp-sca
hp-sca 19411/udp # hp-sca
jcp 19541/tcp # jcp client
jcp 19541/udp # jcp client
dnp 20000/tcp # dnp
dnp 20000/udp # dnp
track 20670/tcp # track
track 20670/udp # track
webphone 21845/tcp # webphone
webphone 21845/udp # webphone
netspeak-is 21846/tcp # netspeak corp. directory services
netspeak-is 21846/udp # netspeak corp. directory services
netspeak-cs 21847/tcp # netspeak corp. connection services
netspeak-cs 21847/udp # netspeak corp. connection services
netspeak-acd 21848/tcp # netspeak corp. automatic call distribution
netspeak-acd 21848/udp # netspeak corp. automatic call distribution
netspeak-cps 21849/tcp # netspeak corp. credit processing system
netspeak-cps 21849/udp # netspeak corp. credit processing system
wnn6 22273/tcp wnn4 # wnn6 (japanese input), wnn6, wnn4 (japanese input)
wnn6 22273/udp # wnn6
wnn4_Cn 22289/tcp wnn6_Cn # wnn6 (chinese input), wnn4 (chinese input)
wnn4_Kr 22305/tcp wnn6_Kr # wnn4 (korean input), wnn6 (korean input)
wnn4_Tw 22321/tcp wnn6_Tw # wnn4 (taiwanse input), wnn6 (taiwanse input)
vocaltec-wconf 22555/tcp # vocaltec web conference
vocaltec-phone 22555/udp # vocaltec internet phone
aws-brf 22800/tcp # telerate information platform lan
aws-brf 22800/udp # telerate information platform lan
brf-gw 22951/tcp # telerate information platform wan
brf-gw 22951/udp # telerate information platform wan
med-ltp 24000/tcp # med-ltp
med-ltp 24000/udp # med-ltp
med-fsp-rx 24001/tcp # med-fsp-rx
med-fsp-rx 24001/udp # med-fsp-rx
med-fsp-tx 24002/tcp # med-fsp-tx
med-fsp-tx 24002/udp # med-fsp-tx
med-supp 24003/tcp # med-supp
med-supp 24003/udp # med-supp
med-ovw 24004/tcp # med-ovw
med-ovw 24004/udp # med-ovw
med-ci 24005/tcp # med-ci
med-ci 24005/udp # med-ci
med-net-svc 24006/tcp # med-net-svc
med-net-svc 24006/udp # med-net-svc
intel_rci 24386/tcp # intel rci
intel_rci 24386/udp # intel rci
icl-twobase1 25000/tcp # icl-twobase1
icl-twobase1 25000/udp # icl-twobase1
icl-twobase2 25001/tcp # icl-twobase2
icl-twobase2 25001/udp # icl-twobase2
icl-twobase3 25002/tcp # icl-twobase3
icl-twobase3 25002/udp # icl-twobase3
icl-twobase4 25003/tcp # icl-twobase4
icl-twobase4 25003/udp # icl-twobase4
icl-twobase5 25004/tcp # icl-twobase5
icl-twobase5 25004/udp # icl-twobase5
icl-twobase6 25005/tcp # icl-twobase6
icl-twobase6 25005/udp # icl-twobase6
icl-twobase7 25006/tcp # icl-twobase7
icl-twobase7 25006/udp # icl-twobase7
icl-twobase8 25007/tcp # icl-twobase8
icl-twobase8 25007/udp # icl-twobase8
icl-twobase9 25008/tcp # icl-twobase9
icl-twobase9 25008/udp # icl-twobase9
icl-twobase10 25009/tcp # icl-twobase10
icl-twobase10 25009/udp # icl-twobase10
vocaltec-hos 25793/tcp # vocaltec address server
vocaltec-hos 25793/udp # vocaltec address server
quake 26000/tcp # quake
quake 26000/udp # quake
wnn6-ds 26208/tcp wnn6_DS # wnn6 (dserver), wnn6-ds
wnn6-ds 26208/udp # wnn6-ds
hunt 26740/udp # multi-player/multi-host maze-wars
flex-lm 27000/ # flex lm (1-10)
flex-lm 27001/ # flex lm (1-10)
flex-lm 27002/ # flex lm (1-10)
flex-lm 27003/ # flex lm (1-10)
flex-lm 27004/ # flex lm (1-10)
flex-lm 27005/ # flex lm (1-10)
flex-lm 27006/ # flex lm (1-10)
flex-lm 27007/ # flex lm (1-10)
flex-lm 27008/ # flex lm (1-10)
flex-lm 27009/ # flex lm (1-10)
tw-auth-key 27999/tcp # tw authentication/key distribution and
tw-auth-key 27999/udp # attribute certificate services
BackOrifice 31337/udp # cdc back orifice remote admin tool
filenet-tms 32768/tcp # filenet tms
filenet-tms 32768/udp # filenet tms
filenet-rpc 32769/tcp # filenet rpc
filenet-rpc 32769/udp # filenet rpc
filenet-nch 32770/tcp # filenet nch
filenet-nch 32770/udp # filenet nch
traceroute 33434/tcp # traceroute use
traceroute 33434/udp # traceroute use
rockwell-encap 44818/tcp # rockwell encapsulation
rockwell-encap 44818/udp # rockwell encapsulation
eba 45678/tcp # eba prise
eba 45678/udp # eba prise
dbbrowse 47557/tcp # databeam corporation
dbbrowse 47557/udp # databeam corporation
directplaysrvr 47624/tcp # direct play server
directplaysrvr 47624/udp # direct play server
ap 47806/tcp # alc protocol
ap 47806/udp # alc protocol
bacnet 47808/tcp # building automation and control networks
bacnet 47808/udp # building automation and control networks
|