summaryrefslogtreecommitdiffstats
path: root/etc/services
blob: 1f85da00c07a57abb2c216562e2ee2167a2f5187 (plain)
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
#
# Network services, Internet style
#
# Note that it is presently the policy of IANA to assign a single well-known
# port number for both TCP and UDP; hence, most entries here have two entries
# even if the protocol doesn't support UDP operations.
#
# The latest IANA port assignments can be gotten from
#
#	http://www.iana.org/assignments/port-numbers
#
# The Well Known Ports are those from 0 through 1023.
# The Registered Ports are those from 1024 through 49151
# The Dynamic and/or Private Ports are those from 49152 through 65535
#
# Kerberos services are for Kerberos v4, and are unofficial.  Sites running
# v5 should uncomment v5 entries and comment v4 entries.
#
# $FreeBSD: src/etc/services,v 1.62.2.12 2003/02/01 16:48:17 schweikh Exp $
#	From: @(#)services	5.8 (Berkeley) 5/9/91
#
# WELL KNOWN PORT NUMBERS
#
rtmp		  1/ddp	   #Routing Table Maintenance Protocol
tcpmux		  1/tcp	   #TCP Port Service Multiplexer
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		  7/udp
discard		  9/tcp	   sink null
discard		  9/udp	   sink null
systat		 11/tcp	   users	#Active Users
systat		 11/udp	   users	#Active Users
daytime		 13/tcp
daytime		 13/udp
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	   ttytst source	#Character Generator
chargen		 19/udp	   ttytst source	#Character Generator
ftp-data	 20/tcp	   #File Transfer [Default Data]
ftp-data	 20/udp	   #File Transfer [Default Data]
ftp		 21/tcp	   #File Transfer [Control]
ftp		 21/udp	   #File Transfer [Control]
ssh		 22/tcp    #Secure Shell Login
ssh		 22/udp    #Secure Shell Login
telnet		 23/tcp
telnet		 23/udp
#		 24/tcp	   any private mail system
#		 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
#		 35/tcp	   any private printer server
#		 35/udp	   any private printer server
time		 37/tcp	   timserver
time		 37/udp	   timserver
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 Protocol
graphics	 41/tcp
graphics	 41/udp
nameserver	 42/tcp	   name		#Host Name Server
nameserver	 42/udp	   name		#Host Name Server
nicname		 43/tcp	   whois
nicname		 43/udp	   whois
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	   #Domain Name Server
domain		 53/udp	   #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	   # deprecated
#PROBLEMS!==============================================================
#		 57/tcp	   any private terminal access
#PROBLEMS!==============================================================
#		 57/udp	   any private terminal access
xns-mail	 58/tcp	   #XNS Mail
xns-mail	 58/udp	   #XNS Mail
#		 59/tcp	   any private file service
#		 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
whois++		 63/udp
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	#Bootstrap Protocol Server
bootps		 67/udp	   dhcps	#Bootstrap Protocol Server
bootpc		 68/tcp	   dhcpc	#Bootstrap Protocol Client
bootpc		 68/udp	   dhcpc	#Bootstrap Protocol Client
tftp		 69/tcp	   #Trivial File Transfer
tftp		 69/udp	   #Trivial File Transfer
tftp-proxy	 6969/udp 
gopher		 70/tcp
gopher		 70/udp
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
#		 75/tcp	   any private dial out service
#		 75/udp	   any private dial out service
deos		 76/tcp	   #Distributed External Object Store
deos		 76/udp	   #Distributed External Object Store
netrjs		 77/tcp
#PROBLEMS!==============================================================
#		 77/tcp	   any private RJE service
#PROBLEMS!==============================================================
#		 77/udp	   any private RJE service
vettcp		 78/tcp
vettcp		 78/udp
finger		 79/tcp
finger		 79/udp
http		 80/tcp	   www www-http		#World Wide Web HTTP
http		 80/udp	   www www-http		#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
ttylink		 87/tcp
#PROBLEMS!===========================================================
#		 87/tcp	   any private terminal link
#PROBLEMS!===========================================================
#		 87/udp	   any private terminal link
kerberos-sec	 88/tcp    kerberos	# krb5	# Kerberos (v5)
kerberos-sec	 88/udp    kerberos	# krb5	# Kerberos (v5)
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		 95/udp
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	   #TAC News, Unofficial: Red Hat linuxconf
tacnews		 98/udp	   #TAC News, Unofficial: Red Hat linuxconf
metagram	 99/tcp	   #Metagram Relay
metagram	 99/udp	   #Metagram Relay
newacct		100/tcp	   #[unauthorized use]
hostname	101/tcp	   hostnames	#NIC Host Name Server
hostname	101/udp	   hostnames	#NIC Host Name Server
iso-tsap	102/tcp	   tsap		#ISO-TSAP Class 0
iso-tsap	102/udp	   tsap		#ISO-TSAP Class 0
gppitnp		103/tcp	   #Genesis Point-to-Point Trans Net
gppitnp		103/udp	   #Genesis Point-to-Point Trans Net
acr-nema	104/tcp	   #ACR-NEMA Digital Imag. & Comm. 300
acr-nema	104/udp	   #ACR-NEMA Digital Imag. & Comm. 300
csnet-ns	105/tcp	   cso-ns cso	#Mailbox Name Nameserver
csnet-ns	105/udp	   cso-ns cso	#Mailbox Name Nameserver
pop3pw		106/tcp    3com-tsmux	#Eudora compatible PW changer
3com-tsmux	106/udp
rtelnet		107/tcp	   #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	#Post Office Protocol - Version 2
pop2		109/udp	   postoffice	#Post Office Protocol - Version 2
pop3		110/tcp	   #Post Office Protocol - Version 3
pop3		110/udp	   #Post Office Protocol - Version 3
sunrpc		111/tcp	   rpcbind	#SUN Remote Procedure Call
sunrpc		111/udp	   rpcbind	#SUN Remote Procedure Call
mcidas		112/tcp	   #McIDAS Data Transmission Protocol
mcidas		112/udp	   #McIDAS Data Transmission Protocol
auth		113/tcp	   ident tap	#Authentication Service
auth		113/udp	   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	   usenet	#Network News Transfer Protocol
nntp		119/udp	   usenet	#Network News Transfer Protocol
cfdptkt		120/tcp
cfdptkt		120/udp
erpc		121/tcp	   #Encore Expedited Remote Pro.Call
erpc		121/udp	   #Encore Expedited Remote Pro.Call
smakynet	122/tcp
smakynet	122/udp
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
loc-srv		135/tcp	   epmap	#Location Service
loc-srv		135/udp	   epmap	#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 #Interim Mail Access Protocol v2
imap		143/udp	   imap2 imap4 #Interim Mail Access Protocol v2
NeWS		144/tcp	   # Window System
NeWS		144/udp	   # Window System
#PROBLEMS!==============================================================
#uma		144/tcp	   #Universal Management Architecture
#uma		144/udp	   #Universal Management Architecture
#PROBLEMS!==============================================================
uaac		145/tcp	   #UAAC Protocol
uaac		145/udp	   #UAAC Protocol
iso-tp0		146/tcp
iso-tp0		146/udp
iso-ip		147/tcp
iso-ip		147/udp
cronus		148/tcp	   jargon	#CRONUS-SUPPORT
cronus		148/udp	   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		150/udp
hems		151/tcp
hems		151/udp
bftp		152/tcp	   #Background File Transfer Program
bftp		152/udp	   #Background File Transfer Program
sgmp		153/tcp
sgmp		153/udp
netsc-prod	154/tcp
netsc-prod	154/udp
netsc-dev	155/tcp
netsc-dev	155/udp
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	159/udp
sgmp-traps	160/tcp
sgmp-traps	160/udp
snmp		161/tcp
snmp		161/udp
snmptrap	162/tcp	   snmp-trap
snmptrap	162/udp	   snmp-trap
cmip-man	163/tcp	   #CMIP/TCP Manager
cmip-man	163/udp	   #CMIP/TCP Manager
cmip-agent	164/tcp	   #CMIP/TCP Agent
smip-agent	164/udp	   #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		167/udp
rsvd		168/tcp
rsvd		168/udp
send		169/tcp
send		169/udp
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-mux	173/udp
mailq		174/tcp
mailq		174/udp
vmnet		175/tcp
vmnet		175/udp
genrad-mux	176/tcp
genrad-mux	176/udp
xdmcp		177/tcp	   #X Display Manager Control Protocol
xdmcp		177/udp	   #X Display Manager Control Protocol
NextStep	178/tcp	   nextstep NeXTStep	#NextStep Window Server
NextStep	178/udp	   nextstep NeXTStep	#NextStep Window Server
bgp		179/tcp	   #Border Gateway Protocol
bgp		179/udp	   #Border Gateway Protocol
ris		180/tcp	   #Intergraph
ris		180/udp	   #Intergraph
unify		181/tcp
unify		181/udp
audit		182/tcp	   #Unisys Audit SITP
audit		182/udp	   #Unisys Audit SITP
ocbinder	183/tcp
ocbinder	183/udp
ocserver	184/tcp
ocserver	184/udp
remote-kis	185/tcp
remote-kis	185/udp
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
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
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
smux		199/udp
src		200/tcp	   #IBM System Resource Controller
src		200/udp	   #IBM System Resource Controller
at-rtmp		201/tcp	   #AppleTalk Routing Maintenance
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    #The Quick Mail Transfer Protocol
qmtp		209/udp    #The Quick Mail Transfer Protocol
#PROBLEMS!==============================================================
#tam		209/tcp	   #Trivial Authenticated Mail Protocol
#tam		209/udp	   #Trivial Authenticated Mail Protocol
#PROBLEMS!==============================================================
z39.50		210/tcp	   wais		#ANSI Z39.50
z39.50		210/udp	   wais		#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		213/udp
vmpwscs		214/tcp
vmpwscs		214/udp
softpc		215/tcp	   #Insignia Solutions
softpc		215/udp	   #Insignia Solutions
CAIlic		216/tcp	   atls	      #Computer Associates Int'l License Server
CAIlic		216/udp	   atls	      #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 was never used and never should have been allocated. See PR 46294.
#imap3		220/tcp	   #Interactive Mail Access Protocol v3
#imap3		220/udp	   #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		242/udp
sur-meas	243/tcp	   #Survey Measurement
sur-meas	243/udp	   #Survey Measurement
dayna		244/tcp
dayna		244/udp
link		245/tcp
link		245/udp
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		248/udp
#		249-255    reserved
rap		256/tcp
rap		256/udp
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	260/udp
nsiiops		261/tcp	   #iiop name service over tls/ssl
nsiiops		261/udp	   #iiop name service over tls/ssl
arcisdms	262/tcp
arcisdms	262/udp
hdap		263/tcp
hdap		263/udp
bgmp		264/tcp
bgmp		264/udp
#		265-279	   unassigned
http-mgmt	280/tcp
http-mgmt	280/udp
personal-link	281/tcp
personal-link	281/udp
cableport-ax	282/tcp	   #cable port a/x
cableport-ax	282/udp	   #cable port a/x
#		283-307    unassigned
novastorbakcup	308/tcp	   #novastor backup
novastorbakcup	308/udp	   #novastor backup
entrusttime	309/tcp
entrusttime	309/udp
bhmds		310/tcp
bhmds		310/udp
asip-webadmin	311/tcp	   #appleshare ip webadmin
asip-webadmin	311/udp	   #appleshare ip webadmin
vslmp		312/tcp
vslmp		312/udp
magenta-logic	313/tcp
magenta-logic	313/udp
opalis-robot	314/tcp
opalis-robot	314/udp
dpsi		315/tcp
dpsi		315/udp
decauth		316/tcp
decauth		316/udp
zannet		317/tcp
zannet		317/udp
#		318-320	   #unassigned
pip		321/tcp
pip		321/udp
#		322-343	   #unassigned
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		349/udp
matip-type-a	350/tcp	   #MATIP Type A
matip-type-a	350/udp
matip-type-b	351/tcp	   #MATIP Type B
matip-type-b	351/udp
bhoetty		351/tcp	   #unassigned but widespread use
bhoetty		351/udp    #unassigned but widespread use
dtag-ste-sb	352/tcp	   #DTAG
dtag-ste-sb	352/udp	   #DTAG
bhoedap4	352/tcp    #unassigned but widespread use
bhoedap4	352/udp    #unassigned but widespread use
ndsauth		353/tcp
ndsauth		353/udp
bh611		354/tcp
bh611		354/udp
datex-asn	355/tcp
datex-asn	355/udp
cloanto-net-1	356/tcp	   #Cloanto Net 1
cloanto-net-1	356/udp
bhevent		357/tcp
bhevent		357/udp
shrinkwrap	358/tcp
shrinkwrap	358/udp
tenebris_nts	359/tcp	   #Tenebris Network Trace Service
tenebris_nts	359/udp	   #Tenebris Network Trace Service
scoi2odialog	360/tcp
scoi2odialog	360/udp
semantix	361/tcp
semantix	361/udp
srssend		362/tcp	   #SRS Send
srssend		362/udp	   #SRS Send
rsvp_tunnel	363/tcp
rsvp_tunnel	363/udp
aurora-cmgr	364/tcp
aurora-cmgr	364/udp
dtk		365/tcp    #Deception Tool Kit - Fred Cohen <fc@all.net>
dtk		365/udp    #Deception Tool Kit - Fred Cohen <fc@all.net>
odmr		366/tcp
odmr		366/udp
mortgageware	367/tcp
mortgageware	367/udp
qbikgdp		368/tcp	   #QbikGDP
qbikgdp		368/udp
rpc2portmap	369/tcp
rpc2portmap	369/udp
codaauth2	370/tcp
codaauth2	370/udp
clearcase	371/tcp
clearcase	371/udp
ulistserv	372/tcp	   ulistproc	#Unix Listserv
ulistserv	372/udp	   ulistproc	#Unix Listserv
legent-1	373/tcp	   #Legent Corporation (now Computer Associates Intl.)
legent-1	373/udp	   #Legent Corporation (now Computer Associates Intl.)
legent-2	374/tcp	   #Legent Corporation (now Computer Associates Intl.)
legent-2	374/udp	   #Legent Corporation (now Computer Associates Intl.)
hassle		375/tcp
hassle		375/udp
nip		376/tcp	   #Amiga Envoy Network Inquiry Proto
nip		376/udp	   #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		390/udp
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	398/udp
iso-tsap-c2	399/tcp	   #ISO-TSAP Class 2
iso-tsap-c2	399/udp	   #ISO-TSAP Class 2
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		403/udp
nced		404/tcp
nced		404/udp
ncld		405/tcp
ncld		405/udp
imsp		406/tcp	   #Interactive Mail Support Protocol
imsp		406/udp	   #Interactive Mail Support Protocol
timbuktu	407/tcp
timbuktu	407/udp
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		413/udp
infoseek	414/tcp
infoseek	414/udp
bnet		415/tcp
bnet		415/udp
silverplatter	416/tcp
silverplatter	416/udp
onmux		417/tcp
onmux		417/udp
hyper-g		418/tcp
hyper-g		418/udp
ariel1		419/tcp
ariel1		419/udp
smpte		420/tcp
smpte		420/udp
ariel2		421/tcp
ariel2		421/udp
ariel3		422/tcp
ariel3		422/udp
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-el		425/udp
smartsdp	426/tcp
smartsdp	426/udp
svrloc		427/tcp	   #Server Location
svrloc		427/udp	   #Server Location
ocs_cmu		428/tcp
ocs_cmu		428/udp
ocs_amu		429/tcp
ocs_amu		429/udp
utmpsd		430/tcp
utmpsd		430/udp
utmpcd		431/tcp
utmpcd		431/udp
iasd		432/tcp
iasd		432/udp
nnsp		433/tcp
nnsp		433/udp
mobileip-agent	434/tcp
mobileip-agent	434/udp
mobilip-mn	435/tcp
mobilip-mn	435/udp
dna-cml		436/tcp
dna-cml		436/udp
comscm		437/tcp
comscm		437/udp
dsfgw		438/tcp
dsfgw		438/udp
dasp		439/tcp
dasp		439/udp
sgcp		440/tcp
sgcp		440/udp
decvms-sysmgt	441/tcp
decvms-sysmgt	441/udp
cvc_hostd	442/tcp
cvc_hostd	442/udp
https		443/tcp
https		443/udp
snpp		444/tcp	   #Simple Network Paging Protocol
snpp		444/udp	   #Simple Network Paging Protocol
#			   [RFC1568]
microsoft-ds	445/tcp
microsoft-ds	445/udp
ddm-rdb		446/tcp
ddm-rdb		446/udp
ddm-dfm		447/tcp
ddm-dfm		447/udp
ddm-ssl		448/tcp	   ddm-byte
ddm-ssl		448/udp	   ddm-byte
as-servermap	449/tcp	   #AS Server Mapper
as-servermap	449/udp	   #AS Server Mapper
tserver		450/tcp
tserver		450/udp
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-udp	456/udp
scohelp		457/tcp
scohelp		457/udp
appleqtc	458/tcp	   #apple quick time
appleqtc	458/udp	   #apple quick time
ampr-rcmd	459/tcp
ampr-rcmd	459/udp
skronk		460/tcp
skronk		460/udp
datasurfsrv	461/tcp
datasurfsrv	461/udp
datasurfsrvsec	462/tcp
datasurfsrvsec	462/udp
alpes		463/tcp
alpes		463/udp
#
kpasswd5	464/tcp	   # Kerberos (v5)
kpasswd5	464/udp	   # Kerberos (v5)
#PROBLEMS!==============================================================
# IANA has offically assigned these two ports as ``kpasswd''
#kpasswd	464/tcp    # Kerberos (v5)
#kpasswd	464/udp    # Kerberos (v5)
#PROBLEMS!==============================================================
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	466/udp
mylex-mapd	467/tcp
mylex-mapd	467/udp
photuris	468/tcp
photuris	468/udp
rcp		469/tcp	   #Radio Control Protocol
rcp		469/udp	   #Radio Control Protocol
scx-proxy	470/tcp
scx-proxy	470/udp
mondex		471/tcp
mondex		471/udp
ljk-login	472/tcp
ljk-login	472/udp
hybrid-pop	473/tcp
hybrid-pop	473/udp
tn-tl-w1	474/tcp
tn-tl-w2	474/udp
tcpnethaspsrv	475/tcp
tcpnethaspsrv	475/udp
tn-tl-fd1	476/tcp
tn-tl-fd1	476/udp
ss7ns		477/tcp
ss7ns		477/udp
spsc		478/tcp
spsc		478/udp
iafserver	479/tcp
iafserver	479/udp
iafdbase	480/tcp
iafdbase	480/udp
ph		481/tcp
ph		481/udp
bgs-nsi		482/tcp
bgs-nsi		482/udp
ulpnet		483/tcp
ulpnet		483/udp
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
avian		486/udp
saft		487/tcp	   #saft Simple Asynchronous File Transfer
saft		487/udp	   #saft Simple Asynchronous File Transfer
gss-http	488/tcp
gss-http	488/udp
nest-protocol	489/tcp
nest-protocol	489/udp
micom-pfs	490/tcp
micom-pfs	490/udp
go-login	491/tcp
go-login	491/udp
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		494/udp
intecourier	495/tcp
intecourier	495/udp
pim-rp-disc	496/tcp
pim-rp-disc	496/udp
dantz		497/tcp
dantz		497/udp
siam		498/tcp
siam		498/udp
iso-ill		499/tcp	   #ISO ILL Protocol
iso-ill		499/udp	   #ISO ILL Protocol
isakmp		500/tcp
isakmp		500/udp
stmf		501/tcp
stmf		501/udp
asa-appl-proto	502/tcp
asa-appl-proto	502/udp
intrinsa	503/tcp
intrinsa	503/udp
citadel		504/tcp
citadel		504/udp
mailbox-lm	505/tcp
mailbox-lm	505/udp
ohimsrv		506/tcp
ohimsrv		506/udp
crs		507/tcp
crs		507/udp
xvttp		508/tcp
xvttp		508/udp
snare		509/tcp
snare		509/udp
fcp		510/tcp	   #FirstClass Protocol
fcp		510/udp	   #FirstClass Protocol
passgo		511/tcp
passgo		511/udp
#
# Berkeley-specific services
#
exec		512/tcp	   #remote process execution;
#			   authentication performed using
#			   passwords and UNIX login names
biff		512/udp	   comsat	#used by mail system to notify users
#					of new mail received; currently
#					receives messages only from
#					processes on the same machine
login		513/tcp	   #remote login a la telnet;
#			   automatic authentication performed
#			   based on priviledged port numbers
#			   and distributed data bases which
#			   identify "authentication domains"
who		513/udp	   whod		#maintains data bases showing who's
#					logged in to machines on a local
#					net and the load average of the
#					machine
shell		514/tcp	   cmd		#like exec, but automatic
#					authentication is performed as for
#					login server
syslog		514/udp
printer		515/tcp	   spooler
printer		515/udp	   spooler
videotex	516/tcp
videotex	516/udp
talk		517/tcp	   #like tenex link, but across
#			   machine - unfortunately, doesn't
#			   use link protocol (this is actually
#			   just a rendezvous port from which a
#			   tcp connection is established)
talk		517/udp	   #like tenex link, but across
#			   machine - unfortunately, doesn't
#			   use link protocol (this is actually
#			   just a rendezvous port from which a
#			   tcp connection is established)
ntalk		518/tcp
ntalk		518/udp
utime		519/tcp	   unixtime
utime		519/udp	   unixtime
efs		520/tcp	   #extended file name server
router		520/udp	   route routed	   #local routing process (on site);
#					   uses variant of Xerox NS routing
#					   information protocol
ripng		521/tcp
ripng		521/udp
ulp		522/tcp
ulp		522/udp
ibm-db2		523/tcp
ibm-db2		523/udp
ncp		524/tcp
ncp		524/udp
timed		525/tcp	   timeserver
timed		525/udp	   timeserver
tempo		526/tcp	   newdate
tempo		526/udp	   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	529/udp
courier		530/tcp	   rpc
courier		530/udp	   rpc
conference	531/tcp	   chat
conference	531/udp	   chat
netnews		532/tcp	   readnews
netnews		532/udp	   readnews
netwall		533/tcp	   #for emergency broadcasts
netwall		533/udp	   #for emergency broadcasts
mm-admin	534/tcp	   #MegaMedia Admin
mm-admin	534/udp	   #MegaMedia Admin
iiop		535/tcp
iiop		535/udp
opalis-rdv	536/tcp
opalis-rdv	536/udp
nmsp		537/tcp	   #Networked Media Streaming Protocol
nmsp		537/udp	   #Networked Media Streaming Protocol
gdomap		538/tcp
gdomap		538/udp
apertus-ldp	539/tcp	   #Apertus Technologies Load Determination
apertus-ldp	539/udp	   #Apertus Technologies Load Determination
uucp		540/tcp	   uucpd
uucp		540/udp	   uucpd
uucp-rlogin	541/tcp
uucp-rlogin	541/udp
commerce	542/tcp
commerce	542/udp
klogin		543/tcp			# Kerberos (v4/v5)
klogin		543/udp			# Kerberos (v4/v5)
kshell		544/tcp	   krcmd	# Kerberos (v4/v5)
kshell		544/udp	   krcmd	# Kerberos (v4/v5)
appleqtcsrvr	545/tcp
appleqtcsrvr	545/udp
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	   #AFP over TCP
afpovertcp	548/udp	   #AFP over TCP
idfp		549/tcp
idfp		549/udp
new-rwho	550/tcp	   new-who
new-rwho	550/udp	   new-who
cybercash	551/tcp
cybercash	551/udp
deviceshare	552/tcp
deviceshare	552/udp
pirp		553/tcp
pirp		553/udp
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 rfs_server	# Brunhoff remote filesystem
remotefs	556/udp	   rfs rfs_server	# Brunhoff remote filesystem
openvms-sysipc	557/tcp
openvms-sysipc	557/udp
sdnskmp		558/tcp
sdnskmp		558/udp
teedtap		559/tcp
teedtap		559/udp
rmonitor	560/tcp	   rmonitord
rmonitor	560/udp	   rmonitord
monitor		561/tcp
monitor		561/udp
chshell		562/tcp	   chcmd
chshell		562/udp	   chcmd
nntps		563/tcp	   snntp	#nntp protocol over TLS/SSL
nntps		563/udp	   snntp	#nntp protocol over TLS/SSL
9pfs		564/tcp	   #plan 9 file service
9pfs		564/udp	   #plan 9 file service
whoami		565/tcp
whoami		565/udp
streettalk	566/tcp
banyan-rpc	567/tcp
banyan-rpc	567/udp
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
umeter		571/tcp	   #udemon
umeter		571/udp	   #udemon
sonar		572/tcp
sonar		572/udp
banyan-vip	573/tcp
banyan-vip	573/udp
ftp-agent	574/tcp	   #FTP Software Agent System
ftp-agent	574/udp	   #FTP Software Agent System
vemmi		575/tcp
vemmi		575/udp
ipcd		576/tcp
ipcd		576/udp
vnas		577/tcp
vnas		577/udp
ipdd		578/tcp
ipdd		578/udp
decbsrv		579/tcp
decbsrv		579/udp
sntp-heartbeat	580/tcp
sntp-heartbeat	580/udp
bdp		581/tcp	   #Bundle Discovery Protocol
bdp		581/udp	   #Bundle Discovery Protocol
scc-security	582/tcp
scc-security	582/udp
philips-vc	583/tcp	   #Philips Video-Conferencing
philips-vc	583/udp	   #Philips Video-Conferencing
keyserver	584/tcp
keyserver	584/udp
#imap4-ssl@585 never should have been allocated. See PR 46294.
#imap4-ssl	585/tcp	   #IMAP4+SSL (use of 585 is not recommended,
#imap4-ssl	585/udp	   #		use 993 instead)
password-chg	586/tcp
password-chg	586/udp
submission	587/tcp
submission	587/udp
cal		588/tcp
cal		588/udp
eyelink		589/tcp
eyelink		589/udp
tns-cml		590/tcp
tns-cml		590/udp
http-alt	591/tcp	   #FileMaker, Inc. - HTTP Alternate (see Port 80)
http-alt	591/udp	   #FileMaker, Inc. - HTTP Alternate (see Port 80)
eudora-set	592/tcp
eudora-set	592/udp
http-rpc-epmap	593/tcp	   #HTTP RPC Ep Map
http-rpc-epmap	593/udp	   #HTTP RPC Ep Map
tpip		594/tcp
tpip		594/udp
cab-protocol	595/tcp
cab-protocol	595/udp
smsd		596/tcp
smsd		596/udp
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	   #Sun IPC server
ipcserver	600/udp	   #Sun IPC server
nqs		607/tcp
nqs		607/udp
urm		606/tcp	   #Cray Unified Resource Manager
urm		606/udp	   #Cray Unified Resource Manager
sift-uft	608/tcp	   #Sender-Initiated/Unsolicited File Transfer
sift-uft	608/udp	   #Sender-Initiated/Unsolicited File Transfer
npmp-trap	609/tcp
npmp-trap	609/udp
npmp-local	610/tcp
npmp-local	610/udp
npmp-gui	611/tcp
npmp-gui	611/udp
sshell		614/tcp	   #SSLshell
sshell		614/udp
ipp		631/tcp    #IPP (Internet Printing Protocol)
ipp		631/udp    #IPP (Internet Printing Protocol)
ginad		634/tcp
ginad		634/udp
ldaps		636/tcp    sldap #ldap protocol over TLS/SSL
ldaps		636/udp    sldap
mdqs		666/tcp
mdqs		666/udp
#PROBLEMS!===============================================
doom		666/tcp	   #doom Id Software
doom		666/udp	   #doom Id Software
#PROBLEMS!===============================================
acap		674/tcp	   #Application Configuration Access Protocol
acap		674/udp	   #Application Configuration Access Protocol
elcsd		704/tcp	   #errlog copy/server daemon
elcsd		704/udp	   #errlog copy/server daemon
entrustmanager	709/tcp	   #EntrustManager
entrustmanager	709/udp	   #EntrustManager
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
netgw		741/tcp
netgw		741/udp
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 (v5)
kerberos-adm	749/udp    #Kerberos administration (v5)
kerberos-iv	750/udp		kdc	# Kerberos (v4)
kerberos-iv	750/tcp		kdc	# Kerberos (v4)
#PROBLEMS!========================================================
#rfile		750/tcp
#loadav		750/udp
#PROBLEMS!========================================================
kerberos_master	751/tcp	   # Kerberos `kadmin' (v4)
kerberos_master	751/udp	   # Kerberos `kadmin' (v4)
#PROBLEMS!========================================================
pump		751/tcp
pump		751/udp
#PROBLEMS!========================================================
qrh		752/tcp
qrh		752/udp
rrh		753/tcp
rrh		753/udp
krb_prop	754/tcp		krb5_prop	# kerberos/v5 server propagation
#PROBLEMS!========================================================
tell		754/tcp	    #send
#PROBLEMS!========================================================
tell		754/udp	    #send
nlogin		758/tcp
nlogin		758/udp
con		759/tcp
con		759/udp
krbupdate	760/tcp		kreg	# Kerberos (v4) registration
#PROBLEMS!========================================================
ns		760/tcp
#PROBLEMS!========================================================
ns		760/udp
kpasswd		761/tcp		kpwd	# Kerberos (v4) "passwd"
#PROBLEMS!========================================================
rxe		761/tcp
#PROBLEMS!========================================================
rxe		761/udp
quotad		762/tcp
quotad		762/udp
cycleserv	763/tcp
cycleserv	763/udp
omserv		764/tcp
omserv		764/udp
webster		765/tcp
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
wpgs		780/tcp
wpgs		780/udp
concert		786/tcp
concert		786/udp
mdbs_daemon	800/tcp
mdbs_daemon	800/udp
device		801/tcp
device		801/udp
supfilesrv	871/tcp			# for SUP
rsync		873/tcp
rsync		873/udp
accessbuilder	888/tcp
accessbuilder	888/udp
swat		901/tcp			# samba web configuration tool
ftps-data	989/tcp			# ftp protocol, data, over TLS/SSL
ftps-data	989/udp
ftps		990/tcp			# ftp protocol, control, over TLS/SSL
ftps		990/udp
telnets		992/tcp			# telnet protocol over TLS/SSL
telnets		992/udp
imaps		993/tcp			# imap4 protocol over TLS/SSL
imaps		993/udp
ircs		994/tcp			# irc protocol over TLS/SSL
ircs		994/udp
pop3s		995/tcp	spop3		# pop3 protocol over TLS/SSL
pop3s		995/udp	spop3
vsinet		996/tcp
vsinet		996/udp
maitrd		997/tcp
maitrd		997/udp
busboy		998/tcp
puparp		998/udp
garcon		999/tcp
applix		999/udp	       #Applix ac
puprouter	999/tcp
puprouter	999/udp
cadlock		1000/tcp
ock		1000/udp
#
# REGISTERED PORT NUMBERS
#
blackjack	1025/tcp   #network blackjack
blackjack	1025/udp   #network blackjack
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
nim		1058/tcp
nim		1058/udp
nimreg		1059/tcp
nimreg		1059/udp
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		1080/udp
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
webobjects	1085/tcp   #Web Objects
webobjects	1085/udp   #Web Objects
kpop		1109/tcp   #Unofficial
kpop		1109/udp   #Unofficial
nfsd-status	1110/tcp   #Cluster status info
nfsd-keepalive	1110/udp   #Client status info
supfiledbg	1127/tcp		# for SUP
nfa		1155/tcp   #Network File Access
nfa		1155/udp   #Network File Access
phone		1167/udp   #conference calling
skkserv		1178/tcp   #SKK (kanji input)
lupa		1212/tcp
lupa		1212/udp
nerv		1222/tcp   #SNI R&D network
nerv		1222/udp   #SNI R&D network
hermes		1248/tcp
hermes		1248/udp
healthd		1281/tcp   #healthd
healthd		1281/udp   #healthd
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	1358/udp
ftsrv		1359/tcp
ftsrv		1359/udp
mimer		1360/tcp
mimer		1360/udp
linx		1361/tcp
linx		1361/udp
timeflies	1362/tcp
timeflies	1362/udp
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		1367/udp
screencast	1368/tcp
screencast	1368/udp
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	1373/udp
molly		1374/tcp   #EPI Software Systems
molly		1374/udp   #EPI Software Systems
bytex		1375/tcp
bytex		1375/udp
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		1412/udp
innosys-acl	1413/tcp
innosys-acl	1413/udp
ibm-mqseries	1414/tcp   #IBM MQSeries
ibm-mqseries	1414/udp   #IBM MQSeries
dbstar		1415/tcp
dbstar		1415/udp
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
sas-1		1426/tcp   #Satellite-data Acquisition System 1
sas-1		1426/udp   #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	1435/udp
sas-2		1436/tcp   #Satellite-data Acquisition System 2
sas-2		1436/udp   #Satellite-data Acquisition System 2
tabula		1437/tcp
tabula		1437/udp
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-lm	1444/udp   #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		1449/udp
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		1456/udp
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		1463/udp
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	1467/udp
csdm		1468/tcp
csdm		1468/udp
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	1471/udp
csdm		1472/tcp
csdm		1472/udp
openmath	1473/tcp
openmath	1473/udp
telefinder	1474/tcp
telefinder	1474/udp
taligent-lm	1475/tcp    #Taligent License Manager
taligent-lm	1475/udp    #Taligent License Manager
clvm-cfg	1476/tcp
clvm-cfg	1476/udp
ms-sna-server	1477/tcp
ms-sna-server	1477/udp
ms-sna-base	1478/tcp
ms-sna-base	1478/udp
dberegister	1479/tcp
dberegister	1479/udp
pacerforum	1480/tcp
pacerforum	1480/udp
airs		1481/tcp
airs		1481/udp
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	1485/udp
nms_topo_serv	1486/tcp
nms_topo_serv	1486/udp
localinfosrvr	1487/tcp
localinfosrvr	1487/udp
docstor		1488/tcp
docstor		1488/udp
dmdocbroker	1489/tcp
dmdocbroker	1489/udp
insitu-conf	1490/tcp
insitu-conf	1490/udp
anynetgateway	1491/tcp
anynetgateway	1491/udp
stone-design-1	1492/tcp
stone-design-1	1492/udp
netmap_lm	1493/tcp
netmap_lm	1493/udp
ica		1494/tcp
ica		1494/udp
cvc		1495/tcp
cvc		1495/udp
liberty-lm	1496/tcp
liberty-lm	1496/udp
rfx-lm		1497/tcp
rfx-lm		1497/udp
watcom-sql	1498/tcp
watcom-sql	1498/udp
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
sas-3		1501/tcp    #Satellite-data Acquisition System 3
sas-3		1501/udp    #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		1507/udp
diagmond	1508/tcp
diagmond	1508/udp
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		1511/udp
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	1515/udp
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
rna-lm		1522/tcp    #Ricardo North America License Manager
rna-lm		1522/udp    #Ricardo North America License Manager
cichild-lm	1523/tcp
cichild-lm	1523/udp
ingreslock	1524/tcp    #ingres
ingreslock	1524/udp    #ingres
prospero-np	1525/tcp    #Prospero Directory Service non-priv
prospero-np	1525/udp    #Prospero Directory Service non-priv
#PROBLEMS!========================================================
orasrv		1525/tcp    #oracle
orasrv		1525/udp    #oracle
#PROBLEMS!========================================================
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
mciautoreg	1528/udp
support		1529/tcp	prmsd gnatsd	# cygnus bug tracker
coauthor	1529/tcp    #oracle
coauthor	1529/udp    #oracle
rap-service	1530/tcp
rap-service	1530/udp
rap-listen	1531/tcp
rap-listen	1531/udp
miroconnect	1532/tcp
miroconnect	1532/udp
virtual-places	1533/tcp    #Virtual Places Software
virtual-places	1533/udp    #Virtual Places Software
micromuse-lm	1534/tcp
micromuse-lm	1534/udp
ampr-info	1535/tcp
ampr-info	1535/udp
ampr-inter	1536/tcp
ampr-inter	1536/udp
sdsc-lm		1537/tcp
sdsc-lm		1537/udp
3ds-lm		1538/tcp
3ds-lm		1538/udp
intellistor-lm	1539/tcp    #Intellistor License Manager
intellistor-lm	1539/udp    #Intellistor License Manager
rds		1540/tcp
rds		1540/udp
rds2		1541/tcp
rds2		1541/udp
gridgen-elmd	1542/tcp
gridgen-elmd	1542/udp
simba-cs	1543/tcp
simba-cs	1543/udp
aspeclmd	1544/tcp
aspeclmd	1544/udp
vistium-share	1545/tcp
vistium-share	1545/udp
abbaccuray	1546/tcp
abbaccuray	1546/udp
laplink		1547/tcp
laplink		1547/udp
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	1551/udp
pciarray	1552/tcp
pciarray	1552/udp
issd		1600/tcp
issd		1600/udp
# IMPORTANT NOTE: Ports 1645/1646 are the traditional radius ports used by
# many vendors without obtaining official IANA assignment.  The official
# assignment is now ports 1812/1813 and users are encouraged to migrate
# when possible to these new ports.
#radius		1645/udp   #RADIUS authentication protocol (old)
#radacct	1646/udp   #RADIUS accounting protocol (old)
nkd		1650/tcp
nkd		1650/udp
shiva_confsrvr	1651/tcp
shiva_confsrvr	1651/udp
xnmp		1652/tcp
xnmp		1652/udp
netview-aix-1	1661/tcp
netview-aix-1	1661/udp
netview-aix-2	1662/tcp
netview-aix-2	1662/udp
netview-aix-3	1663/tcp
netview-aix-3	1663/udp
netview-aix-4	1664/tcp
netview-aix-4	1664/udp
netview-aix-5	1665/tcp
netview-aix-5	1665/udp
netview-aix-6	1666/tcp
netview-aix-6	1666/udp
netview-aix-7	1667/tcp
netview-aix-7	1667/udp
netview-aix-8	1668/tcp
netview-aix-8	1668/udp
netview-aix-9	1669/tcp
netview-aix-9	1669/udp
netview-aix-10	1670/tcp
netview-aix-10	1670/udp
netview-aix-11	1671/tcp
netview-aix-11	1671/udp
netview-aix-12	1672/tcp
netview-aix-12	1672/udp
l2f		1701/tcp   #l2f
l2f		1701/udp   #l2f
l2tp		1701/tcp   #Layer 2 Tunnelling Protocol
l2tp		1701/udp   #Layer 2 Tunnelling Protocol
pptp		1723/tcp   #Point-to-point tunnelling protocol
# IMPORTANT NOTE: See comments for ports 1645/1646 when using older equipment
radius		1812/udp   #RADIUS authentication protocol (IANA sanctioned)
radacct		1813/udp   #RADIUS accounting protocol (IANA sanctioned)
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   #cisco RSRB Priority 3 port
tr-rsrb-p3	1989/udp   #cisco RSRB Priority 3 port
#PROBLEMS!===================================================
mshnet		1989/tcp   #MHSnet system
mshnet		1989/udp   #MHSnet system
#PROBLEMS!===================================================
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   #cisco STUN Priority 3 port
stun-p3		1992/udp   #cisco STUN Priority 3 port
#PROBLEMS!===================================================
ipsendmsg	1992/tcp
ipsendmsg	1992/udp
#PROBLEMS!===================================================
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
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		2042/udp
isis-bcast	2043/tcp
isis-bcast	2043/udp
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
nfsd		2049/tcp	nfs		# NFS server daemon
nfsd		2049/udp	nfs		# NFS server daemon
#PROBLEMS!=============================================================
#shilp		2049/tcp
#shilp		2049/udp
#PROBLEMS!=============================================================
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
zephyr-clt	2103/udp   #Zephyr serv-hm connection
zephyr-hm	2104/udp   #Zephyr hostmanager
#PROBLEMS!=============================================================
#zephyr-hm-srv	2105/udp   #Zephyr hm-serv connection
#PROBLEMS!=============================================================
eklogin		2105/tcp   #Kerberos (v4) encrypted rlogin
eklogin		2105/udp   #Kerberos (v4) encrypted rlogin
ekshell		2106/tcp   #Kerberos (v4) encrypted rshell
ekshell		2106/udp   #Kerberos (v4) encrypted rshell
rkinit		2108/tcp   #Kerberos (v4) remote initialization
rkinit		2108/udp   #Kerberos (v4) remote initialization
ats		2201/tcp   #Advanced Training System Program
ats		2201/udp   #Advanced Training System Program
ivs-video	2232/tcp   #IVS Video default
ivs-video	2232/udp   #IVS Video default
ivsd		2241/tcp   #IVS Daemon
ivsd		2241/udp   #IVS Daemon
pehelp		2307/tcp
pehelp		2307/udp
cvspserver	2401/tcp   #CVS network server
cvspserver	2401/udp   #CVS network server
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
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
hp-3000-telnet	2564/tcp   #HP 3000 NS/VT block mode telnet
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
ospf6d		2606/tcp   #OSPF6d vty
listen		2766/tcp   #System V listener port
www-dev		2784/tcp   #world wide web - development
www-dev		2784/udp   #world wide web - development
dict		2628/tcp   #RFC 2229
dict		2628/udp   #RFC 2229
eppc		3031/tcp   #Remote AppleEvents/PPC Toolbox
eppc		3031/udp   #Remote AppleEvents/PPC Toolbox
NSWS		3049/tcp
NSWS		3049/udp
sj3		3086/tcp   #SJ3 (kanji input)
vmodem		3141/tcp
vmodem		3141/udp
ccmail		3264/tcp   #cc:mail/lotus
ccmail		3264/udp   #cc:mail/lotus
dec-notes	3333/tcp   #DEC Notes
dec-notes	3333/udp   #DEC Notes
rsvp-encap	3455/udp   #RSVP encapsulated in UDP
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
bmap		3421/tcp   #Bull Apprise portmapper
bmap		3421/udp   #Bull Apprise portmapper
prsvp		3455/tcp   #RSVP Port
prsvp		3455/udp   #RSVP Port
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
udt_os		3900/tcp   #Unidata UDT OS
udt_os		3900/udp   #Unidata UDT OS
netcheque	4008/tcp   #NetCheque accounting
netcheque	4008/udp   #NetCheque accounting
lockd		4045/udp			# NFS lock daemon/manager
lockd		4045/tcp
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
rwhois		4321/tcp   #Remote Who Is
rwhois		4321/udp   #Remote Who Is
unicall		4343/tcp
unicall		4343/udp
krb524		4444/tcp
krb524		4444/udp
# PROBLEM krb524 assigned the port,
# PROBLEM nv used it without an assignment
nv-video	4444/tcp   #NV Video default
nv-video	4444/udp   #NV Video default
sae-urn		4500/tcp
sae-urn		4500/udp
fax		4557/tcp   #FAX transmission service
hylafax		4559/tcp   #HylaFAX client-server protocol
rfa		4672/tcp   #remote file access server
rfa		4672/udp   #remote file access server
commplex-main	5000/tcp
commplex-main	5000/udp
commplex-link	5001/tcp
commplex-link	5001/udp
rfe		5002/tcp   #radio free ethernet
rfe		5002/udp   #radio free ethernet
telelpathstart	5010/tcp
telelpathstart	5010/udp
telelpathattack	5011/tcp
telelpathattack	5011/udp
mmcc		5050/tcp   #multimedia conference control tool
mmcc		5050/udp   #multimedia conference control tool
rmonitor_secure	5145/tcp
rmonitor_secure	5145/udp
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
jabber-client	5222/tcp   #Jabber Client Connection
jabber-client	5222/udp   #Jabber Client Connection
padl2sim	5236/tcp
padl2sim	5236/udp
jabber-server	5269/tcp   #Jabber Server Connection
jabber-server	5269/udp   #Jabber Server Connection
hacl-hb		5300/tcp   # HA cluster heartbeat
hacl-hb		5300/udp   # HA cluster heartbeat
hacl-gs		5301/tcp   # HA cluster general services
hacl-gs		5301/udp   # HA cluster general services
hacl-cfg	5302/tcp   # HA cluster configuration
hacl-cfg	5302/udp   # HA cluster configuration
hacl-probe	5303/tcp   # HA cluster probing
hacl-probe	5303/udp   # HA cluster probing
hacl-local	5304/tcp
hacl-local	5304/udp
hacl-test	5305/tcp
hacl-test	5305/udp
cfengine	5308/tcp
cfengine	5308/udp
postgresql	5432/tcp   #PostgreSQL Database
postgresql	5432/udp   #PostgreSQL Database
rplay		5555/udp
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
cvsup		5999/tcp   #CVSup file transfer/John Polstra/FreeBSD
x11		6000/tcp   #6000-6063 are assigned to X Window System
x11		6000/udp
x11-ssh		6010/tcp   #Unofficial name, for convenience
x11-ssh		6010/udp
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
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
xdsxdm		6558/tcp
xdsxdm		6558/udp
ircd		6667/tcp   #Internet Relay Chat (unoffical)
acmsoda		6969/tcp
acmsoda		6969/udp
afs3-fileserver	7000/tcp   #file server itself
afs3-fileserver	7000/udp   #file server itself
afs3-callback	7001/tcp   #callbacks to cache managers
afs3-callback	7001/udp   #callbacks to cache managers
afs3-prserver	7002/tcp   #users & groups database
afs3-prserver	7002/udp   #users & groups database
afs3-vlserver	7003/tcp   #volume location database
afs3-vlserver	7003/udp   #volume location database
afs3-kaserver	7004/tcp   #AFS/Kerberos authentication service
afs3-kaserver	7004/udp   #AFS/Kerberos authentication service
afs3-volser	7005/tcp   #volume management server
afs3-volser	7005/udp   #volume management server
afs3-errors	7006/tcp   #error interpretation service
afs3-errors	7006/udp   #error interpretation service
afs3-bos	7007/tcp   #basic overseer process
afs3-bos	7007/udp   #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
afs3-resserver	7010/tcp   #MR-AFS residence server
afs3-resserver	7010/udp   #MR-AFS residence server
afs3-remio	7011/tcp   #MR-AFS remote IO server
afs3-remio	7011/udp   #MR-AFS remote IO server
ups-onlinet	7010/tcp   #onlinet uninterruptable power supplies
ups-onlinet	7010/udp   #onlinet uninterruptable power supplies
font-service	7100/tcp   #X Font Service
font-service	7100/udp   #X Font Service
fodms		7200/tcp   #FODMS FLIP
fodms		7200/udp   #FODMS FLIP
dlip		7201/tcp
dlip		7201/udp
ftp-proxy	8021/tcp   # pf ftp-proxy
spamd		8025/tcp		# spamd(8)
spamd-sync	8025/udp		# spamd(8) synchronisation
spamd-cfg	8026/tcp		# spamd(8) configuration
natd		8668/divert # Network Address Translation
jetdirect	9100/tcp   #HP JetDirect card
man		9535/tcp
man		9535/udp
sd		9876/tcp   #Session Director
sd		9876/udp   #Session Director
amanda		10080/udp  #Dump server control
amandaidx	10082/tcp  #Amanda indexing
amidxtape	10083/tcp  #Amanda tape indexing
isode-dua	17007/tcp
isode-dua	17007/udp
biimenu		18000/tcp #Beckman Instruments, Inc.
biimenu		18000/udp #Beckman Instruments, Inc.
19000		19000/tcp # pfSense nat bouncing
19000		19000/udp # pfSense nat bouncing
19001		19001/tcp # pfSense nat bouncing
19001		19001/udp # pfSense nat bouncing
19002		19002/tcp # pfSense nat bouncing
19002		19002/udp # pfSense nat bouncing
19003		19003/tcp # pfSense nat bouncing
19003		19003/udp # pfSense nat bouncing
19004		19004/tcp # pfSense nat bouncing
19004		19004/udp # pfSense nat bouncing
19005		19005/tcp # pfSense nat bouncing
19005		19005/udp # pfSense nat bouncing
19006		19006/tcp # pfSense nat bouncing
19006		19006/udp # pfSense nat bouncing
19007		19007/tcp # pfSense nat bouncing
19007		19007/udp # pfSense nat bouncing
19008		19008/tcp # pfSense nat bouncing
19008		19008/udp # pfSense nat bouncing
19009		19009/tcp # pfSense nat bouncing
19009		19009/udp # pfSense nat bouncing
19010		19010/tcp # pfSense nat bouncing
19010		19010/udp # pfSense nat bouncing
19011		19011/tcp # pfSense nat bouncing
19011		19011/udp # pfSense nat bouncing
19012		19012/tcp # pfSense nat bouncing
19012		19012/udp # pfSense nat bouncing
19013		19013/tcp # pfSense nat bouncing
19013		19013/udp # pfSense nat bouncing
19014		19014/tcp # pfSense nat bouncing
19014		19014/udp # pfSense nat bouncing
19015		19015/tcp # pfSense nat bouncing
19015		19015/udp # pfSense nat bouncing
19016		19016/tcp # pfSense nat bouncing
19016		19016/udp # pfSense nat bouncing
19017		19017/tcp # pfSense nat bouncing
19017		19017/udp # pfSense nat bouncing
19018		19018/tcp # pfSense nat bouncing
19018		19018/udp # pfSense nat bouncing
19019		19019/tcp # pfSense nat bouncing
19019		19019/udp # pfSense nat bouncing
19020		19020/tcp # pfSense nat bouncing
19020		19020/udp # pfSense nat bouncing
19021		19021/tcp # pfSense nat bouncing
19021		19021/udp # pfSense nat bouncing
19022		19022/tcp # pfSense nat bouncing
19022		19022/udp # pfSense nat bouncing
19023		19023/tcp # pfSense nat bouncing
19023		19023/udp # pfSense nat bouncing
19024		19024/tcp # pfSense nat bouncing
19024		19024/udp # pfSense nat bouncing
19025		19025/tcp # pfSense nat bouncing
19025		19025/udp # pfSense nat bouncing
19026		19026/tcp # pfSense nat bouncing
19026		19026/udp # pfSense nat bouncing
19027		19027/tcp # pfSense nat bouncing
19027		19027/udp # pfSense nat bouncing
19028		19028/tcp # pfSense nat bouncing
19028		19028/udp # pfSense nat bouncing
19029		19029/tcp # pfSense nat bouncing
19029		19029/udp # pfSense nat bouncing
19030		19030/tcp # pfSense nat bouncing
19030		19030/udp # pfSense nat bouncing
19031		19031/tcp # pfSense nat bouncing
19031		19031/udp # pfSense nat bouncing
19032		19032/tcp # pfSense nat bouncing
19032		19032/udp # pfSense nat bouncing
19033		19033/tcp # pfSense nat bouncing
19033		19033/udp # pfSense nat bouncing
19034		19034/tcp # pfSense nat bouncing
19034		19034/udp # pfSense nat bouncing
19035		19035/tcp # pfSense nat bouncing
19035		19035/udp # pfSense nat bouncing
19036		19036/tcp # pfSense nat bouncing
19036		19036/udp # pfSense nat bouncing
19037		19037/tcp # pfSense nat bouncing
19037		19037/udp # pfSense nat bouncing
19038		19038/tcp # pfSense nat bouncing
19038		19038/udp # pfSense nat bouncing
19039		19039/tcp # pfSense nat bouncing
19039		19039/udp # pfSense nat bouncing
19040		19040/tcp # pfSense nat bouncing
19040		19040/udp # pfSense nat bouncing
19041		19041/tcp # pfSense nat bouncing
19041		19041/udp # pfSense nat bouncing
19042		19042/tcp # pfSense nat bouncing
19042		19042/udp # pfSense nat bouncing
19043		19043/tcp # pfSense nat bouncing
19043		19043/udp # pfSense nat bouncing
19044		19044/tcp # pfSense nat bouncing
19044		19044/udp # pfSense nat bouncing
19045		19045/tcp # pfSense nat bouncing
19045		19045/udp # pfSense nat bouncing
19046		19046/tcp # pfSense nat bouncing
19046		19046/udp # pfSense nat bouncing
19047		19047/tcp # pfSense nat bouncing
19047		19047/udp # pfSense nat bouncing
19048		19048/tcp # pfSense nat bouncing
19048		19048/udp # pfSense nat bouncing
19049		19049/tcp # pfSense nat bouncing
19049		19049/udp # pfSense nat bouncing
19050		19050/tcp # pfSense nat bouncing
19050		19050/udp # pfSense nat bouncing
19051		19051/tcp # pfSense nat bouncing
19051		19051/udp # pfSense nat bouncing
19052		19052/tcp # pfSense nat bouncing
19052		19052/udp # pfSense nat bouncing
19053		19053/tcp # pfSense nat bouncing
19053		19053/udp # pfSense nat bouncing
19054		19054/tcp # pfSense nat bouncing
19054		19054/udp # pfSense nat bouncing
19055		19055/tcp # pfSense nat bouncing
19055		19055/udp # pfSense nat bouncing
19056		19056/tcp # pfSense nat bouncing
19056		19056/udp # pfSense nat bouncing
19057		19057/tcp # pfSense nat bouncing
19057		19057/udp # pfSense nat bouncing
19058		19058/tcp # pfSense nat bouncing
19058		19058/udp # pfSense nat bouncing
19059		19059/tcp # pfSense nat bouncing
19059		19059/udp # pfSense nat bouncing
19060		19060/tcp # pfSense nat bouncing
19060		19060/udp # pfSense nat bouncing
19061		19061/tcp # pfSense nat bouncing
19061		19061/udp # pfSense nat bouncing
19062		19062/tcp # pfSense nat bouncing
19062		19062/udp # pfSense nat bouncing
19063		19063/tcp # pfSense nat bouncing
19063		19063/udp # pfSense nat bouncing
19064		19064/tcp # pfSense nat bouncing
19064		19064/udp # pfSense nat bouncing
19065		19065/tcp # pfSense nat bouncing
19065		19065/udp # pfSense nat bouncing
19066		19066/tcp # pfSense nat bouncing
19066		19066/udp # pfSense nat bouncing
19067		19067/tcp # pfSense nat bouncing
19067		19067/udp # pfSense nat bouncing
19068		19068/tcp # pfSense nat bouncing
19068		19068/udp # pfSense nat bouncing
19069		19069/tcp # pfSense nat bouncing
19069		19069/udp # pfSense nat bouncing
19070		19070/tcp # pfSense nat bouncing
19070		19070/udp # pfSense nat bouncing
19071		19071/tcp # pfSense nat bouncing
19071		19071/udp # pfSense nat bouncing
19072		19072/tcp # pfSense nat bouncing
19072		19072/udp # pfSense nat bouncing
19073		19073/tcp # pfSense nat bouncing
19073		19073/udp # pfSense nat bouncing
19074		19074/tcp # pfSense nat bouncing
19074		19074/udp # pfSense nat bouncing
19075		19075/tcp # pfSense nat bouncing
19075		19075/udp # pfSense nat bouncing
19076		19076/tcp # pfSense nat bouncing
19076		19076/udp # pfSense nat bouncing
19077		19077/tcp # pfSense nat bouncing
19077		19077/udp # pfSense nat bouncing
19078		19078/tcp # pfSense nat bouncing
19078		19078/udp # pfSense nat bouncing
19079		19079/tcp # pfSense nat bouncing
19079		19079/udp # pfSense nat bouncing
19080		19080/tcp # pfSense nat bouncing
19080		19080/udp # pfSense nat bouncing
19081		19081/tcp # pfSense nat bouncing
19081		19081/udp # pfSense nat bouncing
19082		19082/tcp # pfSense nat bouncing
19082		19082/udp # pfSense nat bouncing
19083		19083/tcp # pfSense nat bouncing
19083		19083/udp # pfSense nat bouncing
19084		19084/tcp # pfSense nat bouncing
19084		19084/udp # pfSense nat bouncing
19085		19085/tcp # pfSense nat bouncing
19085		19085/udp # pfSense nat bouncing
19086		19086/tcp # pfSense nat bouncing
19086		19086/udp # pfSense nat bouncing
19087		19087/tcp # pfSense nat bouncing
19087		19087/udp # pfSense nat bouncing
19088		19088/tcp # pfSense nat bouncing
19088		19088/udp # pfSense nat bouncing
19089		19089/tcp # pfSense nat bouncing
19089		19089/udp # pfSense nat bouncing
19090		19090/tcp # pfSense nat bouncing
19090		19090/udp # pfSense nat bouncing
19091		19091/tcp # pfSense nat bouncing
19091		19091/udp # pfSense nat bouncing
19092		19092/tcp # pfSense nat bouncing
19092		19092/udp # pfSense nat bouncing
19093		19093/tcp # pfSense nat bouncing
19093		19093/udp # pfSense nat bouncing
19094		19094/tcp # pfSense nat bouncing
19094		19094/udp # pfSense nat bouncing
19095		19095/tcp # pfSense nat bouncing
19095		19095/udp # pfSense nat bouncing
19096		19096/tcp # pfSense nat bouncing
19096		19096/udp # pfSense nat bouncing
19097		19097/tcp # pfSense nat bouncing
19097		19097/udp # pfSense nat bouncing
19098		19098/tcp # pfSense nat bouncing
19098		19098/udp # pfSense nat bouncing
19099		19099/tcp # pfSense nat bouncing
19099		19099/udp # pfSense nat bouncing
19100		19100/tcp # pfSense nat bouncing
19100		19100/udp # pfSense nat bouncing
19101		19101/tcp # pfSense nat bouncing
19101		19101/udp # pfSense nat bouncing
19102		19102/tcp # pfSense nat bouncing
19102		19102/udp # pfSense nat bouncing
19103		19103/tcp # pfSense nat bouncing
19103		19103/udp # pfSense nat bouncing
19104		19104/tcp # pfSense nat bouncing
19104		19104/udp # pfSense nat bouncing
19105		19105/tcp # pfSense nat bouncing
19105		19105/udp # pfSense nat bouncing
19106		19106/tcp # pfSense nat bouncing
19106		19106/udp # pfSense nat bouncing
19107		19107/tcp # pfSense nat bouncing
19107		19107/udp # pfSense nat bouncing
19108		19108/tcp # pfSense nat bouncing
19108		19108/udp # pfSense nat bouncing
19109		19109/tcp # pfSense nat bouncing
19109		19109/udp # pfSense nat bouncing
19110		19110/tcp # pfSense nat bouncing
19110		19110/udp # pfSense nat bouncing
19111		19111/tcp # pfSense nat bouncing
19111		19111/udp # pfSense nat bouncing
19112		19112/tcp # pfSense nat bouncing
19112		19112/udp # pfSense nat bouncing
19113		19113/tcp # pfSense nat bouncing
19113		19113/udp # pfSense nat bouncing
19114		19114/tcp # pfSense nat bouncing
19114		19114/udp # pfSense nat bouncing
19115		19115/tcp # pfSense nat bouncing
19115		19115/udp # pfSense nat bouncing
19116		19116/tcp # pfSense nat bouncing
19116		19116/udp # pfSense nat bouncing
19117		19117/tcp # pfSense nat bouncing
19117		19117/udp # pfSense nat bouncing
19118		19118/tcp # pfSense nat bouncing
19118		19118/udp # pfSense nat bouncing
19119		19119/tcp # pfSense nat bouncing
19119		19119/udp # pfSense nat bouncing
19120		19120/tcp # pfSense nat bouncing
19120		19120/udp # pfSense nat bouncing
19121		19121/tcp # pfSense nat bouncing
19121		19121/udp # pfSense nat bouncing
19122		19122/tcp # pfSense nat bouncing
19122		19122/udp # pfSense nat bouncing
19123		19123/tcp # pfSense nat bouncing
19123		19123/udp # pfSense nat bouncing
19124		19124/tcp # pfSense nat bouncing
19124		19124/udp # pfSense nat bouncing
19125		19125/tcp # pfSense nat bouncing
19125		19125/udp # pfSense nat bouncing
19126		19126/tcp # pfSense nat bouncing
19126		19126/udp # pfSense nat bouncing
19127		19127/tcp # pfSense nat bouncing
19127		19127/udp # pfSense nat bouncing
19128		19128/tcp # pfSense nat bouncing
19128		19128/udp # pfSense nat bouncing
19129		19129/tcp # pfSense nat bouncing
19129		19129/udp # pfSense nat bouncing
19130		19130/tcp # pfSense nat bouncing
19130		19130/udp # pfSense nat bouncing
19131		19131/tcp # pfSense nat bouncing
19131		19131/udp # pfSense nat bouncing
19132		19132/tcp # pfSense nat bouncing
19132		19132/udp # pfSense nat bouncing
19133		19133/tcp # pfSense nat bouncing
19133		19133/udp # pfSense nat bouncing
19134		19134/tcp # pfSense nat bouncing
19134		19134/udp # pfSense nat bouncing
19135		19135/tcp # pfSense nat bouncing
19135		19135/udp # pfSense nat bouncing
19136		19136/tcp # pfSense nat bouncing
19136		19136/udp # pfSense nat bouncing
19137		19137/tcp # pfSense nat bouncing
19137		19137/udp # pfSense nat bouncing
19138		19138/tcp # pfSense nat bouncing
19138		19138/udp # pfSense nat bouncing
19139		19139/tcp # pfSense nat bouncing
19139		19139/udp # pfSense nat bouncing
19140		19140/tcp # pfSense nat bouncing
19140		19140/udp # pfSense nat bouncing
19141		19141/tcp # pfSense nat bouncing
19141		19141/udp # pfSense nat bouncing
19142		19142/tcp # pfSense nat bouncing
19142		19142/udp # pfSense nat bouncing
19143		19143/tcp # pfSense nat bouncing
19143		19143/udp # pfSense nat bouncing
19144		19144/tcp # pfSense nat bouncing
19144		19144/udp # pfSense nat bouncing
19145		19145/tcp # pfSense nat bouncing
19145		19145/udp # pfSense nat bouncing
19146		19146/tcp # pfSense nat bouncing
19146		19146/udp # pfSense nat bouncing
19147		19147/tcp # pfSense nat bouncing
19147		19147/udp # pfSense nat bouncing
19148		19148/tcp # pfSense nat bouncing
19148		19148/udp # pfSense nat bouncing
19149		19149/tcp # pfSense nat bouncing
19149		19149/udp # pfSense nat bouncing
19150		19150/tcp # pfSense nat bouncing
19150		19150/udp # pfSense nat bouncing
19151		19151/tcp # pfSense nat bouncing
19151		19151/udp # pfSense nat bouncing
19152		19152/tcp # pfSense nat bouncing
19152		19152/udp # pfSense nat bouncing
19153		19153/tcp # pfSense nat bouncing
19153		19153/udp # pfSense nat bouncing
19154		19154/tcp # pfSense nat bouncing
19154		19154/udp # pfSense nat bouncing
19155		19155/tcp # pfSense nat bouncing
19155		19155/udp # pfSense nat bouncing
19156		19156/tcp # pfSense nat bouncing
19156		19156/udp # pfSense nat bouncing
19157		19157/tcp # pfSense nat bouncing
19157		19157/udp # pfSense nat bouncing
19158		19158/tcp # pfSense nat bouncing
19158		19158/udp # pfSense nat bouncing
19159		19159/tcp # pfSense nat bouncing
19159		19159/udp # pfSense nat bouncing
19160		19160/tcp # pfSense nat bouncing
19160		19160/udp # pfSense nat bouncing
19161		19161/tcp # pfSense nat bouncing
19161		19161/udp # pfSense nat bouncing
19162		19162/tcp # pfSense nat bouncing
19162		19162/udp # pfSense nat bouncing
19163		19163/tcp # pfSense nat bouncing
19163		19163/udp # pfSense nat bouncing
19164		19164/tcp # pfSense nat bouncing
19164		19164/udp # pfSense nat bouncing
19165		19165/tcp # pfSense nat bouncing
19165		19165/udp # pfSense nat bouncing
19166		19166/tcp # pfSense nat bouncing
19166		19166/udp # pfSense nat bouncing
19167		19167/tcp # pfSense nat bouncing
19167		19167/udp # pfSense nat bouncing
19168		19168/tcp # pfSense nat bouncing
19168		19168/udp # pfSense nat bouncing
19169		19169/tcp # pfSense nat bouncing
19169		19169/udp # pfSense nat bouncing
19170		19170/tcp # pfSense nat bouncing
19170		19170/udp # pfSense nat bouncing
19171		19171/tcp # pfSense nat bouncing
19171		19171/udp # pfSense nat bouncing
19172		19172/tcp # pfSense nat bouncing
19172		19172/udp # pfSense nat bouncing
19173		19173/tcp # pfSense nat bouncing
19173		19173/udp # pfSense nat bouncing
19174		19174/tcp # pfSense nat bouncing
19174		19174/udp # pfSense nat bouncing
19175		19175/tcp # pfSense nat bouncing
19175		19175/udp # pfSense nat bouncing
19176		19176/tcp # pfSense nat bouncing
19176		19176/udp # pfSense nat bouncing
19177		19177/tcp # pfSense nat bouncing
19177		19177/udp # pfSense nat bouncing
19178		19178/tcp # pfSense nat bouncing
19178		19178/udp # pfSense nat bouncing
19179		19179/tcp # pfSense nat bouncing
19179		19179/udp # pfSense nat bouncing
19180		19180/tcp # pfSense nat bouncing
19180		19180/udp # pfSense nat bouncing
19181		19181/tcp # pfSense nat bouncing
19181		19181/udp # pfSense nat bouncing
19182		19182/tcp # pfSense nat bouncing
19182		19182/udp # pfSense nat bouncing
19183		19183/tcp # pfSense nat bouncing
19183		19183/udp # pfSense nat bouncing
19184		19184/tcp # pfSense nat bouncing
19184		19184/udp # pfSense nat bouncing
19185		19185/tcp # pfSense nat bouncing
19185		19185/udp # pfSense nat bouncing
19186		19186/tcp # pfSense nat bouncing
19186		19186/udp # pfSense nat bouncing
19187		19187/tcp # pfSense nat bouncing
19187		19187/udp # pfSense nat bouncing
19188		19188/tcp # pfSense nat bouncing
19188		19188/udp # pfSense nat bouncing
19189		19189/tcp # pfSense nat bouncing
19189		19189/udp # pfSense nat bouncing
19190		19190/tcp # pfSense nat bouncing
19190		19190/udp # pfSense nat bouncing
19191		19191/tcp # pfSense nat bouncing
19191		19191/udp # pfSense nat bouncing
19192		19192/tcp # pfSense nat bouncing
19192		19192/udp # pfSense nat bouncing
19193		19193/tcp # pfSense nat bouncing
19193		19193/udp # pfSense nat bouncing
19194		19194/tcp # pfSense nat bouncing
19194		19194/udp # pfSense nat bouncing
19195		19195/tcp # pfSense nat bouncing
19195		19195/udp # pfSense nat bouncing
19196		19196/tcp # pfSense nat bouncing
19196		19196/udp # pfSense nat bouncing
19197		19197/tcp # pfSense nat bouncing
19197		19197/udp # pfSense nat bouncing
19198		19198/tcp # pfSense nat bouncing
19198		19198/udp # pfSense nat bouncing
19199		19199/tcp # pfSense nat bouncing
19199		19199/udp # pfSense nat bouncing
19200		19200/tcp # pfSense nat bouncing
19200		19200/udp # pfSense nat bouncing
19201		19201/tcp # pfSense nat bouncing
19201		19201/udp # pfSense nat bouncing
19202		19202/tcp # pfSense nat bouncing
19202		19202/udp # pfSense nat bouncing
19203		19203/tcp # pfSense nat bouncing
19203		19203/udp # pfSense nat bouncing
19204		19204/tcp # pfSense nat bouncing
19204		19204/udp # pfSense nat bouncing
19205		19205/tcp # pfSense nat bouncing
19205		19205/udp # pfSense nat bouncing
19206		19206/tcp # pfSense nat bouncing
19206		19206/udp # pfSense nat bouncing
19207		19207/tcp # pfSense nat bouncing
19207		19207/udp # pfSense nat bouncing
19208		19208/tcp # pfSense nat bouncing
19208		19208/udp # pfSense nat bouncing
19209		19209/tcp # pfSense nat bouncing
19209		19209/udp # pfSense nat bouncing
19210		19210/tcp # pfSense nat bouncing
19210		19210/udp # pfSense nat bouncing
19211		19211/tcp # pfSense nat bouncing
19211		19211/udp # pfSense nat bouncing
19212		19212/tcp # pfSense nat bouncing
19212		19212/udp # pfSense nat bouncing
19213		19213/tcp # pfSense nat bouncing
19213		19213/udp # pfSense nat bouncing
19214		19214/tcp # pfSense nat bouncing
19214		19214/udp # pfSense nat bouncing
19215		19215/tcp # pfSense nat bouncing
19215		19215/udp # pfSense nat bouncing
19216		19216/tcp # pfSense nat bouncing
19216		19216/udp # pfSense nat bouncing
19217		19217/tcp # pfSense nat bouncing
19217		19217/udp # pfSense nat bouncing
19218		19218/tcp # pfSense nat bouncing
19218		19218/udp # pfSense nat bouncing
19219		19219/tcp # pfSense nat bouncing
19219		19219/udp # pfSense nat bouncing
19220		19220/tcp # pfSense nat bouncing
19220		19220/udp # pfSense nat bouncing
19221		19221/tcp # pfSense nat bouncing
19221		19221/udp # pfSense nat bouncing
19222		19222/tcp # pfSense nat bouncing
19222		19222/udp # pfSense nat bouncing
19223		19223/tcp # pfSense nat bouncing
19223		19223/udp # pfSense nat bouncing
19224		19224/tcp # pfSense nat bouncing
19224		19224/udp # pfSense nat bouncing
19225		19225/tcp # pfSense nat bouncing
19225		19225/udp # pfSense nat bouncing
19226		19226/tcp # pfSense nat bouncing
19226		19226/udp # pfSense nat bouncing
19227		19227/tcp # pfSense nat bouncing
19227		19227/udp # pfSense nat bouncing
19228		19228/tcp # pfSense nat bouncing
19228		19228/udp # pfSense nat bouncing
19229		19229/tcp # pfSense nat bouncing
19229		19229/udp # pfSense nat bouncing
19230		19230/tcp # pfSense nat bouncing
19230		19230/udp # pfSense nat bouncing
19231		19231/tcp # pfSense nat bouncing
19231		19231/udp # pfSense nat bouncing
19232		19232/tcp # pfSense nat bouncing
19232		19232/udp # pfSense nat bouncing
19233		19233/tcp # pfSense nat bouncing
19233		19233/udp # pfSense nat bouncing
19234		19234/tcp # pfSense nat bouncing
19234		19234/udp # pfSense nat bouncing
19235		19235/tcp # pfSense nat bouncing
19235		19235/udp # pfSense nat bouncing
19236		19236/tcp # pfSense nat bouncing
19236		19236/udp # pfSense nat bouncing
19237		19237/tcp # pfSense nat bouncing
19237		19237/udp # pfSense nat bouncing
19238		19238/tcp # pfSense nat bouncing
19238		19238/udp # pfSense nat bouncing
19239		19239/tcp # pfSense nat bouncing
19239		19239/udp # pfSense nat bouncing
19240		19240/tcp # pfSense nat bouncing
19240		19240/udp # pfSense nat bouncing
19241		19241/tcp # pfSense nat bouncing
19241		19241/udp # pfSense nat bouncing
19242		19242/tcp # pfSense nat bouncing
19242		19242/udp # pfSense nat bouncing
19243		19243/tcp # pfSense nat bouncing
19243		19243/udp # pfSense nat bouncing
19244		19244/tcp # pfSense nat bouncing
19244		19244/udp # pfSense nat bouncing
19245		19245/tcp # pfSense nat bouncing
19245		19245/udp # pfSense nat bouncing
19246		19246/tcp # pfSense nat bouncing
19246		19246/udp # pfSense nat bouncing
19247		19247/tcp # pfSense nat bouncing
19247		19247/udp # pfSense nat bouncing
19248		19248/tcp # pfSense nat bouncing
19248		19248/udp # pfSense nat bouncing
19249		19249/tcp # pfSense nat bouncing
19249		19249/udp # pfSense nat bouncing
19250		19250/tcp # pfSense nat bouncing
19250		19250/udp # pfSense nat bouncing
19251		19251/tcp # pfSense nat bouncing
19251		19251/udp # pfSense nat bouncing
19252		19252/tcp # pfSense nat bouncing
19252		19252/udp # pfSense nat bouncing
19253		19253/tcp # pfSense nat bouncing
19253		19253/udp # pfSense nat bouncing
19254		19254/tcp # pfSense nat bouncing
19254		19254/udp # pfSense nat bouncing
19255		19255/tcp # pfSense nat bouncing
19255		19255/udp # pfSense nat bouncing
19256		19256/tcp # pfSense nat bouncing
19256		19256/udp # pfSense nat bouncing
19257		19257/tcp # pfSense nat bouncing
19257		19257/udp # pfSense nat bouncing
19258		19258/tcp # pfSense nat bouncing
19258		19258/udp # pfSense nat bouncing
19259		19259/tcp # pfSense nat bouncing
19259		19259/udp # pfSense nat bouncing
19260		19260/tcp # pfSense nat bouncing
19260		19260/udp # pfSense nat bouncing
19261		19261/tcp # pfSense nat bouncing
19261		19261/udp # pfSense nat bouncing
19262		19262/tcp # pfSense nat bouncing
19262		19262/udp # pfSense nat bouncing
19263		19263/tcp # pfSense nat bouncing
19263		19263/udp # pfSense nat bouncing
19264		19264/tcp # pfSense nat bouncing
19264		19264/udp # pfSense nat bouncing
19265		19265/tcp # pfSense nat bouncing
19265		19265/udp # pfSense nat bouncing
19266		19266/tcp # pfSense nat bouncing
19266		19266/udp # pfSense nat bouncing
19267		19267/tcp # pfSense nat bouncing
19267		19267/udp # pfSense nat bouncing
19268		19268/tcp # pfSense nat bouncing
19268		19268/udp # pfSense nat bouncing
19269		19269/tcp # pfSense nat bouncing
19269		19269/udp # pfSense nat bouncing
19270		19270/tcp # pfSense nat bouncing
19270		19270/udp # pfSense nat bouncing
19271		19271/tcp # pfSense nat bouncing
19271		19271/udp # pfSense nat bouncing
19272		19272/tcp # pfSense nat bouncing
19272		19272/udp # pfSense nat bouncing
19273		19273/tcp # pfSense nat bouncing
19273		19273/udp # pfSense nat bouncing
19274		19274/tcp # pfSense nat bouncing
19274		19274/udp # pfSense nat bouncing
19275		19275/tcp # pfSense nat bouncing
19275		19275/udp # pfSense nat bouncing
19276		19276/tcp # pfSense nat bouncing
19276		19276/udp # pfSense nat bouncing
19277		19277/tcp # pfSense nat bouncing
19277		19277/udp # pfSense nat bouncing
19278		19278/tcp # pfSense nat bouncing
19278		19278/udp # pfSense nat bouncing
19279		19279/tcp # pfSense nat bouncing
19279		19279/udp # pfSense nat bouncing
19280		19280/tcp # pfSense nat bouncing
19280		19280/udp # pfSense nat bouncing
19281		19281/tcp # pfSense nat bouncing
19281		19281/udp # pfSense nat bouncing
19282		19282/tcp # pfSense nat bouncing
19282		19282/udp # pfSense nat bouncing
19283		19283/tcp # pfSense nat bouncing
19283		19283/udp # pfSense nat bouncing
19284		19284/tcp # pfSense nat bouncing
19284		19284/udp # pfSense nat bouncing
19285		19285/tcp # pfSense nat bouncing
19285		19285/udp # pfSense nat bouncing
19286		19286/tcp # pfSense nat bouncing
19286		19286/udp # pfSense nat bouncing
19287		19287/tcp # pfSense nat bouncing
19287		19287/udp # pfSense nat bouncing
19288		19288/tcp # pfSense nat bouncing
19288		19288/udp # pfSense nat bouncing
19289		19289/tcp # pfSense nat bouncing
19289		19289/udp # pfSense nat bouncing
19290		19290/tcp # pfSense nat bouncing
19290		19290/udp # pfSense nat bouncing
19291		19291/tcp # pfSense nat bouncing
19291		19291/udp # pfSense nat bouncing
19292		19292/tcp # pfSense nat bouncing
19292		19292/udp # pfSense nat bouncing
19293		19293/tcp # pfSense nat bouncing
19293		19293/udp # pfSense nat bouncing
19294		19294/tcp # pfSense nat bouncing
19294		19294/udp # pfSense nat bouncing
19295		19295/tcp # pfSense nat bouncing
19295		19295/udp # pfSense nat bouncing
19296		19296/tcp # pfSense nat bouncing
19296		19296/udp # pfSense nat bouncing
19297		19297/tcp # pfSense nat bouncing
19297		19297/udp # pfSense nat bouncing
19298		19298/tcp # pfSense nat bouncing
19298		19298/udp # pfSense nat bouncing
19299		19299/tcp # pfSense nat bouncing
19299		19299/udp # pfSense nat bouncing
19300		19300/tcp # pfSense nat bouncing
19300		19300/udp # pfSense nat bouncing
19301		19301/tcp # pfSense nat bouncing
19301		19301/udp # pfSense nat bouncing
19302		19302/tcp # pfSense nat bouncing
19302		19302/udp # pfSense nat bouncing
19303		19303/tcp # pfSense nat bouncing
19303		19303/udp # pfSense nat bouncing
19304		19304/tcp # pfSense nat bouncing
19304		19304/udp # pfSense nat bouncing
19305		19305/tcp # pfSense nat bouncing
19305		19305/udp # pfSense nat bouncing
19306		19306/tcp # pfSense nat bouncing
19306		19306/udp # pfSense nat bouncing
19307		19307/tcp # pfSense nat bouncing
19307		19307/udp # pfSense nat bouncing
19308		19308/tcp # pfSense nat bouncing
19308		19308/udp # pfSense nat bouncing
19309		19309/tcp # pfSense nat bouncing
19309		19309/udp # pfSense nat bouncing
19310		19310/tcp # pfSense nat bouncing
19310		19310/udp # pfSense nat bouncing
19311		19311/tcp # pfSense nat bouncing
19311		19311/udp # pfSense nat bouncing
19312		19312/tcp # pfSense nat bouncing
19312		19312/udp # pfSense nat bouncing
19313		19313/tcp # pfSense nat bouncing
19313		19313/udp # pfSense nat bouncing
19314		19314/tcp # pfSense nat bouncing
19314		19314/udp # pfSense nat bouncing
19315		19315/tcp # pfSense nat bouncing
19315		19315/udp # pfSense nat bouncing
19316		19316/tcp # pfSense nat bouncing
19316		19316/udp # pfSense nat bouncing
19317		19317/tcp # pfSense nat bouncing
19317		19317/udp # pfSense nat bouncing
19318		19318/tcp # pfSense nat bouncing
19318		19318/udp # pfSense nat bouncing
19319		19319/tcp # pfSense nat bouncing
19319		19319/udp # pfSense nat bouncing
19320		19320/tcp # pfSense nat bouncing
19320		19320/udp # pfSense nat bouncing
19321		19321/tcp # pfSense nat bouncing
19321		19321/udp # pfSense nat bouncing
19322		19322/tcp # pfSense nat bouncing
19322		19322/udp # pfSense nat bouncing
19323		19323/tcp # pfSense nat bouncing
19323		19323/udp # pfSense nat bouncing
19324		19324/tcp # pfSense nat bouncing
19324		19324/udp # pfSense nat bouncing
19325		19325/tcp # pfSense nat bouncing
19325		19325/udp # pfSense nat bouncing
19326		19326/tcp # pfSense nat bouncing
19326		19326/udp # pfSense nat bouncing
19327		19327/tcp # pfSense nat bouncing
19327		19327/udp # pfSense nat bouncing
19328		19328/tcp # pfSense nat bouncing
19328		19328/udp # pfSense nat bouncing
19329		19329/tcp # pfSense nat bouncing
19329		19329/udp # pfSense nat bouncing
19330		19330/tcp # pfSense nat bouncing
19330		19330/udp # pfSense nat bouncing
19331		19331/tcp # pfSense nat bouncing
19331		19331/udp # pfSense nat bouncing
19332		19332/tcp # pfSense nat bouncing
19332		19332/udp # pfSense nat bouncing
19333		19333/tcp # pfSense nat bouncing
19333		19333/udp # pfSense nat bouncing
19334		19334/tcp # pfSense nat bouncing
19334		19334/udp # pfSense nat bouncing
19335		19335/tcp # pfSense nat bouncing
19335		19335/udp # pfSense nat bouncing
19336		19336/tcp # pfSense nat bouncing
19336		19336/udp # pfSense nat bouncing
19337		19337/tcp # pfSense nat bouncing
19337		19337/udp # pfSense nat bouncing
19338		19338/tcp # pfSense nat bouncing
19338		19338/udp # pfSense nat bouncing
19339		19339/tcp # pfSense nat bouncing
19339		19339/udp # pfSense nat bouncing
19340		19340/tcp # pfSense nat bouncing
19340		19340/udp # pfSense nat bouncing
19341		19341/tcp # pfSense nat bouncing
19341		19341/udp # pfSense nat bouncing
19342		19342/tcp # pfSense nat bouncing
19342		19342/udp # pfSense nat bouncing
19343		19343/tcp # pfSense nat bouncing
19343		19343/udp # pfSense nat bouncing
19344		19344/tcp # pfSense nat bouncing
19344		19344/udp # pfSense nat bouncing
19345		19345/tcp # pfSense nat bouncing
19345		19345/udp # pfSense nat bouncing
19346		19346/tcp # pfSense nat bouncing
19346		19346/udp # pfSense nat bouncing
19347		19347/tcp # pfSense nat bouncing
19347		19347/udp # pfSense nat bouncing
19348		19348/tcp # pfSense nat bouncing
19348		19348/udp # pfSense nat bouncing
19349		19349/tcp # pfSense nat bouncing
19349		19349/udp # pfSense nat bouncing
19350		19350/tcp # pfSense nat bouncing
19350		19350/udp # pfSense nat bouncing
19351		19351/tcp # pfSense nat bouncing
19351		19351/udp # pfSense nat bouncing
19352		19352/tcp # pfSense nat bouncing
19352		19352/udp # pfSense nat bouncing
19353		19353/tcp # pfSense nat bouncing
19353		19353/udp # pfSense nat bouncing
19354		19354/tcp # pfSense nat bouncing
19354		19354/udp # pfSense nat bouncing
19355		19355/tcp # pfSense nat bouncing
19355		19355/udp # pfSense nat bouncing
19356		19356/tcp # pfSense nat bouncing
19356		19356/udp # pfSense nat bouncing
19357		19357/tcp # pfSense nat bouncing
19357		19357/udp # pfSense nat bouncing
19358		19358/tcp # pfSense nat bouncing
19358		19358/udp # pfSense nat bouncing
19359		19359/tcp # pfSense nat bouncing
19359		19359/udp # pfSense nat bouncing
19360		19360/tcp # pfSense nat bouncing
19360		19360/udp # pfSense nat bouncing
19361		19361/tcp # pfSense nat bouncing
19361		19361/udp # pfSense nat bouncing
19362		19362/tcp # pfSense nat bouncing
19362		19362/udp # pfSense nat bouncing
19363		19363/tcp # pfSense nat bouncing
19363		19363/udp # pfSense nat bouncing
19364		19364/tcp # pfSense nat bouncing
19364		19364/udp # pfSense nat bouncing
19365		19365/tcp # pfSense nat bouncing
19365		19365/udp # pfSense nat bouncing
19366		19366/tcp # pfSense nat bouncing
19366		19366/udp # pfSense nat bouncing
19367		19367/tcp # pfSense nat bouncing
19367		19367/udp # pfSense nat bouncing
19368		19368/tcp # pfSense nat bouncing
19368		19368/udp # pfSense nat bouncing
19369		19369/tcp # pfSense nat bouncing
19369		19369/udp # pfSense nat bouncing
19370		19370/tcp # pfSense nat bouncing
19370		19370/udp # pfSense nat bouncing
19371		19371/tcp # pfSense nat bouncing
19371		19371/udp # pfSense nat bouncing
19372		19372/tcp # pfSense nat bouncing
19372		19372/udp # pfSense nat bouncing
19373		19373/tcp # pfSense nat bouncing
19373		19373/udp # pfSense nat bouncing
19374		19374/tcp # pfSense nat bouncing
19374		19374/udp # pfSense nat bouncing
19375		19375/tcp # pfSense nat bouncing
19375		19375/udp # pfSense nat bouncing
19376		19376/tcp # pfSense nat bouncing
19376		19376/udp # pfSense nat bouncing
19377		19377/tcp # pfSense nat bouncing
19377		19377/udp # pfSense nat bouncing
19378		19378/tcp # pfSense nat bouncing
19378		19378/udp # pfSense nat bouncing
19379		19379/tcp # pfSense nat bouncing
19379		19379/udp # pfSense nat bouncing
19380		19380/tcp # pfSense nat bouncing
19380		19380/udp # pfSense nat bouncing
19381		19381/tcp # pfSense nat bouncing
19381		19381/udp # pfSense nat bouncing
19382		19382/tcp # pfSense nat bouncing
19382		19382/udp # pfSense nat bouncing
19383		19383/tcp # pfSense nat bouncing
19383		19383/udp # pfSense nat bouncing
19384		19384/tcp # pfSense nat bouncing
19384		19384/udp # pfSense nat bouncing
19385		19385/tcp # pfSense nat bouncing
19385		19385/udp # pfSense nat bouncing
19386		19386/tcp # pfSense nat bouncing
19386		19386/udp # pfSense nat bouncing
19387		19387/tcp # pfSense nat bouncing
19387		19387/udp # pfSense nat bouncing
19388		19388/tcp # pfSense nat bouncing
19388		19388/udp # pfSense nat bouncing
19389		19389/tcp # pfSense nat bouncing
19389		19389/udp # pfSense nat bouncing
19390		19390/tcp # pfSense nat bouncing
19390		19390/udp # pfSense nat bouncing
19391		19391/tcp # pfSense nat bouncing
19391		19391/udp # pfSense nat bouncing
19392		19392/tcp # pfSense nat bouncing
19392		19392/udp # pfSense nat bouncing
19393		19393/tcp # pfSense nat bouncing
19393		19393/udp # pfSense nat bouncing
19394		19394/tcp # pfSense nat bouncing
19394		19394/udp # pfSense nat bouncing
19395		19395/tcp # pfSense nat bouncing
19395		19395/udp # pfSense nat bouncing
19396		19396/tcp # pfSense nat bouncing
19396		19396/udp # pfSense nat bouncing
19397		19397/tcp # pfSense nat bouncing
19397		19397/udp # pfSense nat bouncing
19398		19398/tcp # pfSense nat bouncing
19398		19398/udp # pfSense nat bouncing
19399		19399/tcp # pfSense nat bouncing
19399		19399/udp # pfSense nat bouncing
19400		19400/tcp # pfSense nat bouncing
19400		19400/udp # pfSense nat bouncing
19401		19401/tcp # pfSense nat bouncing
19401		19401/udp # pfSense nat bouncing
19402		19402/tcp # pfSense nat bouncing
19402		19402/udp # pfSense nat bouncing
19403		19403/tcp # pfSense nat bouncing
19403		19403/udp # pfSense nat bouncing
19404		19404/tcp # pfSense nat bouncing
19404		19404/udp # pfSense nat bouncing
19405		19405/tcp # pfSense nat bouncing
19405		19405/udp # pfSense nat bouncing
19406		19406/tcp # pfSense nat bouncing
19406		19406/udp # pfSense nat bouncing
19407		19407/tcp # pfSense nat bouncing
19407		19407/udp # pfSense nat bouncing
19408		19408/tcp # pfSense nat bouncing
19408		19408/udp # pfSense nat bouncing
19409		19409/tcp # pfSense nat bouncing
19409		19409/udp # pfSense nat bouncing
19410		19410/tcp # pfSense nat bouncing
19410		19410/udp # pfSense nat bouncing
19411		19411/tcp # pfSense nat bouncing
19411		19411/udp # pfSense nat bouncing
19412		19412/tcp # pfSense nat bouncing
19412		19412/udp # pfSense nat bouncing
19413		19413/tcp # pfSense nat bouncing
19413		19413/udp # pfSense nat bouncing
19414		19414/tcp # pfSense nat bouncing
19414		19414/udp # pfSense nat bouncing
19415		19415/tcp # pfSense nat bouncing
19415		19415/udp # pfSense nat bouncing
19416		19416/tcp # pfSense nat bouncing
19416		19416/udp # pfSense nat bouncing
19417		19417/tcp # pfSense nat bouncing
19417		19417/udp # pfSense nat bouncing
19418		19418/tcp # pfSense nat bouncing
19418		19418/udp # pfSense nat bouncing
19419		19419/tcp # pfSense nat bouncing
19419		19419/udp # pfSense nat bouncing
19420		19420/tcp # pfSense nat bouncing
19420		19420/udp # pfSense nat bouncing
19421		19421/tcp # pfSense nat bouncing
19421		19421/udp # pfSense nat bouncing
19422		19422/tcp # pfSense nat bouncing
19422		19422/udp # pfSense nat bouncing
19423		19423/tcp # pfSense nat bouncing
19423		19423/udp # pfSense nat bouncing
19424		19424/tcp # pfSense nat bouncing
19424		19424/udp # pfSense nat bouncing
19425		19425/tcp # pfSense nat bouncing
19425		19425/udp # pfSense nat bouncing
19426		19426/tcp # pfSense nat bouncing
19426		19426/udp # pfSense nat bouncing
19427		19427/tcp # pfSense nat bouncing
19427		19427/udp # pfSense nat bouncing
19428		19428/tcp # pfSense nat bouncing
19428		19428/udp # pfSense nat bouncing
19429		19429/tcp # pfSense nat bouncing
19429		19429/udp # pfSense nat bouncing
19430		19430/tcp # pfSense nat bouncing
19430		19430/udp # pfSense nat bouncing
19431		19431/tcp # pfSense nat bouncing
19431		19431/udp # pfSense nat bouncing
19432		19432/tcp # pfSense nat bouncing
19432		19432/udp # pfSense nat bouncing
19433		19433/tcp # pfSense nat bouncing
19433		19433/udp # pfSense nat bouncing
19434		19434/tcp # pfSense nat bouncing
19434		19434/udp # pfSense nat bouncing
19435		19435/tcp # pfSense nat bouncing
19435		19435/udp # pfSense nat bouncing
19436		19436/tcp # pfSense nat bouncing
19436		19436/udp # pfSense nat bouncing
19437		19437/tcp # pfSense nat bouncing
19437		19437/udp # pfSense nat bouncing
19438		19438/tcp # pfSense nat bouncing
19438		19438/udp # pfSense nat bouncing
19439		19439/tcp # pfSense nat bouncing
19439		19439/udp # pfSense nat bouncing
19440		19440/tcp # pfSense nat bouncing
19440		19440/udp # pfSense nat bouncing
19441		19441/tcp # pfSense nat bouncing
19441		19441/udp # pfSense nat bouncing
19442		19442/tcp # pfSense nat bouncing
19442		19442/udp # pfSense nat bouncing
19443		19443/tcp # pfSense nat bouncing
19443		19443/udp # pfSense nat bouncing
19444		19444/tcp # pfSense nat bouncing
19444		19444/udp # pfSense nat bouncing
19445		19445/tcp # pfSense nat bouncing
19445		19445/udp # pfSense nat bouncing
19446		19446/tcp # pfSense nat bouncing
19446		19446/udp # pfSense nat bouncing
19447		19447/tcp # pfSense nat bouncing
19447		19447/udp # pfSense nat bouncing
19448		19448/tcp # pfSense nat bouncing
19448		19448/udp # pfSense nat bouncing
19449		19449/tcp # pfSense nat bouncing
19449		19449/udp # pfSense nat bouncing
19450		19450/tcp # pfSense nat bouncing
19450		19450/udp # pfSense nat bouncing
19451		19451/tcp # pfSense nat bouncing
19451		19451/udp # pfSense nat bouncing
19452		19452/tcp # pfSense nat bouncing
19452		19452/udp # pfSense nat bouncing
19453		19453/tcp # pfSense nat bouncing
19453		19453/udp # pfSense nat bouncing
19454		19454/tcp # pfSense nat bouncing
19454		19454/udp # pfSense nat bouncing
19455		19455/tcp # pfSense nat bouncing
19455		19455/udp # pfSense nat bouncing
19456		19456/tcp # pfSense nat bouncing
19456		19456/udp # pfSense nat bouncing
19457		19457/tcp # pfSense nat bouncing
19457		19457/udp # pfSense nat bouncing
19458		19458/tcp # pfSense nat bouncing
19458		19458/udp # pfSense nat bouncing
19459		19459/tcp # pfSense nat bouncing
19459		19459/udp # pfSense nat bouncing
19460		19460/tcp # pfSense nat bouncing
19460		19460/udp # pfSense nat bouncing
19461		19461/tcp # pfSense nat bouncing
19461		19461/udp # pfSense nat bouncing
19462		19462/tcp # pfSense nat bouncing
19462		19462/udp # pfSense nat bouncing
19463		19463/tcp # pfSense nat bouncing
19463		19463/udp # pfSense nat bouncing
19464		19464/tcp # pfSense nat bouncing
19464		19464/udp # pfSense nat bouncing
19465		19465/tcp # pfSense nat bouncing
19465		19465/udp # pfSense nat bouncing
19466		19466/tcp # pfSense nat bouncing
19466		19466/udp # pfSense nat bouncing
19467		19467/tcp # pfSense nat bouncing
19467		19467/udp # pfSense nat bouncing
19468		19468/tcp # pfSense nat bouncing
19468		19468/udp # pfSense nat bouncing
19469		19469/tcp # pfSense nat bouncing
19469		19469/udp # pfSense nat bouncing
19470		19470/tcp # pfSense nat bouncing
19470		19470/udp # pfSense nat bouncing
19471		19471/tcp # pfSense nat bouncing
19471		19471/udp # pfSense nat bouncing
19472		19472/tcp # pfSense nat bouncing
19472		19472/udp # pfSense nat bouncing
19473		19473/tcp # pfSense nat bouncing
19473		19473/udp # pfSense nat bouncing
19474		19474/tcp # pfSense nat bouncing
19474		19474/udp # pfSense nat bouncing
19475		19475/tcp # pfSense nat bouncing
19475		19475/udp # pfSense nat bouncing
19476		19476/tcp # pfSense nat bouncing
19476		19476/udp # pfSense nat bouncing
19477		19477/tcp # pfSense nat bouncing
19477		19477/udp # pfSense nat bouncing
19478		19478/tcp # pfSense nat bouncing
19478		19478/udp # pfSense nat bouncing
19479		19479/tcp # pfSense nat bouncing
19479		19479/udp # pfSense nat bouncing
19480		19480/tcp # pfSense nat bouncing
19480		19480/udp # pfSense nat bouncing
19481		19481/tcp # pfSense nat bouncing
19481		19481/udp # pfSense nat bouncing
19482		19482/tcp # pfSense nat bouncing
19482		19482/udp # pfSense nat bouncing
19483		19483/tcp # pfSense nat bouncing
19483		19483/udp # pfSense nat bouncing
19484		19484/tcp # pfSense nat bouncing
19484		19484/udp # pfSense nat bouncing
19485		19485/tcp # pfSense nat bouncing
19485		19485/udp # pfSense nat bouncing
19486		19486/tcp # pfSense nat bouncing
19486		19486/udp # pfSense nat bouncing
19487		19487/tcp # pfSense nat bouncing
19487		19487/udp # pfSense nat bouncing
19488		19488/tcp # pfSense nat bouncing
19488		19488/udp # pfSense nat bouncing
19489		19489/tcp # pfSense nat bouncing
19489		19489/udp # pfSense nat bouncing
19490		19490/tcp # pfSense nat bouncing
19490		19490/udp # pfSense nat bouncing
19491		19491/tcp # pfSense nat bouncing
19491		19491/udp # pfSense nat bouncing
19492		19492/tcp # pfSense nat bouncing
19492		19492/udp # pfSense nat bouncing
19493		19493/tcp # pfSense nat bouncing
19493		19493/udp # pfSense nat bouncing
19494		19494/tcp # pfSense nat bouncing
19494		19494/udp # pfSense nat bouncing
19495		19495/tcp # pfSense nat bouncing
19495		19495/udp # pfSense nat bouncing
19496		19496/tcp # pfSense nat bouncing
19496		19496/udp # pfSense nat bouncing
19497		19497/tcp # pfSense nat bouncing
19497		19497/udp # pfSense nat bouncing
19498		19498/tcp # pfSense nat bouncing
19498		19498/udp # pfSense nat bouncing
19499		19499/tcp # pfSense nat bouncing
19499		19499/udp # pfSense nat bouncing
19500		19500/tcp # pfSense nat bouncing
19500		19500/udp # pfSense nat bouncing
19501		19501/tcp # pfSense nat bouncing
19501		19501/udp # pfSense nat bouncing
19502		19502/tcp # pfSense nat bouncing
19502		19502/udp # pfSense nat bouncing
19503		19503/tcp # pfSense nat bouncing
19503		19503/udp # pfSense nat bouncing
19504		19504/tcp # pfSense nat bouncing
19504		19504/udp # pfSense nat bouncing
19505		19505/tcp # pfSense nat bouncing
19505		19505/udp # pfSense nat bouncing
19506		19506/tcp # pfSense nat bouncing
19506		19506/udp # pfSense nat bouncing
19507		19507/tcp # pfSense nat bouncing
19507		19507/udp # pfSense nat bouncing
19508		19508/tcp # pfSense nat bouncing
19508		19508/udp # pfSense nat bouncing
19509		19509/tcp # pfSense nat bouncing
19509		19509/udp # pfSense nat bouncing
19510		19510/tcp # pfSense nat bouncing
19510		19510/udp # pfSense nat bouncing
19511		19511/tcp # pfSense nat bouncing
19511		19511/udp # pfSense nat bouncing
19512		19512/tcp # pfSense nat bouncing
19512		19512/udp # pfSense nat bouncing
19513		19513/tcp # pfSense nat bouncing
19513		19513/udp # pfSense nat bouncing
19514		19514/tcp # pfSense nat bouncing
19514		19514/udp # pfSense nat bouncing
19515		19515/tcp # pfSense nat bouncing
19515		19515/udp # pfSense nat bouncing
19516		19516/tcp # pfSense nat bouncing
19516		19516/udp # pfSense nat bouncing
19517		19517/tcp # pfSense nat bouncing
19517		19517/udp # pfSense nat bouncing
19518		19518/tcp # pfSense nat bouncing
19518		19518/udp # pfSense nat bouncing
19519		19519/tcp # pfSense nat bouncing
19519		19519/udp # pfSense nat bouncing
19520		19520/tcp # pfSense nat bouncing
19520		19520/udp # pfSense nat bouncing
19521		19521/tcp # pfSense nat bouncing
19521		19521/udp # pfSense nat bouncing
19522		19522/tcp # pfSense nat bouncing
19522		19522/udp # pfSense nat bouncing
19523		19523/tcp # pfSense nat bouncing
19523		19523/udp # pfSense nat bouncing
19524		19524/tcp # pfSense nat bouncing
19524		19524/udp # pfSense nat bouncing
19525		19525/tcp # pfSense nat bouncing
19525		19525/udp # pfSense nat bouncing
19526		19526/tcp # pfSense nat bouncing
19526		19526/udp # pfSense nat bouncing
19527		19527/tcp # pfSense nat bouncing
19527		19527/udp # pfSense nat bouncing
19528		19528/tcp # pfSense nat bouncing
19528		19528/udp # pfSense nat bouncing
19529		19529/tcp # pfSense nat bouncing
19529		19529/udp # pfSense nat bouncing
19530		19530/tcp # pfSense nat bouncing
19530		19530/udp # pfSense nat bouncing
19531		19531/tcp # pfSense nat bouncing
19531		19531/udp # pfSense nat bouncing
19532		19532/tcp # pfSense nat bouncing
19532		19532/udp # pfSense nat bouncing
19533		19533/tcp # pfSense nat bouncing
19533		19533/udp # pfSense nat bouncing
19534		19534/tcp # pfSense nat bouncing
19534		19534/udp # pfSense nat bouncing
19535		19535/tcp # pfSense nat bouncing
19535		19535/udp # pfSense nat bouncing
19536		19536/tcp # pfSense nat bouncing
19536		19536/udp # pfSense nat bouncing
19537		19537/tcp # pfSense nat bouncing
19537		19537/udp # pfSense nat bouncing
19538		19538/tcp # pfSense nat bouncing
19538		19538/udp # pfSense nat bouncing
19539		19539/tcp # pfSense nat bouncing
19539		19539/udp # pfSense nat bouncing
19540		19540/tcp # pfSense nat bouncing
19540		19540/udp # pfSense nat bouncing
19541		19541/tcp # pfSense nat bouncing
19541		19541/udp # pfSense nat bouncing
19542		19542/tcp # pfSense nat bouncing
19542		19542/udp # pfSense nat bouncing
19543		19543/tcp # pfSense nat bouncing
19543		19543/udp # pfSense nat bouncing
19544		19544/tcp # pfSense nat bouncing
19544		19544/udp # pfSense nat bouncing
19545		19545/tcp # pfSense nat bouncing
19545		19545/udp # pfSense nat bouncing
19546		19546/tcp # pfSense nat bouncing
19546		19546/udp # pfSense nat bouncing
19547		19547/tcp # pfSense nat bouncing
19547		19547/udp # pfSense nat bouncing
19548		19548/tcp # pfSense nat bouncing
19548		19548/udp # pfSense nat bouncing
19549		19549/tcp # pfSense nat bouncing
19549		19549/udp # pfSense nat bouncing
19550		19550/tcp # pfSense nat bouncing
19550		19550/udp # pfSense nat bouncing
19551		19551/tcp # pfSense nat bouncing
19551		19551/udp # pfSense nat bouncing
19552		19552/tcp # pfSense nat bouncing
19552		19552/udp # pfSense nat bouncing
19553		19553/tcp # pfSense nat bouncing
19553		19553/udp # pfSense nat bouncing
19554		19554/tcp # pfSense nat bouncing
19554		19554/udp # pfSense nat bouncing
19555		19555/tcp # pfSense nat bouncing
19555		19555/udp # pfSense nat bouncing
19556		19556/tcp # pfSense nat bouncing
19556		19556/udp # pfSense nat bouncing
19557		19557/tcp # pfSense nat bouncing
19557		19557/udp # pfSense nat bouncing
19558		19558/tcp # pfSense nat bouncing
19558		19558/udp # pfSense nat bouncing
19559		19559/tcp # pfSense nat bouncing
19559		19559/udp # pfSense nat bouncing
19560		19560/tcp # pfSense nat bouncing
19560		19560/udp # pfSense nat bouncing
19561		19561/tcp # pfSense nat bouncing
19561		19561/udp # pfSense nat bouncing
19562		19562/tcp # pfSense nat bouncing
19562		19562/udp # pfSense nat bouncing
19563		19563/tcp # pfSense nat bouncing
19563		19563/udp # pfSense nat bouncing
19564		19564/tcp # pfSense nat bouncing
19564		19564/udp # pfSense nat bouncing
19565		19565/tcp # pfSense nat bouncing
19565		19565/udp # pfSense nat bouncing
19566		19566/tcp # pfSense nat bouncing
19566		19566/udp # pfSense nat bouncing
19567		19567/tcp # pfSense nat bouncing
19567		19567/udp # pfSense nat bouncing
19568		19568/tcp # pfSense nat bouncing
19568		19568/udp # pfSense nat bouncing
19569		19569/tcp # pfSense nat bouncing
19569		19569/udp # pfSense nat bouncing
19570		19570/tcp # pfSense nat bouncing
19570		19570/udp # pfSense nat bouncing
19571		19571/tcp # pfSense nat bouncing
19571		19571/udp # pfSense nat bouncing
19572		19572/tcp # pfSense nat bouncing
19572		19572/udp # pfSense nat bouncing
19573		19573/tcp # pfSense nat bouncing
19573		19573/udp # pfSense nat bouncing
19574		19574/tcp # pfSense nat bouncing
19574		19574/udp # pfSense nat bouncing
19575		19575/tcp # pfSense nat bouncing
19575		19575/udp # pfSense nat bouncing
19576		19576/tcp # pfSense nat bouncing
19576		19576/udp # pfSense nat bouncing
19577		19577/tcp # pfSense nat bouncing
19577		19577/udp # pfSense nat bouncing
19578		19578/tcp # pfSense nat bouncing
19578		19578/udp # pfSense nat bouncing
19579		19579/tcp # pfSense nat bouncing
19579		19579/udp # pfSense nat bouncing
19580		19580/tcp # pfSense nat bouncing
19580		19580/udp # pfSense nat bouncing
19581		19581/tcp # pfSense nat bouncing
19581		19581/udp # pfSense nat bouncing
19582		19582/tcp # pfSense nat bouncing
19582		19582/udp # pfSense nat bouncing
19583		19583/tcp # pfSense nat bouncing
19583		19583/udp # pfSense nat bouncing
19584		19584/tcp # pfSense nat bouncing
19584		19584/udp # pfSense nat bouncing
19585		19585/tcp # pfSense nat bouncing
19585		19585/udp # pfSense nat bouncing
19586		19586/tcp # pfSense nat bouncing
19586		19586/udp # pfSense nat bouncing
19587		19587/tcp # pfSense nat bouncing
19587		19587/udp # pfSense nat bouncing
19588		19588/tcp # pfSense nat bouncing
19588		19588/udp # pfSense nat bouncing
19589		19589/tcp # pfSense nat bouncing
19589		19589/udp # pfSense nat bouncing
19590		19590/tcp # pfSense nat bouncing
19590		19590/udp # pfSense nat bouncing
19591		19591/tcp # pfSense nat bouncing
19591		19591/udp # pfSense nat bouncing
19592		19592/tcp # pfSense nat bouncing
19592		19592/udp # pfSense nat bouncing
19593		19593/tcp # pfSense nat bouncing
19593		19593/udp # pfSense nat bouncing
19594		19594/tcp # pfSense nat bouncing
19594		19594/udp # pfSense nat bouncing
19595		19595/tcp # pfSense nat bouncing
19595		19595/udp # pfSense nat bouncing
19596		19596/tcp # pfSense nat bouncing
19596		19596/udp # pfSense nat bouncing
19597		19597/tcp # pfSense nat bouncing
19597		19597/udp # pfSense nat bouncing
19598		19598/tcp # pfSense nat bouncing
19598		19598/udp # pfSense nat bouncing
19599		19599/tcp # pfSense nat bouncing
19599		19599/udp # pfSense nat bouncing
19600		19600/tcp # pfSense nat bouncing
19600		19600/udp # pfSense nat bouncing
19601		19601/tcp # pfSense nat bouncing
19601		19601/udp # pfSense nat bouncing
19602		19602/tcp # pfSense nat bouncing
19602		19602/udp # pfSense nat bouncing
19603		19603/tcp # pfSense nat bouncing
19603		19603/udp # pfSense nat bouncing
19604		19604/tcp # pfSense nat bouncing
19604		19604/udp # pfSense nat bouncing
19605		19605/tcp # pfSense nat bouncing
19605		19605/udp # pfSense nat bouncing
19606		19606/tcp # pfSense nat bouncing
19606		19606/udp # pfSense nat bouncing
19607		19607/tcp # pfSense nat bouncing
19607		19607/udp # pfSense nat bouncing
19608		19608/tcp # pfSense nat bouncing
19608		19608/udp # pfSense nat bouncing
19609		19609/tcp # pfSense nat bouncing
19609		19609/udp # pfSense nat bouncing
19610		19610/tcp # pfSense nat bouncing
19610		19610/udp # pfSense nat bouncing
19611		19611/tcp # pfSense nat bouncing
19611		19611/udp # pfSense nat bouncing
19612		19612/tcp # pfSense nat bouncing
19612		19612/udp # pfSense nat bouncing
19613		19613/tcp # pfSense nat bouncing
19613		19613/udp # pfSense nat bouncing
19614		19614/tcp # pfSense nat bouncing
19614		19614/udp # pfSense nat bouncing
19615		19615/tcp # pfSense nat bouncing
19615		19615/udp # pfSense nat bouncing
19616		19616/tcp # pfSense nat bouncing
19616		19616/udp # pfSense nat bouncing
19617		19617/tcp # pfSense nat bouncing
19617		19617/udp # pfSense nat bouncing
19618		19618/tcp # pfSense nat bouncing
19618		19618/udp # pfSense nat bouncing
19619		19619/tcp # pfSense nat bouncing
19619		19619/udp # pfSense nat bouncing
19620		19620/tcp # pfSense nat bouncing
19620		19620/udp # pfSense nat bouncing
19621		19621/tcp # pfSense nat bouncing
19621		19621/udp # pfSense nat bouncing
19622		19622/tcp # pfSense nat bouncing
19622		19622/udp # pfSense nat bouncing
19623		19623/tcp # pfSense nat bouncing
19623		19623/udp # pfSense nat bouncing
19624		19624/tcp # pfSense nat bouncing
19624		19624/udp # pfSense nat bouncing
19625		19625/tcp # pfSense nat bouncing
19625		19625/udp # pfSense nat bouncing
19626		19626/tcp # pfSense nat bouncing
19626		19626/udp # pfSense nat bouncing
19627		19627/tcp # pfSense nat bouncing
19627		19627/udp # pfSense nat bouncing
19628		19628/tcp # pfSense nat bouncing
19628		19628/udp # pfSense nat bouncing
19629		19629/tcp # pfSense nat bouncing
19629		19629/udp # pfSense nat bouncing
19630		19630/tcp # pfSense nat bouncing
19630		19630/udp # pfSense nat bouncing
19631		19631/tcp # pfSense nat bouncing
19631		19631/udp # pfSense nat bouncing
19632		19632/tcp # pfSense nat bouncing
19632		19632/udp # pfSense nat bouncing
19633		19633/tcp # pfSense nat bouncing
19633		19633/udp # pfSense nat bouncing
19634		19634/tcp # pfSense nat bouncing
19634		19634/udp # pfSense nat bouncing
19635		19635/tcp # pfSense nat bouncing
19635		19635/udp # pfSense nat bouncing
19636		19636/tcp # pfSense nat bouncing
19636		19636/udp # pfSense nat bouncing
19637		19637/tcp # pfSense nat bouncing
19637		19637/udp # pfSense nat bouncing
19638		19638/tcp # pfSense nat bouncing
19638		19638/udp # pfSense nat bouncing
19639		19639/tcp # pfSense nat bouncing
19639		19639/udp # pfSense nat bouncing
19640		19640/tcp # pfSense nat bouncing
19640		19640/udp # pfSense nat bouncing
19641		19641/tcp # pfSense nat bouncing
19641		19641/udp # pfSense nat bouncing
19642		19642/tcp # pfSense nat bouncing
19642		19642/udp # pfSense nat bouncing
19643		19643/tcp # pfSense nat bouncing
19643		19643/udp # pfSense nat bouncing
19644		19644/tcp # pfSense nat bouncing
19644		19644/udp # pfSense nat bouncing
19645		19645/tcp # pfSense nat bouncing
19645		19645/udp # pfSense nat bouncing
19646		19646/tcp # pfSense nat bouncing
19646		19646/udp # pfSense nat bouncing
19647		19647/tcp # pfSense nat bouncing
19647		19647/udp # pfSense nat bouncing
19648		19648/tcp # pfSense nat bouncing
19648		19648/udp # pfSense nat bouncing
19649		19649/tcp # pfSense nat bouncing
19649		19649/udp # pfSense nat bouncing
19650		19650/tcp # pfSense nat bouncing
19650		19650/udp # pfSense nat bouncing
19651		19651/tcp # pfSense nat bouncing
19651		19651/udp # pfSense nat bouncing
19652		19652/tcp # pfSense nat bouncing
19652		19652/udp # pfSense nat bouncing
19653		19653/tcp # pfSense nat bouncing
19653		19653/udp # pfSense nat bouncing
19654		19654/tcp # pfSense nat bouncing
19654		19654/udp # pfSense nat bouncing
19655		19655/tcp # pfSense nat bouncing
19655		19655/udp # pfSense nat bouncing
19656		19656/tcp # pfSense nat bouncing
19656		19656/udp # pfSense nat bouncing
19657		19657/tcp # pfSense nat bouncing
19657		19657/udp # pfSense nat bouncing
19658		19658/tcp # pfSense nat bouncing
19658		19658/udp # pfSense nat bouncing
19659		19659/tcp # pfSense nat bouncing
19659		19659/udp # pfSense nat bouncing
19660		19660/tcp # pfSense nat bouncing
19660		19660/udp # pfSense nat bouncing
19661		19661/tcp # pfSense nat bouncing
19661		19661/udp # pfSense nat bouncing
19662		19662/tcp # pfSense nat bouncing
19662		19662/udp # pfSense nat bouncing
19663		19663/tcp # pfSense nat bouncing
19663		19663/udp # pfSense nat bouncing
19664		19664/tcp # pfSense nat bouncing
19664		19664/udp # pfSense nat bouncing
19665		19665/tcp # pfSense nat bouncing
19665		19665/udp # pfSense nat bouncing
19666		19666/tcp # pfSense nat bouncing
19666		19666/udp # pfSense nat bouncing
19667		19667/tcp # pfSense nat bouncing
19667		19667/udp # pfSense nat bouncing
19668		19668/tcp # pfSense nat bouncing
19668		19668/udp # pfSense nat bouncing
19669		19669/tcp # pfSense nat bouncing
19669		19669/udp # pfSense nat bouncing
19670		19670/tcp # pfSense nat bouncing
19670		19670/udp # pfSense nat bouncing
19671		19671/tcp # pfSense nat bouncing
19671		19671/udp # pfSense nat bouncing
19672		19672/tcp # pfSense nat bouncing
19672		19672/udp # pfSense nat bouncing
19673		19673/tcp # pfSense nat bouncing
19673		19673/udp # pfSense nat bouncing
19674		19674/tcp # pfSense nat bouncing
19674		19674/udp # pfSense nat bouncing
19675		19675/tcp # pfSense nat bouncing
19675		19675/udp # pfSense nat bouncing
19676		19676/tcp # pfSense nat bouncing
19676		19676/udp # pfSense nat bouncing
19677		19677/tcp # pfSense nat bouncing
19677		19677/udp # pfSense nat bouncing
19678		19678/tcp # pfSense nat bouncing
19678		19678/udp # pfSense nat bouncing
19679		19679/tcp # pfSense nat bouncing
19679		19679/udp # pfSense nat bouncing
19680		19680/tcp # pfSense nat bouncing
19680		19680/udp # pfSense nat bouncing
19681		19681/tcp # pfSense nat bouncing
19681		19681/udp # pfSense nat bouncing
19682		19682/tcp # pfSense nat bouncing
19682		19682/udp # pfSense nat bouncing
19683		19683/tcp # pfSense nat bouncing
19683		19683/udp # pfSense nat bouncing
19684		19684/tcp # pfSense nat bouncing
19684		19684/udp # pfSense nat bouncing
19685		19685/tcp # pfSense nat bouncing
19685		19685/udp # pfSense nat bouncing
19686		19686/tcp # pfSense nat bouncing
19686		19686/udp # pfSense nat bouncing
19687		19687/tcp # pfSense nat bouncing
19687		19687/udp # pfSense nat bouncing
19688		19688/tcp # pfSense nat bouncing
19688		19688/udp # pfSense nat bouncing
19689		19689/tcp # pfSense nat bouncing
19689		19689/udp # pfSense nat bouncing
19690		19690/tcp # pfSense nat bouncing
19690		19690/udp # pfSense nat bouncing
19691		19691/tcp # pfSense nat bouncing
19691		19691/udp # pfSense nat bouncing
19692		19692/tcp # pfSense nat bouncing
19692		19692/udp # pfSense nat bouncing
19693		19693/tcp # pfSense nat bouncing
19693		19693/udp # pfSense nat bouncing
19694		19694/tcp # pfSense nat bouncing
19694		19694/udp # pfSense nat bouncing
19695		19695/tcp # pfSense nat bouncing
19695		19695/udp # pfSense nat bouncing
19696		19696/tcp # pfSense nat bouncing
19696		19696/udp # pfSense nat bouncing
19697		19697/tcp # pfSense nat bouncing
19697		19697/udp # pfSense nat bouncing
19698		19698/tcp # pfSense nat bouncing
19698		19698/udp # pfSense nat bouncing
19699		19699/tcp # pfSense nat bouncing
19699		19699/udp # pfSense nat bouncing
19700		19700/tcp # pfSense nat bouncing
19700		19700/udp # pfSense nat bouncing
19701		19701/tcp # pfSense nat bouncing
19701		19701/udp # pfSense nat bouncing
19702		19702/tcp # pfSense nat bouncing
19702		19702/udp # pfSense nat bouncing
19703		19703/tcp # pfSense nat bouncing
19703		19703/udp # pfSense nat bouncing
19704		19704/tcp # pfSense nat bouncing
19704		19704/udp # pfSense nat bouncing
19705		19705/tcp # pfSense nat bouncing
19705		19705/udp # pfSense nat bouncing
19706		19706/tcp # pfSense nat bouncing
19706		19706/udp # pfSense nat bouncing
19707		19707/tcp # pfSense nat bouncing
19707		19707/udp # pfSense nat bouncing
19708		19708/tcp # pfSense nat bouncing
19708		19708/udp # pfSense nat bouncing
19709		19709/tcp # pfSense nat bouncing
19709		19709/udp # pfSense nat bouncing
19710		19710/tcp # pfSense nat bouncing
19710		19710/udp # pfSense nat bouncing
19711		19711/tcp # pfSense nat bouncing
19711		19711/udp # pfSense nat bouncing
19712		19712/tcp # pfSense nat bouncing
19712		19712/udp # pfSense nat bouncing
19713		19713/tcp # pfSense nat bouncing
19713		19713/udp # pfSense nat bouncing
19714		19714/tcp # pfSense nat bouncing
19714		19714/udp # pfSense nat bouncing
19715		19715/tcp # pfSense nat bouncing
19715		19715/udp # pfSense nat bouncing
19716		19716/tcp # pfSense nat bouncing
19716		19716/udp # pfSense nat bouncing
19717		19717/tcp # pfSense nat bouncing
19717		19717/udp # pfSense nat bouncing
19718		19718/tcp # pfSense nat bouncing
19718		19718/udp # pfSense nat bouncing
19719		19719/tcp # pfSense nat bouncing
19719		19719/udp # pfSense nat bouncing
19720		19720/tcp # pfSense nat bouncing
19720		19720/udp # pfSense nat bouncing
19721		19721/tcp # pfSense nat bouncing
19721		19721/udp # pfSense nat bouncing
19722		19722/tcp # pfSense nat bouncing
19722		19722/udp # pfSense nat bouncing
19723		19723/tcp # pfSense nat bouncing
19723		19723/udp # pfSense nat bouncing
19724		19724/tcp # pfSense nat bouncing
19724		19724/udp # pfSense nat bouncing
19725		19725/tcp # pfSense nat bouncing
19725		19725/udp # pfSense nat bouncing
19726		19726/tcp # pfSense nat bouncing
19726		19726/udp # pfSense nat bouncing
19727		19727/tcp # pfSense nat bouncing
19727		19727/udp # pfSense nat bouncing
19728		19728/tcp # pfSense nat bouncing
19728		19728/udp # pfSense nat bouncing
19729		19729/tcp # pfSense nat bouncing
19729		19729/udp # pfSense nat bouncing
19730		19730/tcp # pfSense nat bouncing
19730		19730/udp # pfSense nat bouncing
19731		19731/tcp # pfSense nat bouncing
19731		19731/udp # pfSense nat bouncing
19732		19732/tcp # pfSense nat bouncing
19732		19732/udp # pfSense nat bouncing
19733		19733/tcp # pfSense nat bouncing
19733		19733/udp # pfSense nat bouncing
19734		19734/tcp # pfSense nat bouncing
19734		19734/udp # pfSense nat bouncing
19735		19735/tcp # pfSense nat bouncing
19735		19735/udp # pfSense nat bouncing
19736		19736/tcp # pfSense nat bouncing
19736		19736/udp # pfSense nat bouncing
19737		19737/tcp # pfSense nat bouncing
19737		19737/udp # pfSense nat bouncing
19738		19738/tcp # pfSense nat bouncing
19738		19738/udp # pfSense nat bouncing
19739		19739/tcp # pfSense nat bouncing
19739		19739/udp # pfSense nat bouncing
19740		19740/tcp # pfSense nat bouncing
19740		19740/udp # pfSense nat bouncing
19741		19741/tcp # pfSense nat bouncing
19741		19741/udp # pfSense nat bouncing
19742		19742/tcp # pfSense nat bouncing
19742		19742/udp # pfSense nat bouncing
19743		19743/tcp # pfSense nat bouncing
19743		19743/udp # pfSense nat bouncing
19744		19744/tcp # pfSense nat bouncing
19744		19744/udp # pfSense nat bouncing
19745		19745/tcp # pfSense nat bouncing
19745		19745/udp # pfSense nat bouncing
19746		19746/tcp # pfSense nat bouncing
19746		19746/udp # pfSense nat bouncing
19747		19747/tcp # pfSense nat bouncing
19747		19747/udp # pfSense nat bouncing
19748		19748/tcp # pfSense nat bouncing
19748		19748/udp # pfSense nat bouncing
19749		19749/tcp # pfSense nat bouncing
19749		19749/udp # pfSense nat bouncing
19750		19750/tcp # pfSense nat bouncing
19750		19750/udp # pfSense nat bouncing
19751		19751/tcp # pfSense nat bouncing
19751		19751/udp # pfSense nat bouncing
19752		19752/tcp # pfSense nat bouncing
19752		19752/udp # pfSense nat bouncing
19753		19753/tcp # pfSense nat bouncing
19753		19753/udp # pfSense nat bouncing
19754		19754/tcp # pfSense nat bouncing
19754		19754/udp # pfSense nat bouncing
19755		19755/tcp # pfSense nat bouncing
19755		19755/udp # pfSense nat bouncing
19756		19756/tcp # pfSense nat bouncing
19756		19756/udp # pfSense nat bouncing
19757		19757/tcp # pfSense nat bouncing
19757		19757/udp # pfSense nat bouncing
19758		19758/tcp # pfSense nat bouncing
19758		19758/udp # pfSense nat bouncing
19759		19759/tcp # pfSense nat bouncing
19759		19759/udp # pfSense nat bouncing
19760		19760/tcp # pfSense nat bouncing
19760		19760/udp # pfSense nat bouncing
19761		19761/tcp # pfSense nat bouncing
19761		19761/udp # pfSense nat bouncing
19762		19762/tcp # pfSense nat bouncing
19762		19762/udp # pfSense nat bouncing
19763		19763/tcp # pfSense nat bouncing
19763		19763/udp # pfSense nat bouncing
19764		19764/tcp # pfSense nat bouncing
19764		19764/udp # pfSense nat bouncing
19765		19765/tcp # pfSense nat bouncing
19765		19765/udp # pfSense nat bouncing
19766		19766/tcp # pfSense nat bouncing
19766		19766/udp # pfSense nat bouncing
19767		19767/tcp # pfSense nat bouncing
19767		19767/udp # pfSense nat bouncing
19768		19768/tcp # pfSense nat bouncing
19768		19768/udp # pfSense nat bouncing
19769		19769/tcp # pfSense nat bouncing
19769		19769/udp # pfSense nat bouncing
19770		19770/tcp # pfSense nat bouncing
19770		19770/udp # pfSense nat bouncing
19771		19771/tcp # pfSense nat bouncing
19771		19771/udp # pfSense nat bouncing
19772		19772/tcp # pfSense nat bouncing
19772		19772/udp # pfSense nat bouncing
19773		19773/tcp # pfSense nat bouncing
19773		19773/udp # pfSense nat bouncing
19774		19774/tcp # pfSense nat bouncing
19774		19774/udp # pfSense nat bouncing
19775		19775/tcp # pfSense nat bouncing
19775		19775/udp # pfSense nat bouncing
19776		19776/tcp # pfSense nat bouncing
19776		19776/udp # pfSense nat bouncing
19777		19777/tcp # pfSense nat bouncing
19777		19777/udp # pfSense nat bouncing
19778		19778/tcp # pfSense nat bouncing
19778		19778/udp # pfSense nat bouncing
19779		19779/tcp # pfSense nat bouncing
19779		19779/udp # pfSense nat bouncing
19780		19780/tcp # pfSense nat bouncing
19780		19780/udp # pfSense nat bouncing
19781		19781/tcp # pfSense nat bouncing
19781		19781/udp # pfSense nat bouncing
19782		19782/tcp # pfSense nat bouncing
19782		19782/udp # pfSense nat bouncing
19783		19783/tcp # pfSense nat bouncing
19783		19783/udp # pfSense nat bouncing
19784		19784/tcp # pfSense nat bouncing
19784		19784/udp # pfSense nat bouncing
19785		19785/tcp # pfSense nat bouncing
19785		19785/udp # pfSense nat bouncing
19786		19786/tcp # pfSense nat bouncing
19786		19786/udp # pfSense nat bouncing
19787		19787/tcp # pfSense nat bouncing
19787		19787/udp # pfSense nat bouncing
19788		19788/tcp # pfSense nat bouncing
19788		19788/udp # pfSense nat bouncing
19789		19789/tcp # pfSense nat bouncing
19789		19789/udp # pfSense nat bouncing
19790		19790/tcp # pfSense nat bouncing
19790		19790/udp # pfSense nat bouncing
19791		19791/tcp # pfSense nat bouncing
19791		19791/udp # pfSense nat bouncing
19792		19792/tcp # pfSense nat bouncing
19792		19792/udp # pfSense nat bouncing
19793		19793/tcp # pfSense nat bouncing
19793		19793/udp # pfSense nat bouncing
19794		19794/tcp # pfSense nat bouncing
19794		19794/udp # pfSense nat bouncing
19795		19795/tcp # pfSense nat bouncing
19795		19795/udp # pfSense nat bouncing
19796		19796/tcp # pfSense nat bouncing
19796		19796/udp # pfSense nat bouncing
19797		19797/tcp # pfSense nat bouncing
19797		19797/udp # pfSense nat bouncing
19798		19798/tcp # pfSense nat bouncing
19798		19798/udp # pfSense nat bouncing
19799		19799/tcp # pfSense nat bouncing
19799		19799/udp # pfSense nat bouncing
19800		19800/tcp # pfSense nat bouncing
19800		19800/udp # pfSense nat bouncing
19801		19801/tcp # pfSense nat bouncing
19801		19801/udp # pfSense nat bouncing
19802		19802/tcp # pfSense nat bouncing
19802		19802/udp # pfSense nat bouncing
19803		19803/tcp # pfSense nat bouncing
19803		19803/udp # pfSense nat bouncing
19804		19804/tcp # pfSense nat bouncing
19804		19804/udp # pfSense nat bouncing
19805		19805/tcp # pfSense nat bouncing
19805		19805/udp # pfSense nat bouncing
19806		19806/tcp # pfSense nat bouncing
19806		19806/udp # pfSense nat bouncing
19807		19807/tcp # pfSense nat bouncing
19807		19807/udp # pfSense nat bouncing
19808		19808/tcp # pfSense nat bouncing
19808		19808/udp # pfSense nat bouncing
19809		19809/tcp # pfSense nat bouncing
19809		19809/udp # pfSense nat bouncing
19810		19810/tcp # pfSense nat bouncing
19810		19810/udp # pfSense nat bouncing
19811		19811/tcp # pfSense nat bouncing
19811		19811/udp # pfSense nat bouncing
19812		19812/tcp # pfSense nat bouncing
19812		19812/udp # pfSense nat bouncing
19813		19813/tcp # pfSense nat bouncing
19813		19813/udp # pfSense nat bouncing
19814		19814/tcp # pfSense nat bouncing
19814		19814/udp # pfSense nat bouncing
19815		19815/tcp # pfSense nat bouncing
19815		19815/udp # pfSense nat bouncing
19816		19816/tcp # pfSense nat bouncing
19816		19816/udp # pfSense nat bouncing
19817		19817/tcp # pfSense nat bouncing
19817		19817/udp # pfSense nat bouncing
19818		19818/tcp # pfSense nat bouncing
19818		19818/udp # pfSense nat bouncing
19819		19819/tcp # pfSense nat bouncing
19819		19819/udp # pfSense nat bouncing
19820		19820/tcp # pfSense nat bouncing
19820		19820/udp # pfSense nat bouncing
19821		19821/tcp # pfSense nat bouncing
19821		19821/udp # pfSense nat bouncing
19822		19822/tcp # pfSense nat bouncing
19822		19822/udp # pfSense nat bouncing
19823		19823/tcp # pfSense nat bouncing
19823		19823/udp # pfSense nat bouncing
19824		19824/tcp # pfSense nat bouncing
19824		19824/udp # pfSense nat bouncing
19825		19825/tcp # pfSense nat bouncing
19825		19825/udp # pfSense nat bouncing
19826		19826/tcp # pfSense nat bouncing
19826		19826/udp # pfSense nat bouncing
19827		19827/tcp # pfSense nat bouncing
19827		19827/udp # pfSense nat bouncing
19828		19828/tcp # pfSense nat bouncing
19828		19828/udp # pfSense nat bouncing
19829		19829/tcp # pfSense nat bouncing
19829		19829/udp # pfSense nat bouncing
19830		19830/tcp # pfSense nat bouncing
19830		19830/udp # pfSense nat bouncing
19831		19831/tcp # pfSense nat bouncing
19831		19831/udp # pfSense nat bouncing
19832		19832/tcp # pfSense nat bouncing
19832		19832/udp # pfSense nat bouncing
19833		19833/tcp # pfSense nat bouncing
19833		19833/udp # pfSense nat bouncing
19834		19834/tcp # pfSense nat bouncing
19834		19834/udp # pfSense nat bouncing
19835		19835/tcp # pfSense nat bouncing
19835		19835/udp # pfSense nat bouncing
19836		19836/tcp # pfSense nat bouncing
19836		19836/udp # pfSense nat bouncing
19837		19837/tcp # pfSense nat bouncing
19837		19837/udp # pfSense nat bouncing
19838		19838/tcp # pfSense nat bouncing
19838		19838/udp # pfSense nat bouncing
19839		19839/tcp # pfSense nat bouncing
19839		19839/udp # pfSense nat bouncing
19840		19840/tcp # pfSense nat bouncing
19840		19840/udp # pfSense nat bouncing
19841		19841/tcp # pfSense nat bouncing
19841		19841/udp # pfSense nat bouncing
19842		19842/tcp # pfSense nat bouncing
19842		19842/udp # pfSense nat bouncing
19843		19843/tcp # pfSense nat bouncing
19843		19843/udp # pfSense nat bouncing
19844		19844/tcp # pfSense nat bouncing
19844		19844/udp # pfSense nat bouncing
19845		19845/tcp # pfSense nat bouncing
19845		19845/udp # pfSense nat bouncing
19846		19846/tcp # pfSense nat bouncing
19846		19846/udp # pfSense nat bouncing
19847		19847/tcp # pfSense nat bouncing
19847		19847/udp # pfSense nat bouncing
19848		19848/tcp # pfSense nat bouncing
19848		19848/udp # pfSense nat bouncing
19849		19849/tcp # pfSense nat bouncing
19849		19849/udp # pfSense nat bouncing
19850		19850/tcp # pfSense nat bouncing
19850		19850/udp # pfSense nat bouncing
19851		19851/tcp # pfSense nat bouncing
19851		19851/udp # pfSense nat bouncing
19852		19852/tcp # pfSense nat bouncing
19852		19852/udp # pfSense nat bouncing
19853		19853/tcp # pfSense nat bouncing
19853		19853/udp # pfSense nat bouncing
19854		19854/tcp # pfSense nat bouncing
19854		19854/udp # pfSense nat bouncing
19855		19855/tcp # pfSense nat bouncing
19855		19855/udp # pfSense nat bouncing
19856		19856/tcp # pfSense nat bouncing
19856		19856/udp # pfSense nat bouncing
19857		19857/tcp # pfSense nat bouncing
19857		19857/udp # pfSense nat bouncing
19858		19858/tcp # pfSense nat bouncing
19858		19858/udp # pfSense nat bouncing
19859		19859/tcp # pfSense nat bouncing
19859		19859/udp # pfSense nat bouncing
19860		19860/tcp # pfSense nat bouncing
19860		19860/udp # pfSense nat bouncing
19861		19861/tcp # pfSense nat bouncing
19861		19861/udp # pfSense nat bouncing
19862		19862/tcp # pfSense nat bouncing
19862		19862/udp # pfSense nat bouncing
19863		19863/tcp # pfSense nat bouncing
19863		19863/udp # pfSense nat bouncing
19864		19864/tcp # pfSense nat bouncing
19864		19864/udp # pfSense nat bouncing
19865		19865/tcp # pfSense nat bouncing
19865		19865/udp # pfSense nat bouncing
19866		19866/tcp # pfSense nat bouncing
19866		19866/udp # pfSense nat bouncing
19867		19867/tcp # pfSense nat bouncing
19867		19867/udp # pfSense nat bouncing
19868		19868/tcp # pfSense nat bouncing
19868		19868/udp # pfSense nat bouncing
19869		19869/tcp # pfSense nat bouncing
19869		19869/udp # pfSense nat bouncing
19870		19870/tcp # pfSense nat bouncing
19870		19870/udp # pfSense nat bouncing
19871		19871/tcp # pfSense nat bouncing
19871		19871/udp # pfSense nat bouncing
19872		19872/tcp # pfSense nat bouncing
19872		19872/udp # pfSense nat bouncing
19873		19873/tcp # pfSense nat bouncing
19873		19873/udp # pfSense nat bouncing
19874		19874/tcp # pfSense nat bouncing
19874		19874/udp # pfSense nat bouncing
19875		19875/tcp # pfSense nat bouncing
19875		19875/udp # pfSense nat bouncing
19876		19876/tcp # pfSense nat bouncing
19876		19876/udp # pfSense nat bouncing
19877		19877/tcp # pfSense nat bouncing
19877		19877/udp # pfSense nat bouncing
19878		19878/tcp # pfSense nat bouncing
19878		19878/udp # pfSense nat bouncing
19879		19879/tcp # pfSense nat bouncing
19879		19879/udp # pfSense nat bouncing
19880		19880/tcp # pfSense nat bouncing
19880		19880/udp # pfSense nat bouncing
19881		19881/tcp # pfSense nat bouncing
19881		19881/udp # pfSense nat bouncing
19882		19882/tcp # pfSense nat bouncing
19882		19882/udp # pfSense nat bouncing
19883		19883/tcp # pfSense nat bouncing
19883		19883/udp # pfSense nat bouncing
19884		19884/tcp # pfSense nat bouncing
19884		19884/udp # pfSense nat bouncing
19885		19885/tcp # pfSense nat bouncing
19885		19885/udp # pfSense nat bouncing
19886		19886/tcp # pfSense nat bouncing
19886		19886/udp # pfSense nat bouncing
19887		19887/tcp # pfSense nat bouncing
19887		19887/udp # pfSense nat bouncing
19888		19888/tcp # pfSense nat bouncing
19888		19888/udp # pfSense nat bouncing
19889		19889/tcp # pfSense nat bouncing
19889		19889/udp # pfSense nat bouncing
19890		19890/tcp # pfSense nat bouncing
19890		19890/udp # pfSense nat bouncing
19891		19891/tcp # pfSense nat bouncing
19891		19891/udp # pfSense nat bouncing
19892		19892/tcp # pfSense nat bouncing
19892		19892/udp # pfSense nat bouncing
19893		19893/tcp # pfSense nat bouncing
19893		19893/udp # pfSense nat bouncing
19894		19894/tcp # pfSense nat bouncing
19894		19894/udp # pfSense nat bouncing
19895		19895/tcp # pfSense nat bouncing
19895		19895/udp # pfSense nat bouncing
19896		19896/tcp # pfSense nat bouncing
19896		19896/udp # pfSense nat bouncing
19897		19897/tcp # pfSense nat bouncing
19897		19897/udp # pfSense nat bouncing
19898		19898/tcp # pfSense nat bouncing
19898		19898/udp # pfSense nat bouncing
19899		19899/tcp # pfSense nat bouncing
19899		19899/udp # pfSense nat bouncing
19900		19900/tcp # pfSense nat bouncing
19900		19900/udp # pfSense nat bouncing
19901		19901/tcp # pfSense nat bouncing
19901		19901/udp # pfSense nat bouncing
19902		19902/tcp # pfSense nat bouncing
19902		19902/udp # pfSense nat bouncing
19903		19903/tcp # pfSense nat bouncing
19903		19903/udp # pfSense nat bouncing
19904		19904/tcp # pfSense nat bouncing
19904		19904/udp # pfSense nat bouncing
19905		19905/tcp # pfSense nat bouncing
19905		19905/udp # pfSense nat bouncing
19906		19906/tcp # pfSense nat bouncing
19906		19906/udp # pfSense nat bouncing
19907		19907/tcp # pfSense nat bouncing
19907		19907/udp # pfSense nat bouncing
19908		19908/tcp # pfSense nat bouncing
19908		19908/udp # pfSense nat bouncing
19909		19909/tcp # pfSense nat bouncing
19909		19909/udp # pfSense nat bouncing
19910		19910/tcp # pfSense nat bouncing
19910		19910/udp # pfSense nat bouncing
19911		19911/tcp # pfSense nat bouncing
19911		19911/udp # pfSense nat bouncing
19912		19912/tcp # pfSense nat bouncing
19912		19912/udp # pfSense nat bouncing
19913		19913/tcp # pfSense nat bouncing
19913		19913/udp # pfSense nat bouncing
19914		19914/tcp # pfSense nat bouncing
19914		19914/udp # pfSense nat bouncing
19915		19915/tcp # pfSense nat bouncing
19915		19915/udp # pfSense nat bouncing
19916		19916/tcp # pfSense nat bouncing
19916		19916/udp # pfSense nat bouncing
19917		19917/tcp # pfSense nat bouncing
19917		19917/udp # pfSense nat bouncing
19918		19918/tcp # pfSense nat bouncing
19918		19918/udp # pfSense nat bouncing
19919		19919/tcp # pfSense nat bouncing
19919		19919/udp # pfSense nat bouncing
19920		19920/tcp # pfSense nat bouncing
19920		19920/udp # pfSense nat bouncing
19921		19921/tcp # pfSense nat bouncing
19921		19921/udp # pfSense nat bouncing
19922		19922/tcp # pfSense nat bouncing
19922		19922/udp # pfSense nat bouncing
19923		19923/tcp # pfSense nat bouncing
19923		19923/udp # pfSense nat bouncing
19924		19924/tcp # pfSense nat bouncing
19924		19924/udp # pfSense nat bouncing
19925		19925/tcp # pfSense nat bouncing
19925		19925/udp # pfSense nat bouncing
19926		19926/tcp # pfSense nat bouncing
19926		19926/udp # pfSense nat bouncing
19927		19927/tcp # pfSense nat bouncing
19927		19927/udp # pfSense nat bouncing
19928		19928/tcp # pfSense nat bouncing
19928		19928/udp # pfSense nat bouncing
19929		19929/tcp # pfSense nat bouncing
19929		19929/udp # pfSense nat bouncing
19930		19930/tcp # pfSense nat bouncing
19930		19930/udp # pfSense nat bouncing
19931		19931/tcp # pfSense nat bouncing
19931		19931/udp # pfSense nat bouncing
19932		19932/tcp # pfSense nat bouncing
19932		19932/udp # pfSense nat bouncing
19933		19933/tcp # pfSense nat bouncing
19933		19933/udp # pfSense nat bouncing
19934		19934/tcp # pfSense nat bouncing
19934		19934/udp # pfSense nat bouncing
19935		19935/tcp # pfSense nat bouncing
19935		19935/udp # pfSense nat bouncing
19936		19936/tcp # pfSense nat bouncing
19936		19936/udp # pfSense nat bouncing
19937		19937/tcp # pfSense nat bouncing
19937		19937/udp # pfSense nat bouncing
19938		19938/tcp # pfSense nat bouncing
19938		19938/udp # pfSense nat bouncing
19939		19939/tcp # pfSense nat bouncing
19939		19939/udp # pfSense nat bouncing
19940		19940/tcp # pfSense nat bouncing
19940		19940/udp # pfSense nat bouncing
19941		19941/tcp # pfSense nat bouncing
19941		19941/udp # pfSense nat bouncing
19942		19942/tcp # pfSense nat bouncing
19942		19942/udp # pfSense nat bouncing
19943		19943/tcp # pfSense nat bouncing
19943		19943/udp # pfSense nat bouncing
19944		19944/tcp # pfSense nat bouncing
19944		19944/udp # pfSense nat bouncing
19945		19945/tcp # pfSense nat bouncing
19945		19945/udp # pfSense nat bouncing
19946		19946/tcp # pfSense nat bouncing
19946		19946/udp # pfSense nat bouncing
19947		19947/tcp # pfSense nat bouncing
19947		19947/udp # pfSense nat bouncing
19948		19948/tcp # pfSense nat bouncing
19948		19948/udp # pfSense nat bouncing
19949		19949/tcp # pfSense nat bouncing
19949		19949/udp # pfSense nat bouncing
19950		19950/tcp # pfSense nat bouncing
19950		19950/udp # pfSense nat bouncing
19951		19951/tcp # pfSense nat bouncing
19951		19951/udp # pfSense nat bouncing
19952		19952/tcp # pfSense nat bouncing
19952		19952/udp # pfSense nat bouncing
19953		19953/tcp # pfSense nat bouncing
19953		19953/udp # pfSense nat bouncing
19954		19954/tcp # pfSense nat bouncing
19954		19954/udp # pfSense nat bouncing
19955		19955/tcp # pfSense nat bouncing
19955		19955/udp # pfSense nat bouncing
19956		19956/tcp # pfSense nat bouncing
19956		19956/udp # pfSense nat bouncing
19957		19957/tcp # pfSense nat bouncing
19957		19957/udp # pfSense nat bouncing
19958		19958/tcp # pfSense nat bouncing
19958		19958/udp # pfSense nat bouncing
19959		19959/tcp # pfSense nat bouncing
19959		19959/udp # pfSense nat bouncing
19960		19960/tcp # pfSense nat bouncing
19960		19960/udp # pfSense nat bouncing
19961		19961/tcp # pfSense nat bouncing
19961		19961/udp # pfSense nat bouncing
19962		19962/tcp # pfSense nat bouncing
19962		19962/udp # pfSense nat bouncing
19963		19963/tcp # pfSense nat bouncing
19963		19963/udp # pfSense nat bouncing
19964		19964/tcp # pfSense nat bouncing
19964		19964/udp # pfSense nat bouncing
19965		19965/tcp # pfSense nat bouncing
19965		19965/udp # pfSense nat bouncing
19966		19966/tcp # pfSense nat bouncing
19966		19966/udp # pfSense nat bouncing
19967		19967/tcp # pfSense nat bouncing
19967		19967/udp # pfSense nat bouncing
19968		19968/tcp # pfSense nat bouncing
19968		19968/udp # pfSense nat bouncing
19969		19969/tcp # pfSense nat bouncing
19969		19969/udp # pfSense nat bouncing
19970		19970/tcp # pfSense nat bouncing
19970		19970/udp # pfSense nat bouncing
19971		19971/tcp # pfSense nat bouncing
19971		19971/udp # pfSense nat bouncing
19972		19972/tcp # pfSense nat bouncing
19972		19972/udp # pfSense nat bouncing
19973		19973/tcp # pfSense nat bouncing
19973		19973/udp # pfSense nat bouncing
19974		19974/tcp # pfSense nat bouncing
19974		19974/udp # pfSense nat bouncing
19975		19975/tcp # pfSense nat bouncing
19975		19975/udp # pfSense nat bouncing
19976		19976/tcp # pfSense nat bouncing
19976		19976/udp # pfSense nat bouncing
19977		19977/tcp # pfSense nat bouncing
19977		19977/udp # pfSense nat bouncing
19978		19978/tcp # pfSense nat bouncing
19978		19978/udp # pfSense nat bouncing
19979		19979/tcp # pfSense nat bouncing
19979		19979/udp # pfSense nat bouncing
19980		19980/tcp # pfSense nat bouncing
19980		19980/udp # pfSense nat bouncing
19981		19981/tcp # pfSense nat bouncing
19981		19981/udp # pfSense nat bouncing
19982		19982/tcp # pfSense nat bouncing
19982		19982/udp # pfSense nat bouncing
19983		19983/tcp # pfSense nat bouncing
19983		19983/udp # pfSense nat bouncing
19984		19984/tcp # pfSense nat bouncing
19984		19984/udp # pfSense nat bouncing
19985		19985/tcp # pfSense nat bouncing
19985		19985/udp # pfSense nat bouncing
19986		19986/tcp # pfSense nat bouncing
19986		19986/udp # pfSense nat bouncing
19987		19987/tcp # pfSense nat bouncing
19987		19987/udp # pfSense nat bouncing
19988		19988/tcp # pfSense nat bouncing
19988		19988/udp # pfSense nat bouncing
19989		19989/tcp # pfSense nat bouncing
19989		19989/udp # pfSense nat bouncing
19990		19990/tcp # pfSense nat bouncing
19990		19990/udp # pfSense nat bouncing
19991		19991/tcp # pfSense nat bouncing
19991		19991/udp # pfSense nat bouncing
19992		19992/tcp # pfSense nat bouncing
19992		19992/udp # pfSense nat bouncing
19993		19993/tcp # pfSense nat bouncing
19993		19993/udp # pfSense nat bouncing
19994		19994/tcp # pfSense nat bouncing
19994		19994/udp # pfSense nat bouncing
19995		19995/tcp # pfSense nat bouncing
19995		19995/udp # pfSense nat bouncing
19996		19996/tcp # pfSense nat bouncing
19996		19996/udp # pfSense nat bouncing
19997		19997/tcp # pfSense nat bouncing
19997		19997/udp # pfSense nat bouncing
19998		19998/tcp # pfSense nat bouncing
19998		19998/udp # pfSense nat bouncing
19999		19999/tcp # pfSense nat bouncing
19999		19999/udp # pfSense nat bouncing
dbbrowse	47557/tcp #Databeam Corporation
dbbrowse	47557/udp #Databeam Corporation
wnn4		22273/tcp  #Wnn4 (Japanese input)
wnn4_Cn		22289/tcp  #Wnn4 (Chinese input)
wnn4_Tw		22321/tcp  #Wnn4 (Taiwanse input)
wnn4_Kr		22305/tcp  #Wnn4 (Korean input)
wnn6		22273/tcp  #Wnn6 (Japanese input)
wnn6_Cn		22289/tcp  #Wnn6 (Chinese input)
wnn6_Tw		22321/tcp  #Wnn6 (Taiwanse input)
wnn6_Kr		22305/tcp  #Wnn6 (Korean input)
wnn6_DS		26208/tcp  #Wnn6 (Dserver)
OpenPOWER on IntegriCloud