-
Notifications
You must be signed in to change notification settings - Fork 0
/
flogparse.sh
executable file
·6724 lines (6683 loc) · 288 KB
/
flogparse.sh
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
#!/bin/bash
set -o nounset
set -o pipefail
HELP="
This script parses the cloud flow logs into a more readable format by resolving
protocol number and port number into clear text. If you give a data center id
(UUID) with the '-i' option, the script will attempt to get clear text names
for interfaces and IP addresses from the APIs.
the parsed data will look somethin like this:
2023-04-27 12:03:14+0s: 120 bytes from 45.134.144.235:52876 to ApiLB:80 (World Wide Web HTTP) over TCP accepted by ApplicationLoadBalancer
OPTIONS:
-h
print help
-i dcid
Datacenter ID (UUID). Used to get interface information from the APIs
(swap UUIDs and IP addresses to clear text names). The data is stored
in dcinfo.<dcid>.lib file. use the '-c' parameter below to prevent
fetching the information on every call (makes the script faster).
Requires IONOS_TOKEN environment variable set.
-c
Use the locally stored cache file dcinfo.<dcid>.lib instead of trying
to fetch the data from the APIs
-F
Use the device/interface identifier on the log file name instead of the
UUID in the log records. See teh example above where the string
ApplicationLoadBalancer from the filename is used as the interface
identifier in the listed log lines. The s3 prefix can be defined when
setting the flow log in the DCD or with ionosctl. Give for example
's3://mybucket/myprefix' instead of just 's3://mybucket'.
ARGUMENTS:
*.log or *.log.gz files that conform to the log format 2
EXAMPLES:
parse all gzipped and clear text logs in the logs directory.
$0 ./logs/*.log.gz ./logs/*.log
replace the interface UUID in the logs with the file prefix
$0 -F myprefix.123345123345.log.gz
get data center information from the APIs and use it to replace UUIDs and IP
addresses with the interface names (requires IONOS_TOKEN environment variable)
$0 -i \$DCID ./logs/*.log.gz
# the same but use the cached data center information (faster)
$0 -c -i \$DCID ./logs/*.log.gz
# run without parameters to generate the flogparse.awk that can be used in pipes
$0
gunzip -c *.log.gz | flogparse.awk
NOTES:
the script will generate a self contained flogparse.*.awk script in the
same directory. The parselogs.qwk reads the logs from stdin and can be
used to parse logs in data pipes. Example:
./flogparse.*.awk < alb.1234523423.log
DEPENDENCIES:
jq (if -i option is used)
"
USE_FILENAME_ID=false
FLOGPARSE_AWK=flogparse.awk
USE_CACHE=false
DCID=""
while getopts i:hcFd flag; do
case $flag in
i)
DCID=$OPTARG
FLOGPARSE_AWK=flogparse.$DCID.awk
;;
c)
USE_CACHE=true
;;
h) echo "$HELP"
;;
F)
USE_FILENAME_ID=true
;;
*)
exit 1
;;
esac
done
shift $((OPTIND -1))
DCINFO=dcinfo-$DCID.lib
if [ "$USE_CACHE" != "true" ]; then
rm -f $DCINFO
fi
# If the data center ID is provided, generate interface id / ip address <->
# interface name lookup table to resolve the IPs and device/interface IDs in
# the flow logs. The script will replace spaces in the names with underscores
if [ ! -e $DCINFO -a ! -z "$DCID" ]; then
which jq >/dev/null || echo "Please install 'jq' - exiting..." || exit 1
get_ids(){
jq -r '..|select(has("id")? and .properties.name)|"interfaces[\"\(.id)\"]=\"\(.properties.name|gsub(" ";"_"))\""'
}
get_ips(){
jq -r '..|select(has("ips"))?|"hosts[\"\(.ips[0])\"]=\"\(.name|gsub(" ";"_"))\""'
}
curl --silent --header "Authorization: Bearer $IONOS_TOKEN" \
https://api.ionos.com/cloudapi/v6/datacenters/$DCID?depth=10 | get_ids >> $DCINFO
curl --silent --header "Authorization: Bearer $IONOS_TOKEN" \
https://api.ionos.com/cloudapi/v6/datacenters/$DCID?depth=10 | get_ips >> $DCINFO
# add this machine to the hosts (comment out if undesired)
MYIP=$(ip -o addr | grep 'ens.*inet\>'|tr '/' ' '|awk '{print $4}')
echo "hosts[\"${MYIP}\"]=\"${HOSTNAME}\"" >> $DCINFO
fi
# make an executable awk script to parse the flowlog data. The script reads log
# data data from standard input and writes the parsed logs to standard output.
echo -e "#!/bin/awk -f\n# automatically generated by $0 on $(date)" > $FLOGPARSE_AWK
if [ ! -z "$DCID" ]; then
# one could use the awk include too, but its not posix compliant
echo -e "# Virtual Data Center specific values for VDC '$DCID'\nBEGIN{" >> $FLOGPARSE_AWK
cat $DCINFO >> $FLOGPARSE_AWK
echo "}" >> $FLOGPARSE_AWK
else
echo -e "# generic script - no data center specific values" >> $FLOGPARSE_AWK
fi
cat << 'EOF' >> $FLOGPARSE_AWK
BEGIN{
protocols[0]="HOPOPT"
protocols[1]="ICMP"
protocols[2]="IGMP"
protocols[3]="GGP"
protocols[4]="IPv4"
protocols[5]="ST"
protocols[6]="TCP"
protocols[7]="CBT"
protocols[8]="EGP"
protocols[10]="BBN-RCC-MON"
protocols[11]="NVP-II"
protocols[13]="ARGUS (deprecated)"
protocols[14]="EMCON"
protocols[16]="CHAOS"
protocols[17]="UDP"
protocols[19]="DCN-MEAS"
protocols[20]="HMP"
protocols[21]="PRM"
protocols[23]="TRUNK-1"
protocols[24]="TRUNK-2"
protocols[25]="LEAF-1"
protocols[26]="LEAF-2"
protocols[27]="RDP"
protocols[28]="IRTP"
protocols[29]="ISO-TP4"
protocols[30]="NETBLT"
protocols[32]="MERIT-INP"
protocols[33]="DCCP"
protocols[34]="3PC"
protocols[35]="IDPR"
protocols[36]="XTP"
protocols[37]="DDP"
protocols[38]="IDPR-CMTP"
protocols[39]="TP++"
protocols[40]="IL"
protocols[41]="IPv6"
protocols[42]="SDRP"
protocols[43]="IPv6-Route"
protocols[44]="IPv6-Frag"
protocols[45]="IDRP"
protocols[46]="RSVP"
protocols[47]="GRE"
protocols[48]="DSR"
protocols[49]="BNA"
protocols[50]="ESP"
protocols[51]="AH"
protocols[52]="I-NLSP"
protocols[53]="SWIPE (deprecated)"
protocols[54]="NARP"
protocols[55]="MOBILE"
protocols[57]="SKIP"
protocols[58]="IPv6-ICMP"
protocols[59]="IPv6-NoNxt"
protocols[60]="IPv6-Opts"
protocols[64]="SAT-EXPAK"
protocols[65]="KRYPTOLAN"
protocols[66]="RVD"
protocols[67]="IPPC"
protocols[69]="SAT-MON"
protocols[70]="VISA"
protocols[71]="IPCV"
protocols[72]="CPNX"
protocols[73]="CPHB"
protocols[74]="WSN"
protocols[75]="PVP"
protocols[76]="BR-SAT-MON"
protocols[77]="SUN-ND"
protocols[78]="WB-MON"
protocols[79]="WB-EXPAK"
protocols[80]="ISO-IP"
protocols[81]="VMTP"
protocols[82]="SECURE-VMTP"
protocols[83]="VINES"
protocols[84]="IPTM"
protocols[85]="NSFNET-IGP"
protocols[87]="TCF"
protocols[88]="EIGRP"
protocols[89]="OSPFIGP"
protocols[91]="LARP"
protocols[92]="MTP"
protocols[93]="AX.25"
protocols[94]="IPIP"
protocols[95]="MICP (deprecated)"
protocols[96]="SCC-SP"
protocols[97]="ETHERIP"
protocols[98]="ENCAP"
protocols[100]="GMTP"
protocols[102]="PNNI"
protocols[103]="PIM"
protocols[104]="ARIS"
protocols[105]="SCPS"
protocols[106]="QNX"
protocols[107]="A/N"
protocols[108]="IPComp"
protocols[109]="SNP"
protocols[110]="Compaq-Peer"
protocols[111]="IPX-in-IP"
protocols[112]="VRRP"
protocols[113]="PGM"
protocols[115]="L2TP"
protocols[116]="DDX"
protocols[117]="IATP"
protocols[118]="STP"
protocols[119]="SRP"
protocols[120]="UTI"
protocols[121]="SMP"
protocols[122]="SM (deprecated)"
protocols[123]="PTP"
protocols[124]="ISIS over IPv4"
protocols[125]="FIRE"
protocols[126]="CRTP"
protocols[127]="CRUDP"
protocols[128]="SSCOPMCE"
protocols[129]="IPLT"
protocols[130]="SPS"
protocols[131]="PIPE"
protocols[132]="SCTP"
protocols[133]="FC"
protocols[134]="RSVP-E2E-IGNORE"
protocols[135]="Mobility Header"
protocols[136]="UDPLite"
protocols[137]="MPLS-in-IP"
protocols[138]="manet"
protocols[139]="HIP"
protocols[140]="Shim6"
protocols[141]="WESP"
protocols[142]="ROHC"
protocols[143]="Ethernet"
protocols[144]="AGGFRAG"
protocols[255]="Reserved"
ports["UDP"][0]="Reserved"
ports["UDP"][1]="Port Service Multiplexer"
ports["UDP"][2]="Management Utility"
ports["UDP"][3]="Compression Process"
ports["UDP"][4]="Unassigned"
ports["UDP"][5]="Remote Job Entry"
ports["UDP"][6]="Unassigned"
ports["UDP"][7]="Echo"
ports["UDP"][8]="Unassigned"
ports["UDP"][9]="Discard"
ports["UDP"][10]="Unassigned"
ports["UDP"][11]="Active Users"
ports["UDP"][12]="Unassigned"
ports["UDP"][13]="Daytime"
ports["UDP"][14]="Unassigned"
ports["UDP"][15]="Unassigned"
ports["UDP"][16]="Unassigned"
ports["UDP"][17]="Quote of the Day"
ports["UDP"][18]="Message Send Protocol"
ports["UDP"][19]="Character Generator"
ports["UDP"][20]="File Transfer [Default Data]"
ports["UDP"][21]="File Transfer [Control]"
ports["UDP"][22]="SSH Remote Login Protocol"
ports["UDP"][23]="Telnet"
ports["UDP"][24]="any private mail system"
ports["UDP"][25]="Simple Mail Transfer"
ports["UDP"][26]="Unassigned"
ports["UDP"][27]="NSW User System FE"
ports["UDP"][28]="Unassigned"
ports["UDP"][29]="MSG ICP"
ports["UDP"][30]="Unassigned"
ports["UDP"][31]="MSG Authentication"
ports["UDP"][32]="Unassigned"
ports["UDP"][33]="Display Support Protocol"
ports["UDP"][34]="Unassigned"
ports["UDP"][35]="any private printer server"
ports["UDP"][36]="Unassigned"
ports["UDP"][37]="Time"
ports["UDP"][38]="Route Access Protocol"
ports["UDP"][39]="Resource Location Protocol"
ports["UDP"][40]="Unassigned"
ports["UDP"][41]="Graphics"
ports["UDP"][42]="Host Name Server"
ports["UDP"][43]="Who Is"
ports["UDP"][44]="MPM FLAGS Protocol"
ports["UDP"][45]="Message Processing Module [recv]"
ports["UDP"][46]="MPM [default send]"
ports["UDP"][47]="NI FTP"
ports["UDP"][48]="Digital Audit Daemon"
ports["UDP"][49]="Login Host Protocol (TACACS)"
ports["UDP"][50]="Remote Mail Checking Protocol"
ports["UDP"][51]="IMP Logical Address Maintenance"
ports["UDP"][52]="XNS Time Protocol"
ports["UDP"][53]="Domain Name Server"
ports["UDP"][54]="XNS Clearinghouse"
ports["UDP"][55]="ISI Graphics Language"
ports["UDP"][56]="XNS Authentication"
ports["UDP"][57]="any private terminal access"
ports["UDP"][58]="XNS Mail"
ports["UDP"][59]="any private file service"
ports["UDP"][60]="Unassigned"
ports["UDP"][61]="NI MAIL"
ports["UDP"][62]="ACA Services"
ports["UDP"][63]="whois++"
ports["UDP"][64]="Communications Integrator (CI)"
ports["UDP"][65]="TACACS-Database Service"
ports["UDP"][66]="Oracle SQL*NET"
ports["UDP"][67]="Bootstrap Protocol Server"
ports["UDP"][68]="Bootstrap Protocol Client"
ports["UDP"][69]="Trivial File Transfer"
ports["UDP"][70]="Gopher"
ports["UDP"][71]="Remote Job Service"
ports["UDP"][72]="Remote Job Service"
ports["UDP"][73]="Remote Job Service"
ports["UDP"][74]="Remote Job Service"
ports["UDP"][75]="any private dial out service"
ports["UDP"][76]="Distributed External Object Store"
ports["UDP"][77]="any private RJE service"
ports["UDP"][78]="vettcp"
ports["UDP"][79]="Finger"
ports["UDP"][80]="World Wide Web HTTP"
ports["UDP"][81]="HOSTS2 Name Server"
ports["UDP"][82]="XFER Utility"
ports["UDP"][83]="MIT ML Device"
ports["UDP"][84]="Common Trace Facility"
ports["UDP"][85]="MIT ML Device"
ports["UDP"][86]="Micro Focus Cobol"
ports["UDP"][87]="any private terminal link"
ports["UDP"][88]="Kerberos"
ports["UDP"][89]="SU/MIT Telnet Gateway"
ports["UDP"][90]="DNSIX Securit Attribute Token Map"
ports["UDP"][91]="MIT Dover Spooler"
ports["UDP"][92]="Network Printing Protocol"
ports["UDP"][93]="Device Control Protocol"
ports["UDP"][94]="Tivoli Object Dispatcher"
ports["UDP"][95]="SUPDUP"
ports["UDP"][96]="DIXIE Protocol Specification"
ports["UDP"][97]="Swift Remote Virtural File Protocol"
ports["UDP"][98]="TAC News"
ports["UDP"][99]="Metagram Relay"
ports["UDP"][101]="NIC Host Name Server"
ports["UDP"][102]="ISO-TSAP Class 0"
ports["UDP"][103]="Genesis Point-to-Point Trans Net"
ports["UDP"][104]="ACR-NEMA Digital Imag. & Comm. 300"
ports["UDP"][105]="Mailbox Name Nameserver"
ports["UDP"][106]="3COM-TSMUX"
ports["UDP"][107]="Remote Telnet Service"
ports["UDP"][108]="SNA Gateway Access Server"
ports["UDP"][109]="Post Office Protocol - Version 2"
ports["UDP"][110]="Post Office Protocol - Version 3"
ports["UDP"][111]="SUN Remote Procedure Call"
ports["UDP"][112]="McIDAS Data Transmission Protocol"
ports["UDP"][113]="Authentication Service"
ports["UDP"][114]="Audio News Multicast"
ports["UDP"][115]="Simple File Transfer Protocol"
ports["UDP"][116]="ANSA REX Notify"
ports["UDP"][117]="UUCP Path Service"
ports["UDP"][118]="SQL Services"
ports["UDP"][119]="Network News Transfer Protocol"
ports["UDP"][120]="CFDPTKT"
ports["UDP"][121]="Encore Expedited Remote Pro.Call"
ports["UDP"][122]="SMAKYNET"
ports["UDP"][123]="Network Time Protocol"
ports["UDP"][124]="ANSA REX Trader"
ports["UDP"][125]="Locus PC-Interface Net Map Ser"
ports["UDP"][126]="Unisys Unitary Login"
ports["UDP"][127]="Locus PC-Interface Conn Server"
ports["UDP"][128]="GSS X License Verification"
ports["UDP"][129]="Password Generator Protocol"
ports["UDP"][130]="cisco FNATIVE"
ports["UDP"][131]="cisco TNATIVE"
ports["UDP"][132]="cisco SYSMAINT"
ports["UDP"][133]="Statistics Service"
ports["UDP"][134]="INGRES-NET Service"
ports["UDP"][135]="DCE endpoint resolution"
ports["UDP"][136]="PROFILE Naming System"
ports["UDP"][137]="NETBIOS Name Service"
ports["UDP"][138]="NETBIOS Datagram Service"
ports["UDP"][139]="NETBIOS Session Service"
ports["UDP"][140]="EMFIS Data Service"
ports["UDP"][141]="EMFIS Control Service"
ports["UDP"][142]="Britton-Lee IDM"
ports["UDP"][143]="Internet Message Access Protocol"
ports["UDP"][144]="Universal Management Architecture"
ports["UDP"][145]="UAAC Protocol"
ports["UDP"][146]="ISO-IP0"
ports["UDP"][147]="ISO-IP"
ports["UDP"][148]="Jargon"
ports["UDP"][149]="AED 512 Emulation Service"
ports["UDP"][150]="SQL-NET"
ports["UDP"][151]="HEMS"
ports["UDP"][152]="Background File Transfer Program"
ports["UDP"][153]="SGMP"
ports["UDP"][154]="NETSC"
ports["UDP"][155]="NETSC"
ports["UDP"][156]="SQL Service"
ports["UDP"][157]="KNET/VM Command/Message Protocol"
ports["UDP"][158]="PCMail Server"
ports["UDP"][159]="NSS-Routing"
ports["UDP"][160]="SGMP-TRAPS"
ports["UDP"][161]="SNMP"
ports["UDP"][162]="SNMPTRAP"
ports["UDP"][163]="CMIP/TCP Manager"
ports["UDP"][164]="CMIP/TCP Agent"
ports["UDP"][165]="Xerox"
ports["UDP"][166]="Sirius Systems"
ports["UDP"][167]="NAMP"
ports["UDP"][168]="RSVD"
ports["UDP"][169]="SEND"
ports["UDP"][170]="Network PostScript"
ports["UDP"][171]="Network Innovations Multiplex"
ports["UDP"][172]="Network Innovations CL/1"
ports["UDP"][173]="Xyplex"
ports["UDP"][174]="MAILQ"
ports["UDP"][175]="VMNET"
ports["UDP"][176]="GENRAD-MUX"
ports["UDP"][177]="X Display Manager Control Protocol"
ports["UDP"][178]="NextStep Window Server"
ports["UDP"][179]="Border Gateway Protocol"
ports["UDP"][180]="Intergraph"
ports["UDP"][181]="Unify"
ports["UDP"][182]="Unisys Audit SITP"
ports["UDP"][183]="OCBinder"
ports["UDP"][184]="OCServer"
ports["UDP"][185]="Remote-KIS"
ports["UDP"][186]="KIS Protocol"
ports["UDP"][187]="Application Communication Interface"
ports["UDP"][188]="Plus Five's MUMPS"
ports["UDP"][189]="Queued File Transport"
ports["UDP"][190]="Gateway Access Control Protocol"
ports["UDP"][191]="Prospero Directory Service"
ports["UDP"][192]="OSU Network Monitoring System"
ports["UDP"][193]="Spider Remote Monitoring Protocol"
ports["UDP"][194]="Internet Relay Chat Protocol"
ports["UDP"][195]="DNSIX Network Level Module Audit"
ports["UDP"][196]="DNSIX Session Mgt Module Audit Redir"
ports["UDP"][197]="Directory Location Service"
ports["UDP"][198]="Directory Location Service Monitor"
ports["UDP"][199]="SMUX"
ports["UDP"][200]="IBM System Resource Controller"
ports["UDP"][201]="AppleTalk Routing Maintenance"
ports["UDP"][202]="AppleTalk Name Binding"
ports["UDP"][203]="AppleTalk Unused"
ports["UDP"][204]="AppleTalk Echo"
ports["UDP"][205]="AppleTalk Unused"
ports["UDP"][206]="AppleTalk Zone Information"
ports["UDP"][207]="AppleTalk Unused"
ports["UDP"][208]="AppleTalk Unused"
ports["UDP"][209]="The Quick Mail Transfer Protocol"
ports["UDP"][210]="ANSI Z39.50"
ports["UDP"][211]="Texas Instruments 914C/G Terminal"
ports["UDP"][212]="ATEXSSTR"
ports["UDP"][213]="IPX"
ports["UDP"][214]="VM PWSCS"
ports["UDP"][215]="Insignia Solutions"
ports["UDP"][216]="Computer Associates Int'l License Server"
ports["UDP"][217]="dBASE Unix"
ports["UDP"][218]="Netix Message Posting Protocol"
ports["UDP"][219]="Unisys ARPs"
ports["UDP"][220]="Interactive Mail Access Protocol v3"
ports["UDP"][221]="Berkeley rlogind with SPX auth"
ports["UDP"][222]="Berkeley rshd with SPX auth"
ports["UDP"][223]="Certificate Distribution Center"
ports["UDP"][224]="masqdialer"
ports["UDP"][242]="Direct"
ports["UDP"][243]="Survey Measurement"
ports["UDP"][244]="inbusiness"
ports["UDP"][245]="LINK"
ports["UDP"][246]="Display Systems Protocol"
ports["UDP"][247]="SUBNTBCST_TFTP"
ports["UDP"][248]="bhfhs"
ports["UDP"][256]="RAP"
ports["UDP"][257]="Secure Electronic Transaction"
ports["UDP"][258]="Yak Winsock Personal Chat"
ports["UDP"][259]="Efficient Short Remote Operations"
ports["UDP"][260]="Openport"
ports["UDP"][261]="IIOP Name Service over TLS/SSL"
ports["UDP"][262]="Arcisdms"
ports["UDP"][263]="HDAP"
ports["UDP"][264]="BGMP"
ports["UDP"][265]="X-Bone CTL"
ports["UDP"][266]="SCSI on ST"
ports["UDP"][267]="Tobit David Service Layer"
ports["UDP"][268]="Tobit David Replica"
ports["UDP"][280]="HTTP-mgmt"
ports["UDP"][281]="Personal Link"
ports["UDP"][282]="Cable Port A/X"
ports["UDP"][283]="rescap"
ports["UDP"][284]="corerjd"
ports["UDP"][286]="FXP-1"
ports["UDP"][287]="K-BLOCK"
ports["UDP"][308]="Novastor Backup"
ports["UDP"][309]="EntrustTime"
ports["UDP"][310]="bhmds"
ports["UDP"][311]="AppleShare IP WebAdmin"
ports["UDP"][312]="VSLMP"
ports["UDP"][313]="Magenta Logic"
ports["UDP"][314]="Opalis Robot"
ports["UDP"][315]="DPSI"
ports["UDP"][316]="decAuth"
ports["UDP"][317]="Zannet"
ports["UDP"][318]="PKIX TimeStamp"
ports["UDP"][319]="PTP Event"
ports["UDP"][320]="PTP General"
ports["UDP"][321]="PIP"
ports["UDP"][322]="RTSPS"
ports["UDP"][333]="Texar Security Port"
ports["UDP"][344]="Prospero Data Access Protocol"
ports["UDP"][345]="Perf Analysis Workbench"
ports["UDP"][346]="Zebra server"
ports["UDP"][347]="Fatmen Server"
ports["UDP"][348]="Cabletron Management Protocol"
ports["UDP"][349]="mftp"
ports["UDP"][350]="MATIP Type A"
ports["UDP"][351]="bhoetty"
ports["UDP"][352]="bhoedap4"
ports["UDP"][353]="NDSAUTH"
ports["UDP"][354]="bh611"
ports["UDP"][355]="DATEX-ASN"
ports["UDP"][356]="Cloanto Net 1"
ports["UDP"][357]="bhevent"
ports["UDP"][358]="Shrinkwrap"
ports["UDP"][359]="Tenebris Network Trace Service"
ports["UDP"][360]="scoi2odialog"
ports["UDP"][361]="Semantix"
ports["UDP"][362]="SRS Send"
ports["UDP"][363]="RSVP Tunnel"
ports["UDP"][364]="Aurora CMGR"
ports["UDP"][365]="DTK"
ports["UDP"][366]="ODMR"
ports["UDP"][367]="MortgageWare"
ports["UDP"][368]="QbikGDP"
ports["UDP"][369]="rpc2portmap"
ports["UDP"][370]="codaauth2"
ports["UDP"][371]="Clearcase"
ports["UDP"][372]="ListProcessor"
ports["UDP"][373]="Legent Corporation"
ports["UDP"][374]="Legent Corporation"
ports["UDP"][375]="Hassle"
ports["UDP"][376]="Amiga Envoy Network Inquiry Proto"
ports["UDP"][377]="NEC Corporation"
ports["UDP"][378]="NEC Corporation"
ports["UDP"][379]="TIA/EIA/IS-99 modem client"
ports["UDP"][380]="TIA/EIA/IS-99 modem server"
ports["UDP"][381]="hp performance data collector"
ports["UDP"][382]="hp performance data managed node"
ports["UDP"][383]="hp performance data alarm manager"
ports["UDP"][384]="A Remote Network Server System"
ports["UDP"][385]="IBM Application"
ports["UDP"][386]="ASA Message Router Object Def."
ports["UDP"][387]="Appletalk Update-Based Routing Pro."
ports["UDP"][388]="Unidata LDM"
ports["UDP"][389]="Lightweight Directory Access Protocol"
ports["UDP"][390]="UIS"
ports["UDP"][391]="SynOptics SNMP Relay Port"
ports["UDP"][392]="SynOptics Port Broker Port"
ports["UDP"][393]="Data Interpretation System"
ports["UDP"][394]="EMBL Nucleic Data Transfer"
ports["UDP"][395]="NETscout Control Protocol"
ports["UDP"][396]="Novell Netware over IP"
ports["UDP"][397]="Multi Protocol Trans. Net."
ports["UDP"][398]="Kryptolan"
ports["UDP"][399]="ISO Transport Class 2 Non-Control over TCP"
ports["UDP"][400]="Workstation Solutions"
ports["UDP"][401]="Uninterruptible Power Supply"
ports["UDP"][402]="Genie Protocol"
ports["UDP"][403]="decap"
ports["UDP"][404]="nced"
ports["UDP"][405]="ncld"
ports["UDP"][406]="Interactive Mail Support Protocol"
ports["UDP"][407]="Timbuktu"
ports["UDP"][408]="Prospero Resource Manager Sys. Man."
ports["UDP"][409]="Prospero Resource Manager Node Man."
ports["UDP"][410]="DECLadebug Remote Debug Protocol"
ports["UDP"][411]="Remote MT Protocol"
ports["UDP"][412]="Trap Convention Port"
ports["UDP"][413]="SMSP"
ports["UDP"][414]="InfoSeek"
ports["UDP"][415]="BNet"
ports["UDP"][416]="Silverplatter"
ports["UDP"][417]="Onmux"
ports["UDP"][418]="Hyper-G"
ports["UDP"][419]="Ariel"
ports["UDP"][420]="SMPTE"
ports["UDP"][421]="Ariel"
ports["UDP"][422]="Ariel"
ports["UDP"][423]="IBM Operations Planning and Control Start"
ports["UDP"][424]="IBM Operations Planning and Control Track"
ports["UDP"][425]="ICAD"
ports["UDP"][426]="smartsdp"
ports["UDP"][427]="Server Location"
ports["UDP"][428]="OCS_CMU"
ports["UDP"][429]="OCS_AMU"
ports["UDP"][430]="UTMPSD"
ports["UDP"][431]="UTMPCD"
ports["UDP"][432]="IASD"
ports["UDP"][433]="NNSP"
ports["UDP"][434]="MobileIP-Agent"
ports["UDP"][435]="MobilIP-MN"
ports["UDP"][436]="DNA-CML"
ports["UDP"][437]="comscm"
ports["UDP"][438]="dsfgw"
ports["UDP"][439]="dasp"
ports["UDP"][440]="sgcp"
ports["UDP"][441]="decvms-sysmgt"
ports["UDP"][442]="cvc_hostd"
ports["UDP"][443]="HTTP protocol over TLS/SSL"
ports["UDP"][444]="Simple Network Paging Protocol"
ports["UDP"][445]="Microsoft-DS"
ports["UDP"][446]="DDM-RDB"
ports["UDP"][447]="DDM-RFM"
ports["UDP"][448]="DDM-SSL"
ports["UDP"][449]="AS Server Mapper"
ports["UDP"][450]="TServer"
ports["UDP"][451]="Cray Network Semaphore server"
ports["UDP"][452]="Cray SFS config server"
ports["UDP"][453]="CreativeServer"
ports["UDP"][454]="ContentServer"
ports["UDP"][455]="CreativePartnr"
ports["UDP"][456]="macon-udp"
ports["UDP"][457]="scohelp"
ports["UDP"][458]="apple quick time"
ports["UDP"][459]="ampr-rcmd"
ports["UDP"][460]="skronk"
ports["UDP"][461]="DataRampSrv"
ports["UDP"][462]="DataRampSrvSec"
ports["UDP"][463]="alpes"
ports["UDP"][464]="kpasswd"
ports["UDP"][465]="SMTP protocol over TLS/SSL"
ports["UDP"][466]="digital-vrc"
ports["UDP"][467]="mylex-mapd"
ports["UDP"][468]="proturis"
ports["UDP"][469]="Radio Control Protocol"
ports["UDP"][470]="scx-proxy"
ports["UDP"][471]="Mondex"
ports["UDP"][472]="ljk-login"
ports["UDP"][473]="hybrid-pop"
ports["UDP"][474]="tn-tl-w2"
ports["UDP"][475]="tcpnethaspsrv"
ports["UDP"][476]="tn-tl-fd1"
ports["UDP"][477]="ss7ns"
ports["UDP"][478]="spsc"
ports["UDP"][479]="iafserver"
ports["UDP"][480]="iafdbase"
ports["UDP"][481]="Ph service"
ports["UDP"][482]="bgs-nsi"
ports["UDP"][483]="ulpnet"
ports["UDP"][484]="Integra Software Management Environment"
ports["UDP"][485]="Air Soft Power Burst"
ports["UDP"][486]="avian"
ports["UDP"][487]="saft Simple Asynchronous File Transfer"
ports["UDP"][488]="gss-HTTP"
ports["UDP"][489]="nest-protocol"
ports["UDP"][490]="micom-pfs"
ports["UDP"][491]="go-login"
ports["UDP"][492]="Transport Independent Convergence for FNA"
ports["UDP"][493]="Transport Independent Convergence for FNA"
ports["UDP"][494]="POV-Ray"
ports["UDP"][495]="intecourier"
ports["UDP"][496]="PIM-RP-DISC"
ports["UDP"][497]="dantz"
ports["UDP"][498]="siam"
ports["UDP"][499]="ISO ILL Protocol"
ports["UDP"][500]="ISAKMP"
ports["UDP"][501]="STMF"
ports["UDP"][502]="asa-appl-proto"
ports["UDP"][503]="Intrinsa"
ports["UDP"][504]="citadel"
ports["UDP"][505]="mailbox-lm"
ports["UDP"][506]="ohimsrv"
ports["UDP"][507]="crs"
ports["UDP"][508]="xvttp"
ports["UDP"][509]="snare"
ports["UDP"][510]="FirstClass Protocol"
ports["UDP"][511]="PassGo"
ports["UDP"][512]="used by mail system to notify users"
ports["UDP"][513]="maintains data bases showing who's"
ports["UDP"][514]="BSD syslogd"
ports["UDP"][515]="spooler"
ports["UDP"][516]="videotex"
ports["UDP"][517]="like tenex link but across"
ports["UDP"][518]="talkd"
ports["UDP"][519]="unixtime"
ports["UDP"][520]="Routing Information Protocol"
ports["UDP"][521]="ripng"
ports["UDP"][522]="ULP"
ports["UDP"][523]="IBM-DB2"
ports["UDP"][524]="NCP"
ports["UDP"][525]="timeserver"
ports["UDP"][526]="newdate"
ports["UDP"][527]="Stock IXChange"
ports["UDP"][528]="Customer IXChange"
ports["UDP"][529]="IRC-SERV"
ports["UDP"][530]="rpc"
ports["UDP"][531]="chat"
ports["UDP"][532]="readnews"
ports["UDP"][533]="for emergency broadcasts"
ports["UDP"][534]="MegaMedia Admin"
ports["UDP"][535]="iiop"
ports["UDP"][536]="opalis-rdv"
ports["UDP"][537]="Networked Media Streaming Protocol"
ports["UDP"][538]="gdomap"
ports["UDP"][539]="Apertus Technologies Load Determination"
ports["UDP"][540]="uucpd"
ports["UDP"][541]="uucp-rlogin"
ports["UDP"][542]="commerce"
ports["UDP"][543]="kerberos (v4/v5)"
ports["UDP"][544]="krcmd"
ports["UDP"][545]="appleqtcsrvr"
ports["UDP"][546]="DHCPv6 Client"
ports["UDP"][547]="DHCPv6 Server"
ports["UDP"][548]="AFP over TCP"
ports["UDP"][549]="IDFP"
ports["UDP"][550]="new-who"
ports["UDP"][551]="cybercash"
ports["UDP"][552]="deviceshare"
ports["UDP"][553]="pirp"
ports["UDP"][554]="Real Time Stream Control Protocol"
ports["UDP"][555]="phAse Zero backdoor (Windows) / dsf"
ports["UDP"][556]="rfs server"
ports["UDP"][557]="openvms-sysipc"
ports["UDP"][558]="SDNSKMP"
ports["UDP"][559]="TEEDTAP"
ports["UDP"][560]="rmonitord"
ports["UDP"][561]="monitor"
ports["UDP"][562]="chcmd"
ports["UDP"][563]="NNTP protocol over TLS/SSL"
ports["UDP"][564]="plan 9 file service"
ports["UDP"][565]="whoami"
ports["UDP"][566]="streettalk"
ports["UDP"][567]="banyan-rpc"
ports["UDP"][568]="microsoft shuttle"
ports["UDP"][569]="microsoft rome"
ports["UDP"][570]="demon"
ports["UDP"][571]="udemon"
ports["UDP"][572]="sonar"
ports["UDP"][573]="banyan-vip"
ports["UDP"][574]="FTP Software Agent System"
ports["UDP"][575]="VEMMI"
ports["UDP"][576]="ipcd"
ports["UDP"][577]="vnas"
ports["UDP"][578]="ipdd"
ports["UDP"][579]="decbsrv"
ports["UDP"][580]="SNTP HEARTBEAT"
ports["UDP"][581]="Bundle Discovery Protocol"
ports["UDP"][582]="SCC Security"
ports["UDP"][583]="Philips Video-Conferencing"
ports["UDP"][584]="Key Server"
ports["UDP"][585]="IMAP4+SSL"
ports["UDP"][586]="Password Change"
ports["UDP"][587]="Submission"
ports["UDP"][588]="CAL"
ports["UDP"][589]="EyeLink"
ports["UDP"][590]="TNS CML"
ports["UDP"][591]="FileMaker Inc. - HTTP Alternate"
ports["UDP"][592]="Eudora Set"
ports["UDP"][593]="HTTP RPC Ep Map"
ports["UDP"][594]="TPIP"
ports["UDP"][595]="CAB Protocol"
ports["UDP"][596]="SMSD"
ports["UDP"][597]="PTC Name Service"
ports["UDP"][598]="SCO Web Server Manager 3"
ports["UDP"][599]="Aeolon Core Protocol"
ports["UDP"][600]="Sun IPC server"
ports["UDP"][606]="Cray Unified Resource Manager"
ports["UDP"][607]="nqs"
ports["UDP"][608]="Sender-Initiated/Unsolicited File Transfer"
ports["UDP"][609]="npmp-trap"
ports["UDP"][610]="npmp-local"
ports["UDP"][611]="npmp-gui"
ports["UDP"][612]="HMMP Indication"
ports["UDP"][613]="HMMP Operation"
ports["UDP"][614]="SSLshell"
ports["UDP"][615]="Internet Configuration Manager"
ports["UDP"][616]="SCO System Administration Server"
ports["UDP"][617]="SCO Desktop Administration Server"
ports["UDP"][618]="DEI-ICDA"
ports["UDP"][619]="Digital EVM"
ports["UDP"][620]="SCO WebServer Manager"
ports["UDP"][621]="ESCP"
ports["UDP"][622]="Collaborator"
ports["UDP"][623]="Aux Bus Shunt"
ports["UDP"][624]="Crypto Admin"
ports["UDP"][625]="DEC DLM"
ports["UDP"][626]="ASIA"
ports["UDP"][627]="PassGo Tivoli"
ports["UDP"][628]="QMQP"
ports["UDP"][629]="3Com AMP3"
ports["UDP"][630]="RDA"
ports["UDP"][631]="IPP (Internet Printing Protocol)"
ports["UDP"][632]="bmpp"
ports["UDP"][633]="Service Status update (Sterling Software)"
ports["UDP"][634]="ginad"
ports["UDP"][635]="RLZ DBase"
ports["UDP"][636]="LDAP protocol over TLS/SSL"
ports["UDP"][637]="lanserver"
ports["UDP"][638]="mcns-sec"
ports["UDP"][639]="MSDP"
ports["UDP"][640]="entrust-sps"
ports["UDP"][641]="repcmd"
ports["UDP"][642]="ESRO-EMSDP V1.3"
ports["UDP"][643]="SANity"
ports["UDP"][644]="dwr"
ports["UDP"][645]="PSSC"
ports["UDP"][646]="LDP"
ports["UDP"][647]="DHCP Failover"
ports["UDP"][648]="Registry Registrar Protocol (RRP)"
ports["UDP"][649]="Aminet"
ports["UDP"][650]="OBEX"
ports["UDP"][651]="IEEE MMS"
ports["UDP"][652]="UDLR_DTCP"
ports["UDP"][653]="RepCmd"
ports["UDP"][654]="AODV"
ports["UDP"][655]="TINC"
ports["UDP"][656]="SPMP"
ports["UDP"][657]="RMC"
ports["UDP"][658]="TenFold"
ports["UDP"][659]="URL Rendezvous"
ports["UDP"][660]="MacOS Server Admin"
ports["UDP"][661]="HAP"
ports["UDP"][662]="PFTP"
ports["UDP"][663]="PureNoise"
ports["UDP"][664]="Secure Aux Bus"
ports["UDP"][665]="Sun DR"
ports["UDP"][666]="doom Id Software"
ports["UDP"][667]="campaign contribution disclosures - SDR Technologies"
ports["UDP"][668]="MeComm"
ports["UDP"][669]="MeRegister"
ports["UDP"][670]="VACDSM-SWS"
ports["UDP"][671]="VACDSM-APP"
ports["UDP"][672]="VPPS-QUA"
ports["UDP"][673]="CIMPLEX"
ports["UDP"][674]="ACAP"
ports["UDP"][675]="DCTP"
ports["UDP"][676]="VPPS Via"
ports["UDP"][677]="Virtual Presence Protocol"
ports["UDP"][678]="GNU Generation Foundation NCP"
ports["UDP"][679]="MRM"
ports["UDP"][680]="entrust-aaas"
ports["UDP"][681]="entrust-aams"
ports["UDP"][682]="XFR"
ports["UDP"][683]="CORBA IIOP"
ports["UDP"][684]="CORBA IIOP SSL"
ports["UDP"][685]="MDC Port Mapper"
ports["UDP"][686]="Hardware Control Protocol Wismar"
ports["UDP"][687]="asipregistry"
ports["UDP"][688]="REALM-RUSD"
ports["UDP"][689]="NMAP"
ports["UDP"][690]="VATP"
ports["UDP"][691]="MS Exchange Routing"
ports["UDP"][692]="Hyperwave-ISP"
ports["UDP"][693]="connendp"
ports["UDP"][694]="ha-cluster"
ports["UDP"][695]="IEEE-MMS-SSL"
ports["UDP"][696]="RUSHD"
ports["UDP"][697]="UUIDGEN"
ports["UDP"][698]="OLSR"
ports["UDP"][704]="errlog copy/server daemon"
ports["UDP"][705]="AgentX"
ports["UDP"][706]="SILC"
ports["UDP"][707]="Borland DSJ"
ports["UDP"][709]="Entrust Key Management Service Handler"
ports["UDP"][710]="Entrust Administration Service Handler"
ports["UDP"][711]="Cisco TDP"
ports["UDP"][729]="IBM NetView DM/6000 Server/Client"
ports["UDP"][730]="IBM NetView DM/6000 send/tcp"
ports["UDP"][731]="IBM NetView DM/6000 receive/tcp"
ports["UDP"][740]="(old) NETscout Control Protocol (old)"
ports["UDP"][741]="netGW"
ports["UDP"][742]="Network based Rev. Cont. Sys."
ports["UDP"][744]="Flexible License Manager"
ports["UDP"][747]="Fujitsu Device Control"
ports["UDP"][748]="Russell Info Sci Calendar Manager"
ports["UDP"][749]="kerberos administration"
ports["UDP"][750]="kerberos version iv"
ports["UDP"][751]="pump"
ports["UDP"][752]="Kerberos password server"
ports["UDP"][753]="Kerberos userreg server"
ports["UDP"][754]="send"
ports["UDP"][758]="nlogin"
ports["UDP"][759]="con"
ports["UDP"][760]="ns"
ports["UDP"][761]="rxe"
ports["UDP"][762]="quotad"
ports["UDP"][763]="cycleserv"
ports["UDP"][764]="omserv"
ports["UDP"][765]="webster"
ports["UDP"][767]="phone"
ports["UDP"][769]="vid"
ports["UDP"][770]="cadlock"
ports["UDP"][771]="rtip"
ports["UDP"][772]="cycleserv2"
ports["UDP"][773]="notify"
ports["UDP"][774]="acmaint_dbd"
ports["UDP"][775]="acmaint_transd"
ports["UDP"][776]="wpages"
ports["UDP"][777]="Multiling HTTP"
ports["UDP"][780]="wpgs"
ports["UDP"][781]="HP performance data collector"
ports["UDP"][782]="node HP performance data managed node"
ports["UDP"][783]="HP performance data alarm manager"
ports["UDP"][786]="Concert"
ports["UDP"][787]="QSC"
ports["UDP"][800]="mdbs_daemon"
ports["UDP"][801]="device"
ports["UDP"][810]="FCP Datagram"
ports["UDP"][828]="itm-mcell-s"
ports["UDP"][829]="PKIX-3 CA/RA"
ports["UDP"][873]="rsync"
ports["UDP"][886]="ICL coNETion locate server"
ports["UDP"][887]="ICL coNETion server info"
ports["UDP"][888]="AccessBuilder"
ports["UDP"][900]="OMG Initial Refs"
ports["UDP"][901]="SMPNAMERES"
ports["UDP"][902]="IDEAFARM-CHAT"
ports["UDP"][903]="IDEAFARM-CATCH"
ports["UDP"][911]="xact-backup"
ports["UDP"][989]="FTP protocol data over TLS/SSL"
ports["UDP"][990]="FTP protocol control over TLS/SSL"
ports["UDP"][991]="Netnews Administration System"
ports["UDP"][992]="Telnet protocol over TLS/SSL"
ports["UDP"][993]="IMAP4 protocol over TLS/SSL"
ports["UDP"][994]="IRC protocol over TLS/SSL"
ports["UDP"][995]="POP3 protocol over TLS/SSL / W32/Sobig virus"
ports["UDP"][996]="vsinet / W32/Sobig virus"
ports["UDP"][997]="maitrd / W32/Sobig virus"
ports["UDP"][998]="puparp / W32/Sobig virus"
ports["UDP"][999]="Applix ac / W32/Sobig virus"
ports["UDP"][1000]="ock"
ports["UDP"][1008]="Solaris"
ports["UDP"][1010]="surf"
ports["UDP"][1012]="This is rstatd on a openBSD box"
ports["UDP"][1023]="Reserved"
ports["UDP"][1024]="Reserved"
ports["UDP"][1025]="network blackjack"
ports["UDP"][1030]="BBN IAD"
ports["UDP"][1031]="BBN IAD"
ports["UDP"][1032]="BBN IAD"
ports["UDP"][1047]="Sun's NEO Object Request Broker"
ports["UDP"][1048]="Sun's NEO Object Request Broker"
ports["UDP"][1049]="Tobit David Postman VPMN"
ports["UDP"][1050]="CORBA Management Agent"
ports["UDP"][1051]="Optima VNET"
ports["UDP"][1052]="Dynamic DNS Tools"
ports["UDP"][1053]="Remote Assistant (RA)"
ports["UDP"][1054]="BRVREAD"
ports["UDP"][1055]="ANSYS - License Manager"
ports["UDP"][1056]="VFO"
ports["UDP"][1057]="STARTRON"
ports["UDP"][1058]="nim"
ports["UDP"][1059]="nimreg"
ports["UDP"][1060]="POLESTAR"
ports["UDP"][1061]="KIOSK"
ports["UDP"][1062]="Veracity"
ports["UDP"][1063]="KyoceraNetDev"
ports["UDP"][1064]="JSTEL"
ports["UDP"][1065]="SYSCOMLAN"
ports["UDP"][1066]="FPO-FNS"
ports["UDP"][1067]="Installation Bootstrap Proto. Serv."
ports["UDP"][1068]="Installation Bootstrap Proto. Cli."
ports["UDP"][1069]="COGNEX-INSIGHT"
ports["UDP"][1070]="GMRUpdateSERV"
ports["UDP"][1071]="BSQUARE-VOIP"
ports["UDP"][1072]="CARDAX"
ports["UDP"][1073]="BridgeControl"
ports["UDP"][1074]="FASTechnologies License Manager"
ports["UDP"][1075]="RDRMSHC"
ports["UDP"][1076]="DAB STI-C"
ports["UDP"][1077]="IMGames"
ports["UDP"][1078]="eManageCstp"