From 9cacdb93329106e169c343734ae2857d45b85c0c Mon Sep 17 00:00:00 2001 From: Joel Takvorian Date: Fri, 20 Sep 2024 14:01:21 +0200 Subject: [PATCH] NETOBSERV-1889: decoupling, use gopacket fork - Decouple some packages so that FLP has less to pull (currently it pulls all cilium & bpf etc.) -> new "model" package split from "flow" -> new "tracer" package split from "ebpf" -> isolate packet-related dependencies so that gopacket isn't a transitive dependency in FLP - replace google/gopacket with gopacket/gopacket ; it's a fork, the former being unmaintained. --- docs/architecture.md | 12 +- .../client/packetcapture-client.go | 6 +- go.mod | 10 +- go.sum | 24 +- pkg/agent/agent.go | 34 +- pkg/agent/agent_test.go | 6 +- pkg/agent/packets_agent.go | 27 +- pkg/decode/decode_protobuf.go | 82 +- pkg/decode/packets/decode_protobuf_packets.go | 76 + pkg/ebpf/gen.go | 4 + pkg/exporter/converters_test.go | 116 +- pkg/exporter/direct_flp.go | 13 +- pkg/exporter/direct_flp_test.go | 6 +- pkg/exporter/grpc_packets.go | 8 +- pkg/exporter/grpc_proto.go | 8 +- pkg/exporter/grpc_proto_test.go | 28 +- pkg/exporter/ipfix.go | 20 +- pkg/exporter/kafka_proto.go | 10 +- pkg/exporter/kafka_proto_test.go | 22 +- pkg/flow/account.go | 11 +- pkg/flow/account_test.go | 55 +- pkg/flow/decorator.go | 6 +- pkg/flow/deduper.go | 15 +- pkg/flow/deduper_test.go | 81 +- pkg/flow/limiter.go | 3 +- pkg/flow/limiter_test.go | 13 +- pkg/flow/perfbuffer.go | 21 +- pkg/flow/tracer_map.go | 17 +- pkg/flow/tracer_perf.go | 9 +- pkg/flow/tracer_ringbuf.go | 9 +- pkg/{flow => model}/packet_record.go | 5 +- pkg/{flow => model}/record.go | 2 +- pkg/{flow => model}/record_test.go | 2 +- pkg/pbflow/proto.go | 29 +- pkg/test/export_fake.go | 10 +- pkg/test/tracer_fake.go | 4 +- pkg/{ebpf => tracer}/flow_filter.go | 53 +- pkg/{ebpf => tracer}/flow_filter_test.go | 5 +- pkg/{ebpf => tracer}/tracer.go | 192 +- pkg/{ebpf => tracer}/tracer_legacy.go | 15 +- pkg/utils/{ => packets}/packets.go | 6 +- .../google/gopacket/.travis.gofmt.sh | 7 - .../google/gopacket/.travis.golint.sh | 28 - .../google/gopacket/.travis.govet.sh | 10 - .../google/gopacket/.travis.install.sh | 9 - .../google/gopacket/.travis.script.sh | 10 - vendor/github.com/google/gopacket/.travis.yml | 57 - vendor/github.com/google/gopacket/README.md | 12 - .../google/gopacket/layers/enums_generated.go | 434 - .../google/gopacket/layers/iana_ports.go | 11351 -------- .../github.com/google/gopacket/layers/stp.go | 27 - .../google/gopacket/layers/tls_handshake.go | 28 - .../{google => gopacket}/gopacket/.gitignore | 1 + .../{google => gopacket}/gopacket/AUTHORS | 0 .../gopacket/CONTRIBUTING.md | 4 +- .../{google => gopacket}/gopacket/LICENSE | 0 vendor/github.com/gopacket/gopacket/README.md | 17 + .../github.com/gopacket/gopacket/SECURITY.md | 29 + .../{google => gopacket}/gopacket/base.go | 7 + .../github.com/gopacket/gopacket/checksum.go | 58 + .../{google => gopacket}/gopacket/decode.go | 21 +- .../{google => gopacket}/gopacket/doc.go | 411 +- .../{google => gopacket}/gopacket/flows.go | 0 .../{google => gopacket}/gopacket/gc | 0 .../gopacket/layerclass.go | 0 .../gopacket/layers/.lint_blacklist | 0 .../gopacket/layers/arp.go | 2 +- .../gopacket/layers/asf.go | 2 +- .../gopacket/layers/asf_presencepong.go | 2 +- .../gopacket/layers/base.go | 2 +- .../gopacket/layers/bfd.go | 133 +- .../gopacket/gopacket/layers/bitfield.go | 18 + .../gopacket/layers/cdp.go | 2 +- .../gopacket/layers/ctp.go | 3 +- .../gopacket/layers/dhcpv4.go | 23 +- .../gopacket/layers/dhcpv6.go | 8 +- .../gopacket/layers/dhcpv6_options.go | 3 +- .../gopacket/layers/dns.go | 16 +- .../gopacket/layers/doc.go | 16 +- .../gopacket/layers/dot11.go | 2 +- .../gopacket/layers/dot1q.go | 3 +- .../gopacket/layers/eap.go | 3 +- .../gopacket/layers/eapol.go | 3 +- .../gopacket/layers/endpoints.go | 3 +- .../gopacket/layers/enums.go | 11 +- .../gopacket/layers/enums_generated.go | 401 + .../gopacket/layers/erspan2.go | 2 +- .../gopacket/layers/etherip.go | 3 +- .../gopacket/layers/ethernet.go | 3 +- .../gopacket/layers/fddi.go | 3 +- .../gopacket/layers/fuzz_layer.go | 2 +- .../gopacket/layers/gen_linted.sh | 0 .../gopacket/layers/geneve.go | 103 +- .../gopacket/layers/gre.go | 18 +- .../gopacket/layers/gtp.go | 4 +- .../gopacket/gopacket/layers/iana_ports.go | 22944 ++++++++++++++++ .../gopacket/layers/icmp4.go | 18 +- .../gopacket/layers/icmp6.go | 20 +- .../gopacket/layers/icmp6msg.go | 2 +- .../gopacket/layers/igmp.go | 12 +- .../gopacket/layers/ip4.go | 103 +- .../gopacket/layers/ip6.go | 2 +- .../gopacket/layers/ipsec.go | 3 +- .../gopacket/layers/layertypes.go | 3 +- .../gopacket/layers/lcm.go | 7 +- .../gopacket/layers/linux_sll.go | 2 +- .../gopacket/gopacket/layers/linux_sll2.go | 176 + .../gopacket/layers/llc.go | 9 +- .../gopacket/layers/lldp.go | 8 +- .../gopacket/layers/loopback.go | 2 +- .../gopacket/layers/mldv1.go | 2 +- .../gopacket/layers/mldv2.go | 2 +- .../gopacket/layers/modbustcp.go | 9 +- .../gopacket/layers/mpls.go | 11 +- .../gopacket/layers/ndp.go | 3 +- .../gopacket/layers/ntp.go | 95 +- .../gopacket/layers/ospf.go | 4 +- .../gopacket/layers/pflog.go | 8 +- .../gopacket/layers/ports.go | 109 +- .../gopacket/layers/ppp.go | 3 +- .../gopacket/layers/pppoe.go | 3 +- .../gopacket/layers/prism.go | 2 +- .../gopacket/layers/radiotap.go | 2 +- .../gopacket/layers/radius.go | 2 +- .../gopacket/layers/rmcp.go | 2 +- .../gopacket/layers/rudp.go | 3 +- .../gopacket/layers/sctp.go | 2 +- .../gopacket/layers/sflow.go | 894 +- .../gopacket/layers/sip.go | 23 +- .../gopacket/gopacket/layers/stp.go | 150 + .../gopacket/layers/tcp.go | 26 +- .../gopacket/layers/tcpip.go | 31 +- .../gopacket/layers/test_creator.py | 0 .../gopacket/layers/tls.go | 2 +- .../gopacket/layers/tls_alert.go | 2 +- .../gopacket/layers/tls_appdata.go | 2 +- .../gopacket/layers/tls_cipherspec.go | 2 +- .../gopacket/gopacket/layers/tls_handshake.go | 148 + .../gopacket/layers/udp.go | 29 +- .../gopacket/layers/udplite.go | 3 +- .../gopacket/layers/usb.go | 3 +- .../gopacket/layers/vrrp.go | 2 +- .../gopacket/layers/vxlan.go | 2 +- .../gopacket/layers_decoder.go | 0 .../gopacket/layertype.go | 0 .../{google => gopacket}/gopacket/packet.go | 287 +- .../{google => gopacket}/gopacket/parser.go | 83 +- .../{google => gopacket}/gopacket/time.go | 0 .../{google => gopacket}/gopacket/writer.go | 17 +- vendor/golang.org/x/crypto/LICENSE | 4 +- .../x/crypto/cryptobyte/asn1/asn1.go | 2 +- .../golang.org/x/crypto/cryptobyte/string.go | 2 +- .../x/crypto/curve25519/curve25519.go | 39 +- .../x/crypto/curve25519/curve25519_compat.go | 105 - .../x/crypto/curve25519/curve25519_go120.go | 46 - .../x/crypto/curve25519/internal/field/README | 7 - .../x/crypto/curve25519/internal/field/fe.go | 416 - .../curve25519/internal/field/fe_amd64.go | 15 - .../curve25519/internal/field/fe_amd64.s | 378 - .../internal/field/fe_amd64_noasm.go | 11 - .../curve25519/internal/field/fe_arm64.go | 15 - .../curve25519/internal/field/fe_arm64.s | 42 - .../internal/field/fe_arm64_noasm.go | 11 - .../curve25519/internal/field/fe_generic.go | 264 - .../curve25519/internal/field/sync.checkpoint | 1 - .../crypto/curve25519/internal/field/sync.sh | 19 - vendor/golang.org/x/net/LICENSE | 4 +- vendor/golang.org/x/net/http2/transport.go | 4 - vendor/golang.org/x/term/LICENSE | 4 +- vendor/golang.org/x/text/LICENSE | 4 +- vendor/modules.txt | 19 +- 171 files changed, 26098 insertions(+), 14983 deletions(-) create mode 100644 pkg/decode/packets/decode_protobuf_packets.go create mode 100644 pkg/ebpf/gen.go rename pkg/{flow => model}/packet_record.go (92%) rename pkg/{flow => model}/record.go (99%) rename pkg/{flow => model}/record_test.go (99%) rename pkg/{ebpf => tracer}/flow_filter.go (81%) rename pkg/{ebpf => tracer}/flow_filter_test.go (96%) rename pkg/{ebpf => tracer}/tracer.go (90%) rename pkg/{ebpf => tracer}/tracer_legacy.go (83%) rename pkg/utils/{ => packets}/packets.go (95%) delete mode 100644 vendor/github.com/google/gopacket/.travis.gofmt.sh delete mode 100644 vendor/github.com/google/gopacket/.travis.golint.sh delete mode 100644 vendor/github.com/google/gopacket/.travis.govet.sh delete mode 100644 vendor/github.com/google/gopacket/.travis.install.sh delete mode 100644 vendor/github.com/google/gopacket/.travis.script.sh delete mode 100644 vendor/github.com/google/gopacket/.travis.yml delete mode 100644 vendor/github.com/google/gopacket/README.md delete mode 100644 vendor/github.com/google/gopacket/layers/enums_generated.go delete mode 100644 vendor/github.com/google/gopacket/layers/iana_ports.go delete mode 100644 vendor/github.com/google/gopacket/layers/stp.go delete mode 100644 vendor/github.com/google/gopacket/layers/tls_handshake.go rename vendor/github.com/{google => gopacket}/gopacket/.gitignore (98%) rename vendor/github.com/{google => gopacket}/gopacket/AUTHORS (100%) rename vendor/github.com/{google => gopacket}/gopacket/CONTRIBUTING.md (99%) rename vendor/github.com/{google => gopacket}/gopacket/LICENSE (100%) create mode 100644 vendor/github.com/gopacket/gopacket/README.md create mode 100644 vendor/github.com/gopacket/gopacket/SECURITY.md rename vendor/github.com/{google => gopacket}/gopacket/base.go (95%) create mode 100644 vendor/github.com/gopacket/gopacket/checksum.go rename vendor/github.com/{google => gopacket}/gopacket/decode.go (94%) rename vendor/github.com/{google => gopacket}/gopacket/doc.go (58%) rename vendor/github.com/{google => gopacket}/gopacket/flows.go (100%) rename vendor/github.com/{google => gopacket}/gopacket/gc (100%) rename vendor/github.com/{google => gopacket}/gopacket/layerclass.go (100%) rename vendor/github.com/{google => gopacket}/gopacket/layers/.lint_blacklist (100%) rename vendor/github.com/{google => gopacket}/gopacket/layers/arp.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/asf.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/asf_presencepong.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/base.go (97%) rename vendor/github.com/{google => gopacket}/gopacket/layers/bfd.go (76%) create mode 100644 vendor/github.com/gopacket/gopacket/layers/bitfield.go rename vendor/github.com/{google => gopacket}/gopacket/layers/cdp.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/ctp.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/dhcpv4.go (97%) rename vendor/github.com/{google => gopacket}/gopacket/layers/dhcpv6.go (98%) rename vendor/github.com/{google => gopacket}/gopacket/layers/dhcpv6_options.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/dns.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/doc.go (89%) rename vendor/github.com/{google => gopacket}/gopacket/layers/dot11.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/dot1q.go (98%) rename vendor/github.com/{google => gopacket}/gopacket/layers/eap.go (98%) rename vendor/github.com/{google => gopacket}/gopacket/layers/eapol.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/endpoints.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/enums.go (98%) create mode 100644 vendor/github.com/gopacket/gopacket/layers/enums_generated.go rename vendor/github.com/{google => gopacket}/gopacket/layers/erspan2.go (98%) rename vendor/github.com/{google => gopacket}/gopacket/layers/etherip.go (97%) rename vendor/github.com/{google => gopacket}/gopacket/layers/ethernet.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/fddi.go (96%) rename vendor/github.com/{google => gopacket}/gopacket/layers/fuzz_layer.go (97%) rename vendor/github.com/{google => gopacket}/gopacket/layers/gen_linted.sh (100%) rename vendor/github.com/{google => gopacket}/gopacket/layers/geneve.go (51%) rename vendor/github.com/{google => gopacket}/gopacket/layers/gre.go (90%) rename vendor/github.com/{google => gopacket}/gopacket/layers/gtp.go (98%) create mode 100644 vendor/github.com/gopacket/gopacket/layers/iana_ports.go rename vendor/github.com/{google => gopacket}/gopacket/layers/icmp4.go (93%) rename vendor/github.com/{google => gopacket}/gopacket/layers/icmp6.go (93%) rename vendor/github.com/{google => gopacket}/gopacket/layers/icmp6msg.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/igmp.go (97%) rename vendor/github.com/{google => gopacket}/gopacket/layers/ip4.go (87%) rename vendor/github.com/{google => gopacket}/gopacket/layers/ip6.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/ipsec.go (98%) rename vendor/github.com/{google => gopacket}/gopacket/layers/layertypes.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/lcm.go (98%) rename vendor/github.com/{google => gopacket}/gopacket/layers/linux_sll.go (98%) create mode 100644 vendor/github.com/gopacket/gopacket/layers/linux_sll2.go rename vendor/github.com/{google => gopacket}/gopacket/layers/llc.go (95%) rename vendor/github.com/{google => gopacket}/gopacket/layers/lldp.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/loopback.go (98%) rename vendor/github.com/{google => gopacket}/gopacket/layers/mldv1.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/mldv2.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/modbustcp.go (96%) rename vendor/github.com/{google => gopacket}/gopacket/layers/mpls.go (94%) rename vendor/github.com/{google => gopacket}/gopacket/layers/ndp.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/ntp.go (81%) rename vendor/github.com/{google => gopacket}/gopacket/layers/ospf.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/pflog.go (92%) rename vendor/github.com/{google => gopacket}/gopacket/layers/ports.go (68%) rename vendor/github.com/{google => gopacket}/gopacket/layers/ppp.go (98%) rename vendor/github.com/{google => gopacket}/gopacket/layers/pppoe.go (98%) rename vendor/github.com/{google => gopacket}/gopacket/layers/prism.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/radiotap.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/radius.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/rmcp.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/rudp.go (98%) rename vendor/github.com/{google => gopacket}/gopacket/layers/sctp.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/sflow.go (77%) rename vendor/github.com/{google => gopacket}/gopacket/layers/sip.go (96%) create mode 100644 vendor/github.com/gopacket/gopacket/layers/stp.go rename vendor/github.com/{google => gopacket}/gopacket/layers/tcp.go (92%) rename vendor/github.com/{google => gopacket}/gopacket/layers/tcpip.go (73%) rename vendor/github.com/{google => gopacket}/gopacket/layers/test_creator.py (100%) rename vendor/github.com/{google => gopacket}/gopacket/layers/tls.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/tls_alert.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/tls_appdata.go (96%) rename vendor/github.com/{google => gopacket}/gopacket/layers/tls_cipherspec.go (97%) create mode 100644 vendor/github.com/gopacket/gopacket/layers/tls_handshake.go rename vendor/github.com/{google => gopacket}/gopacket/layers/udp.go (79%) rename vendor/github.com/{google => gopacket}/gopacket/layers/udplite.go (97%) rename vendor/github.com/{google => gopacket}/gopacket/layers/usb.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/vrrp.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers/vxlan.go (99%) rename vendor/github.com/{google => gopacket}/gopacket/layers_decoder.go (100%) rename vendor/github.com/{google => gopacket}/gopacket/layertype.go (100%) rename vendor/github.com/{google => gopacket}/gopacket/packet.go (79%) rename vendor/github.com/{google => gopacket}/gopacket/parser.go (87%) rename vendor/github.com/{google => gopacket}/gopacket/time.go (100%) rename vendor/github.com/{google => gopacket}/gopacket/writer.go (93%) delete mode 100644 vendor/golang.org/x/crypto/curve25519/curve25519_compat.go delete mode 100644 vendor/golang.org/x/crypto/curve25519/curve25519_go120.go delete mode 100644 vendor/golang.org/x/crypto/curve25519/internal/field/README delete mode 100644 vendor/golang.org/x/crypto/curve25519/internal/field/fe.go delete mode 100644 vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64.go delete mode 100644 vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64.s delete mode 100644 vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64_noasm.go delete mode 100644 vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64.go delete mode 100644 vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64.s delete mode 100644 vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64_noasm.go delete mode 100644 vendor/golang.org/x/crypto/curve25519/internal/field/fe_generic.go delete mode 100644 vendor/golang.org/x/crypto/curve25519/internal/field/sync.checkpoint delete mode 100644 vendor/golang.org/x/crypto/curve25519/internal/field/sync.sh diff --git a/docs/architecture.md b/docs/architecture.md index f659b92a2..316223a37 100644 --- a/docs/architecture.md +++ b/docs/architecture.md @@ -12,18 +12,18 @@ flowchart TD style E fill:#990 E --> |"polls
PerCPUHashMap"| M(flow.MapTracer) - RB --> |chan *flow.Record| ACC(flow.Accounter) + RB --> |chan *model.Record| ACC(flow.Accounter) RB -.-> |flushes| M - ACC --> |"chan []*flow.Record"| DD(flow.Deduper) - M --> |"chan []*flow.Record"| DD + ACC --> |"chan []*model.Record"| DD(flow.Deduper) + M --> |"chan []*model.Record"| DD subgraph Optional DD end - DD --> |"chan []*flow.Record"| CL(flow.CapacityLimiter) + DD --> |"chan []*model.Record"| CL(flow.CapacityLimiter) - CL --> |"chan []*flow.Record"| DC(flow.Decorator) + CL --> |"chan []*model.Record"| DC(flow.Decorator) - DC --> |"chan []*flow.Record"| EX("export.GRPCProto
or
export.KafkaProto") + DC --> |"chan []*model.Record"| EX("export.GRPCProto
or
export.KafkaProto") ``` diff --git a/examples/packetcapture-dump/client/packetcapture-client.go b/examples/packetcapture-dump/client/packetcapture-client.go index a8abdab59..2d9501114 100644 --- a/examples/packetcapture-dump/client/packetcapture-client.go +++ b/examples/packetcapture-dump/client/packetcapture-client.go @@ -25,9 +25,9 @@ import ( grpc "github.com/netobserv/netobserv-ebpf-agent/pkg/grpc/packet" "github.com/netobserv/netobserv-ebpf-agent/pkg/pbpacket" - "github.com/netobserv/netobserv-ebpf-agent/pkg/utils" + "github.com/netobserv/netobserv-ebpf-agent/pkg/utils/packets" - "github.com/google/gopacket/layers" + "github.com/gopacket/gopacket/layers" ) var ( @@ -67,7 +67,7 @@ func main() { os.Exit(1) } // write pcap file header - _, err = f.Write(utils.GetPCAPFileHeader(snapshotlen, layers.LinkTypeEthernet)) + _, err = f.Write(packets.GetPCAPFileHeader(snapshotlen, layers.LinkTypeEthernet)) if err != nil { fmt.Println("Write file header failed:", err.Error()) os.Exit(1) diff --git a/go.mod b/go.mod index 3f484d34e..1e7e0cf0d 100644 --- a/go.mod +++ b/go.mod @@ -9,7 +9,7 @@ require ( github.com/cilium/ebpf v0.16.0 github.com/fsnotify/fsnotify v1.7.0 github.com/gavv/monotime v0.0.0-20190418164738-30dba4353424 - github.com/google/gopacket v1.1.19 + github.com/gopacket/gopacket v1.2.0 github.com/mariomac/guara v0.0.0-20220523124851-5fc279816f1f github.com/mdlayher/ethernet v0.0.0-20220221185849-529eae5b6118 github.com/netobserv/flowlogs-pipeline v1.6.1-crc0 @@ -126,12 +126,12 @@ require ( go.opentelemetry.io/otel/trace v1.26.0 // indirect go.opentelemetry.io/proto/otlp v1.2.0 // indirect go.uber.org/atomic v1.9.0 // indirect - golang.org/x/crypto v0.24.0 // indirect + golang.org/x/crypto v0.26.0 // indirect golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 // indirect - golang.org/x/net v0.26.0 // indirect + golang.org/x/net v0.28.0 // indirect golang.org/x/oauth2 v0.21.0 // indirect - golang.org/x/term v0.21.0 // indirect - golang.org/x/text v0.16.0 // indirect + golang.org/x/term v0.23.0 // indirect + golang.org/x/text v0.17.0 // indirect golang.org/x/time v0.5.0 // indirect google.golang.org/genproto/googleapis/api v0.0.0-20240528184218-531527333157 // indirect google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 // indirect diff --git a/go.sum b/go.sum index 929417096..39dcebc3b 100644 --- a/go.sum +++ b/go.sum @@ -417,8 +417,6 @@ github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/ github.com/google/gofuzz v1.1.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0= github.com/google/gofuzz v1.2.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg= -github.com/google/gopacket v1.1.19 h1:ves8RnFZPGiFnTS0uPQStjwru6uO6h+nlr9j6fL7kF8= -github.com/google/gopacket v1.1.19/go.mod h1:iJ8V8n6KS+z2U1A8pUwu8bW5SyEMkXJB8Yo/Vo+TKTo= github.com/google/martian v2.1.0+incompatible/go.mod h1:9I4somxYTbIHy5NJKHRl3wXiIaQGbYVAs8BPL6v8lEs= github.com/google/martian/v3 v3.0.0/go.mod h1:y5Zk1BBys9G+gd6Jrk0W3cC1+ELVxBWuIGO+w/tUAp0= github.com/google/pprof v0.0.0-20181206194817-3ea8567a2e57/go.mod h1:zfwlbNMJ+OItoe0UupaVj+oy1omPYYDuagoSzA8v9mc= @@ -440,6 +438,8 @@ github.com/google/uuid v1.6.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+ github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg= github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk= github.com/googleapis/gnostic v0.4.1/go.mod h1:LRhVm6pbyptWbWbuZ38d1eyptfvIytN3ir6b65WBswg= +github.com/gopacket/gopacket v1.2.0 h1:eXbzFad7f73P1n2EJHQlsKuvIMJjVXK5tXoSca78I3A= +github.com/gopacket/gopacket v1.2.0/go.mod h1:BrAKEy5EOGQ76LSqh7DMAr7z0NNPdczWm2GxCG7+I8M= github.com/gophercloud/gophercloud v0.13.0/go.mod h1:VX0Ibx85B60B5XOrZr6kaNwrmPUzcmMpwxvQ1WQIIWM= github.com/gopherjs/gopherjs v0.0.0-20181017120253-0766667cb4d1/go.mod h1:wJfORRmW1u3UXTncJ5qlYoELFm8eSnnEO6hX4iZ3EWY= github.com/gorilla/context v1.1.1/go.mod h1:kBGZzfjB9CEq2AlWe17Uuf7NDRt0dE0s8S51q0aT7Yg= @@ -1009,8 +1009,8 @@ golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPh golang.org/x/crypto v0.0.0-20210921155107-089bfa567519/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc= golang.org/x/crypto v0.5.0/go.mod h1:NK/OQwhpMQP3MwtdjgLlYHnH9ebylxKWv3e0fK+mkQU= golang.org/x/crypto v0.14.0/go.mod h1:MVFd36DqK4CsrnJYDkBA3VC4m2GkXAM0PvzMCn4JQf4= -golang.org/x/crypto v0.24.0 h1:mnl8DM0o513X8fdIkmyFE/5hTYxbwYOjDS/+rK6qpRI= -golang.org/x/crypto v0.24.0/go.mod h1:Z1PMYSOR5nyMcyAVAIQSKCDwalqy85Aqn1x3Ws4L5DM= +golang.org/x/crypto v0.26.0 h1:RrRspgV4mU+YwB4FYnuBoKsUapNIL5cohGAmSH3azsw= +golang.org/x/crypto v0.26.0/go.mod h1:GY7jblb9wI+FOo5y8/S2oY4zWP07AkOJ4+jxCqdqn54= golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA= @@ -1100,8 +1100,8 @@ golang.org/x/net v0.5.0/go.mod h1:DivGGAXEgPSlEBzxGzZI+ZLohi+xUj054jfeKui00ws= golang.org/x/net v0.6.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs= golang.org/x/net v0.10.0/go.mod h1:0qNGK6F8kojg2nk9dLZ2mShWaEBan6FAoqfSigmmuDg= golang.org/x/net v0.17.0/go.mod h1:NxSsAGuq816PNPmqtQdLE42eU2Fs7NoRIZrHJAlaCOE= -golang.org/x/net v0.26.0 h1:soB7SVo0PWrY4vPW/+ay0jKDNScG2X9wFeYlXIvJsOQ= -golang.org/x/net v0.26.0/go.mod h1:5YKkiSynbBIh3p6iOc/vibscux0x38BZDkn8sCUPxHE= +golang.org/x/net v0.28.0 h1:a9JDOJc5GMUJ0+UDqmLT86WiEy7iWyIhz8gz8E4e5hE= +golang.org/x/net v0.28.0/go.mod h1:yqtgsTWOOnlGLG9GFRrK3++bGOUEkNBoHZc8MEDWPNg= golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U= golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw= @@ -1126,8 +1126,8 @@ golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJ golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= golang.org/x/sync v0.1.0/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM= -golang.org/x/sync v0.7.0 h1:YsImfSBoP9QPYL0xyKJPq0gcaJdG3rInoqxTWbfQu9M= -golang.org/x/sync v0.7.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= +golang.org/x/sync v0.8.0 h1:3NFvSEYkUoMifnESzZl15y791HH1qU2xm6eCJU5ZPXQ= +golang.org/x/sync v0.8.0/go.mod h1:Czt+wKu1gCyEFDUtn0jG5QVvpJ6rzVqr5aXyt9drQfk= golang.org/x/sys v0.0.0-20180823144017-11551d06cbcc/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY= @@ -1215,8 +1215,8 @@ golang.org/x/term v0.4.0/go.mod h1:9P2UbLfCdcvo3p/nzKvsmas4TnlujnuoV9hGgYzW1lQ= golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k= golang.org/x/term v0.8.0/go.mod h1:xPskH00ivmX89bAKVGSKKtLOWNx2+17Eiy94tnKShWo= golang.org/x/term v0.13.0/go.mod h1:LTmsnFJwVN6bCy1rVCoS+qHT1HhALEFxKncY3WNNh4U= -golang.org/x/term v0.21.0 h1:WVXCp+/EBEHOj53Rvu+7KiT/iElMrO8ACK16SMZ3jaA= -golang.org/x/term v0.21.0/go.mod h1:ooXLefLobQVslOqselCNF4SxFAaoS6KujMbsGzSDmX0= +golang.org/x/term v0.23.0 h1:F6D4vR+EHoL9/sWAWgAR1H2DcHr4PareCbAaCo1RpuU= +golang.org/x/term v0.23.0/go.mod h1:DgV24QBUrK6jhZXl+20l6UWznPlwAHm1Q1mGHtydmSk= golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ= @@ -1230,8 +1230,8 @@ golang.org/x/text v0.6.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8= golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8= golang.org/x/text v0.13.0/go.mod h1:TvPlkZtksWOMsz7fbANvkp4WM8x/WCo/om8BMLbz+aE= -golang.org/x/text v0.16.0 h1:a94ExnEXNtEwYLGJSIUxnWoxoRz/ZcCsV63ROupILh4= -golang.org/x/text v0.16.0/go.mod h1:GhwF1Be+LQoKShO3cGOHzqOgRrGaYc9AvblQOmPVHnI= +golang.org/x/text v0.17.0 h1:XtiM5bkSOt+ewxlOE/aE/AKEHibwj/6gvWMl9Rsh0Qc= +golang.org/x/text v0.17.0/go.mod h1:BuEKDfySbSR4drPmRPG/7iBdf8hvFMuRexcpahXilzY= golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ= diff --git a/pkg/agent/agent.go b/pkg/agent/agent.go index cd095cbf1..5d3c52b7c 100644 --- a/pkg/agent/agent.go +++ b/pkg/agent/agent.go @@ -16,7 +16,9 @@ import ( "github.com/netobserv/netobserv-ebpf-agent/pkg/ifaces" "github.com/netobserv/netobserv-ebpf-agent/pkg/kernel" "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" promo "github.com/netobserv/netobserv-ebpf-agent/pkg/prometheus" + "github.com/netobserv/netobserv-ebpf-agent/pkg/tracer" "github.com/cilium/ebpf/ringbuf" "github.com/gavv/monotime" @@ -116,8 +118,8 @@ type Flows struct { rbTracer *flow.RingBufTracer accounter *flow.Accounter limiter *flow.CapacityLimiter - deduper node.MiddleFunc[[]*flow.Record, []*flow.Record] - exporter node.TerminalFunc[[]*flow.Record] + deduper node.MiddleFunc[[]*model.Record, []*model.Record] + exporter node.TerminalFunc[[]*model.Record] // elements used to decorate flows with extra information interfaceNamer flow.InterfaceNamer @@ -198,7 +200,7 @@ func FlowsAgent(cfg *Config) (*Flows, error) { debug = true } - ebpfConfig := &ebpf.FlowFetcherConfig{ + ebpfConfig := &tracer.FlowFetcherConfig{ EnableIngress: ingress, EnableEgress: egress, Debug: debug, @@ -211,20 +213,20 @@ func FlowsAgent(cfg *Config) (*Flows, error) { EnableNetworkEventsMonitoring: cfg.EnableNetworkEventsMonitoring, NetworkEventsMonitoringGroupID: cfg.NetworkEventsMonitoringGroupID, EnableFlowFilter: cfg.EnableFlowFilter, - FilterConfig: &ebpf.FilterConfig{ + FilterConfig: &tracer.FilterConfig{ FilterAction: cfg.FilterAction, FilterDirection: cfg.FilterDirection, FilterIPCIDR: cfg.FilterIPCIDR, FilterProtocol: cfg.FilterProtocol, FilterPeerIP: cfg.FilterPeerIP, - FilterDestinationPort: ebpf.ConvertFilterPortsToInstr(cfg.FilterDestinationPort, cfg.FilterDestinationPortRange, cfg.FilterDestinationPorts), - FilterSourcePort: ebpf.ConvertFilterPortsToInstr(cfg.FilterSourcePort, cfg.FilterSourcePortRange, cfg.FilterSourcePorts), - FilterPort: ebpf.ConvertFilterPortsToInstr(cfg.FilterPort, cfg.FilterPortRange, cfg.FilterPorts), + FilterDestinationPort: tracer.ConvertFilterPortsToInstr(cfg.FilterDestinationPort, cfg.FilterDestinationPortRange, cfg.FilterDestinationPorts), + FilterSourcePort: tracer.ConvertFilterPortsToInstr(cfg.FilterSourcePort, cfg.FilterSourcePortRange, cfg.FilterSourcePorts), + FilterPort: tracer.ConvertFilterPortsToInstr(cfg.FilterPort, cfg.FilterPortRange, cfg.FilterPorts), FilterTCPFLags: cfg.FilterTCPFlags, }, } - fetcher, err := ebpf.NewFlowFetcher(ebpfConfig) + fetcher, err := tracer.NewFlowFetcher(ebpfConfig) if err != nil { return nil, err } @@ -236,7 +238,7 @@ func FlowsAgent(cfg *Config) (*Flows, error) { func flowsAgent(cfg *Config, m *metrics.Metrics, informer ifaces.Informer, fetcher ebpfFlowFetcher, - exporter node.TerminalFunc[[]*flow.Record], + exporter node.TerminalFunc[[]*model.Record], agentIP net.IP, s *ovnobserv.SampleDecoder, ) (*Flows, error) { @@ -284,7 +286,7 @@ func flowsAgent(cfg *Config, m *metrics.Metrics, rbTracer := flow.NewRingBufTracer(fetcher, mapTracer, cfg.CacheActiveTimeout, m) accounter := flow.NewAccounter(cfg.CacheMaxFlows, cfg.CacheActiveTimeout, time.Now, monotime.Now, m) limiter := flow.NewCapacityLimiter(m) - var deduper node.MiddleFunc[[]*flow.Record, []*flow.Record] + var deduper node.MiddleFunc[[]*model.Record, []*model.Record] if cfg.Deduper == DeduperFirstCome { deduper = flow.Dedupe(cfg.DeduperFCExpiry, cfg.DeduperJustMark, cfg.DeduperMerge, interfaceNamer, m) } @@ -321,7 +323,7 @@ func flowDirections(cfg *Config) (ingress, egress bool) { } } -func buildFlowExporter(cfg *Config, m *metrics.Metrics, s *ovnobserv.SampleDecoder) (node.TerminalFunc[[]*flow.Record], error) { +func buildFlowExporter(cfg *Config, m *metrics.Metrics, s *ovnobserv.SampleDecoder) (node.TerminalFunc[[]*model.Record], error) { switch cfg.Export { case "grpc": return buildGRPCExporter(cfg, m, s) @@ -338,7 +340,7 @@ func buildFlowExporter(cfg *Config, m *metrics.Metrics, s *ovnobserv.SampleDecod } } -func buildGRPCExporter(cfg *Config, m *metrics.Metrics, s *ovnobserv.SampleDecoder) (node.TerminalFunc[[]*flow.Record], error) { +func buildGRPCExporter(cfg *Config, m *metrics.Metrics, s *ovnobserv.SampleDecoder) (node.TerminalFunc[[]*model.Record], error) { if cfg.TargetHost == "" || cfg.TargetPort == 0 { return nil, fmt.Errorf("missing target host or port: %s:%d", cfg.TargetHost, cfg.TargetPort) @@ -350,7 +352,7 @@ func buildGRPCExporter(cfg *Config, m *metrics.Metrics, s *ovnobserv.SampleDecod return grpcExporter.ExportFlows, nil } -func buildFlowDirectFLPExporter(cfg *Config) (node.TerminalFunc[[]*flow.Record], error) { +func buildFlowDirectFLPExporter(cfg *Config) (node.TerminalFunc[[]*model.Record], error) { flpExporter, err := exporter.StartDirectFLP(cfg.FLPConfig, cfg.BuffersLength) if err != nil { return nil, err @@ -358,7 +360,7 @@ func buildFlowDirectFLPExporter(cfg *Config) (node.TerminalFunc[[]*flow.Record], return flpExporter.ExportFlows, nil } -func buildKafkaExporter(cfg *Config, m *metrics.Metrics, s *ovnobserv.SampleDecoder) (node.TerminalFunc[[]*flow.Record], error) { +func buildKafkaExporter(cfg *Config, m *metrics.Metrics, s *ovnobserv.SampleDecoder) (node.TerminalFunc[[]*model.Record], error) { if len(cfg.KafkaBrokers) == 0 { return nil, errors.New("at least one Kafka broker is needed") } @@ -409,7 +411,7 @@ func buildKafkaExporter(cfg *Config, m *metrics.Metrics, s *ovnobserv.SampleDeco }).ExportFlows, nil } -func buildIPFIXExporter(cfg *Config, proto string) (node.TerminalFunc[[]*flow.Record], error) { +func buildIPFIXExporter(cfg *Config, proto string) (node.TerminalFunc[[]*model.Record], error) { if cfg.TargetHost == "" || cfg.TargetPort == 0 { return nil, fmt.Errorf("missing target host or port: %s:%d", cfg.TargetHost, cfg.TargetPort) @@ -480,7 +482,7 @@ func (f *Flows) interfacesManager(ctx context.Context) error { // buildAndStartPipeline creates the ETL flow processing graph. // For a more visual view, check the docs/architecture.md document. -func (f *Flows) buildAndStartPipeline(ctx context.Context) (*node.Terminal[[]*flow.Record], error) { +func (f *Flows) buildAndStartPipeline(ctx context.Context) (*node.Terminal[[]*model.Record], error) { alog.Debug("registering interfaces' listener in background") err := f.interfacesManager(ctx) diff --git a/pkg/agent/agent_test.go b/pkg/agent/agent_test.go index 3f70586ee..3479d4373 100644 --- a/pkg/agent/agent_test.go +++ b/pkg/agent/agent_test.go @@ -9,8 +9,8 @@ import ( "github.com/gavv/monotime" test2 "github.com/mariomac/guara/pkg/test" "github.com/netobserv/netobserv-ebpf-agent/pkg/ebpf" - "github.com/netobserv/netobserv-ebpf-agent/pkg/flow" "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "github.com/netobserv/netobserv-ebpf-agent/pkg/test" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -76,7 +76,7 @@ func TestFlowsAgent_Deduplication(t *testing.T) { receivedKeys := map[ebpf.BpfFlowId]struct{}{} - var key1Flows []*flow.Record + var key1Flows []*model.Record for _, f := range exported { require.NotContains(t, receivedKeys, f.Id) receivedKeys[f.Id] = struct{}{} @@ -153,7 +153,7 @@ func TestFlowsAgent_Deduplication_None(t *testing.T) { assert.Len(t, exported, 3) receivedKeys := map[ebpf.BpfFlowId]struct{}{} - var key1Flows []*flow.Record + var key1Flows []*model.Record for _, f := range exported { require.NotContains(t, receivedKeys, f.Id) receivedKeys[f.Id] = struct{}{} diff --git a/pkg/agent/packets_agent.go b/pkg/agent/packets_agent.go index dc4373e4f..f2d3b03c5 100644 --- a/pkg/agent/packets_agent.go +++ b/pkg/agent/packets_agent.go @@ -7,11 +7,12 @@ import ( "net" "github.com/netobserv/gopipes/pkg/node" - "github.com/netobserv/netobserv-ebpf-agent/pkg/ebpf" "github.com/netobserv/netobserv-ebpf-agent/pkg/exporter" "github.com/netobserv/netobserv-ebpf-agent/pkg/flow" "github.com/netobserv/netobserv-ebpf-agent/pkg/ifaces" "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" + "github.com/netobserv/netobserv-ebpf-agent/pkg/tracer" "github.com/cilium/ebpf/perf" "github.com/sirupsen/logrus" @@ -29,7 +30,7 @@ type Packets struct { // processing nodes to be wired in the buildAndStartPipeline method perfTracer *flow.PerfTracer packetbuffer *flow.PerfBuffer - exporter node.TerminalFunc[[]*flow.PacketRecord] + exporter node.TerminalFunc[[]*model.PacketRecord] // elements used to decorate flows with extra information interfaceNamer flow.InterfaceNamer @@ -75,26 +76,26 @@ func PacketsAgent(cfg *Config) (*Packets, error) { if cfg.LogLevel == logrus.TraceLevel.String() || cfg.LogLevel == logrus.DebugLevel.String() { debug = true } - ebpfConfig := &ebpf.FlowFetcherConfig{ + ebpfConfig := &tracer.FlowFetcherConfig{ EnableIngress: ingress, EnableEgress: egress, Debug: debug, Sampling: cfg.Sampling, CacheMaxSize: cfg.CacheMaxFlows, EnablePCA: cfg.EnablePCA, - FilterConfig: &ebpf.FilterConfig{ + FilterConfig: &tracer.FilterConfig{ FilterAction: cfg.FilterAction, FilterDirection: cfg.FilterDirection, FilterIPCIDR: cfg.FilterIPCIDR, FilterProtocol: cfg.FilterProtocol, FilterPeerIP: cfg.FilterPeerIP, - FilterDestinationPort: ebpf.ConvertFilterPortsToInstr(cfg.FilterDestinationPort, cfg.FilterDestinationPortRange, cfg.FilterDestinationPorts), - FilterSourcePort: ebpf.ConvertFilterPortsToInstr(cfg.FilterSourcePort, cfg.FilterSourcePortRange, cfg.FilterSourcePorts), - FilterPort: ebpf.ConvertFilterPortsToInstr(cfg.FilterPort, cfg.FilterPortRange, cfg.FilterPorts), + FilterDestinationPort: tracer.ConvertFilterPortsToInstr(cfg.FilterDestinationPort, cfg.FilterDestinationPortRange, cfg.FilterDestinationPorts), + FilterSourcePort: tracer.ConvertFilterPortsToInstr(cfg.FilterSourcePort, cfg.FilterSourcePortRange, cfg.FilterSourcePorts), + FilterPort: tracer.ConvertFilterPortsToInstr(cfg.FilterPort, cfg.FilterPortRange, cfg.FilterPorts), }, } - fetcher, err := ebpf.NewPacketFetcher(ebpfConfig) + fetcher, err := tracer.NewPacketFetcher(ebpfConfig) if err != nil { return nil, err } @@ -106,7 +107,7 @@ func PacketsAgent(cfg *Config) (*Packets, error) { func packetsAgent(cfg *Config, informer ifaces.Informer, fetcher ebpfPacketFetcher, - packetexporter node.TerminalFunc[[]*flow.PacketRecord], + packetexporter node.TerminalFunc[[]*model.PacketRecord], agentIP net.IP, ) (*Packets, error) { var filter InterfaceFilter @@ -159,7 +160,7 @@ func packetsAgent(cfg *Config, }, nil } -func buildGRPCPacketExporter(cfg *Config) (node.TerminalFunc[[]*flow.PacketRecord], error) { +func buildGRPCPacketExporter(cfg *Config) (node.TerminalFunc[[]*model.PacketRecord], error) { if cfg.TargetHost == "" || cfg.TargetPort == 0 { return nil, fmt.Errorf("missing target host or port for PCA: %s:%d", cfg.TargetHost, cfg.TargetPort) @@ -173,7 +174,7 @@ func buildGRPCPacketExporter(cfg *Config) (node.TerminalFunc[[]*flow.PacketRecor return pcapStreamer.ExportGRPCPackets, nil } -func buildPacketExporter(cfg *Config) (node.TerminalFunc[[]*flow.PacketRecord], error) { +func buildPacketExporter(cfg *Config) (node.TerminalFunc[[]*model.PacketRecord], error) { switch cfg.Export { case "grpc": return buildGRPCPacketExporter(cfg) @@ -184,7 +185,7 @@ func buildPacketExporter(cfg *Config) (node.TerminalFunc[[]*flow.PacketRecord], } } -func buildPacketDirectFLPExporter(cfg *Config) (node.TerminalFunc[[]*flow.PacketRecord], error) { +func buildPacketDirectFLPExporter(cfg *Config) (node.TerminalFunc[[]*model.PacketRecord], error) { flpExporter, err := exporter.StartDirectFLP(cfg.FLPConfig, cfg.BuffersLength) if err != nil { return nil, err @@ -238,7 +239,7 @@ func (p *Packets) interfacesManager(ctx context.Context) error { return nil } -func (p *Packets) buildAndStartPipeline(ctx context.Context) (*node.Terminal[[]*flow.PacketRecord], error) { +func (p *Packets) buildAndStartPipeline(ctx context.Context) (*node.Terminal[[]*model.PacketRecord], error) { plog.Debug("registering interfaces' listener in background") err := p.interfacesManager(ctx) diff --git a/pkg/decode/decode_protobuf.go b/pkg/decode/decode_protobuf.go index 51f159a2b..e72dd0b02 100644 --- a/pkg/decode/decode_protobuf.go +++ b/pkg/decode/decode_protobuf.go @@ -1,17 +1,14 @@ package decode import ( - "encoding/base64" "fmt" "syscall" "time" "github.com/netobserv/flowlogs-pipeline/pkg/config" - "github.com/netobserv/netobserv-ebpf-agent/pkg/flow" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "github.com/netobserv/netobserv-ebpf-agent/pkg/pbflow" - "github.com/google/gopacket" - "github.com/google/gopacket/layers" "github.com/mdlayher/ethernet" log "github.com/sirupsen/logrus" "google.golang.org/protobuf/proto" @@ -54,12 +51,12 @@ func PBFlowToMap(pb *pbflow.Record) config.GenericMap { // RecordToMap converts the flow from Agent inner model into FLP GenericMap model // nolint:golint,cyclop -func RecordToMap(fr *flow.Record) config.GenericMap { +func RecordToMap(fr *model.Record) config.GenericMap { if fr == nil { return config.GenericMap{} } - srcMAC := flow.MacAddr(fr.Id.SrcMac) - dstMAC := flow.MacAddr(fr.Id.DstMac) + srcMAC := model.MacAddr(fr.Id.SrcMac) + dstMAC := model.MacAddr(fr.Id.DstMac) out := config.GenericMap{ "SrcMac": srcMAC.String(), "DstMac": dstMAC.String(), @@ -88,7 +85,7 @@ func RecordToMap(fr *flow.Record) config.GenericMap { for _, m := range fr.DupList { for key, value := range m { interfaces = append(interfaces, key) - directions = append(directions, int(flow.Direction(value))) + directions = append(directions, int(model.Direction(value))) } } } else { @@ -99,8 +96,8 @@ func RecordToMap(fr *flow.Record) config.GenericMap { out["IfDirections"] = directions if fr.Id.EthProtocol == uint16(ethernet.EtherTypeIPv4) || fr.Id.EthProtocol == uint16(ethernet.EtherTypeIPv6) { - out["SrcAddr"] = flow.IP(fr.Id.SrcIp).String() - out["DstAddr"] = flow.IP(fr.Id.DstIp).String() + out["SrcAddr"] = model.IP(fr.Id.SrcIp).String() + out["DstAddr"] = model.IP(fr.Id.DstIp).String() out["Proto"] = fr.Id.TransportProtocol out["Dscp"] = fr.Metrics.Dscp @@ -149,71 +146,6 @@ func RecordToMap(fr *flow.Record) config.GenericMap { return out } -func PacketToMap(pr *flow.PacketRecord) config.GenericMap { - out := config.GenericMap{} - - if pr == nil { - return out - } - - packet := gopacket.NewPacket(pr.Stream, layers.LayerTypeEthernet, gopacket.Lazy) - if ethLayer := packet.Layer(layers.LayerTypeEthernet); ethLayer != nil { - eth, _ := ethLayer.(*layers.Ethernet) - out["SrcMac"] = eth.SrcMAC.String() - out["DstMac"] = eth.DstMAC.String() - } - - if tcpLayer := packet.Layer(layers.LayerTypeTCP); tcpLayer != nil { - tcp, _ := tcpLayer.(*layers.TCP) - out["SrcPort"] = tcp.SrcPort.String() - out["DstPort"] = tcp.DstPort.String() - } else if udpLayer := packet.Layer(layers.LayerTypeUDP); udpLayer != nil { - udp, _ := udpLayer.(*layers.UDP) - out["SrcPort"] = udp.SrcPort.String() - out["DstPort"] = udp.DstPort.String() - } else if sctpLayer := packet.Layer(layers.LayerTypeSCTP); sctpLayer != nil { - sctp, _ := sctpLayer.(*layers.SCTP) - out["SrcPort"] = sctp.SrcPort.String() - out["DstPort"] = sctp.DstPort.String() - } - - if ipv4Layer := packet.Layer(layers.LayerTypeIPv4); ipv4Layer != nil { - ipv4, _ := ipv4Layer.(*layers.IPv4) - out["SrcAddr"] = ipv4.SrcIP.String() - out["DstAddr"] = ipv4.DstIP.String() - out["Proto"] = ipv4.Protocol - } else if ipv6Layer := packet.Layer(layers.LayerTypeIPv6); ipv6Layer != nil { - ipv6, _ := ipv6Layer.(*layers.IPv6) - out["SrcAddr"] = ipv6.SrcIP.String() - out["DstAddr"] = ipv6.DstIP.String() - out["Proto"] = ipv6.NextHeader - } - - if icmpv4Layer := packet.Layer(layers.LayerTypeICMPv4); icmpv4Layer != nil { - icmpv4, _ := icmpv4Layer.(*layers.ICMPv4) - out["IcmpType"] = icmpv4.TypeCode.Type() - out["IcmpCode"] = icmpv4.TypeCode.Code() - } else if icmpv6Layer := packet.Layer(layers.LayerTypeICMPv6); icmpv6Layer != nil { - icmpv6, _ := icmpv6Layer.(*layers.ICMPv6) - out["IcmpType"] = icmpv6.TypeCode.Type() - out["IcmpCode"] = icmpv6.TypeCode.Code() - } - - if dnsLayer := packet.Layer(layers.LayerTypeDNS); dnsLayer != nil { - dns, _ := dnsLayer.(*layers.DNS) - out["DnsId"] = dns.ID - out["DnsFlagsResponseCode"] = dns.ResponseCode.String() - //TODO: add DNS questions / answers / authorities - } - - out["Bytes"] = len(pr.Stream) - // Data is base64 encoded to avoid marshal / unmarshal issues - out["Data"] = base64.StdEncoding.EncodeToString(packet.Data()) - out["Time"] = pr.Time.Unix() - - return out -} - // TCPStateToStr is based on kernel TCP state definition // https://elixir.bootlin.com/linux/v6.3/source/include/net/tcp_states.h#L12 func TCPStateToStr(state uint32) string { diff --git a/pkg/decode/packets/decode_protobuf_packets.go b/pkg/decode/packets/decode_protobuf_packets.go new file mode 100644 index 000000000..ee8be8cdf --- /dev/null +++ b/pkg/decode/packets/decode_protobuf_packets.go @@ -0,0 +1,76 @@ +package packets + +import ( + "encoding/base64" + + "github.com/netobserv/flowlogs-pipeline/pkg/config" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" + + "github.com/gopacket/gopacket" + "github.com/gopacket/gopacket/layers" +) + +func PacketToMap(pr *model.PacketRecord) config.GenericMap { + out := config.GenericMap{} + + if pr == nil { + return out + } + + packet := gopacket.NewPacket(pr.Stream, layers.LayerTypeEthernet, gopacket.Lazy) + if ethLayer := packet.Layer(layers.LayerTypeEthernet); ethLayer != nil { + eth, _ := ethLayer.(*layers.Ethernet) + out["SrcMac"] = eth.SrcMAC.String() + out["DstMac"] = eth.DstMAC.String() + } + + if tcpLayer := packet.Layer(layers.LayerTypeTCP); tcpLayer != nil { + tcp, _ := tcpLayer.(*layers.TCP) + out["SrcPort"] = tcp.SrcPort.String() + out["DstPort"] = tcp.DstPort.String() + } else if udpLayer := packet.Layer(layers.LayerTypeUDP); udpLayer != nil { + udp, _ := udpLayer.(*layers.UDP) + out["SrcPort"] = udp.SrcPort.String() + out["DstPort"] = udp.DstPort.String() + } else if sctpLayer := packet.Layer(layers.LayerTypeSCTP); sctpLayer != nil { + sctp, _ := sctpLayer.(*layers.SCTP) + out["SrcPort"] = sctp.SrcPort.String() + out["DstPort"] = sctp.DstPort.String() + } + + if ipv4Layer := packet.Layer(layers.LayerTypeIPv4); ipv4Layer != nil { + ipv4, _ := ipv4Layer.(*layers.IPv4) + out["SrcAddr"] = ipv4.SrcIP.String() + out["DstAddr"] = ipv4.DstIP.String() + out["Proto"] = ipv4.Protocol + } else if ipv6Layer := packet.Layer(layers.LayerTypeIPv6); ipv6Layer != nil { + ipv6, _ := ipv6Layer.(*layers.IPv6) + out["SrcAddr"] = ipv6.SrcIP.String() + out["DstAddr"] = ipv6.DstIP.String() + out["Proto"] = ipv6.NextHeader + } + + if icmpv4Layer := packet.Layer(layers.LayerTypeICMPv4); icmpv4Layer != nil { + icmpv4, _ := icmpv4Layer.(*layers.ICMPv4) + out["IcmpType"] = icmpv4.TypeCode.Type() + out["IcmpCode"] = icmpv4.TypeCode.Code() + } else if icmpv6Layer := packet.Layer(layers.LayerTypeICMPv6); icmpv6Layer != nil { + icmpv6, _ := icmpv6Layer.(*layers.ICMPv6) + out["IcmpType"] = icmpv6.TypeCode.Type() + out["IcmpCode"] = icmpv6.TypeCode.Code() + } + + if dnsLayer := packet.Layer(layers.LayerTypeDNS); dnsLayer != nil { + dns, _ := dnsLayer.(*layers.DNS) + out["DnsId"] = dns.ID + out["DnsFlagsResponseCode"] = dns.ResponseCode.String() + //TODO: add DNS questions / answers / authorities + } + + out["Bytes"] = len(pr.Stream) + // Data is base64 encoded to avoid marshal / unmarshal issues + out["Data"] = base64.StdEncoding.EncodeToString(packet.Data()) + out["Time"] = pr.Time.Unix() + + return out +} diff --git a/pkg/ebpf/gen.go b/pkg/ebpf/gen.go new file mode 100644 index 000000000..a21e44a88 --- /dev/null +++ b/pkg/ebpf/gen.go @@ -0,0 +1,4 @@ +package ebpf + +// $BPF_CLANG and $BPF_CFLAGS are set by the Makefile. +//go:generate bpf2go -cc $BPF_CLANG -cflags $BPF_CFLAGS -target amd64,arm64,ppc64le,s390x -type flow_metrics_t -type flow_id_t -type flow_record_t -type pkt_drops_t -type dns_record_t -type global_counters_key_t -type direction_t -type filter_action_t -type tcp_flags_t Bpf ../../bpf/flows.c -- -I../../bpf/headers diff --git a/pkg/exporter/converters_test.go b/pkg/exporter/converters_test.go index 3c2e79a65..29ebf1945 100644 --- a/pkg/exporter/converters_test.go +++ b/pkg/exporter/converters_test.go @@ -9,7 +9,7 @@ import ( "github.com/netobserv/flowlogs-pipeline/pkg/utils" "github.com/netobserv/netobserv-ebpf-agent/pkg/decode" "github.com/netobserv/netobserv-ebpf-agent/pkg/ebpf" - "github.com/netobserv/netobserv-ebpf-agent/pkg/flow" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "github.com/netobserv/netobserv-ebpf-agent/pkg/pbflow" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -24,20 +24,20 @@ func TestConversions(t *testing.T) { tests := []struct { name string - flow *flow.Record + flow *model.Record expected *config.GenericMap }{ { name: "TCP record", - flow: &flow.Record{ - RawRecord: flow.RawRecord{ + flow: &model.Record{ + RawRecord: model.RawRecord{ Id: ebpf.BpfFlowId{ EthProtocol: 2048, - Direction: flow.DirectionEgress, - SrcMac: flow.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, - DstMac: flow.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, - SrcIp: flow.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x06, 0x07, 0x08, 0x09}, - DstIp: flow.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x0b, 0x0c, 0x0d}, + Direction: model.DirectionEgress, + SrcMac: model.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, + DstMac: model.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, + SrcIp: model.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x06, 0x07, 0x08, 0x09}, + DstIp: model.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x0b, 0x0c, 0x0d}, SrcPort: 23000, DstPort: 443, TransportProtocol: 6, @@ -80,15 +80,15 @@ func TestConversions(t *testing.T) { }, { name: "UDP record", - flow: &flow.Record{ - RawRecord: flow.RawRecord{ + flow: &model.Record{ + RawRecord: model.RawRecord{ Id: ebpf.BpfFlowId{ EthProtocol: 2048, - Direction: flow.DirectionEgress, - SrcMac: flow.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, - DstMac: flow.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, - SrcIp: flow.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x06, 0x07, 0x08, 0x09}, - DstIp: flow.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x0b, 0x0c, 0x0d}, + Direction: model.DirectionEgress, + SrcMac: model.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, + DstMac: model.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, + SrcIp: model.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x06, 0x07, 0x08, 0x09}, + DstIp: model.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x0b, 0x0c, 0x0d}, SrcPort: 23000, DstPort: 443, TransportProtocol: 17, @@ -126,15 +126,15 @@ func TestConversions(t *testing.T) { }, { name: "ICMPv4 record", - flow: &flow.Record{ - RawRecord: flow.RawRecord{ + flow: &model.Record{ + RawRecord: model.RawRecord{ Id: ebpf.BpfFlowId{ EthProtocol: 2048, - Direction: flow.DirectionEgress, - SrcMac: flow.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, - DstMac: flow.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, - SrcIp: flow.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x06, 0x07, 0x08, 0x09}, - DstIp: flow.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x0b, 0x0c, 0x0d}, + Direction: model.DirectionEgress, + SrcMac: model.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, + DstMac: model.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, + SrcIp: model.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x06, 0x07, 0x08, 0x09}, + DstIp: model.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x0b, 0x0c, 0x0d}, TransportProtocol: 1, IcmpType: 8, IcmpCode: 0, @@ -172,15 +172,15 @@ func TestConversions(t *testing.T) { }, { name: "ICMPv6 record", - flow: &flow.Record{ - RawRecord: flow.RawRecord{ + flow: &model.Record{ + RawRecord: model.RawRecord{ Id: ebpf.BpfFlowId{ EthProtocol: 0x86dd, - Direction: flow.DirectionEgress, - SrcMac: flow.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, - DstMac: flow.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, - SrcIp: flow.IPAddr{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}, - DstIp: flow.IPAddr{11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26}, + Direction: model.DirectionEgress, + SrcMac: model.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, + DstMac: model.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, + SrcIp: model.IPAddr{1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16}, + DstIp: model.IPAddr{11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26}, TransportProtocol: 58, IcmpType: 8, IcmpCode: 0, @@ -218,15 +218,15 @@ func TestConversions(t *testing.T) { }, { name: "ARP layer2", - flow: &flow.Record{ - RawRecord: flow.RawRecord{ + flow: &model.Record{ + RawRecord: model.RawRecord{ Id: ebpf.BpfFlowId{ EthProtocol: 2054, // ARP protocol - Direction: flow.DirectionEgress, - SrcMac: flow.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, - DstMac: flow.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, - SrcIp: flow.IPAddr{}, - DstIp: flow.IPAddr{}, + Direction: model.DirectionEgress, + SrcMac: model.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, + DstMac: model.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, + SrcIp: model.IPAddr{}, + DstIp: model.IPAddr{}, SrcPort: 0, DstPort: 0, TransportProtocol: 0, @@ -258,15 +258,15 @@ func TestConversions(t *testing.T) { }, { name: "L2 drops", - flow: &flow.Record{ - RawRecord: flow.RawRecord{ + flow: &model.Record{ + RawRecord: model.RawRecord{ Id: ebpf.BpfFlowId{ EthProtocol: 2054, // ARP protocol - Direction: flow.DirectionEgress, - SrcMac: flow.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, - DstMac: flow.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, - SrcIp: flow.IPAddr{}, - DstIp: flow.IPAddr{}, + Direction: model.DirectionEgress, + SrcMac: model.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, + DstMac: model.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, + SrcIp: model.IPAddr{}, + DstIp: model.IPAddr{}, SrcPort: 0, DstPort: 0, TransportProtocol: 0, @@ -308,15 +308,15 @@ func TestConversions(t *testing.T) { }, { name: "TCP + drop + DNS + RTT record", - flow: &flow.Record{ - RawRecord: flow.RawRecord{ + flow: &model.Record{ + RawRecord: model.RawRecord{ Id: ebpf.BpfFlowId{ EthProtocol: 2048, - Direction: flow.DirectionEgress, - SrcMac: flow.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, - DstMac: flow.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, - SrcIp: flow.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x06, 0x07, 0x08, 0x09}, - DstIp: flow.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x0b, 0x0c, 0x0d}, + Direction: model.DirectionEgress, + SrcMac: model.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, + DstMac: model.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, + SrcIp: model.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x06, 0x07, 0x08, 0x09}, + DstIp: model.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x0b, 0x0c, 0x0d}, SrcPort: 23000, DstPort: 443, TransportProtocol: 6, @@ -381,15 +381,15 @@ func TestConversions(t *testing.T) { }, { name: "Multiple interfaces record", - flow: &flow.Record{ - RawRecord: flow.RawRecord{ + flow: &model.Record{ + RawRecord: model.RawRecord{ Id: ebpf.BpfFlowId{ EthProtocol: 2048, - Direction: flow.DirectionEgress, - SrcMac: flow.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, - DstMac: flow.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, - SrcIp: flow.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x06, 0x07, 0x08, 0x09}, - DstIp: flow.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x0b, 0x0c, 0x0d}, + Direction: model.DirectionEgress, + SrcMac: model.MacAddr{0x04, 0x05, 0x06, 0x07, 0x08, 0x09}, + DstMac: model.MacAddr{0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f}, + SrcIp: model.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x06, 0x07, 0x08, 0x09}, + DstIp: model.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0a, 0x0b, 0x0c, 0x0d}, SrcPort: 23000, DstPort: 443, TransportProtocol: 6, diff --git a/pkg/exporter/direct_flp.go b/pkg/exporter/direct_flp.go index 57814316f..3f8822b23 100644 --- a/pkg/exporter/direct_flp.go +++ b/pkg/exporter/direct_flp.go @@ -6,7 +6,8 @@ import ( flpconfig "github.com/netobserv/flowlogs-pipeline/pkg/config" "github.com/netobserv/flowlogs-pipeline/pkg/pipeline" "github.com/netobserv/netobserv-ebpf-agent/pkg/decode" - "github.com/netobserv/netobserv-ebpf-agent/pkg/flow" + "github.com/netobserv/netobserv-ebpf-agent/pkg/decode/packets" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "gopkg.in/yaml.v2" ) @@ -35,9 +36,9 @@ func StartDirectFLP(jsonConfig string, bufLen int) (*DirectFLP, error) { return &DirectFLP{fwd: fwd}, nil } -// ExportFlows accepts slices of *flow.Record by its input channel, converts them +// ExportFlows accepts slices of *model.Record by its input channel, converts them // to *pbflow.Records instances, and submits them to the collector. -func (d *DirectFLP) ExportFlows(input <-chan []*flow.Record) { +func (d *DirectFLP) ExportFlows(input <-chan []*model.Record) { for inputRecords := range input { for _, rec := range inputRecords { d.fwd <- decode.RecordToMap(rec) @@ -45,13 +46,13 @@ func (d *DirectFLP) ExportFlows(input <-chan []*flow.Record) { } } -// ExportPackets accepts slices of *flow.PacketRecord by its input channel, converts them +// ExportPackets accepts slices of *model.PacketRecord by its input channel, converts them // to *pbflow.Records instances, and submits them to the collector. -func (d *DirectFLP) ExportPackets(input <-chan []*flow.PacketRecord) { +func (d *DirectFLP) ExportPackets(input <-chan []*model.PacketRecord) { for inputPackets := range input { for _, packet := range inputPackets { if len(packet.Stream) != 0 { - d.fwd <- decode.PacketToMap(packet) + d.fwd <- packets.PacketToMap(packet) } } } diff --git a/pkg/exporter/direct_flp_test.go b/pkg/exporter/direct_flp_test.go index 9659b5406..d0a4913b5 100644 --- a/pkg/exporter/direct_flp_test.go +++ b/pkg/exporter/direct_flp_test.go @@ -8,7 +8,7 @@ import ( "testing" "time" - "github.com/netobserv/netobserv-ebpf-agent/pkg/flow" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) @@ -41,9 +41,9 @@ parameters: }() // Send some flows to the input of the exporter stage - flows := make(chan []*flow.Record, 10) + flows := make(chan []*model.Record, 10) go flp.ExportFlows(flows) - flows <- []*flow.Record{ + flows <- []*model.Record{ {AgentIP: net.ParseIP("10.9.8.7")}, } diff --git a/pkg/exporter/grpc_packets.go b/pkg/exporter/grpc_packets.go index e75ca02ce..b78ce1e34 100644 --- a/pkg/exporter/grpc_packets.go +++ b/pkg/exporter/grpc_packets.go @@ -4,10 +4,10 @@ import ( "context" "time" - "github.com/netobserv/netobserv-ebpf-agent/pkg/flow" grpc "github.com/netobserv/netobserv-ebpf-agent/pkg/grpc/packet" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "github.com/netobserv/netobserv-ebpf-agent/pkg/pbpacket" - "github.com/netobserv/netobserv-ebpf-agent/pkg/utils" + "github.com/netobserv/netobserv-ebpf-agent/pkg/utils/packets" "github.com/sirupsen/logrus" "google.golang.org/protobuf/types/known/anypb" @@ -23,7 +23,7 @@ var gplog = logrus.WithField("component", "packet/GRPCPackets") // WritePacket writes the given packet data out to gRPC. func writeGRPCPacket(time time.Time, data []byte, conn *grpc.ClientConnection) error { - bytes, err := utils.GetPacketBytesWithHeader(time, data) + bytes, err := packets.GetPacketBytesWithHeader(time, data) if err != nil { return err } @@ -47,7 +47,7 @@ func StartGRPCPacketSend(hostIP string, hostPort int) (*GRPCPacketProto, error) }, nil } -func (p *GRPCPacketProto) ExportGRPCPackets(in <-chan []*flow.PacketRecord) { +func (p *GRPCPacketProto) ExportGRPCPackets(in <-chan []*model.PacketRecord) { for packetRecord := range in { var errs []error for _, packet := range packetRecord { diff --git a/pkg/exporter/grpc_proto.go b/pkg/exporter/grpc_proto.go index 5cbf8f21e..761f0053c 100644 --- a/pkg/exporter/grpc_proto.go +++ b/pkg/exporter/grpc_proto.go @@ -3,9 +3,9 @@ package exporter import ( "context" - "github.com/netobserv/netobserv-ebpf-agent/pkg/flow" grpc "github.com/netobserv/netobserv-ebpf-agent/pkg/grpc/flow" "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "github.com/netobserv/netobserv-ebpf-agent/pkg/pbflow" "github.com/netobserv/netobserv-ebpf-agent/pkg/utils" @@ -18,7 +18,7 @@ var glog = logrus.WithField("component", "exporter/GRPCProto") const componentGRPC = "grpc" -// GRPCProto flow exporter. Its ExportFlows method accepts slices of *flow.Record +// GRPCProto flow exporter. Its ExportFlows method accepts slices of *model.Record // by its input channel, converts them to *pbflow.Records instances, and submits // them to the collector. type GRPCProto struct { @@ -50,9 +50,9 @@ func StartGRPCProto(hostIP string, hostPort int, maxFlowsPerMessage int, m *metr }, nil } -// ExportFlows accepts slices of *flow.Record by its input channel, converts them +// ExportFlows accepts slices of *model.Record by its input channel, converts them // to *pbflow.Records instances, and submits them to the collector. -func (g *GRPCProto) ExportFlows(input <-chan []*flow.Record) { +func (g *GRPCProto) ExportFlows(input <-chan []*model.Record) { socket := utils.GetSocket(g.hostIP, g.hostPort) log := glog.WithField("collector", socket) for inputRecords := range input { diff --git a/pkg/exporter/grpc_proto_test.go b/pkg/exporter/grpc_proto_test.go index 4000182d0..783a47a48 100644 --- a/pkg/exporter/grpc_proto_test.go +++ b/pkg/exporter/grpc_proto_test.go @@ -6,13 +6,13 @@ import ( "time" "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" + "github.com/netobserv/netobserv-ebpf-agent/pkg/pbflow" test2 "github.com/netobserv/netobserv-ebpf-agent/pkg/test" "github.com/mariomac/guara/pkg/test" "github.com/netobserv/netobserv-ebpf-agent/pkg/ebpf" - "github.com/netobserv/netobserv-ebpf-agent/pkg/flow" grpc "github.com/netobserv/netobserv-ebpf-agent/pkg/grpc/flow" - "github.com/netobserv/netobserv-ebpf-agent/pkg/pbflow" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) @@ -33,12 +33,12 @@ func TestIPv4GRPCProto_ExportFlows_AgentIP(t *testing.T) { require.NoError(t, err) // Send some flows to the input of the exporter stage - flows := make(chan []*flow.Record, 10) - flows <- []*flow.Record{ + flows := make(chan []*model.Record, 10) + flows <- []*model.Record{ {AgentIP: net.ParseIP("10.9.8.7")}, } - flows <- []*flow.Record{ - {RawRecord: flow.RawRecord{Id: ebpf.BpfFlowId{EthProtocol: flow.IPv6Type}}, + flows <- []*model.Record{ + {RawRecord: model.RawRecord{Id: ebpf.BpfFlowId{EthProtocol: model.IPv6Type}}, AgentIP: net.ParseIP("8888::1111")}, } go exporter.ExportFlows(flows) @@ -75,12 +75,12 @@ func TestIPv6GRPCProto_ExportFlows_AgentIP(t *testing.T) { require.NoError(t, err) // Send some flows to the input of the exporter stage - flows := make(chan []*flow.Record, 10) - flows <- []*flow.Record{ + flows := make(chan []*model.Record, 10) + flows <- []*model.Record{ {AgentIP: net.ParseIP("10.11.12.13")}, } - flows <- []*flow.Record{ - {RawRecord: flow.RawRecord{Id: ebpf.BpfFlowId{EthProtocol: flow.IPv6Type}}, + flows <- []*model.Record{ + {RawRecord: model.RawRecord{Id: ebpf.BpfFlowId{EthProtocol: model.IPv6Type}}, AgentIP: net.ParseIP("9999::2222")}, } go exporter.ExportFlows(flows) @@ -118,11 +118,11 @@ func TestGRPCProto_SplitLargeMessages(t *testing.T) { require.NoError(t, err) // Send a message much longer than the limit length - flows := make(chan []*flow.Record, 10) - var input []*flow.Record + flows := make(chan []*model.Record, 10) + var input []*model.Record for i := 0; i < 25000; i++ { - input = append(input, &flow.Record{RawRecord: flow.RawRecord{Id: ebpf.BpfFlowId{ - EthProtocol: flow.IPv6Type, + input = append(input, &model.Record{RawRecord: model.RawRecord{Id: ebpf.BpfFlowId{ + EthProtocol: model.IPv6Type, }}, AgentIP: net.ParseIP("1111::1111"), Interface: "12345678"}) } flows <- input diff --git a/pkg/exporter/ipfix.go b/pkg/exporter/ipfix.go index e3066a755..c6ae9a5cb 100644 --- a/pkg/exporter/ipfix.go +++ b/pkg/exporter/ipfix.go @@ -3,7 +3,7 @@ package exporter import ( "net" - "github.com/netobserv/netobserv-ebpf-agent/pkg/flow" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "github.com/netobserv/netobserv-ebpf-agent/pkg/utils" "github.com/sirupsen/logrus" "github.com/vmware/go-ipfix/pkg/entities" @@ -269,7 +269,7 @@ func setIPv4Address(ieValPtr *entities.InfoElementWithValue, ipAddress net.IP) { ieVal.SetIPAddressValue(ipAddress) } } -func setIERecordValue(record *flow.Record, ieValPtr *entities.InfoElementWithValue) { +func setIERecordValue(record *model.Record, ieValPtr *entities.InfoElementWithValue) { ieVal := *ieValPtr switch ieVal.GetName() { case "octetDeltaCount": @@ -290,7 +290,7 @@ func setIERecordValue(record *flow.Record, ieValPtr *entities.InfoElementWithVal ieVal.SetStringValue(record.Interface) } } -func setIEValue(record *flow.Record, ieValPtr *entities.InfoElementWithValue) { +func setIEValue(record *model.Record, ieValPtr *entities.InfoElementWithValue) { ieVal := *ieValPtr switch ieVal.GetName() { case "ethernetType": @@ -302,9 +302,9 @@ func setIEValue(record *flow.Record, ieValPtr *entities.InfoElementWithValue) { case "destinationMacAddress": ieVal.SetMacAddressValue(record.Id.DstMac[:]) case "sourceIPv4Address": - setIPv4Address(ieValPtr, flow.IP(record.Id.SrcIp).To4()) + setIPv4Address(ieValPtr, model.IP(record.Id.SrcIp).To4()) case "destinationIPv4Address": - setIPv4Address(ieValPtr, flow.IP(record.Id.DstIp).To4()) + setIPv4Address(ieValPtr, model.IP(record.Id.DstIp).To4()) case "sourceIPv6Address": ieVal.SetIPAddressValue(record.Id.SrcIp[:]) case "destinationIPv6Address": @@ -321,13 +321,13 @@ func setIEValue(record *flow.Record, ieValPtr *entities.InfoElementWithValue) { ieVal.SetUnsigned8Value(record.Id.IcmpCode) } } -func setEntities(record *flow.Record, elements *[]entities.InfoElementWithValue) { +func setEntities(record *model.Record, elements *[]entities.InfoElementWithValue) { for _, ieVal := range *elements { setIEValue(record, &ieVal) setIERecordValue(record, &ieVal) } } -func (ipf *IPFIX) sendDataRecord(_ *logrus.Entry, record *flow.Record, v6 bool) error { +func (ipf *IPFIX) sendDataRecord(_ *logrus.Entry, record *model.Record, v6 bool) error { dataSet := entities.NewSet(false) var templateID uint16 if v6 { @@ -359,14 +359,14 @@ func (ipf *IPFIX) sendDataRecord(_ *logrus.Entry, record *flow.Record, v6 bool) return nil } -// ExportFlows accepts slices of *flow.Record by its input channel, converts them +// ExportFlows accepts slices of *model.Record by its input channel, converts them // to IPFIX Records, and submits them to the collector. -func (ipf *IPFIX) ExportFlows(input <-chan []*flow.Record) { +func (ipf *IPFIX) ExportFlows(input <-chan []*model.Record) { socket := utils.GetSocket(ipf.hostIP, ipf.hostPort) log := ilog.WithField("collector", socket) for inputRecords := range input { for _, record := range inputRecords { - if record.Id.EthProtocol == flow.IPv6Type { + if record.Id.EthProtocol == model.IPv6Type { err := ipf.sendDataRecord(log, record, true) if err != nil { log.WithError(err).Error("Failed in send IPFIX data record") diff --git a/pkg/exporter/kafka_proto.go b/pkg/exporter/kafka_proto.go index 636c454aa..2483afb5c 100644 --- a/pkg/exporter/kafka_proto.go +++ b/pkg/exporter/kafka_proto.go @@ -3,8 +3,8 @@ package exporter import ( "context" - "github.com/netobserv/netobserv-ebpf-agent/pkg/flow" "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "github.com/netobserv/netobserv-ebpf-agent/pkg/pbflow" ovnobserv "github.com/ovn-org/ovn-kubernetes/go-controller/observability-lib/sampledecoder" @@ -29,14 +29,14 @@ type KafkaProto struct { SampleDecoder *ovnobserv.SampleDecoder } -func (kp *KafkaProto) ExportFlows(input <-chan []*flow.Record) { +func (kp *KafkaProto) ExportFlows(input <-chan []*model.Record) { klog.Info("starting Kafka exporter") for records := range input { kp.batchAndSubmit(records) } } -func getFlowKey(record *flow.Record) []byte { +func getFlowKey(record *model.Record) []byte { // We are sorting IP address so flows from on ip to a second IP get the same key whatever the direction is for k := range record.Id.SrcIp { if record.Id.SrcIp[k] < record.Id.DstIp[k] { @@ -48,7 +48,7 @@ func getFlowKey(record *flow.Record) []byte { return append(record.Id.SrcIp[:], record.Id.DstIp[:]...) } -func (kp *KafkaProto) batchAndSubmit(records []*flow.Record) { +func (kp *KafkaProto) batchAndSubmit(records []*model.Record) { klog.Debugf("sending %d records", len(records)) msgs := make([]kafkago.Message, 0, len(records)) for _, record := range records { @@ -70,7 +70,7 @@ func (kp *KafkaProto) batchAndSubmit(records []*flow.Record) { } type JSONRecord struct { - *flow.Record + *model.Record TimeFlowStart int64 TimeFlowEnd int64 TimeFlowStartMs int64 diff --git a/pkg/exporter/kafka_proto_test.go b/pkg/exporter/kafka_proto_test.go index 39a2578bf..9f4d11f36 100644 --- a/pkg/exporter/kafka_proto_test.go +++ b/pkg/exporter/kafka_proto_test.go @@ -6,8 +6,8 @@ import ( "testing" "time" - "github.com/netobserv/netobserv-ebpf-agent/pkg/flow" "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "github.com/netobserv/netobserv-ebpf-agent/pkg/pbflow" kafkago "github.com/segmentio/kafka-go" @@ -27,14 +27,14 @@ func TestProtoConversion(t *testing.T) { m := metrics.NewMetrics(&metrics.Settings{}) kj := KafkaProto{Writer: &wc, Metrics: m} - input := make(chan []*flow.Record, 11) - record := flow.Record{} + input := make(chan []*model.Record, 11) + record := model.Record{} record.Id.EthProtocol = 3 record.Id.Direction = 1 record.Id.SrcMac = [...]byte{0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff} record.Id.DstMac = [...]byte{0x11, 0x22, 0x33, 0x44, 0x55, 0x66} - record.Id.SrcIp = flow.IPAddrFromNetIP(net.ParseIP("192.1.2.3")) - record.Id.DstIp = flow.IPAddrFromNetIP(net.ParseIP("127.3.2.1")) + record.Id.SrcIp = model.IPAddrFromNetIP(net.ParseIP("192.1.2.3")) + record.Id.DstIp = model.IPAddrFromNetIP(net.ParseIP("127.3.2.1")) record.Id.SrcPort = 4321 record.Id.DstPort = 1234 record.Id.IcmpType = 8 @@ -46,7 +46,7 @@ func TestProtoConversion(t *testing.T) { record.Metrics.Flags = uint16(1) record.Interface = "veth0" - input <- []*flow.Record{&record} + input <- []*model.Record{&record} close(input) kj.ExportFlows(input) @@ -76,13 +76,13 @@ func TestProtoConversion(t *testing.T) { } func TestIdenticalKeys(t *testing.T) { - record := flow.Record{} + record := model.Record{} record.Id.EthProtocol = 3 record.Id.Direction = 1 record.Id.SrcMac = [...]byte{0xaa, 0xbb, 0xcc, 0xdd, 0xee, 0xff} record.Id.DstMac = [...]byte{0x11, 0x22, 0x33, 0x44, 0x55, 0x66} - record.Id.SrcIp = flow.IPAddrFromNetIP(net.ParseIP("192.1.2.3")) - record.Id.DstIp = flow.IPAddrFromNetIP(net.ParseIP("127.3.2.1")) + record.Id.SrcIp = model.IPAddrFromNetIP(net.ParseIP("192.1.2.3")) + record.Id.DstIp = model.IPAddrFromNetIP(net.ParseIP("127.3.2.1")) record.Id.SrcPort = 4321 record.Id.DstPort = 1234 record.Id.IcmpType = 8 @@ -96,8 +96,8 @@ func TestIdenticalKeys(t *testing.T) { key1 := getFlowKey(&record) - record.Id.SrcIp = flow.IPAddrFromNetIP(net.ParseIP("127.3.2.1")) - record.Id.DstIp = flow.IPAddrFromNetIP(net.ParseIP("192.1.2.3")) + record.Id.SrcIp = model.IPAddrFromNetIP(net.ParseIP("127.3.2.1")) + record.Id.DstIp = model.IPAddrFromNetIP(net.ParseIP("192.1.2.3")) key2 := getFlowKey(&record) // Both keys should be identical diff --git a/pkg/flow/account.go b/pkg/flow/account.go index 6d42b046f..a05537216 100644 --- a/pkg/flow/account.go +++ b/pkg/flow/account.go @@ -5,6 +5,7 @@ import ( "github.com/netobserv/netobserv-ebpf-agent/pkg/ebpf" "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "github.com/sirupsen/logrus" ) @@ -46,7 +47,7 @@ func NewAccounter( // Account runs in a new goroutine. It reads all the records from the input channel // and accumulate their metrics internally. Once the metrics have reached their max size // or the eviction times out, it evicts all the accumulated flows by the returned channel. -func (c *Accounter) Account(in <-chan *RawRecord, out chan<- []*Record) { +func (c *Accounter) Account(in <-chan *model.RawRecord, out chan<- []*model.Record) { evictTick := time.NewTicker(c.evictTimeout) defer evictTick.Stop() for { @@ -71,7 +72,7 @@ func (c *Accounter) Account(in <-chan *RawRecord, out chan<- []*Record) { return } if stored, ok := c.entries[record.Id]; ok { - Accumulate(stored, &record.Metrics) + model.Accumulate(stored, &record.Metrics) } else { if len(c.entries) >= c.maxEntries { evictingEntries := c.entries @@ -90,12 +91,12 @@ func (c *Accounter) Account(in <-chan *RawRecord, out chan<- []*Record) { } } -func (c *Accounter) evict(entries map[ebpf.BpfFlowId]*ebpf.BpfFlowMetrics, evictor chan<- []*Record, reason string) { +func (c *Accounter) evict(entries map[ebpf.BpfFlowId]*ebpf.BpfFlowMetrics, evictor chan<- []*model.Record, reason string) { now := c.clock() monotonicNow := uint64(c.monoClock()) - records := make([]*Record, 0, len(entries)) + records := make([]*model.Record, 0, len(entries)) for key, metrics := range entries { - records = append(records, NewRecord(key, metrics, now, monotonicNow)) + records = append(records, model.NewRecord(key, metrics, now, monotonicNow)) } c.metrics.EvictionCounter.WithSourceAndReason("accounter", reason).Inc() c.metrics.EvictedFlowsCounter.WithSourceAndReason("accounter", reason).Add(float64(len(records))) diff --git a/pkg/flow/account_test.go b/pkg/flow/account_test.go index 6aaa00eb8..ebe59b9c9 100644 --- a/pkg/flow/account_test.go +++ b/pkg/flow/account_test.go @@ -6,6 +6,7 @@ import ( "github.com/netobserv/netobserv-ebpf-agent/pkg/ebpf" "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" @@ -14,13 +15,13 @@ import ( const timeout = 5 * time.Second var ( - srcAddr1 = IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, + srcAddr1 = model.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x12, 0x34, 0x56, 0x78} - srcAddr2 = IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, + srcAddr2 = model.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0xaa, 0xbb, 0xcc, 0xdd} - dstAddr1 = IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, + dstAddr1 = model.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x43, 0x21, 0x00, 0xff} - dstAddr2 = IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, + dstAddr2 = model.IPAddr{0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0xff, 0xff, 0x11, 0x22, 0x33, 0x44} ) @@ -53,27 +54,27 @@ func TestEvict_MaxEntries(t *testing.T) { }, metrics.NewMetrics(&metrics.Settings{})) // WHEN it starts accounting new records - inputs := make(chan *RawRecord, 20) - evictor := make(chan []*Record, 20) + inputs := make(chan *model.RawRecord, 20) + evictor := make(chan []*model.Record, 20) go acc.Account(inputs, evictor) // THEN It does not evict anything until it surpasses the maximum size // or the eviction period is reached requireNoEviction(t, evictor) - inputs <- &RawRecord{ + inputs <- &model.RawRecord{ Id: k1, Metrics: ebpf.BpfFlowMetrics{ Bytes: 123, Packets: 1, StartMonoTimeTs: 123, EndMonoTimeTs: 123, Flags: 1, }, } - inputs <- &RawRecord{ + inputs <- &model.RawRecord{ Id: k2, Metrics: ebpf.BpfFlowMetrics{ Bytes: 456, Packets: 1, StartMonoTimeTs: 456, EndMonoTimeTs: 456, Flags: 1, }, } - inputs <- &RawRecord{ + inputs <- &model.RawRecord{ Id: k1, Metrics: ebpf.BpfFlowMetrics{ Bytes: 321, Packets: 1, StartMonoTimeTs: 789, EndMonoTimeTs: 789, Flags: 1, @@ -82,7 +83,7 @@ func TestEvict_MaxEntries(t *testing.T) { requireNoEviction(t, evictor) // WHEN a new record surpasses the maximum number of records - inputs <- &RawRecord{ + inputs <- &model.RawRecord{ Id: k3, Metrics: ebpf.BpfFlowMetrics{ Bytes: 111, Packets: 1, StartMonoTimeTs: 888, EndMonoTimeTs: 888, Flags: 1, @@ -90,7 +91,7 @@ func TestEvict_MaxEntries(t *testing.T) { } // THEN the old records are evicted - received := map[ebpf.BpfFlowId]Record{} + received := map[ebpf.BpfFlowId]model.Record{} r := receiveTimeout(t, evictor) require.Len(t, r, 2) received[r[0].Id] = *r[0] @@ -100,9 +101,9 @@ func TestEvict_MaxEntries(t *testing.T) { // AND the returned records summarize the number of bytes and packages // of each flow - assert.Equal(t, map[ebpf.BpfFlowId]Record{ + assert.Equal(t, map[ebpf.BpfFlowId]model.Record{ k1: { - RawRecord: RawRecord{ + RawRecord: model.RawRecord{ Id: k1, Metrics: ebpf.BpfFlowMetrics{ Bytes: 444, Packets: 2, StartMonoTimeTs: 123, EndMonoTimeTs: 789, Flags: 1, @@ -114,7 +115,7 @@ func TestEvict_MaxEntries(t *testing.T) { NetworkMonitorEventsMD: make([]string, 0), }, k2: { - RawRecord: RawRecord{ + RawRecord: model.RawRecord{ Id: k2, Metrics: ebpf.BpfFlowMetrics{ Bytes: 456, Packets: 1, StartMonoTimeTs: 456, EndMonoTimeTs: 456, Flags: 1, @@ -138,23 +139,23 @@ func TestEvict_Period(t *testing.T) { }, metrics.NewMetrics(&metrics.Settings{})) // WHEN it starts accounting new records - inputs := make(chan *RawRecord, 20) - evictor := make(chan []*Record, 20) + inputs := make(chan *model.RawRecord, 20) + evictor := make(chan []*model.Record, 20) go acc.Account(inputs, evictor) - inputs <- &RawRecord{ + inputs <- &model.RawRecord{ Id: k1, Metrics: ebpf.BpfFlowMetrics{ Bytes: 10, Packets: 1, StartMonoTimeTs: 123, EndMonoTimeTs: 123, Flags: 1, }, } - inputs <- &RawRecord{ + inputs <- &model.RawRecord{ Id: k1, Metrics: ebpf.BpfFlowMetrics{ Bytes: 10, Packets: 1, StartMonoTimeTs: 456, EndMonoTimeTs: 456, Flags: 1, }, } - inputs <- &RawRecord{ + inputs <- &model.RawRecord{ Id: k1, Metrics: ebpf.BpfFlowMetrics{ Bytes: 10, Packets: 1, StartMonoTimeTs: 789, EndMonoTimeTs: 789, Flags: 1, @@ -162,13 +163,13 @@ func TestEvict_Period(t *testing.T) { } // Forcing at least one eviction here time.Sleep(30 * time.Millisecond) - inputs <- &RawRecord{ + inputs <- &model.RawRecord{ Id: k1, Metrics: ebpf.BpfFlowMetrics{ Bytes: 10, Packets: 1, StartMonoTimeTs: 1123, EndMonoTimeTs: 1123, Flags: 1, }, } - inputs <- &RawRecord{ + inputs <- &model.RawRecord{ Id: k1, Metrics: ebpf.BpfFlowMetrics{ Bytes: 10, Packets: 1, StartMonoTimeTs: 1456, EndMonoTimeTs: 1456, Flags: 1, @@ -179,8 +180,8 @@ func TestEvict_Period(t *testing.T) { // has not reached the maximum size records := receiveTimeout(t, evictor) require.Len(t, records, 1) - assert.Equal(t, Record{ - RawRecord: RawRecord{ + assert.Equal(t, model.Record{ + RawRecord: model.RawRecord{ Id: k1, Metrics: ebpf.BpfFlowMetrics{ Bytes: 30, @@ -197,8 +198,8 @@ func TestEvict_Period(t *testing.T) { }, *records[0]) records = receiveTimeout(t, evictor) require.Len(t, records, 1) - assert.Equal(t, Record{ - RawRecord: RawRecord{ + assert.Equal(t, model.Record{ + RawRecord: model.RawRecord{ Id: k1, Metrics: ebpf.BpfFlowMetrics{ Bytes: 20, @@ -219,7 +220,7 @@ func TestEvict_Period(t *testing.T) { requireNoEviction(t, evictor) } -func receiveTimeout(t *testing.T, evictor <-chan []*Record) []*Record { +func receiveTimeout(t *testing.T, evictor <-chan []*model.Record) []*model.Record { t.Helper() select { case r := <-evictor: @@ -230,7 +231,7 @@ func receiveTimeout(t *testing.T, evictor <-chan []*Record) []*Record { return nil } -func requireNoEviction(t *testing.T, evictor <-chan []*Record) { +func requireNoEviction(t *testing.T, evictor <-chan []*model.Record) { t.Helper() select { case r := <-evictor: diff --git a/pkg/flow/decorator.go b/pkg/flow/decorator.go index 460027369..1dc47b283 100644 --- a/pkg/flow/decorator.go +++ b/pkg/flow/decorator.go @@ -2,6 +2,8 @@ package flow import ( "net" + + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" ) type InterfaceNamer func(ifIndex int) string @@ -9,8 +11,8 @@ type InterfaceNamer func(ifIndex int) string // Decorate adds to the flows extra metadata fields that are not directly fetched by eBPF: // - The interface name (corresponding to the interface index in the flow). // - The IP address of the agent host. -func Decorate(agentIP net.IP, ifaceNamer InterfaceNamer) func(in <-chan []*Record, out chan<- []*Record) { - return func(in <-chan []*Record, out chan<- []*Record) { +func Decorate(agentIP net.IP, ifaceNamer InterfaceNamer) func(in <-chan []*model.Record, out chan<- []*model.Record) { + return func(in <-chan []*model.Record, out chan<- []*model.Record) { for flows := range in { for _, flow := range flows { flow.Interface = ifaceNamer(int(flow.Id.IfIndex)) diff --git a/pkg/flow/deduper.go b/pkg/flow/deduper.go index 18a1f9cf9..50b55a2b6 100644 --- a/pkg/flow/deduper.go +++ b/pkg/flow/deduper.go @@ -9,6 +9,7 @@ import ( "github.com/netobserv/netobserv-ebpf-agent/pkg/ebpf" "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" ) var dlog = logrus.WithField("component", "flow/Deduper") @@ -41,16 +42,16 @@ type entry struct { // (no activity for it during the expiration time) // The justMark argument tells that the deduper should not drop the duplicate flows but // set their Duplicate field. -func Dedupe(expireTime time.Duration, justMark, mergeDup bool, ifaceNamer InterfaceNamer, m *metrics.Metrics) func(in <-chan []*Record, out chan<- []*Record) { +func Dedupe(expireTime time.Duration, justMark, mergeDup bool, ifaceNamer InterfaceNamer, m *metrics.Metrics) func(in <-chan []*model.Record, out chan<- []*model.Record) { cache := &deduperCache{ expire: expireTime, entries: list.New(), ifaces: map[ebpf.BpfFlowId]*list.Element{}, } - return func(in <-chan []*Record, out chan<- []*Record) { + return func(in <-chan []*model.Record, out chan<- []*model.Record) { for records := range in { cache.removeExpired() - fwd := make([]*Record, 0, len(records)) + fwd := make([]*model.Record, 0, len(records)) for _, record := range records { cache.checkDupe(record, justMark, mergeDup, &fwd, ifaceNamer) } @@ -66,13 +67,13 @@ func Dedupe(expireTime time.Duration, justMark, mergeDup bool, ifaceNamer Interf } // checkDupe check current record if its already available nad if not added to fwd records list -func (c *deduperCache) checkDupe(r *Record, justMark, mergeDup bool, fwd *[]*Record, ifaceNamer InterfaceNamer) { +func (c *deduperCache) checkDupe(r *model.Record, justMark, mergeDup bool, fwd *[]*model.Record, ifaceNamer InterfaceNamer) { mergeEntry := make(map[string]uint8) rk := r.Id // zeroes fields from key that should be ignored from the flow comparison rk.IfIndex = 0 - rk.SrcMac = [MacLen]uint8{0, 0, 0, 0, 0, 0} - rk.DstMac = [MacLen]uint8{0, 0, 0, 0, 0, 0} + rk.SrcMac = [model.MacLen]uint8{0, 0, 0, 0, 0, 0} + rk.DstMac = [model.MacLen]uint8{0, 0, 0, 0, 0, 0} rk.Direction = 0 // If a flow has been accounted previously, whatever its interface was, // it updates the expiry time for that flow @@ -97,7 +98,7 @@ func (c *deduperCache) checkDupe(r *Record, justMark, mergeDup bool, fwd *[]*Rec } // If the new flows have network events, then enrich the flow in the cache and mark the flow as duplicate for i, md := range r.Metrics.NetworkEvents { - if !AllZerosMetaData(md) && AllZerosMetaData(fEntry.networkEvents[i]) { + if !model.AllZerosMetaData(md) && model.AllZerosMetaData(fEntry.networkEvents[i]) { copy(fEntry.networkEvents[i][:], md[:]) } } diff --git a/pkg/flow/deduper_test.go b/pkg/flow/deduper_test.go index 1958c77bc..29b9113b0 100644 --- a/pkg/flow/deduper_test.go +++ b/pkg/flow/deduper_test.go @@ -9,84 +9,85 @@ import ( "github.com/netobserv/netobserv-ebpf-agent/pkg/ebpf" "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" ) var ( // the same flow from 2 different interfaces - oneIf1 = &Record{RawRecord: RawRecord{Id: ebpf.BpfFlowId{ + oneIf1 = &model.Record{RawRecord: model.RawRecord{Id: ebpf.BpfFlowId{ EthProtocol: 1, Direction: 1, SrcPort: 123, DstPort: 456, - DstMac: MacAddr{0x1}, SrcMac: MacAddr{0x1}, IfIndex: 1, + DstMac: model.MacAddr{0x1}, SrcMac: model.MacAddr{0x1}, IfIndex: 1, }, Metrics: ebpf.BpfFlowMetrics{ Packets: 2, Bytes: 456, Flags: 1, }}, Interface: "eth0"} - oneIf2 = &Record{RawRecord: RawRecord{Id: ebpf.BpfFlowId{ + oneIf2 = &model.Record{RawRecord: model.RawRecord{Id: ebpf.BpfFlowId{ EthProtocol: 1, Direction: 1, SrcPort: 123, DstPort: 456, - DstMac: MacAddr{0x2}, SrcMac: MacAddr{0x2}, IfIndex: 2, + DstMac: model.MacAddr{0x2}, SrcMac: model.MacAddr{0x2}, IfIndex: 2, }, Metrics: ebpf.BpfFlowMetrics{ Packets: 2, Bytes: 456, Flags: 1, }}, Interface: "123456789"} // another flow from 2 different interfaces and directions - twoIf1 = &Record{RawRecord: RawRecord{Id: ebpf.BpfFlowId{ + twoIf1 = &model.Record{RawRecord: model.RawRecord{Id: ebpf.BpfFlowId{ EthProtocol: 1, Direction: 1, SrcPort: 333, DstPort: 456, - DstMac: MacAddr{0x1}, SrcMac: MacAddr{0x1}, IfIndex: 1, + DstMac: model.MacAddr{0x1}, SrcMac: model.MacAddr{0x1}, IfIndex: 1, }, Metrics: ebpf.BpfFlowMetrics{ Packets: 2, Bytes: 456, Flags: 1, }}, Interface: "eth0"} - twoIf2 = &Record{RawRecord: RawRecord{Id: ebpf.BpfFlowId{ + twoIf2 = &model.Record{RawRecord: model.RawRecord{Id: ebpf.BpfFlowId{ EthProtocol: 1, Direction: 0, SrcPort: 333, DstPort: 456, - DstMac: MacAddr{0x2}, SrcMac: MacAddr{0x2}, IfIndex: 2, + DstMac: model.MacAddr{0x2}, SrcMac: model.MacAddr{0x2}, IfIndex: 2, }, Metrics: ebpf.BpfFlowMetrics{ Packets: 2, Bytes: 456, Flags: 1, }}, Interface: "123456789"} // another flow from 2 different interfaces and directions with DNS latency set on the latest - threeIf1 = &Record{RawRecord: RawRecord{Id: ebpf.BpfFlowId{ + threeIf1 = &model.Record{RawRecord: model.RawRecord{Id: ebpf.BpfFlowId{ EthProtocol: 1, Direction: 1, SrcPort: 433, DstPort: 456, - DstMac: MacAddr{0x1}, SrcMac: MacAddr{0x1}, IfIndex: 1, + DstMac: model.MacAddr{0x1}, SrcMac: model.MacAddr{0x1}, IfIndex: 1, }, Metrics: ebpf.BpfFlowMetrics{ Packets: 2, Bytes: 456, Flags: 1, }}, Interface: "eth0"} - threeIf2 = &Record{RawRecord: RawRecord{Id: ebpf.BpfFlowId{ + threeIf2 = &model.Record{RawRecord: model.RawRecord{Id: ebpf.BpfFlowId{ EthProtocol: 1, Direction: 0, SrcPort: 433, DstPort: 456, - DstMac: MacAddr{0x2}, SrcMac: MacAddr{0x2}, IfIndex: 2, + DstMac: model.MacAddr{0x2}, SrcMac: model.MacAddr{0x2}, IfIndex: 2, }, Metrics: ebpf.BpfFlowMetrics{ Packets: 2, Bytes: 456, Flags: 1, DnsRecord: ebpf.BpfDnsRecordT{Id: 1, Flags: 100, Latency: 1000}, }}, Interface: "123456789", DNSLatency: time.Millisecond} // another flow from 2 different interfaces and directions with RTT set on the latest - fourIf1 = &Record{RawRecord: RawRecord{Id: ebpf.BpfFlowId{ + fourIf1 = &model.Record{RawRecord: model.RawRecord{Id: ebpf.BpfFlowId{ EthProtocol: 1, Direction: 1, SrcPort: 533, DstPort: 456, - DstMac: MacAddr{0x1}, SrcMac: MacAddr{0x1}, IfIndex: 1, + DstMac: model.MacAddr{0x1}, SrcMac: model.MacAddr{0x1}, IfIndex: 1, }, Metrics: ebpf.BpfFlowMetrics{ Packets: 2, Bytes: 456, Flags: 1, }}, Interface: "eth0"} - fourIf2 = &Record{RawRecord: RawRecord{Id: ebpf.BpfFlowId{ + fourIf2 = &model.Record{RawRecord: model.RawRecord{Id: ebpf.BpfFlowId{ EthProtocol: 1, Direction: 0, SrcPort: 533, DstPort: 456, - DstMac: MacAddr{0x2}, SrcMac: MacAddr{0x2}, IfIndex: 2, + DstMac: model.MacAddr{0x2}, SrcMac: model.MacAddr{0x2}, IfIndex: 2, }, Metrics: ebpf.BpfFlowMetrics{ Packets: 2, Bytes: 456, Flags: 1, FlowRtt: 100, }}, Interface: "123456789", TimeFlowRtt: 100} // another flow from 2 different interfaces and directions with NetworkEvents set on the latest - fiveIf1 = &Record{RawRecord: RawRecord{Id: ebpf.BpfFlowId{ + fiveIf1 = &model.Record{RawRecord: model.RawRecord{Id: ebpf.BpfFlowId{ EthProtocol: 1, Direction: 1, SrcPort: 633, DstPort: 456, - DstMac: MacAddr{0x1}, SrcMac: MacAddr{0x1}, IfIndex: 1, + DstMac: model.MacAddr{0x1}, SrcMac: model.MacAddr{0x1}, IfIndex: 1, }, Metrics: ebpf.BpfFlowMetrics{ Packets: 2, Bytes: 456, Flags: 1, }}, Interface: "eth0"} - fiveIf2 = &Record{RawRecord: RawRecord{Id: ebpf.BpfFlowId{ + fiveIf2 = &model.Record{RawRecord: model.RawRecord{Id: ebpf.BpfFlowId{ EthProtocol: 1, Direction: 0, SrcPort: 633, DstPort: 456, - DstMac: MacAddr{0x2}, SrcMac: MacAddr{0x2}, IfIndex: 2, + DstMac: model.MacAddr{0x2}, SrcMac: model.MacAddr{0x2}, IfIndex: 2, }, Metrics: ebpf.BpfFlowMetrics{ Packets: 2, Bytes: 456, Flags: 1, FlowRtt: 100, }}, Interface: "123456789", NetworkMonitorEventsMD: []string{"test netpol1"}} ) func TestDedupe(t *testing.T) { - input := make(chan []*Record, 100) - output := make(chan []*Record, 100) + input := make(chan []*model.Record, 100) + output := make(chan []*model.Record, 100) go Dedupe(time.Minute, false, false, interfaceNamer, metrics.NewMetrics(&metrics.Settings{}))(input, output) - input <- []*Record{ + input <- []*model.Record{ oneIf2, // record 1 at interface 2: should be accepted twoIf1, // record 2 at interface 1: should be accepted oneIf1, // record 1 duplicate at interface 1: should NOT be accepted @@ -101,13 +102,13 @@ func TestDedupe(t *testing.T) { fiveIf2, // record 2 is duplicate of record1 and have NetworkEvents, should not be accepted } deduped := receiveTimeout(t, output) - assert.Equal(t, []*Record{oneIf2, twoIf1, oneIf2, threeIf1, fourIf1, fiveIf1}, deduped) + assert.Equal(t, []*model.Record{oneIf2, twoIf1, oneIf2, threeIf1, fourIf1, fiveIf1}, deduped) // should still accept records with same key, same interface, // and discard these with same key, different interface - input <- []*Record{oneIf1, oneIf2} + input <- []*model.Record{oneIf1, oneIf2} deduped = receiveTimeout(t, output) - assert.Equal(t, []*Record{oneIf2}, deduped) + assert.Equal(t, []*model.Record{oneIf2}, deduped) // make sure flow with no DNS get enriched with the DNS record assert.Equal(t, threeIf1.Metrics.DnsRecord.Id, threeIf2.Metrics.DnsRecord.Id) @@ -124,52 +125,52 @@ func TestDedupe(t *testing.T) { func TestDedupe_EvictFlows(t *testing.T) { tm := &timerMock{now: time.Now()} timeNow = tm.Now - input := make(chan []*Record, 100) - output := make(chan []*Record, 100) + input := make(chan []*model.Record, 100) + output := make(chan []*model.Record, 100) go Dedupe(15*time.Second, false, false, interfaceNamer, metrics.NewMetrics(&metrics.Settings{}))(input, output) // Should only accept records 1 and 2, at interface 1 - input <- []*Record{oneIf1, twoIf1, oneIf2} - assert.Equal(t, []*Record{oneIf1, twoIf1}, + input <- []*model.Record{oneIf1, twoIf1, oneIf2} + assert.Equal(t, []*model.Record{oneIf1, twoIf1}, receiveTimeout(t, output)) tm.now = tm.now.Add(10 * time.Second) // After 10 seconds, it still filters existing flows from different interfaces - input <- []*Record{oneIf2} + input <- []*model.Record{oneIf2} time.Sleep(100 * time.Millisecond) requireNoEviction(t, output) tm.now = tm.now.Add(10 * time.Second) - // Record 2 hasn't been accounted for >expiryTime, so it will accept the it again + // model.Record 2 hasn't been accounted for >expiryTime, so it will accept the it again // whatever the interface. // Since record 1 was accessed 10 seconds ago (= c.maxEntries { evictingEntries := c.entries - c.entries = []*PacketRecord{} + c.entries = []*model.PacketRecord{} logrus.WithField("packets", len(evictingEntries)). Debug("evicting packets from userspace accounter after reaching cache max length") c.evict(evictingEntries, out) } - c.entries = append(c.entries, NewPacketRecord(packet.Stream, (uint32)(len(packet.Stream)), packet.Time)) + c.entries = append(c.entries, model.NewPacketRecord(packet.Stream, (uint32)(len(packet.Stream)), packet.Time)) ind++ } } } -func (c *PerfBuffer) evict(entries [](*PacketRecord), evictor chan<- []*PacketRecord) { - packets := make([]*PacketRecord, 0, len(entries)) +func (c *PerfBuffer) evict(entries [](*model.PacketRecord), evictor chan<- []*model.PacketRecord) { + packets := make([]*model.PacketRecord, 0, len(entries)) for _, payload := range entries { - packets = append(packets, NewPacketRecord(payload.Stream, (uint32)(len(payload.Stream)), payload.Time)) + packets = append(packets, model.NewPacketRecord(payload.Stream, (uint32)(len(payload.Stream)), payload.Time)) } alog.WithField("numEntries", len(packets)).Debug("packets evicted from userspace accounter") evictor <- packets diff --git a/pkg/flow/tracer_map.go b/pkg/flow/tracer_map.go index 3230f4af9..a24d13d0e 100644 --- a/pkg/flow/tracer_map.go +++ b/pkg/flow/tracer_map.go @@ -8,6 +8,7 @@ import ( "github.com/netobserv/netobserv-ebpf-agent/pkg/ebpf" "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "github.com/gavv/monotime" "github.com/netobserv/gopipes/pkg/node" @@ -18,7 +19,7 @@ import ( var mtlog = logrus.WithField("component", "flow.MapTracer") // MapTracer accesses a mapped source of flows (the eBPF PerCPU HashMap), deserializes it into -// a flow Record structure, and performs the accumulation of each perCPU-record into a single flow +// a flow model.Record structure, and performs the accumulation of each perCPU-record into a single flow type MapTracer struct { mapFetcher mapFetcher evictionTimeout time.Duration @@ -53,8 +54,8 @@ func (m *MapTracer) Flush() { m.evictionCond.Broadcast() } -func (m *MapTracer) TraceLoop(ctx context.Context, forceGC bool) node.StartFunc[[]*Record] { - return func(out chan<- []*Record) { +func (m *MapTracer) TraceLoop(ctx context.Context, forceGC bool) node.StartFunc[[]*model.Record] { + return func(out chan<- []*model.Record) { evictionTicker := time.NewTicker(m.evictionTimeout) go m.evictionSynchronization(ctx, forceGC, out) for { @@ -74,7 +75,7 @@ func (m *MapTracer) TraceLoop(ctx context.Context, forceGC bool) node.StartFunc[ // evictionSynchronization loop just waits for the evictionCond to happen // and triggers the actual eviction. It makes sure that only one eviction // is being triggered at the same time -func (m *MapTracer) evictionSynchronization(ctx context.Context, forceGC bool, out chan<- []*Record) { +func (m *MapTracer) evictionSynchronization(ctx context.Context, forceGC bool, out chan<- []*model.Record) { // flow eviction loop. It just keeps waiting for eviction until someone triggers the // evictionCond.Broadcast signal for { @@ -94,12 +95,12 @@ func (m *MapTracer) evictionSynchronization(ctx context.Context, forceGC bool, o } } -func (m *MapTracer) evictFlows(ctx context.Context, forceGC bool, forwardFlows chan<- []*Record) { +func (m *MapTracer) evictFlows(ctx context.Context, forceGC bool, forwardFlows chan<- []*model.Record) { // it's important that this monotonic timer reports same or approximate values as kernel-side bpf_ktime_get_ns() monotonicTimeNow := monotime.Now() currentTime := time.Now() - var forwardingFlows []*Record + var forwardingFlows []*model.Record laterFlowNs := uint64(0) flows := m.mapFetcher.LookupAndDeleteMap(m.metrics) elapsed := time.Since(currentTime) @@ -113,7 +114,7 @@ func (m *MapTracer) evictFlows(ctx context.Context, forceGC bool, forwardFlows c if aggregatedMetrics.EndMonoTimeTs > laterFlowNs { laterFlowNs = aggregatedMetrics.EndMonoTimeTs } - forwardingFlows = append(forwardingFlows, NewRecord( + forwardingFlows = append(forwardingFlows, model.NewRecord( flowKey, aggregatedMetrics, currentTime, @@ -151,7 +152,7 @@ func (m *MapTracer) aggregate(metrics []ebpf.BpfFlowMetrics) *ebpf.BpfFlowMetric if metrics[i].StartMonoTimeTs <= m.lastEvictionNs || metrics[i].EndMonoTimeTs <= m.lastEvictionNs { continue } - Accumulate(aggr, &metrics[i]) + model.Accumulate(aggr, &metrics[i]) } return aggr } diff --git a/pkg/flow/tracer_perf.go b/pkg/flow/tracer_perf.go index 1e198a583..237cbe946 100644 --- a/pkg/flow/tracer_perf.go +++ b/pkg/flow/tracer_perf.go @@ -9,6 +9,7 @@ import ( "github.com/cilium/ebpf/perf" "github.com/netobserv/gopipes/pkg/node" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "github.com/sirupsen/logrus" ) @@ -35,8 +36,8 @@ func NewPerfTracer( } } -func (m *PerfTracer) TraceLoop(ctx context.Context) node.StartFunc[*PacketRecord] { - return func(out chan<- *PacketRecord) { +func (m *PerfTracer) TraceLoop(ctx context.Context) node.StartFunc[*model.PacketRecord] { + return func(out chan<- *model.PacketRecord) { for { select { case <-ctx.Done(): @@ -57,13 +58,13 @@ func (m *PerfTracer) TraceLoop(ctx context.Context) node.StartFunc[*PacketRecord } } -func (m *PerfTracer) listenAndForwardPerf(forwardCh chan<- *PacketRecord) error { +func (m *PerfTracer) listenAndForwardPerf(forwardCh chan<- *model.PacketRecord) error { event, err := m.perfArray.ReadPerf() if err != nil { return fmt.Errorf("reading from perf event array: %w", err) } // Parses the perf event entry into an Event structure. - readFlow, err := ReadRawPacket(bytes.NewBuffer(event.RawSample)) + readFlow, err := model.ReadRawPacket(bytes.NewBuffer(event.RawSample)) if err != nil { return fmt.Errorf("parsing data received from the perf event array: %w", err) } diff --git a/pkg/flow/tracer_ringbuf.go b/pkg/flow/tracer_ringbuf.go index 886ed25db..a92f7d38d 100644 --- a/pkg/flow/tracer_ringbuf.go +++ b/pkg/flow/tracer_ringbuf.go @@ -10,6 +10,7 @@ import ( "time" "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "github.com/cilium/ebpf/ringbuf" "github.com/netobserv/gopipes/pkg/node" @@ -53,8 +54,8 @@ func NewRingBufTracer(reader ringBufReader, flusher mapFlusher, logTimeout time. } } -func (m *RingBufTracer) TraceLoop(ctx context.Context) node.StartFunc[*RawRecord] { - return func(out chan<- *RawRecord) { +func (m *RingBufTracer) TraceLoop(ctx context.Context) node.StartFunc[*model.RawRecord] { + return func(out chan<- *model.RawRecord) { debugging := logrus.IsLevelEnabled(logrus.DebugLevel) for { select { @@ -75,14 +76,14 @@ func (m *RingBufTracer) TraceLoop(ctx context.Context) node.StartFunc[*RawRecord } } -func (m *RingBufTracer) listenAndForwardRingBuffer(debugging bool, forwardCh chan<- *RawRecord) error { +func (m *RingBufTracer) listenAndForwardRingBuffer(debugging bool, forwardCh chan<- *model.RawRecord) error { event, err := m.ringBuffer.ReadRingBuf() if err != nil { m.metrics.Errors.WithErrorName("ringbuffer", "CannotReadRingbuffer").Inc() return fmt.Errorf("reading from ring buffer: %w", err) } // Parses the ringbuf event entry into an Event structure. - readFlow, err := ReadFrom(bytes.NewBuffer(event.RawSample)) + readFlow, err := model.ReadFrom(bytes.NewBuffer(event.RawSample)) if err != nil { m.metrics.Errors.WithErrorName("ringbuffer", "CannotParseRingbuffer").Inc() return fmt.Errorf("parsing data received from the ring buffer: %w", err) diff --git a/pkg/flow/packet_record.go b/pkg/model/packet_record.go similarity index 92% rename from pkg/flow/packet_record.go rename to pkg/model/packet_record.go index 30e38b2eb..85af86136 100644 --- a/pkg/flow/packet_record.go +++ b/pkg/model/packet_record.go @@ -1,4 +1,4 @@ -package flow +package model import ( "encoding/binary" @@ -6,11 +6,8 @@ import ( "time" "github.com/gavv/monotime" - "github.com/sirupsen/logrus" ) -var plog = logrus.WithField("component", "packet/PerfBuffer") - type RawByte byte type PacketRecord struct { diff --git a/pkg/flow/record.go b/pkg/model/record.go similarity index 99% rename from pkg/flow/record.go rename to pkg/model/record.go index c68aca22c..8d4c6c708 100644 --- a/pkg/flow/record.go +++ b/pkg/model/record.go @@ -1,4 +1,4 @@ -package flow +package model import ( "encoding/binary" diff --git a/pkg/flow/record_test.go b/pkg/model/record_test.go similarity index 99% rename from pkg/flow/record_test.go rename to pkg/model/record_test.go index adcaf864d..cf3427c65 100644 --- a/pkg/flow/record_test.go +++ b/pkg/model/record_test.go @@ -1,4 +1,4 @@ -package flow +package model import ( "bytes" diff --git a/pkg/pbflow/proto.go b/pkg/pbflow/proto.go index c312b63ad..8341a4d7f 100644 --- a/pkg/pbflow/proto.go +++ b/pkg/pbflow/proto.go @@ -2,20 +2,21 @@ package pbflow import ( "encoding/binary" + "net" + "github.com/netobserv/netobserv-ebpf-agent/pkg/ebpf" - "github.com/netobserv/netobserv-ebpf-agent/pkg/flow" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" ovnobserv "github.com/ovn-org/ovn-kubernetes/go-controller/observability-lib/sampledecoder" "github.com/sirupsen/logrus" "google.golang.org/protobuf/types/known/durationpb" "google.golang.org/protobuf/types/known/timestamppb" - "net" ) var protoLog = logrus.WithField("component", "pbflow") // FlowsToPB is an auxiliary function to convert flow records, as returned by the eBPF agent, // into protobuf-encoded messages ready to be sent to the collector via GRPC -func FlowsToPB(inputRecords []*flow.Record, maxLen int, s *ovnobserv.SampleDecoder) []*Records { +func FlowsToPB(inputRecords []*model.Record, maxLen int, s *ovnobserv.SampleDecoder) []*Records { entries := make([]*Record, 0, len(inputRecords)) for _, record := range inputRecords { entries = append(entries, FlowToPB(record, s)) @@ -34,7 +35,7 @@ func FlowsToPB(inputRecords []*flow.Record, maxLen int, s *ovnobserv.SampleDecod // FlowToPB is an auxiliary function to convert a single flow record, as returned by the eBPF agent, // into a protobuf-encoded message ready to be sent to the collector via kafka -func FlowToPB(fr *flow.Record, s *ovnobserv.SampleDecoder) *Record { +func FlowToPB(fr *model.Record, s *ovnobserv.SampleDecoder) *Record { var pbflowRecord = Record{ EthProtocol: uint32(fr.Id.EthProtocol), Direction: Direction(fr.Id.Direction), @@ -90,17 +91,17 @@ func FlowToPB(fr *flow.Record, s *ovnobserv.SampleDecoder) *Record { } } } - if fr.Id.EthProtocol == flow.IPv6Type { + if fr.Id.EthProtocol == model.IPv6Type { pbflowRecord.Network.SrcAddr = &IP{IpFamily: &IP_Ipv6{Ipv6: fr.Id.SrcIp[:]}} pbflowRecord.Network.DstAddr = &IP{IpFamily: &IP_Ipv6{Ipv6: fr.Id.DstIp[:]}} } else { - pbflowRecord.Network.SrcAddr = &IP{IpFamily: &IP_Ipv4{Ipv4: flow.IntEncodeV4(fr.Id.SrcIp)}} - pbflowRecord.Network.DstAddr = &IP{IpFamily: &IP_Ipv4{Ipv4: flow.IntEncodeV4(fr.Id.DstIp)}} + pbflowRecord.Network.SrcAddr = &IP{IpFamily: &IP_Ipv4{Ipv4: model.IntEncodeV4(fr.Id.SrcIp)}} + pbflowRecord.Network.DstAddr = &IP{IpFamily: &IP_Ipv4{Ipv4: model.IntEncodeV4(fr.Id.DstIp)}} } if s != nil { seen := make(map[string]bool) for _, metadata := range fr.Metrics.NetworkEvents { - if !flow.AllZerosMetaData(metadata) { + if !model.AllZerosMetaData(metadata) { if md, err := s.DecodeCookie8Bytes(metadata); err == nil { protoLog.Debugf("Network Events Metadata %v decoded Cookie: %v", metadata, md) if !seen[md] { @@ -116,12 +117,12 @@ func FlowToPB(fr *flow.Record, s *ovnobserv.SampleDecoder) *Record { return &pbflowRecord } -func PBToFlow(pb *Record) *flow.Record { +func PBToFlow(pb *Record) *model.Record { if pb == nil { return nil } - out := flow.Record{ - RawRecord: flow.RawRecord{ + out := model.Record{ + RawRecord: model.RawRecord{ Id: ebpf.BpfFlowId{ Direction: uint8(pb.Direction), EthProtocol: uint16(pb.EthProtocol), @@ -180,7 +181,7 @@ func PBToFlow(pb *Record) *flow.Record { // Mac bytes are encoded in the same order as in the array. This is, a Mac // like 11:22:33:44:55:66 will be encoded as 0x112233445566 -func macToUint64(m *[flow.MacLen]uint8) uint64 { +func macToUint64(m *[model.MacLen]uint8) uint64 { return uint64(m[5]) | (uint64(m[4]) << 8) | (uint64(m[3]) << 16) | @@ -209,8 +210,8 @@ func pbIPToNetIP(ip *IP) net.IP { byte(n&0xFF)) } -func ipToIPAddr(ip *IP) flow.IPAddr { - return flow.IPAddrFromNetIP(pbIPToNetIP(ip)) +func ipToIPAddr(ip *IP) model.IPAddr { + return model.IPAddrFromNetIP(pbIPToNetIP(ip)) } func macToUint8(mac uint64) [6]uint8 { diff --git a/pkg/test/export_fake.go b/pkg/test/export_fake.go index 00412f108..ee74ff6b4 100644 --- a/pkg/test/export_fake.go +++ b/pkg/test/export_fake.go @@ -4,20 +4,20 @@ import ( "testing" "time" - "github.com/netobserv/netobserv-ebpf-agent/pkg/flow" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" ) type ExporterFake struct { - messages chan []*flow.Record + messages chan []*model.Record } func NewExporterFake() *ExporterFake { return &ExporterFake{ - messages: make(chan []*flow.Record, 100), + messages: make(chan []*model.Record, 100), } } -func (ef *ExporterFake) Export(in <-chan []*flow.Record) { +func (ef *ExporterFake) Export(in <-chan []*model.Record) { for i := range in { if len(i) > 0 { ef.messages <- i @@ -25,7 +25,7 @@ func (ef *ExporterFake) Export(in <-chan []*flow.Record) { } } -func (ef *ExporterFake) Get(t *testing.T, timeout time.Duration) []*flow.Record { +func (ef *ExporterFake) Get(t *testing.T, timeout time.Duration) []*model.Record { t.Helper() select { case <-time.After(timeout): diff --git a/pkg/test/tracer_fake.go b/pkg/test/tracer_fake.go index 3d07128e7..c62afe7e4 100644 --- a/pkg/test/tracer_fake.go +++ b/pkg/test/tracer_fake.go @@ -6,9 +6,9 @@ import ( "time" "github.com/netobserv/netobserv-ebpf-agent/pkg/ebpf" - "github.com/netobserv/netobserv-ebpf-agent/pkg/flow" "github.com/netobserv/netobserv-ebpf-agent/pkg/ifaces" "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" + "github.com/netobserv/netobserv-ebpf-agent/pkg/model" "github.com/cilium/ebpf/ringbuf" ) @@ -70,7 +70,7 @@ func (m *TracerFake) AppendLookupResults(results map[ebpf.BpfFlowId][]ebpf.BpfFl } //nolint:gocritic // we don't care about efficiency of a large argument in test fakes -func (m *TracerFake) AppendRingBufEvent(flow flow.RawRecord) error { +func (m *TracerFake) AppendRingBufEvent(flow model.RawRecord) error { encodedRecord := bytes.Buffer{} if err := binary.Write(&encodedRecord, binary.LittleEndian, flow); err != nil { return err diff --git a/pkg/ebpf/flow_filter.go b/pkg/tracer/flow_filter.go similarity index 81% rename from pkg/ebpf/flow_filter.go rename to pkg/tracer/flow_filter.go index 1086102ff..87f6af902 100644 --- a/pkg/ebpf/flow_filter.go +++ b/pkg/tracer/flow_filter.go @@ -1,4 +1,4 @@ -package ebpf +package tracer import ( "fmt" @@ -7,7 +7,8 @@ import ( "strings" "syscall" - "github.com/cilium/ebpf" + cilium "github.com/cilium/ebpf" + "github.com/netobserv/netobserv-ebpf-agent/pkg/ebpf" "k8s.io/apimachinery/pkg/util/intstr" ) @@ -27,11 +28,11 @@ type FilterConfig struct { type Filter struct { // eBPF objs to create/update eBPF maps - objects *BpfObjects + objects *ebpf.BpfObjects config *FilterConfig } -func NewFilter(objects *BpfObjects, cfg *FilterConfig) *Filter { +func NewFilter(objects *ebpf.BpfObjects, cfg *FilterConfig) *Filter { return &Filter{ objects: objects, config: cfg, @@ -50,7 +51,7 @@ func (f *Filter) ProgramFilter() error { return fmt.Errorf("failed to get filter value: %w", err) } - err = f.objects.FilterMap.Update(key, val, ebpf.UpdateAny) + err = f.objects.FilterMap.Update(key, val, cilium.UpdateAny) if err != nil { return fmt.Errorf("failed to update filter map: %w", err) } @@ -60,8 +61,8 @@ func (f *Filter) ProgramFilter() error { return nil } -func (f *Filter) getFilterKey(config *FilterConfig) (BpfFilterKeyT, error) { - key := BpfFilterKeyT{} +func (f *Filter) getFilterKey(config *FilterConfig) (ebpf.BpfFilterKeyT, error) { + key := ebpf.BpfFilterKeyT{} ip, ipNet, err := net.ParseCIDR(config.FilterIPCIDR) if err != nil { @@ -79,25 +80,25 @@ func (f *Filter) getFilterKey(config *FilterConfig) (BpfFilterKeyT, error) { } // nolint:cyclop -func (f *Filter) getFilterValue(config *FilterConfig) (BpfFilterValueT, error) { - val := BpfFilterValueT{} +func (f *Filter) getFilterValue(config *FilterConfig) (ebpf.BpfFilterValueT, error) { + val := ebpf.BpfFilterValueT{} switch config.FilterDirection { case "Ingress": - val.Direction = BpfDirectionTINGRESS + val.Direction = ebpf.BpfDirectionTINGRESS case "Egress": - val.Direction = BpfDirectionTEGRESS + val.Direction = ebpf.BpfDirectionTEGRESS default: - val.Direction = BpfDirectionTMAX_DIRECTION + val.Direction = ebpf.BpfDirectionTMAX_DIRECTION } switch config.FilterAction { case "Reject": - val.Action = BpfFilterActionTREJECT + val.Action = ebpf.BpfFilterActionTREJECT case "Accept": - val.Action = BpfFilterActionTACCEPT + val.Action = ebpf.BpfFilterActionTACCEPT default: - val.Action = BpfFilterActionTMAX_FILTER_ACTIONS + val.Action = ebpf.BpfFilterActionTMAX_FILTER_ACTIONS } switch config.FilterProtocol { @@ -133,27 +134,27 @@ func (f *Filter) getFilterValue(config *FilterConfig) (BpfFilterValueT, error) { switch config.FilterTCPFLags { case "SYN": - val.TcpFlags = BpfTcpFlagsTSYN_FLAG + val.TcpFlags = ebpf.BpfTcpFlagsTSYN_FLAG case "SYN-ACK": - val.TcpFlags = BpfTcpFlagsTSYN_ACK_FLAG + val.TcpFlags = ebpf.BpfTcpFlagsTSYN_ACK_FLAG case "ACK": - val.TcpFlags = BpfTcpFlagsTACK_FLAG + val.TcpFlags = ebpf.BpfTcpFlagsTACK_FLAG case "FIN": - val.TcpFlags = BpfTcpFlagsTFIN_FLAG + val.TcpFlags = ebpf.BpfTcpFlagsTFIN_FLAG case "RST": - val.TcpFlags = BpfTcpFlagsTRST_FLAG + val.TcpFlags = ebpf.BpfTcpFlagsTRST_FLAG case "PUSH": - val.TcpFlags = BpfTcpFlagsTPSH_FLAG + val.TcpFlags = ebpf.BpfTcpFlagsTPSH_FLAG case "URG": - val.TcpFlags = BpfTcpFlagsTURG_FLAG + val.TcpFlags = ebpf.BpfTcpFlagsTURG_FLAG case "ECE": - val.TcpFlags = BpfTcpFlagsTECE_FLAG + val.TcpFlags = ebpf.BpfTcpFlagsTECE_FLAG case "CWR": - val.TcpFlags = BpfTcpFlagsTCWR_FLAG + val.TcpFlags = ebpf.BpfTcpFlagsTCWR_FLAG case "FIN-ACK": - val.TcpFlags = BpfTcpFlagsTFIN_ACK_FLAG + val.TcpFlags = ebpf.BpfTcpFlagsTFIN_ACK_FLAG case "RST-ACK": - val.TcpFlags = BpfTcpFlagsTRST_ACK_FLAG + val.TcpFlags = ebpf.BpfTcpFlagsTRST_ACK_FLAG } return val, nil diff --git a/pkg/ebpf/flow_filter_test.go b/pkg/tracer/flow_filter_test.go similarity index 96% rename from pkg/ebpf/flow_filter_test.go rename to pkg/tracer/flow_filter_test.go index dd4561d29..0afe5d6d0 100644 --- a/pkg/ebpf/flow_filter_test.go +++ b/pkg/tracer/flow_filter_test.go @@ -1,4 +1,4 @@ -package ebpf +package tracer import ( "fmt" @@ -6,6 +6,7 @@ import ( "syscall" "testing" + "github.com/netobserv/netobserv-ebpf-agent/pkg/ebpf" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "k8s.io/apimachinery/pkg/util/intstr" @@ -85,7 +86,7 @@ func TestFilter_getFlowFilterValue(t *testing.T) { value, err := f.getFilterValue(config) assert.Nil(t, err) - assert.Equal(t, BpfDirectionTINGRESS, value.Direction) + assert.Equal(t, ebpf.BpfDirectionTINGRESS, value.Direction) assert.Equal(t, uint8(syscall.IPPROTO_TCP), value.Protocol) assert.Equal(t, uint16(8080), value.SrcPortStart) assert.Equal(t, uint16(0), value.SrcPortEnd) diff --git a/pkg/ebpf/tracer.go b/pkg/tracer/tracer.go similarity index 90% rename from pkg/ebpf/tracer.go rename to pkg/tracer/tracer.go index 1a77e313f..c4db17388 100644 --- a/pkg/ebpf/tracer.go +++ b/pkg/tracer/tracer.go @@ -1,4 +1,4 @@ -package ebpf +package tracer import ( "errors" @@ -8,11 +8,12 @@ import ( "strings" "time" + "github.com/netobserv/netobserv-ebpf-agent/pkg/ebpf" "github.com/netobserv/netobserv-ebpf-agent/pkg/ifaces" "github.com/netobserv/netobserv-ebpf-agent/pkg/kernel" "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" - "github.com/cilium/ebpf" + cilium "github.com/cilium/ebpf" "github.com/cilium/ebpf/btf" "github.com/cilium/ebpf/link" "github.com/cilium/ebpf/perf" @@ -26,9 +27,6 @@ import ( kerrors "k8s.io/apimachinery/pkg/util/errors" ) -// $BPF_CLANG and $BPF_CFLAGS are set by the Makefile. -//go:generate bpf2go -cc $BPF_CLANG -cflags $BPF_CFLAGS -target amd64,arm64,ppc64le,s390x -type flow_metrics_t -type flow_id_t -type flow_record_t -type pkt_drops_t -type dns_record_t -type global_counters_key_t -type direction_t -type filter_action_t -type tcp_flags_t Bpf ../../bpf/flows.c -- -I../../bpf/headers - const ( qdiscType = "clsact" // ebpf map names as defined in bpf/maps_definition.h @@ -64,7 +62,7 @@ var plog = logrus.WithField("component", "ebpf.PacketFetcher") // and to flows that are forwarded by the kernel via ringbuffer because could not be aggregated // in the map type FlowFetcher struct { - objects *BpfObjects + objects *ebpf.BpfObjects qdiscs map[ifaces.Interface]*netlink.GenericQdisc egressFilters map[ifaces.Interface]*netlink.BpfFilter ingressFilters map[ifaces.Interface]*netlink.BpfFilter @@ -105,7 +103,7 @@ func NewFlowFetcher(cfg *FlowFetcherConfig) (*FlowFetcher, error) { Warn("can't remove mem lock. The agent could not be able to start eBPF programs") } - spec, err := LoadBpf() + spec, err := ebpf.LoadBpf() if err != nil { return nil, fmt.Errorf("loading BPF data: %w", err) } @@ -294,7 +292,7 @@ func (m *FlowFetcher) AttachTCX(iface ifaces.Interface) error { if m.enableEgress { egrLink, err := link.AttachTCX(link.TCXOptions{ Program: m.objects.BpfPrograms.TcxEgressFlowParse, - Attach: ebpf.AttachTCXEgress, + Attach: cilium.AttachTCXEgress, Interface: iface.Index, }) if err != nil { @@ -312,7 +310,7 @@ func (m *FlowFetcher) AttachTCX(iface ifaces.Interface) error { if m.enableIngress { ingLink, err := link.AttachTCX(link.TCXOptions{ Program: m.objects.BpfPrograms.TcxIngressFlowParse, - Attach: ebpf.AttachTCXIngress, + Attach: cilium.AttachTCXIngress, Interface: iface.Index, }) if err != nil { @@ -718,7 +716,7 @@ func (m *FlowFetcher) ReadRingBuf() (ringbuf.Record, error) { // LookupAndDeleteMap reads all the entries from the eBPF map and removes them from it. // TODO: detect whether BatchLookupAndDelete is supported (Kernel>=5.6) and use it selectively // Supported Lookup/Delete operations by kernel: https://github.com/iovisor/bcc/blob/master/docs/kernel-versions.md -func (m *FlowFetcher) LookupAndDeleteMap(met *metrics.Metrics) map[BpfFlowId][]BpfFlowMetrics { +func (m *FlowFetcher) LookupAndDeleteMap(met *metrics.Metrics) map[ebpf.BpfFlowId][]ebpf.BpfFlowMetrics { if !m.lookupAndDeleteSupported { return m.legacyLookupAndDeleteMap(met) } @@ -726,10 +724,10 @@ func (m *FlowFetcher) LookupAndDeleteMap(met *metrics.Metrics) map[BpfFlowId][]B flowMap := m.objects.AggregatedFlows iterator := flowMap.Iterate() - var flows = make(map[BpfFlowId][]BpfFlowMetrics, m.cacheMaxSize) - var ids []BpfFlowId - var id BpfFlowId - var metrics []BpfFlowMetrics + var flows = make(map[ebpf.BpfFlowId][]ebpf.BpfFlowMetrics, m.cacheMaxSize) + var ids []ebpf.BpfFlowId + var id ebpf.BpfFlowId + var metrics []ebpf.BpfFlowMetrics // First, get all ids and don't care about metrics (we need lookup+delete to be atomic) for iterator.Next(&id, &metrics) { @@ -741,7 +739,7 @@ func (m *FlowFetcher) LookupAndDeleteMap(met *metrics.Metrics) map[BpfFlowId][]B for i, id := range ids { count++ if err := flowMap.LookupAndDelete(&id, &metrics); err != nil { - if i == 0 && errors.Is(err, ebpf.ErrNotSupported) { + if i == 0 && errors.Is(err, cilium.ErrNotSupported) { log.WithError(err).Warnf("switching to legacy mode") m.lookupAndDeleteSupported = false return m.legacyLookupAndDeleteMap(met) @@ -772,20 +770,20 @@ func (m *FlowFetcher) ReadGlobalCounter(met *metrics.Metrics) { "NetworkEventsErrorsFlowMapUpdate", "NetworkEventsGoodEvent", } - zeroCounters := make([]uint32, ebpf.MustPossibleCPU()) - for key := BpfGlobalCountersKeyTHASHMAP_FLOWS_DROPPED_KEY; key < BpfGlobalCountersKeyTMAX_DROPPED_FLOWS_KEY; key++ { + zeroCounters := make([]uint32, cilium.MustPossibleCPU()) + for key := ebpf.BpfGlobalCountersKeyTHASHMAP_FLOWS_DROPPED_KEY; key < ebpf.BpfGlobalCountersKeyTMAX_DROPPED_FLOWS_KEY; key++ { if err := m.objects.GlobalCounters.Lookup(key, &allCPUValue); err != nil { log.WithError(err).Warnf("couldn't read global counter") return } // aggregate all the counters for _, counter := range allCPUValue { - if key == BpfGlobalCountersKeyTHASHMAP_FLOWS_DROPPED_KEY { + if key == ebpf.BpfGlobalCountersKeyTHASHMAP_FLOWS_DROPPED_KEY { met.DroppedFlowsCounter.WithSourceAndReason("flow-fetcher", reasons[key]).Add(float64(counter)) - } else if key == BpfGlobalCountersKeyTNETWORK_EVENTS_ERR_KEY || - key == BpfGlobalCountersKeyTNETWORK_EVENTS_ERR_GROUPID_MISMATCH || - key == BpfGlobalCountersKeyTNETWORK_EVENTS_ERR_UPDATE_MAP_FLOWS || - key == BpfGlobalCountersKeyTNETWORK_EVENTS_GOOD { + } else if key == ebpf.BpfGlobalCountersKeyTNETWORK_EVENTS_ERR_KEY || + key == ebpf.BpfGlobalCountersKeyTNETWORK_EVENTS_ERR_GROUPID_MISMATCH || + key == ebpf.BpfGlobalCountersKeyTNETWORK_EVENTS_ERR_UPDATE_MAP_FLOWS || + key == ebpf.BpfGlobalCountersKeyTNETWORK_EVENTS_GOOD { met.NetworkEventsCounter.WithSourceAndReason("network-events", reasons[key]).Add(float64(counter)) } else { met.FilteredFlowsCounter.WithSourceAndReason("flow-filtering", reasons[key]).Add(float64(counter)) @@ -809,8 +807,8 @@ func (m *FlowFetcher) DeleteMapsStaleEntries(timeOut time.Duration) { func (m *FlowFetcher) lookupAndDeleteDNSMap(timeOut time.Duration) { monotonicTimeNow := monotime.Now() dnsMap := m.objects.DnsFlows - var dnsKey BpfDnsFlowId - var keysToDelete []BpfDnsFlowId + var dnsKey ebpf.BpfDnsFlowId + var keysToDelete []ebpf.BpfDnsFlowId var dnsVal uint64 if dnsMap != nil { @@ -831,8 +829,8 @@ func (m *FlowFetcher) lookupAndDeleteDNSMap(timeOut time.Duration) { } // kernelSpecificLoadAndAssign based on a kernel version, it will load only the supported eBPF hooks -func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, spec *ebpf.CollectionSpec) (BpfObjects, error) { - objects := BpfObjects{} +func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, spec *cilium.CollectionSpec) (ebpf.BpfObjects, error) { + objects := ebpf.BpfObjects{} // Helper to remove common hooks removeCommonHooks := func() { @@ -843,7 +841,7 @@ func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, // Helper to load and assign BPF objects loadAndAssign := func(objects interface{}) error { if err := spec.LoadAndAssign(objects, nil); err != nil { - var ve *ebpf.VerifierError + var ve *cilium.VerifierError if errors.As(err, &ve) { log.Infof("Verifier error: %+v", ve) } @@ -856,18 +854,18 @@ func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, switch { case oldKernel && rtKernel: type newBpfPrograms struct { - TcEgressFlowParse *ebpf.Program `ebpf:"tc_egress_flow_parse"` - TcIngressFlowParse *ebpf.Program `ebpf:"tc_ingress_flow_parse"` - TcxEgressFlowParse *ebpf.Program `ebpf:"tcx_egress_flow_parse"` - TcxIngressFlowParse *ebpf.Program `ebpf:"tcx_ingress_flow_parse"` - TcEgressPcaParse *ebpf.Program `ebpf:"tc_egress_pca_parse"` - TcIngressPcaParse *ebpf.Program `ebpf:"tc_ingress_pca_parse"` - TcxEgressPcaParse *ebpf.Program `ebpf:"tcx_egress_pca_parse"` - TcxIngressPcaParse *ebpf.Program `ebpf:"tcx_ingress_pca_parse"` + TcEgressFlowParse *cilium.Program `ebpf:"tc_egress_flow_parse"` + TcIngressFlowParse *cilium.Program `ebpf:"tc_ingress_flow_parse"` + TcxEgressFlowParse *cilium.Program `ebpf:"tcx_egress_flow_parse"` + TcxIngressFlowParse *cilium.Program `ebpf:"tcx_ingress_flow_parse"` + TcEgressPcaParse *cilium.Program `ebpf:"tc_egress_pca_parse"` + TcIngressPcaParse *cilium.Program `ebpf:"tc_ingress_pca_parse"` + TcxEgressPcaParse *cilium.Program `ebpf:"tcx_egress_pca_parse"` + TcxIngressPcaParse *cilium.Program `ebpf:"tcx_ingress_pca_parse"` } type newBpfObjects struct { newBpfPrograms - BpfMaps + ebpf.BpfMaps } var newObjects newBpfObjects removeCommonHooks() @@ -878,8 +876,8 @@ func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, return objects, err } - objects = BpfObjects{ - BpfPrograms: BpfPrograms{ + objects = ebpf.BpfObjects{ + BpfPrograms: ebpf.BpfPrograms{ TcEgressFlowParse: newObjects.TcEgressFlowParse, TcIngressFlowParse: newObjects.TcIngressFlowParse, TcxEgressFlowParse: newObjects.TcxEgressFlowParse, @@ -893,7 +891,7 @@ func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, KfreeSkb: nil, RhNetworkEventsMonitoring: nil, }, - BpfMaps: BpfMaps{ + BpfMaps: ebpf.BpfMaps{ DirectFlows: newObjects.DirectFlows, AggregatedFlows: newObjects.AggregatedFlows, DnsFlows: newObjects.DnsFlows, @@ -904,19 +902,19 @@ func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, case oldKernel: type newBpfPrograms struct { - TcEgressFlowParse *ebpf.Program `ebpf:"tc_egress_flow_parse"` - TcIngressFlowParse *ebpf.Program `ebpf:"tc_ingress_flow_parse"` - TcxEgressFlowParse *ebpf.Program `ebpf:"tcx_egress_flow_parse"` - TcxIngressFlowParse *ebpf.Program `ebpf:"tcx_ingress_flow_parse"` - TcEgressPcaParse *ebpf.Program `ebpf:"tc_egress_pca_parse"` - TcIngressPcaParse *ebpf.Program `ebpf:"tc_ingress_pca_parse"` - TcxEgressPcaParse *ebpf.Program `ebpf:"tcx_egress_pca_parse"` - TcxIngressPcaParse *ebpf.Program `ebpf:"tcx_ingress_pca_parse"` - TCPRcvKprobe *ebpf.Program `ebpf:"tcp_rcv_kprobe"` + TcEgressFlowParse *cilium.Program `ebpf:"tc_egress_flow_parse"` + TcIngressFlowParse *cilium.Program `ebpf:"tc_ingress_flow_parse"` + TcxEgressFlowParse *cilium.Program `ebpf:"tcx_egress_flow_parse"` + TcxIngressFlowParse *cilium.Program `ebpf:"tcx_ingress_flow_parse"` + TcEgressPcaParse *cilium.Program `ebpf:"tc_egress_pca_parse"` + TcIngressPcaParse *cilium.Program `ebpf:"tc_ingress_pca_parse"` + TcxEgressPcaParse *cilium.Program `ebpf:"tcx_egress_pca_parse"` + TcxIngressPcaParse *cilium.Program `ebpf:"tcx_ingress_pca_parse"` + TCPRcvKprobe *cilium.Program `ebpf:"tcp_rcv_kprobe"` } type newBpfObjects struct { newBpfPrograms - BpfMaps + ebpf.BpfMaps } var newObjects newBpfObjects removeCommonHooks() @@ -926,8 +924,8 @@ func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, return objects, err } - objects = BpfObjects{ - BpfPrograms: BpfPrograms{ + objects = ebpf.BpfObjects{ + BpfPrograms: ebpf.BpfPrograms{ TcEgressFlowParse: newObjects.TcEgressFlowParse, TcIngressFlowParse: newObjects.TcIngressFlowParse, TcxEgressFlowParse: newObjects.TcxEgressFlowParse, @@ -941,7 +939,7 @@ func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, KfreeSkb: nil, RhNetworkEventsMonitoring: nil, }, - BpfMaps: BpfMaps{ + BpfMaps: ebpf.BpfMaps{ DirectFlows: newObjects.DirectFlows, AggregatedFlows: newObjects.AggregatedFlows, DnsFlows: newObjects.DnsFlows, @@ -952,19 +950,19 @@ func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, case rtKernel: type newBpfPrograms struct { - TcEgressFlowParse *ebpf.Program `ebpf:"tc_egress_flow_parse"` - TcIngressFlowParse *ebpf.Program `ebpf:"tc_ingress_flow_parse"` - TcxEgressFlowParse *ebpf.Program `ebpf:"tcx_egress_flow_parse"` - TcxIngressFlowParse *ebpf.Program `ebpf:"tcx_ingress_flow_parse"` - TcEgressPcaParse *ebpf.Program `ebpf:"tc_egress_pca_parse"` - TcIngressPcaParse *ebpf.Program `ebpf:"tc_ingress_pca_parse"` - TcxEgressPcaParse *ebpf.Program `ebpf:"tcx_egress_pca_parse"` - TcxIngressPcaParse *ebpf.Program `ebpf:"tcx_ingress_pca_parse"` - TCPRcvFentry *ebpf.Program `ebpf:"tcp_rcv_fentry"` + TcEgressFlowParse *cilium.Program `ebpf:"tc_egress_flow_parse"` + TcIngressFlowParse *cilium.Program `ebpf:"tc_ingress_flow_parse"` + TcxEgressFlowParse *cilium.Program `ebpf:"tcx_egress_flow_parse"` + TcxIngressFlowParse *cilium.Program `ebpf:"tcx_ingress_flow_parse"` + TcEgressPcaParse *cilium.Program `ebpf:"tc_egress_pca_parse"` + TcIngressPcaParse *cilium.Program `ebpf:"tc_ingress_pca_parse"` + TcxEgressPcaParse *cilium.Program `ebpf:"tcx_egress_pca_parse"` + TcxIngressPcaParse *cilium.Program `ebpf:"tcx_ingress_pca_parse"` + TCPRcvFentry *cilium.Program `ebpf:"tcp_rcv_fentry"` } type newBpfObjects struct { newBpfPrograms - BpfMaps + ebpf.BpfMaps } var newObjects newBpfObjects removeCommonHooks() @@ -974,8 +972,8 @@ func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, return objects, err } - objects = BpfObjects{ - BpfPrograms: BpfPrograms{ + objects = ebpf.BpfObjects{ + BpfPrograms: ebpf.BpfPrograms{ TcEgressFlowParse: newObjects.TcEgressFlowParse, TcIngressFlowParse: newObjects.TcIngressFlowParse, TcxEgressFlowParse: newObjects.TcxEgressFlowParse, @@ -989,7 +987,7 @@ func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, KfreeSkb: nil, RhNetworkEventsMonitoring: nil, }, - BpfMaps: BpfMaps{ + BpfMaps: ebpf.BpfMaps{ DirectFlows: newObjects.DirectFlows, AggregatedFlows: newObjects.AggregatedFlows, DnsFlows: newObjects.DnsFlows, @@ -1000,21 +998,21 @@ func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, case !supportNetworkEvents: type newBpfPrograms struct { - TcEgressFlowParse *ebpf.Program `ebpf:"tc_egress_flow_parse"` - TcIngressFlowParse *ebpf.Program `ebpf:"tc_ingress_flow_parse"` - TcxEgressFlowParse *ebpf.Program `ebpf:"tcx_egress_flow_parse"` - TcxIngressFlowParse *ebpf.Program `ebpf:"tcx_ingress_flow_parse"` - TcEgressPcaParse *ebpf.Program `ebpf:"tc_egress_pca_parse"` - TcIngressPcaParse *ebpf.Program `ebpf:"tc_ingress_pca_parse"` - TcxEgressPcaParse *ebpf.Program `ebpf:"tcx_egress_pca_parse"` - TcxIngressPcaParse *ebpf.Program `ebpf:"tcx_ingress_pca_parse"` - TCPRcvFentry *ebpf.Program `ebpf:"tcp_rcv_fentry"` - TCPRcvKprobe *ebpf.Program `ebpf:"tcp_rcv_kprobe"` - KfreeSkb *ebpf.Program `ebpf:"kfree_skb"` + TcEgressFlowParse *cilium.Program `ebpf:"tc_egress_flow_parse"` + TcIngressFlowParse *cilium.Program `ebpf:"tc_ingress_flow_parse"` + TcxEgressFlowParse *cilium.Program `ebpf:"tcx_egress_flow_parse"` + TcxIngressFlowParse *cilium.Program `ebpf:"tcx_ingress_flow_parse"` + TcEgressPcaParse *cilium.Program `ebpf:"tc_egress_pca_parse"` + TcIngressPcaParse *cilium.Program `ebpf:"tc_ingress_pca_parse"` + TcxEgressPcaParse *cilium.Program `ebpf:"tcx_egress_pca_parse"` + TcxIngressPcaParse *cilium.Program `ebpf:"tcx_ingress_pca_parse"` + TCPRcvFentry *cilium.Program `ebpf:"tcp_rcv_fentry"` + TCPRcvKprobe *cilium.Program `ebpf:"tcp_rcv_kprobe"` + KfreeSkb *cilium.Program `ebpf:"kfree_skb"` } type newBpfObjects struct { newBpfPrograms - BpfMaps + ebpf.BpfMaps } var newObjects newBpfObjects delete(spec.Programs, rhNetworkEventsMonitoringHook) @@ -1023,8 +1021,8 @@ func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, return objects, err } - objects = BpfObjects{ - BpfPrograms: BpfPrograms{ + objects = ebpf.BpfObjects{ + BpfPrograms: ebpf.BpfPrograms{ TcEgressFlowParse: newObjects.TcEgressFlowParse, TcIngressFlowParse: newObjects.TcIngressFlowParse, TcxEgressFlowParse: newObjects.TcxEgressFlowParse, @@ -1038,7 +1036,7 @@ func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, KfreeSkb: newObjects.KfreeSkb, RhNetworkEventsMonitoring: nil, }, - BpfMaps: BpfMaps{ + BpfMaps: ebpf.BpfMaps{ DirectFlows: newObjects.DirectFlows, AggregatedFlows: newObjects.AggregatedFlows, DnsFlows: newObjects.DnsFlows, @@ -1061,7 +1059,7 @@ func kernelSpecificLoadAndAssign(oldKernel, rtKernel, supportNetworkEvents bool, // It provides access to packets from the kernel space (via PerfCPU hashmap) type PacketFetcher struct { - objects *BpfObjects + objects *ebpf.BpfObjects qdiscs map[ifaces.Interface]*netlink.GenericQdisc egressFilters map[ifaces.Interface]*netlink.BpfFilter ingressFilters map[ifaces.Interface]*netlink.BpfFilter @@ -1080,8 +1078,8 @@ func NewPacketFetcher(cfg *FlowFetcherConfig) (*PacketFetcher, error) { Warn("can't remove mem lock. The agent could not be able to start eBPF programs") } - objects := BpfObjects{} - spec, err := LoadBpf() + objects := ebpf.BpfObjects{} + spec, err := ebpf.LoadBpf() if err != nil { return nil, err } @@ -1098,14 +1096,14 @@ func NewPacketFetcher(cfg *FlowFetcherConfig) (*PacketFetcher, error) { } type pcaBpfPrograms struct { - TcEgressPcaParse *ebpf.Program `ebpf:"tc_egress_pca_parse"` - TcIngressPcaParse *ebpf.Program `ebpf:"tc_ingress_pca_parse"` - TcxEgressPcaParse *ebpf.Program `ebpf:"tcx_egress_pca_parse"` - TcxIngressPcaParse *ebpf.Program `ebpf:"tcx_ingress_pca_parse"` + TcEgressPcaParse *cilium.Program `ebpf:"tc_egress_pca_parse"` + TcIngressPcaParse *cilium.Program `ebpf:"tc_ingress_pca_parse"` + TcxEgressPcaParse *cilium.Program `ebpf:"tcx_egress_pca_parse"` + TcxIngressPcaParse *cilium.Program `ebpf:"tcx_ingress_pca_parse"` } type newBpfObjects struct { pcaBpfPrograms - BpfMaps + ebpf.BpfMaps } var newObjects newBpfObjects delete(spec.Programs, pktDropHook) @@ -1123,7 +1121,7 @@ func NewPacketFetcher(cfg *FlowFetcherConfig) (*PacketFetcher, error) { delete(spec.Programs, constNetworkEventsMonitoringGroupID) if err := spec.LoadAndAssign(&newObjects, nil); err != nil { - var ve *ebpf.VerifierError + var ve *cilium.VerifierError if errors.As(err, &ve) { // Using %+v will print the whole verifier error, not just the last // few lines. @@ -1132,8 +1130,8 @@ func NewPacketFetcher(cfg *FlowFetcherConfig) (*PacketFetcher, error) { return nil, fmt.Errorf("loading and assigning BPF objects: %w", err) } - objects = BpfObjects{ - BpfPrograms: BpfPrograms{ + objects = ebpf.BpfObjects{ + BpfPrograms: ebpf.BpfPrograms{ TcEgressPcaParse: newObjects.TcEgressPcaParse, TcIngressPcaParse: newObjects.TcIngressPcaParse, TcxEgressPcaParse: newObjects.TcxEgressPcaParse, @@ -1147,7 +1145,7 @@ func NewPacketFetcher(cfg *FlowFetcherConfig) (*PacketFetcher, error) { KfreeSkb: nil, RhNetworkEventsMonitoring: nil, }, - BpfMaps: BpfMaps{ + BpfMaps: ebpf.BpfMaps{ PacketRecord: newObjects.PacketRecord, FilterMap: newObjects.FilterMap, }, @@ -1295,7 +1293,7 @@ func (p *PacketFetcher) AttachTCX(iface ifaces.Interface) error { if p.enableEgress { egrLink, err := link.AttachTCX(link.TCXOptions{ Program: p.objects.BpfPrograms.TcxEgressPcaParse, - Attach: ebpf.AttachTCXEgress, + Attach: cilium.AttachTCXEgress, Interface: iface.Index, }) if err != nil { @@ -1313,7 +1311,7 @@ func (p *PacketFetcher) AttachTCX(iface ifaces.Interface) error { if p.enableIngress { ingLink, err := link.AttachTCX(link.TCXOptions{ Program: p.objects.BpfPrograms.TcxIngressPcaParse, - Attach: ebpf.AttachTCXIngress, + Attach: cilium.AttachTCXIngress, Interface: iface.Index, }) if err != nil { @@ -1331,7 +1329,7 @@ func (p *PacketFetcher) AttachTCX(iface ifaces.Interface) error { return nil } -func fetchEgressEvents(iface ifaces.Interface, ipvlan netlink.Link, parser *ebpf.Program, name string) (*netlink.BpfFilter, error) { +func fetchEgressEvents(iface ifaces.Interface, ipvlan netlink.Link, parser *cilium.Program, name string) (*netlink.BpfFilter, error) { ilog := plog.WithField("iface", iface) egressAttrs := netlink.FilterAttrs{ LinkIndex: ipvlan.Attrs().Index, @@ -1370,7 +1368,7 @@ func (p *PacketFetcher) registerEgress(iface ifaces.Interface, ipvlan netlink.Li return nil } -func fetchIngressEvents(iface ifaces.Interface, ipvlan netlink.Link, parser *ebpf.Program, name string) (*netlink.BpfFilter, error) { +func fetchIngressEvents(iface ifaces.Interface, ipvlan netlink.Link, parser *cilium.Program, name string) (*netlink.BpfFilter, error) { ilog := plog.WithField("iface", iface) ingressAttrs := netlink.FilterAttrs{ LinkIndex: ipvlan.Attrs().Index, @@ -1509,7 +1507,7 @@ func (p *PacketFetcher) LookupAndDeleteMap(met *metrics.Metrics) map[int][]*byte // Run the atomic Lookup+Delete; if new ids have been inserted in the meantime, they'll be fetched next time for i, id := range ids { if err := packetMap.LookupAndDelete(&id, &packet); err != nil { - if i == 0 && errors.Is(err, ebpf.ErrNotSupported) { + if i == 0 && errors.Is(err, cilium.ErrNotSupported) { log.WithError(err).Warnf("switching to legacy mode") p.lookupAndDeleteSupported = false return p.legacyLookupAndDeleteMap(met) diff --git a/pkg/ebpf/tracer_legacy.go b/pkg/tracer/tracer_legacy.go similarity index 83% rename from pkg/ebpf/tracer_legacy.go rename to pkg/tracer/tracer_legacy.go index 3d7a9a6cd..5c5b7dc85 100644 --- a/pkg/ebpf/tracer_legacy.go +++ b/pkg/tracer/tracer_legacy.go @@ -1,16 +1,19 @@ -package ebpf +package tracer -import "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" +import ( + "github.com/netobserv/netobserv-ebpf-agent/pkg/ebpf" + "github.com/netobserv/netobserv-ebpf-agent/pkg/metrics" +) // This file contains legacy implementations kept for old kernels -func (m *FlowFetcher) legacyLookupAndDeleteMap(met *metrics.Metrics) map[BpfFlowId][]BpfFlowMetrics { +func (m *FlowFetcher) legacyLookupAndDeleteMap(met *metrics.Metrics) map[ebpf.BpfFlowId][]ebpf.BpfFlowMetrics { flowMap := m.objects.AggregatedFlows iterator := flowMap.Iterate() - var flows = make(map[BpfFlowId][]BpfFlowMetrics, m.cacheMaxSize) - var id BpfFlowId - var metrics []BpfFlowMetrics + var flows = make(map[ebpf.BpfFlowId][]ebpf.BpfFlowMetrics, m.cacheMaxSize) + var id ebpf.BpfFlowId + var metrics []ebpf.BpfFlowMetrics count := 0 // Deleting while iterating is really bad for performance (like, really!) as it causes seeing multiple times the same key diff --git a/pkg/utils/packets.go b/pkg/utils/packets/packets.go similarity index 95% rename from pkg/utils/packets.go rename to pkg/utils/packets/packets.go index feddb817e..af3f4d2f6 100644 --- a/pkg/utils/packets.go +++ b/pkg/utils/packets/packets.go @@ -1,12 +1,12 @@ -package utils +package packets import ( "encoding/binary" "fmt" "time" - "github.com/google/gopacket" - "github.com/google/gopacket/layers" + "github.com/gopacket/gopacket" + "github.com/gopacket/gopacket/layers" ) // PCAP Magic number is fixed for each endianness. diff --git a/vendor/github.com/google/gopacket/.travis.gofmt.sh b/vendor/github.com/google/gopacket/.travis.gofmt.sh deleted file mode 100644 index e341a1cb7..000000000 --- a/vendor/github.com/google/gopacket/.travis.gofmt.sh +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/bash - -cd "$(dirname $0)" -if [ -n "$(go fmt ./...)" ]; then - echo "Go code is not formatted, run 'go fmt github.com/google/stenographer/...'" >&2 - exit 1 -fi diff --git a/vendor/github.com/google/gopacket/.travis.golint.sh b/vendor/github.com/google/gopacket/.travis.golint.sh deleted file mode 100644 index 0e267f521..000000000 --- a/vendor/github.com/google/gopacket/.travis.golint.sh +++ /dev/null @@ -1,28 +0,0 @@ -#!/bin/bash - -cd "$(dirname $0)" - -go get golang.org/x/lint/golint -DIRS=". tcpassembly tcpassembly/tcpreader ip4defrag reassembly macs pcapgo pcap afpacket pfring routing defrag/lcmdefrag" -# Add subdirectories here as we clean up golint on each. -for subdir in $DIRS; do - pushd $subdir - if golint | - grep -v CannotSetRFMon | # pcap exported error name - grep -v DataLost | # tcpassembly/tcpreader exported error name - grep .; then - exit 1 - fi - popd -done - -pushd layers -for file in *.go; do - if cat .lint_blacklist | grep -q $file; then - echo "Skipping lint of $file due to .lint_blacklist" - elif golint $file | grep .; then - echo "Lint error in file $file" - exit 1 - fi -done -popd diff --git a/vendor/github.com/google/gopacket/.travis.govet.sh b/vendor/github.com/google/gopacket/.travis.govet.sh deleted file mode 100644 index a5c13544c..000000000 --- a/vendor/github.com/google/gopacket/.travis.govet.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -cd "$(dirname $0)" -DIRS=". layers pcap pcapgo tcpassembly tcpassembly/tcpreader routing ip4defrag bytediff macs defrag/lcmdefrag" -set -e -for subdir in $DIRS; do - pushd $subdir - go vet - popd -done diff --git a/vendor/github.com/google/gopacket/.travis.install.sh b/vendor/github.com/google/gopacket/.travis.install.sh deleted file mode 100644 index 648c90163..000000000 --- a/vendor/github.com/google/gopacket/.travis.install.sh +++ /dev/null @@ -1,9 +0,0 @@ -#!/bin/bash - -set -ev - -go get github.com/google/gopacket -go get github.com/google/gopacket/layers -go get github.com/google/gopacket/tcpassembly -go get github.com/google/gopacket/reassembly -go get github.com/google/gopacket/pcapgo diff --git a/vendor/github.com/google/gopacket/.travis.script.sh b/vendor/github.com/google/gopacket/.travis.script.sh deleted file mode 100644 index a483f4f7c..000000000 --- a/vendor/github.com/google/gopacket/.travis.script.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -set -ev - -go test github.com/google/gopacket -go test github.com/google/gopacket/layers -go test github.com/google/gopacket/tcpassembly -go test github.com/google/gopacket/reassembly -go test github.com/google/gopacket/pcapgo -go test github.com/google/gopacket/pcap diff --git a/vendor/github.com/google/gopacket/.travis.yml b/vendor/github.com/google/gopacket/.travis.yml deleted file mode 100644 index 84f1f4945..000000000 --- a/vendor/github.com/google/gopacket/.travis.yml +++ /dev/null @@ -1,57 +0,0 @@ -language: go -go: - - 1.11.x - - 1.12.x - - 1.13.x - - master - -addons: - apt: - packages: - libpcap-dev - -# use modules except for older versions (see below) -install: true - -env: - - GO111MODULE=on - -script: ./.travis.script.sh - -matrix: - fast_finish: true - allow_failures: - - go: master - -jobs: - include: - - go: 1.5.x - install: ./.travis.install.sh - - go: 1.6.x - install: ./.travis.install.sh - - go: 1.7.x - install: ./.travis.install.sh - - go: 1.8.x - install: ./.travis.install.sh - - go: 1.9.x - install: ./.travis.install.sh - - go: 1.10.x - install: ./.travis.install.sh - - os: osx - go: 1.x -# windows doesn't work on travis (package installation just hangs and then errors out) -# - os: windows -# go: 1.x -# # We don't need nmap - but that's the only way to get npcap: -# before_install: choco install npcap --version 0.86 -y - - stage: style - name: "fmt/vet/lint" - go: 1.x - script: - - ./.travis.gofmt.sh - - ./.travis.govet.sh - - ./.travis.golint.sh - -stages: - - style - - test diff --git a/vendor/github.com/google/gopacket/README.md b/vendor/github.com/google/gopacket/README.md deleted file mode 100644 index efe462ee1..000000000 --- a/vendor/github.com/google/gopacket/README.md +++ /dev/null @@ -1,12 +0,0 @@ -# GoPacket - -This library provides packet decoding capabilities for Go. -See [godoc](https://godoc.org/github.com/google/gopacket) for more details. - -[![Build Status](https://travis-ci.org/google/gopacket.svg?branch=master)](https://travis-ci.org/google/gopacket) -[![GoDoc](https://godoc.org/github.com/google/gopacket?status.svg)](https://godoc.org/github.com/google/gopacket) - -Minimum Go version required is 1.5 except for pcapgo/EthernetHandle, afpacket, and bsdbpf which need at least 1.9 due to x/sys/unix dependencies. - -Originally forked from the gopcap project written by Andreas -Krennmair (http://github.com/akrennmair/gopcap). diff --git a/vendor/github.com/google/gopacket/layers/enums_generated.go b/vendor/github.com/google/gopacket/layers/enums_generated.go deleted file mode 100644 index bf77aac50..000000000 --- a/vendor/github.com/google/gopacket/layers/enums_generated.go +++ /dev/null @@ -1,434 +0,0 @@ -// Copyright 2012 Google, Inc. All rights reserved. - -package layers - -// Created by gen2.go, don't edit manually -// Generated at 2017-10-23 10:20:24.458771856 -0600 MDT m=+0.001159033 - -import ( - "fmt" - - "github.com/google/gopacket" -) - -func init() { - initUnknownTypesForLinkType() - initUnknownTypesForEthernetType() - initUnknownTypesForPPPType() - initUnknownTypesForIPProtocol() - initUnknownTypesForSCTPChunkType() - initUnknownTypesForPPPoECode() - initUnknownTypesForFDDIFrameControl() - initUnknownTypesForEAPOLType() - initUnknownTypesForProtocolFamily() - initUnknownTypesForDot11Type() - initUnknownTypesForUSBTransportType() - initActualTypeData() -} - -// Decoder calls LinkTypeMetadata.DecodeWith's decoder. -func (a LinkType) Decode(data []byte, p gopacket.PacketBuilder) error { - return LinkTypeMetadata[a].DecodeWith.Decode(data, p) -} - -// String returns LinkTypeMetadata.Name. -func (a LinkType) String() string { - return LinkTypeMetadata[a].Name -} - -// LayerType returns LinkTypeMetadata.LayerType. -func (a LinkType) LayerType() gopacket.LayerType { - return LinkTypeMetadata[a].LayerType -} - -type errorDecoderForLinkType int - -func (a *errorDecoderForLinkType) Decode(data []byte, p gopacket.PacketBuilder) error { - return a -} -func (a *errorDecoderForLinkType) Error() string { - return fmt.Sprintf("Unable to decode LinkType %d", int(*a)) -} - -var errorDecodersForLinkType [256]errorDecoderForLinkType -var LinkTypeMetadata [256]EnumMetadata - -func initUnknownTypesForLinkType() { - for i := 0; i < 256; i++ { - errorDecodersForLinkType[i] = errorDecoderForLinkType(i) - LinkTypeMetadata[i] = EnumMetadata{ - DecodeWith: &errorDecodersForLinkType[i], - Name: "UnknownLinkType", - } - } -} - -// Decoder calls EthernetTypeMetadata.DecodeWith's decoder. -func (a EthernetType) Decode(data []byte, p gopacket.PacketBuilder) error { - return EthernetTypeMetadata[a].DecodeWith.Decode(data, p) -} - -// String returns EthernetTypeMetadata.Name. -func (a EthernetType) String() string { - return EthernetTypeMetadata[a].Name -} - -// LayerType returns EthernetTypeMetadata.LayerType. -func (a EthernetType) LayerType() gopacket.LayerType { - return EthernetTypeMetadata[a].LayerType -} - -type errorDecoderForEthernetType int - -func (a *errorDecoderForEthernetType) Decode(data []byte, p gopacket.PacketBuilder) error { - return a -} -func (a *errorDecoderForEthernetType) Error() string { - return fmt.Sprintf("Unable to decode EthernetType %d", int(*a)) -} - -var errorDecodersForEthernetType [65536]errorDecoderForEthernetType -var EthernetTypeMetadata [65536]EnumMetadata - -func initUnknownTypesForEthernetType() { - for i := 0; i < 65536; i++ { - errorDecodersForEthernetType[i] = errorDecoderForEthernetType(i) - EthernetTypeMetadata[i] = EnumMetadata{ - DecodeWith: &errorDecodersForEthernetType[i], - Name: "UnknownEthernetType", - } - } -} - -// Decoder calls PPPTypeMetadata.DecodeWith's decoder. -func (a PPPType) Decode(data []byte, p gopacket.PacketBuilder) error { - return PPPTypeMetadata[a].DecodeWith.Decode(data, p) -} - -// String returns PPPTypeMetadata.Name. -func (a PPPType) String() string { - return PPPTypeMetadata[a].Name -} - -// LayerType returns PPPTypeMetadata.LayerType. -func (a PPPType) LayerType() gopacket.LayerType { - return PPPTypeMetadata[a].LayerType -} - -type errorDecoderForPPPType int - -func (a *errorDecoderForPPPType) Decode(data []byte, p gopacket.PacketBuilder) error { - return a -} -func (a *errorDecoderForPPPType) Error() string { - return fmt.Sprintf("Unable to decode PPPType %d", int(*a)) -} - -var errorDecodersForPPPType [65536]errorDecoderForPPPType -var PPPTypeMetadata [65536]EnumMetadata - -func initUnknownTypesForPPPType() { - for i := 0; i < 65536; i++ { - errorDecodersForPPPType[i] = errorDecoderForPPPType(i) - PPPTypeMetadata[i] = EnumMetadata{ - DecodeWith: &errorDecodersForPPPType[i], - Name: "UnknownPPPType", - } - } -} - -// Decoder calls IPProtocolMetadata.DecodeWith's decoder. -func (a IPProtocol) Decode(data []byte, p gopacket.PacketBuilder) error { - return IPProtocolMetadata[a].DecodeWith.Decode(data, p) -} - -// String returns IPProtocolMetadata.Name. -func (a IPProtocol) String() string { - return IPProtocolMetadata[a].Name -} - -// LayerType returns IPProtocolMetadata.LayerType. -func (a IPProtocol) LayerType() gopacket.LayerType { - return IPProtocolMetadata[a].LayerType -} - -type errorDecoderForIPProtocol int - -func (a *errorDecoderForIPProtocol) Decode(data []byte, p gopacket.PacketBuilder) error { - return a -} -func (a *errorDecoderForIPProtocol) Error() string { - return fmt.Sprintf("Unable to decode IPProtocol %d", int(*a)) -} - -var errorDecodersForIPProtocol [256]errorDecoderForIPProtocol -var IPProtocolMetadata [256]EnumMetadata - -func initUnknownTypesForIPProtocol() { - for i := 0; i < 256; i++ { - errorDecodersForIPProtocol[i] = errorDecoderForIPProtocol(i) - IPProtocolMetadata[i] = EnumMetadata{ - DecodeWith: &errorDecodersForIPProtocol[i], - Name: "UnknownIPProtocol", - } - } -} - -// Decoder calls SCTPChunkTypeMetadata.DecodeWith's decoder. -func (a SCTPChunkType) Decode(data []byte, p gopacket.PacketBuilder) error { - return SCTPChunkTypeMetadata[a].DecodeWith.Decode(data, p) -} - -// String returns SCTPChunkTypeMetadata.Name. -func (a SCTPChunkType) String() string { - return SCTPChunkTypeMetadata[a].Name -} - -// LayerType returns SCTPChunkTypeMetadata.LayerType. -func (a SCTPChunkType) LayerType() gopacket.LayerType { - return SCTPChunkTypeMetadata[a].LayerType -} - -type errorDecoderForSCTPChunkType int - -func (a *errorDecoderForSCTPChunkType) Decode(data []byte, p gopacket.PacketBuilder) error { - return a -} -func (a *errorDecoderForSCTPChunkType) Error() string { - return fmt.Sprintf("Unable to decode SCTPChunkType %d", int(*a)) -} - -var errorDecodersForSCTPChunkType [256]errorDecoderForSCTPChunkType -var SCTPChunkTypeMetadata [256]EnumMetadata - -func initUnknownTypesForSCTPChunkType() { - for i := 0; i < 256; i++ { - errorDecodersForSCTPChunkType[i] = errorDecoderForSCTPChunkType(i) - SCTPChunkTypeMetadata[i] = EnumMetadata{ - DecodeWith: &errorDecodersForSCTPChunkType[i], - Name: "UnknownSCTPChunkType", - } - } -} - -// Decoder calls PPPoECodeMetadata.DecodeWith's decoder. -func (a PPPoECode) Decode(data []byte, p gopacket.PacketBuilder) error { - return PPPoECodeMetadata[a].DecodeWith.Decode(data, p) -} - -// String returns PPPoECodeMetadata.Name. -func (a PPPoECode) String() string { - return PPPoECodeMetadata[a].Name -} - -// LayerType returns PPPoECodeMetadata.LayerType. -func (a PPPoECode) LayerType() gopacket.LayerType { - return PPPoECodeMetadata[a].LayerType -} - -type errorDecoderForPPPoECode int - -func (a *errorDecoderForPPPoECode) Decode(data []byte, p gopacket.PacketBuilder) error { - return a -} -func (a *errorDecoderForPPPoECode) Error() string { - return fmt.Sprintf("Unable to decode PPPoECode %d", int(*a)) -} - -var errorDecodersForPPPoECode [256]errorDecoderForPPPoECode -var PPPoECodeMetadata [256]EnumMetadata - -func initUnknownTypesForPPPoECode() { - for i := 0; i < 256; i++ { - errorDecodersForPPPoECode[i] = errorDecoderForPPPoECode(i) - PPPoECodeMetadata[i] = EnumMetadata{ - DecodeWith: &errorDecodersForPPPoECode[i], - Name: "UnknownPPPoECode", - } - } -} - -// Decoder calls FDDIFrameControlMetadata.DecodeWith's decoder. -func (a FDDIFrameControl) Decode(data []byte, p gopacket.PacketBuilder) error { - return FDDIFrameControlMetadata[a].DecodeWith.Decode(data, p) -} - -// String returns FDDIFrameControlMetadata.Name. -func (a FDDIFrameControl) String() string { - return FDDIFrameControlMetadata[a].Name -} - -// LayerType returns FDDIFrameControlMetadata.LayerType. -func (a FDDIFrameControl) LayerType() gopacket.LayerType { - return FDDIFrameControlMetadata[a].LayerType -} - -type errorDecoderForFDDIFrameControl int - -func (a *errorDecoderForFDDIFrameControl) Decode(data []byte, p gopacket.PacketBuilder) error { - return a -} -func (a *errorDecoderForFDDIFrameControl) Error() string { - return fmt.Sprintf("Unable to decode FDDIFrameControl %d", int(*a)) -} - -var errorDecodersForFDDIFrameControl [256]errorDecoderForFDDIFrameControl -var FDDIFrameControlMetadata [256]EnumMetadata - -func initUnknownTypesForFDDIFrameControl() { - for i := 0; i < 256; i++ { - errorDecodersForFDDIFrameControl[i] = errorDecoderForFDDIFrameControl(i) - FDDIFrameControlMetadata[i] = EnumMetadata{ - DecodeWith: &errorDecodersForFDDIFrameControl[i], - Name: "UnknownFDDIFrameControl", - } - } -} - -// Decoder calls EAPOLTypeMetadata.DecodeWith's decoder. -func (a EAPOLType) Decode(data []byte, p gopacket.PacketBuilder) error { - return EAPOLTypeMetadata[a].DecodeWith.Decode(data, p) -} - -// String returns EAPOLTypeMetadata.Name. -func (a EAPOLType) String() string { - return EAPOLTypeMetadata[a].Name -} - -// LayerType returns EAPOLTypeMetadata.LayerType. -func (a EAPOLType) LayerType() gopacket.LayerType { - return EAPOLTypeMetadata[a].LayerType -} - -type errorDecoderForEAPOLType int - -func (a *errorDecoderForEAPOLType) Decode(data []byte, p gopacket.PacketBuilder) error { - return a -} -func (a *errorDecoderForEAPOLType) Error() string { - return fmt.Sprintf("Unable to decode EAPOLType %d", int(*a)) -} - -var errorDecodersForEAPOLType [256]errorDecoderForEAPOLType -var EAPOLTypeMetadata [256]EnumMetadata - -func initUnknownTypesForEAPOLType() { - for i := 0; i < 256; i++ { - errorDecodersForEAPOLType[i] = errorDecoderForEAPOLType(i) - EAPOLTypeMetadata[i] = EnumMetadata{ - DecodeWith: &errorDecodersForEAPOLType[i], - Name: "UnknownEAPOLType", - } - } -} - -// Decoder calls ProtocolFamilyMetadata.DecodeWith's decoder. -func (a ProtocolFamily) Decode(data []byte, p gopacket.PacketBuilder) error { - return ProtocolFamilyMetadata[a].DecodeWith.Decode(data, p) -} - -// String returns ProtocolFamilyMetadata.Name. -func (a ProtocolFamily) String() string { - return ProtocolFamilyMetadata[a].Name -} - -// LayerType returns ProtocolFamilyMetadata.LayerType. -func (a ProtocolFamily) LayerType() gopacket.LayerType { - return ProtocolFamilyMetadata[a].LayerType -} - -type errorDecoderForProtocolFamily int - -func (a *errorDecoderForProtocolFamily) Decode(data []byte, p gopacket.PacketBuilder) error { - return a -} -func (a *errorDecoderForProtocolFamily) Error() string { - return fmt.Sprintf("Unable to decode ProtocolFamily %d", int(*a)) -} - -var errorDecodersForProtocolFamily [256]errorDecoderForProtocolFamily -var ProtocolFamilyMetadata [256]EnumMetadata - -func initUnknownTypesForProtocolFamily() { - for i := 0; i < 256; i++ { - errorDecodersForProtocolFamily[i] = errorDecoderForProtocolFamily(i) - ProtocolFamilyMetadata[i] = EnumMetadata{ - DecodeWith: &errorDecodersForProtocolFamily[i], - Name: "UnknownProtocolFamily", - } - } -} - -// Decoder calls Dot11TypeMetadata.DecodeWith's decoder. -func (a Dot11Type) Decode(data []byte, p gopacket.PacketBuilder) error { - return Dot11TypeMetadata[a].DecodeWith.Decode(data, p) -} - -// String returns Dot11TypeMetadata.Name. -func (a Dot11Type) String() string { - return Dot11TypeMetadata[a].Name -} - -// LayerType returns Dot11TypeMetadata.LayerType. -func (a Dot11Type) LayerType() gopacket.LayerType { - return Dot11TypeMetadata[a].LayerType -} - -type errorDecoderForDot11Type int - -func (a *errorDecoderForDot11Type) Decode(data []byte, p gopacket.PacketBuilder) error { - return a -} -func (a *errorDecoderForDot11Type) Error() string { - return fmt.Sprintf("Unable to decode Dot11Type %d", int(*a)) -} - -var errorDecodersForDot11Type [256]errorDecoderForDot11Type -var Dot11TypeMetadata [256]EnumMetadata - -func initUnknownTypesForDot11Type() { - for i := 0; i < 256; i++ { - errorDecodersForDot11Type[i] = errorDecoderForDot11Type(i) - Dot11TypeMetadata[i] = EnumMetadata{ - DecodeWith: &errorDecodersForDot11Type[i], - Name: "UnknownDot11Type", - } - } -} - -// Decoder calls USBTransportTypeMetadata.DecodeWith's decoder. -func (a USBTransportType) Decode(data []byte, p gopacket.PacketBuilder) error { - return USBTransportTypeMetadata[a].DecodeWith.Decode(data, p) -} - -// String returns USBTransportTypeMetadata.Name. -func (a USBTransportType) String() string { - return USBTransportTypeMetadata[a].Name -} - -// LayerType returns USBTransportTypeMetadata.LayerType. -func (a USBTransportType) LayerType() gopacket.LayerType { - return USBTransportTypeMetadata[a].LayerType -} - -type errorDecoderForUSBTransportType int - -func (a *errorDecoderForUSBTransportType) Decode(data []byte, p gopacket.PacketBuilder) error { - return a -} -func (a *errorDecoderForUSBTransportType) Error() string { - return fmt.Sprintf("Unable to decode USBTransportType %d", int(*a)) -} - -var errorDecodersForUSBTransportType [256]errorDecoderForUSBTransportType -var USBTransportTypeMetadata [256]EnumMetadata - -func initUnknownTypesForUSBTransportType() { - for i := 0; i < 256; i++ { - errorDecodersForUSBTransportType[i] = errorDecoderForUSBTransportType(i) - USBTransportTypeMetadata[i] = EnumMetadata{ - DecodeWith: &errorDecodersForUSBTransportType[i], - Name: "UnknownUSBTransportType", - } - } -} diff --git a/vendor/github.com/google/gopacket/layers/iana_ports.go b/vendor/github.com/google/gopacket/layers/iana_ports.go deleted file mode 100644 index ddcf3ecdb..000000000 --- a/vendor/github.com/google/gopacket/layers/iana_ports.go +++ /dev/null @@ -1,11351 +0,0 @@ -// Copyright 2012 Google, Inc. All rights reserved. - -package layers - -// Created by gen.go, don't edit manually -// Generated at 2017-10-23 09:57:28.214859163 -0600 MDT m=+1.011679290 -// Fetched from "http://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml" - -// TCPPortNames contains the port names for all TCP ports. -var TCPPortNames = tcpPortNames - -// UDPPortNames contains the port names for all UDP ports. -var UDPPortNames = udpPortNames - -// SCTPPortNames contains the port names for all SCTP ports. -var SCTPPortNames = sctpPortNames - -var tcpPortNames = map[TCPPort]string{ - 1: "tcpmux", - 2: "compressnet", - 3: "compressnet", - 5: "rje", - 7: "echo", - 9: "discard", - 11: "systat", - 13: "daytime", - 17: "qotd", - 18: "msp", - 19: "chargen", - 20: "ftp-data", - 21: "ftp", - 22: "ssh", - 23: "telnet", - 25: "smtp", - 27: "nsw-fe", - 29: "msg-icp", - 31: "msg-auth", - 33: "dsp", - 37: "time", - 38: "rap", - 39: "rlp", - 41: "graphics", - 42: "name", - 43: "nicname", - 44: "mpm-flags", - 45: "mpm", - 46: "mpm-snd", - 48: "auditd", - 49: "tacacs", - 50: "re-mail-ck", - 52: "xns-time", - 53: "domain", - 54: "xns-ch", - 55: "isi-gl", - 56: "xns-auth", - 58: "xns-mail", - 62: "acas", - 63: "whoispp", - 64: "covia", - 65: "tacacs-ds", - 66: "sql-net", - 67: "bootps", - 68: "bootpc", - 69: "tftp", - 70: "gopher", - 71: "netrjs-1", - 72: "netrjs-2", - 73: "netrjs-3", - 74: "netrjs-4", - 76: "deos", - 78: "vettcp", - 79: "finger", - 80: "http", - 82: "xfer", - 83: "mit-ml-dev", - 84: "ctf", - 85: "mit-ml-dev", - 86: "mfcobol", - 88: "kerberos", - 89: "su-mit-tg", - 90: "dnsix", - 91: "mit-dov", - 92: "npp", - 93: "dcp", - 94: "objcall", - 95: "supdup", - 96: "dixie", - 97: "swift-rvf", - 98: "tacnews", - 99: "metagram", - 101: "hostname", - 102: "iso-tsap", - 103: "gppitnp", - 104: "acr-nema", - 105: "cso", - 106: "3com-tsmux", - 107: "rtelnet", - 108: "snagas", - 109: "pop2", - 110: "pop3", - 111: "sunrpc", - 112: "mcidas", - 113: "ident", - 115: "sftp", - 116: "ansanotify", - 117: "uucp-path", - 118: "sqlserv", - 119: "nntp", - 120: "cfdptkt", - 121: "erpc", - 122: "smakynet", - 123: "ntp", - 124: "ansatrader", - 125: "locus-map", - 126: "nxedit", - 127: "locus-con", - 128: "gss-xlicen", - 129: "pwdgen", - 130: "cisco-fna", - 131: "cisco-tna", - 132: "cisco-sys", - 133: "statsrv", - 134: "ingres-net", - 135: "epmap", - 136: "profile", - 137: "netbios-ns", - 138: "netbios-dgm", - 139: "netbios-ssn", - 140: "emfis-data", - 141: "emfis-cntl", - 142: "bl-idm", - 143: "imap", - 144: "uma", - 145: "uaac", - 146: "iso-tp0", - 147: "iso-ip", - 148: "jargon", - 149: "aed-512", - 150: "sql-net", - 151: "hems", - 152: "bftp", - 153: "sgmp", - 154: "netsc-prod", - 155: "netsc-dev", - 156: "sqlsrv", - 157: "knet-cmp", - 158: "pcmail-srv", - 159: "nss-routing", - 160: "sgmp-traps", - 161: "snmp", - 162: "snmptrap", - 163: "cmip-man", - 164: "cmip-agent", - 165: "xns-courier", - 166: "s-net", - 167: "namp", - 168: "rsvd", - 169: "send", - 170: "print-srv", - 171: "multiplex", - 172: "cl-1", - 173: "xyplex-mux", - 174: "mailq", - 175: "vmnet", - 176: "genrad-mux", - 177: "xdmcp", - 178: "nextstep", - 179: "bgp", - 180: "ris", - 181: "unify", - 182: "audit", - 183: "ocbinder", - 184: "ocserver", - 185: "remote-kis", - 186: "kis", - 187: "aci", - 188: "mumps", - 189: "qft", - 190: "gacp", - 191: "prospero", - 192: "osu-nms", - 193: "srmp", - 194: "irc", - 195: "dn6-nlm-aud", - 196: "dn6-smm-red", - 197: "dls", - 198: "dls-mon", - 199: "smux", - 200: "src", - 201: "at-rtmp", - 202: "at-nbp", - 203: "at-3", - 204: "at-echo", - 205: "at-5", - 206: "at-zis", - 207: "at-7", - 208: "at-8", - 209: "qmtp", - 210: "z39-50", - 211: "914c-g", - 212: "anet", - 213: "ipx", - 214: "vmpwscs", - 215: "softpc", - 216: "CAIlic", - 217: "dbase", - 218: "mpp", - 219: "uarps", - 220: "imap3", - 221: "fln-spx", - 222: "rsh-spx", - 223: "cdc", - 224: "masqdialer", - 242: "direct", - 243: "sur-meas", - 244: "inbusiness", - 245: "link", - 246: "dsp3270", - 247: "subntbcst-tftp", - 248: "bhfhs", - 256: "rap", - 257: "set", - 259: "esro-gen", - 260: "openport", - 261: "nsiiops", - 262: "arcisdms", - 263: "hdap", - 264: "bgmp", - 265: "x-bone-ctl", - 266: "sst", - 267: "td-service", - 268: "td-replica", - 269: "manet", - 271: "pt-tls", - 280: "http-mgmt", - 281: "personal-link", - 282: "cableport-ax", - 283: "rescap", - 284: "corerjd", - 286: "fxp", - 287: "k-block", - 308: "novastorbakcup", - 309: "entrusttime", - 310: "bhmds", - 311: "asip-webadmin", - 312: "vslmp", - 313: "magenta-logic", - 314: "opalis-robot", - 315: "dpsi", - 316: "decauth", - 317: "zannet", - 318: "pkix-timestamp", - 319: "ptp-event", - 320: "ptp-general", - 321: "pip", - 322: "rtsps", - 323: "rpki-rtr", - 324: "rpki-rtr-tls", - 333: "texar", - 344: "pdap", - 345: "pawserv", - 346: "zserv", - 347: "fatserv", - 348: "csi-sgwp", - 349: "mftp", - 350: "matip-type-a", - 351: "matip-type-b", - 352: "dtag-ste-sb", - 353: "ndsauth", - 354: "bh611", - 355: "datex-asn", - 356: "cloanto-net-1", - 357: "bhevent", - 358: "shrinkwrap", - 359: "nsrmp", - 360: "scoi2odialog", - 361: "semantix", - 362: "srssend", - 363: "rsvp-tunnel", - 364: "aurora-cmgr", - 365: "dtk", - 366: "odmr", - 367: "mortgageware", - 368: "qbikgdp", - 369: "rpc2portmap", - 370: "codaauth2", - 371: "clearcase", - 372: "ulistproc", - 373: "legent-1", - 374: "legent-2", - 375: "hassle", - 376: "nip", - 377: "tnETOS", - 378: "dsETOS", - 379: "is99c", - 380: "is99s", - 381: "hp-collector", - 382: "hp-managed-node", - 383: "hp-alarm-mgr", - 384: "arns", - 385: "ibm-app", - 386: "asa", - 387: "aurp", - 388: "unidata-ldm", - 389: "ldap", - 390: "uis", - 391: "synotics-relay", - 392: "synotics-broker", - 393: "meta5", - 394: "embl-ndt", - 395: "netcp", - 396: "netware-ip", - 397: "mptn", - 398: "kryptolan", - 399: "iso-tsap-c2", - 400: "osb-sd", - 401: "ups", - 402: "genie", - 403: "decap", - 404: "nced", - 405: "ncld", - 406: "imsp", - 407: "timbuktu", - 408: "prm-sm", - 409: "prm-nm", - 410: "decladebug", - 411: "rmt", - 412: "synoptics-trap", - 413: "smsp", - 414: "infoseek", - 415: "bnet", - 416: "silverplatter", - 417: "onmux", - 418: "hyper-g", - 419: "ariel1", - 420: "smpte", - 421: "ariel2", - 422: "ariel3", - 423: "opc-job-start", - 424: "opc-job-track", - 425: "icad-el", - 426: "smartsdp", - 427: "svrloc", - 428: "ocs-cmu", - 429: "ocs-amu", - 430: "utmpsd", - 431: "utmpcd", - 432: "iasd", - 433: "nnsp", - 434: "mobileip-agent", - 435: "mobilip-mn", - 436: "dna-cml", - 437: "comscm", - 438: "dsfgw", - 439: "dasp", - 440: "sgcp", - 441: "decvms-sysmgt", - 442: "cvc-hostd", - 443: "https", - 444: "snpp", - 445: "microsoft-ds", - 446: "ddm-rdb", - 447: "ddm-dfm", - 448: "ddm-ssl", - 449: "as-servermap", - 450: "tserver", - 451: "sfs-smp-net", - 452: "sfs-config", - 453: "creativeserver", - 454: "contentserver", - 455: "creativepartnr", - 456: "macon-tcp", - 457: "scohelp", - 458: "appleqtc", - 459: "ampr-rcmd", - 460: "skronk", - 461: "datasurfsrv", - 462: "datasurfsrvsec", - 463: "alpes", - 464: "kpasswd", - 465: "urd", - 466: "digital-vrc", - 467: "mylex-mapd", - 468: "photuris", - 469: "rcp", - 470: "scx-proxy", - 471: "mondex", - 472: "ljk-login", - 473: "hybrid-pop", - 474: "tn-tl-w1", - 475: "tcpnethaspsrv", - 476: "tn-tl-fd1", - 477: "ss7ns", - 478: "spsc", - 479: "iafserver", - 480: "iafdbase", - 481: "ph", - 482: "bgs-nsi", - 483: "ulpnet", - 484: "integra-sme", - 485: "powerburst", - 486: "avian", - 487: "saft", - 488: "gss-http", - 489: "nest-protocol", - 490: "micom-pfs", - 491: "go-login", - 492: "ticf-1", - 493: "ticf-2", - 494: "pov-ray", - 495: "intecourier", - 496: "pim-rp-disc", - 497: "retrospect", - 498: "siam", - 499: "iso-ill", - 500: "isakmp", - 501: "stmf", - 502: "mbap", - 503: "intrinsa", - 504: "citadel", - 505: "mailbox-lm", - 506: "ohimsrv", - 507: "crs", - 508: "xvttp", - 509: "snare", - 510: "fcp", - 511: "passgo", - 512: "exec", - 513: "login", - 514: "shell", - 515: "printer", - 516: "videotex", - 517: "talk", - 518: "ntalk", - 519: "utime", - 520: "efs", - 521: "ripng", - 522: "ulp", - 523: "ibm-db2", - 524: "ncp", - 525: "timed", - 526: "tempo", - 527: "stx", - 528: "custix", - 529: "irc-serv", - 530: "courier", - 531: "conference", - 532: "netnews", - 533: "netwall", - 534: "windream", - 535: "iiop", - 536: "opalis-rdv", - 537: "nmsp", - 538: "gdomap", - 539: "apertus-ldp", - 540: "uucp", - 541: "uucp-rlogin", - 542: "commerce", - 543: "klogin", - 544: "kshell", - 545: "appleqtcsrvr", - 546: "dhcpv6-client", - 547: "dhcpv6-server", - 548: "afpovertcp", - 549: "idfp", - 550: "new-rwho", - 551: "cybercash", - 552: "devshr-nts", - 553: "pirp", - 554: "rtsp", - 555: "dsf", - 556: "remotefs", - 557: "openvms-sysipc", - 558: "sdnskmp", - 559: "teedtap", - 560: "rmonitor", - 561: "monitor", - 562: "chshell", - 563: "nntps", - 564: "9pfs", - 565: "whoami", - 566: "streettalk", - 567: "banyan-rpc", - 568: "ms-shuttle", - 569: "ms-rome", - 570: "meter", - 571: "meter", - 572: "sonar", - 573: "banyan-vip", - 574: "ftp-agent", - 575: "vemmi", - 576: "ipcd", - 577: "vnas", - 578: "ipdd", - 579: "decbsrv", - 580: "sntp-heartbeat", - 581: "bdp", - 582: "scc-security", - 583: "philips-vc", - 584: "keyserver", - 586: "password-chg", - 587: "submission", - 588: "cal", - 589: "eyelink", - 590: "tns-cml", - 591: "http-alt", - 592: "eudora-set", - 593: "http-rpc-epmap", - 594: "tpip", - 595: "cab-protocol", - 596: "smsd", - 597: "ptcnameservice", - 598: "sco-websrvrmg3", - 599: "acp", - 600: "ipcserver", - 601: "syslog-conn", - 602: "xmlrpc-beep", - 603: "idxp", - 604: "tunnel", - 605: "soap-beep", - 606: "urm", - 607: "nqs", - 608: "sift-uft", - 609: "npmp-trap", - 610: "npmp-local", - 611: "npmp-gui", - 612: "hmmp-ind", - 613: "hmmp-op", - 614: "sshell", - 615: "sco-inetmgr", - 616: "sco-sysmgr", - 617: "sco-dtmgr", - 618: "dei-icda", - 619: "compaq-evm", - 620: "sco-websrvrmgr", - 621: "escp-ip", - 622: "collaborator", - 623: "oob-ws-http", - 624: "cryptoadmin", - 625: "dec-dlm", - 626: "asia", - 627: "passgo-tivoli", - 628: "qmqp", - 629: "3com-amp3", - 630: "rda", - 631: "ipp", - 632: "bmpp", - 633: "servstat", - 634: "ginad", - 635: "rlzdbase", - 636: "ldaps", - 637: "lanserver", - 638: "mcns-sec", - 639: "msdp", - 640: "entrust-sps", - 641: "repcmd", - 642: "esro-emsdp", - 643: "sanity", - 644: "dwr", - 645: "pssc", - 646: "ldp", - 647: "dhcp-failover", - 648: "rrp", - 649: "cadview-3d", - 650: "obex", - 651: "ieee-mms", - 652: "hello-port", - 653: "repscmd", - 654: "aodv", - 655: "tinc", - 656: "spmp", - 657: "rmc", - 658: "tenfold", - 660: "mac-srvr-admin", - 661: "hap", - 662: "pftp", - 663: "purenoise", - 664: "oob-ws-https", - 665: "sun-dr", - 666: "mdqs", - 667: "disclose", - 668: "mecomm", - 669: "meregister", - 670: "vacdsm-sws", - 671: "vacdsm-app", - 672: "vpps-qua", - 673: "cimplex", - 674: "acap", - 675: "dctp", - 676: "vpps-via", - 677: "vpp", - 678: "ggf-ncp", - 679: "mrm", - 680: "entrust-aaas", - 681: "entrust-aams", - 682: "xfr", - 683: "corba-iiop", - 684: "corba-iiop-ssl", - 685: "mdc-portmapper", - 686: "hcp-wismar", - 687: "asipregistry", - 688: "realm-rusd", - 689: "nmap", - 690: "vatp", - 691: "msexch-routing", - 692: "hyperwave-isp", - 693: "connendp", - 694: "ha-cluster", - 695: "ieee-mms-ssl", - 696: "rushd", - 697: "uuidgen", - 698: "olsr", - 699: "accessnetwork", - 700: "epp", - 701: "lmp", - 702: "iris-beep", - 704: "elcsd", - 705: "agentx", - 706: "silc", - 707: "borland-dsj", - 709: "entrust-kmsh", - 710: "entrust-ash", - 711: "cisco-tdp", - 712: "tbrpf", - 713: "iris-xpc", - 714: "iris-xpcs", - 715: "iris-lwz", - 729: "netviewdm1", - 730: "netviewdm2", - 731: "netviewdm3", - 741: "netgw", - 742: "netrcs", - 744: "flexlm", - 747: "fujitsu-dev", - 748: "ris-cm", - 749: "kerberos-adm", - 750: "rfile", - 751: "pump", - 752: "qrh", - 753: "rrh", - 754: "tell", - 758: "nlogin", - 759: "con", - 760: "ns", - 761: "rxe", - 762: "quotad", - 763: "cycleserv", - 764: "omserv", - 765: "webster", - 767: "phonebook", - 769: "vid", - 770: "cadlock", - 771: "rtip", - 772: "cycleserv2", - 773: "submit", - 774: "rpasswd", - 775: "entomb", - 776: "wpages", - 777: "multiling-http", - 780: "wpgs", - 800: "mdbs-daemon", - 801: "device", - 802: "mbap-s", - 810: "fcp-udp", - 828: "itm-mcell-s", - 829: "pkix-3-ca-ra", - 830: "netconf-ssh", - 831: "netconf-beep", - 832: "netconfsoaphttp", - 833: "netconfsoapbeep", - 847: "dhcp-failover2", - 848: "gdoi", - 853: "domain-s", - 854: "dlep", - 860: "iscsi", - 861: "owamp-control", - 862: "twamp-control", - 873: "rsync", - 886: "iclcnet-locate", - 887: "iclcnet-svinfo", - 888: "accessbuilder", - 900: "omginitialrefs", - 901: "smpnameres", - 902: "ideafarm-door", - 903: "ideafarm-panic", - 910: "kink", - 911: "xact-backup", - 912: "apex-mesh", - 913: "apex-edge", - 953: "rndc", - 989: "ftps-data", - 990: "ftps", - 991: "nas", - 992: "telnets", - 993: "imaps", - 995: "pop3s", - 996: "vsinet", - 997: "maitrd", - 998: "busboy", - 999: "garcon", - 1000: "cadlock2", - 1001: "webpush", - 1010: "surf", - 1021: "exp1", - 1022: "exp2", - 1025: "blackjack", - 1026: "cap", - 1029: "solid-mux", - 1033: "netinfo-local", - 1034: "activesync", - 1035: "mxxrlogin", - 1036: "nsstp", - 1037: "ams", - 1038: "mtqp", - 1039: "sbl", - 1040: "netarx", - 1041: "danf-ak2", - 1042: "afrog", - 1043: "boinc-client", - 1044: "dcutility", - 1045: "fpitp", - 1046: "wfremotertm", - 1047: "neod1", - 1048: "neod2", - 1049: "td-postman", - 1050: "cma", - 1051: "optima-vnet", - 1052: "ddt", - 1053: "remote-as", - 1054: "brvread", - 1055: "ansyslmd", - 1056: "vfo", - 1057: "startron", - 1058: "nim", - 1059: "nimreg", - 1060: "polestar", - 1061: "kiosk", - 1062: "veracity", - 1063: "kyoceranetdev", - 1064: "jstel", - 1065: "syscomlan", - 1066: "fpo-fns", - 1067: "instl-boots", - 1068: "instl-bootc", - 1069: "cognex-insight", - 1070: "gmrupdateserv", - 1071: "bsquare-voip", - 1072: "cardax", - 1073: "bridgecontrol", - 1074: "warmspotMgmt", - 1075: "rdrmshc", - 1076: "dab-sti-c", - 1077: "imgames", - 1078: "avocent-proxy", - 1079: "asprovatalk", - 1080: "socks", - 1081: "pvuniwien", - 1082: "amt-esd-prot", - 1083: "ansoft-lm-1", - 1084: "ansoft-lm-2", - 1085: "webobjects", - 1086: "cplscrambler-lg", - 1087: "cplscrambler-in", - 1088: "cplscrambler-al", - 1089: "ff-annunc", - 1090: "ff-fms", - 1091: "ff-sm", - 1092: "obrpd", - 1093: "proofd", - 1094: "rootd", - 1095: "nicelink", - 1096: "cnrprotocol", - 1097: "sunclustermgr", - 1098: "rmiactivation", - 1099: "rmiregistry", - 1100: "mctp", - 1101: "pt2-discover", - 1102: "adobeserver-1", - 1103: "adobeserver-2", - 1104: "xrl", - 1105: "ftranhc", - 1106: "isoipsigport-1", - 1107: "isoipsigport-2", - 1108: "ratio-adp", - 1110: "webadmstart", - 1111: "lmsocialserver", - 1112: "icp", - 1113: "ltp-deepspace", - 1114: "mini-sql", - 1115: "ardus-trns", - 1116: "ardus-cntl", - 1117: "ardus-mtrns", - 1118: "sacred", - 1119: "bnetgame", - 1120: "bnetfile", - 1121: "rmpp", - 1122: "availant-mgr", - 1123: "murray", - 1124: "hpvmmcontrol", - 1125: "hpvmmagent", - 1126: "hpvmmdata", - 1127: "kwdb-commn", - 1128: "saphostctrl", - 1129: "saphostctrls", - 1130: "casp", - 1131: "caspssl", - 1132: "kvm-via-ip", - 1133: "dfn", - 1134: "aplx", - 1135: "omnivision", - 1136: "hhb-gateway", - 1137: "trim", - 1138: "encrypted-admin", - 1139: "evm", - 1140: "autonoc", - 1141: "mxomss", - 1142: "edtools", - 1143: "imyx", - 1144: "fuscript", - 1145: "x9-icue", - 1146: "audit-transfer", - 1147: "capioverlan", - 1148: "elfiq-repl", - 1149: "bvtsonar", - 1150: "blaze", - 1151: "unizensus", - 1152: "winpoplanmess", - 1153: "c1222-acse", - 1154: "resacommunity", - 1155: "nfa", - 1156: "iascontrol-oms", - 1157: "iascontrol", - 1158: "dbcontrol-oms", - 1159: "oracle-oms", - 1160: "olsv", - 1161: "health-polling", - 1162: "health-trap", - 1163: "sddp", - 1164: "qsm-proxy", - 1165: "qsm-gui", - 1166: "qsm-remote", - 1167: "cisco-ipsla", - 1168: "vchat", - 1169: "tripwire", - 1170: "atc-lm", - 1171: "atc-appserver", - 1172: "dnap", - 1173: "d-cinema-rrp", - 1174: "fnet-remote-ui", - 1175: "dossier", - 1176: "indigo-server", - 1177: "dkmessenger", - 1178: "sgi-storman", - 1179: "b2n", - 1180: "mc-client", - 1181: "3comnetman", - 1182: "accelenet", - 1183: "llsurfup-http", - 1184: "llsurfup-https", - 1185: "catchpole", - 1186: "mysql-cluster", - 1187: "alias", - 1188: "hp-webadmin", - 1189: "unet", - 1190: "commlinx-avl", - 1191: "gpfs", - 1192: "caids-sensor", - 1193: "fiveacross", - 1194: "openvpn", - 1195: "rsf-1", - 1196: "netmagic", - 1197: "carrius-rshell", - 1198: "cajo-discovery", - 1199: "dmidi", - 1200: "scol", - 1201: "nucleus-sand", - 1202: "caiccipc", - 1203: "ssslic-mgr", - 1204: "ssslog-mgr", - 1205: "accord-mgc", - 1206: "anthony-data", - 1207: "metasage", - 1208: "seagull-ais", - 1209: "ipcd3", - 1210: "eoss", - 1211: "groove-dpp", - 1212: "lupa", - 1213: "mpc-lifenet", - 1214: "kazaa", - 1215: "scanstat-1", - 1216: "etebac5", - 1217: "hpss-ndapi", - 1218: "aeroflight-ads", - 1219: "aeroflight-ret", - 1220: "qt-serveradmin", - 1221: "sweetware-apps", - 1222: "nerv", - 1223: "tgp", - 1224: "vpnz", - 1225: "slinkysearch", - 1226: "stgxfws", - 1227: "dns2go", - 1228: "florence", - 1229: "zented", - 1230: "periscope", - 1231: "menandmice-lpm", - 1232: "first-defense", - 1233: "univ-appserver", - 1234: "search-agent", - 1235: "mosaicsyssvc1", - 1236: "bvcontrol", - 1237: "tsdos390", - 1238: "hacl-qs", - 1239: "nmsd", - 1240: "instantia", - 1241: "nessus", - 1242: "nmasoverip", - 1243: "serialgateway", - 1244: "isbconference1", - 1245: "isbconference2", - 1246: "payrouter", - 1247: "visionpyramid", - 1248: "hermes", - 1249: "mesavistaco", - 1250: "swldy-sias", - 1251: "servergraph", - 1252: "bspne-pcc", - 1253: "q55-pcc", - 1254: "de-noc", - 1255: "de-cache-query", - 1256: "de-server", - 1257: "shockwave2", - 1258: "opennl", - 1259: "opennl-voice", - 1260: "ibm-ssd", - 1261: "mpshrsv", - 1262: "qnts-orb", - 1263: "dka", - 1264: "prat", - 1265: "dssiapi", - 1266: "dellpwrappks", - 1267: "epc", - 1268: "propel-msgsys", - 1269: "watilapp", - 1270: "opsmgr", - 1271: "excw", - 1272: "cspmlockmgr", - 1273: "emc-gateway", - 1274: "t1distproc", - 1275: "ivcollector", - 1277: "miva-mqs", - 1278: "dellwebadmin-1", - 1279: "dellwebadmin-2", - 1280: "pictrography", - 1281: "healthd", - 1282: "emperion", - 1283: "productinfo", - 1284: "iee-qfx", - 1285: "neoiface", - 1286: "netuitive", - 1287: "routematch", - 1288: "navbuddy", - 1289: "jwalkserver", - 1290: "winjaserver", - 1291: "seagulllms", - 1292: "dsdn", - 1293: "pkt-krb-ipsec", - 1294: "cmmdriver", - 1295: "ehtp", - 1296: "dproxy", - 1297: "sdproxy", - 1298: "lpcp", - 1299: "hp-sci", - 1300: "h323hostcallsc", - 1301: "ci3-software-1", - 1302: "ci3-software-2", - 1303: "sftsrv", - 1304: "boomerang", - 1305: "pe-mike", - 1306: "re-conn-proto", - 1307: "pacmand", - 1308: "odsi", - 1309: "jtag-server", - 1310: "husky", - 1311: "rxmon", - 1312: "sti-envision", - 1313: "bmc-patroldb", - 1314: "pdps", - 1315: "els", - 1316: "exbit-escp", - 1317: "vrts-ipcserver", - 1318: "krb5gatekeeper", - 1319: "amx-icsp", - 1320: "amx-axbnet", - 1321: "pip", - 1322: "novation", - 1323: "brcd", - 1324: "delta-mcp", - 1325: "dx-instrument", - 1326: "wimsic", - 1327: "ultrex", - 1328: "ewall", - 1329: "netdb-export", - 1330: "streetperfect", - 1331: "intersan", - 1332: "pcia-rxp-b", - 1333: "passwrd-policy", - 1334: "writesrv", - 1335: "digital-notary", - 1336: "ischat", - 1337: "menandmice-dns", - 1338: "wmc-log-svc", - 1339: "kjtsiteserver", - 1340: "naap", - 1341: "qubes", - 1342: "esbroker", - 1343: "re101", - 1344: "icap", - 1345: "vpjp", - 1346: "alta-ana-lm", - 1347: "bbn-mmc", - 1348: "bbn-mmx", - 1349: "sbook", - 1350: "editbench", - 1351: "equationbuilder", - 1352: "lotusnote", - 1353: "relief", - 1354: "XSIP-network", - 1355: "intuitive-edge", - 1356: "cuillamartin", - 1357: "pegboard", - 1358: "connlcli", - 1359: "ftsrv", - 1360: "mimer", - 1361: "linx", - 1362: "timeflies", - 1363: "ndm-requester", - 1364: "ndm-server", - 1365: "adapt-sna", - 1366: "netware-csp", - 1367: "dcs", - 1368: "screencast", - 1369: "gv-us", - 1370: "us-gv", - 1371: "fc-cli", - 1372: "fc-ser", - 1373: "chromagrafx", - 1374: "molly", - 1375: "bytex", - 1376: "ibm-pps", - 1377: "cichlid", - 1378: "elan", - 1379: "dbreporter", - 1380: "telesis-licman", - 1381: "apple-licman", - 1382: "udt-os", - 1383: "gwha", - 1384: "os-licman", - 1385: "atex-elmd", - 1386: "checksum", - 1387: "cadsi-lm", - 1388: "objective-dbc", - 1389: "iclpv-dm", - 1390: "iclpv-sc", - 1391: "iclpv-sas", - 1392: "iclpv-pm", - 1393: "iclpv-nls", - 1394: "iclpv-nlc", - 1395: "iclpv-wsm", - 1396: "dvl-activemail", - 1397: "audio-activmail", - 1398: "video-activmail", - 1399: "cadkey-licman", - 1400: "cadkey-tablet", - 1401: "goldleaf-licman", - 1402: "prm-sm-np", - 1403: "prm-nm-np", - 1404: "igi-lm", - 1405: "ibm-res", - 1406: "netlabs-lm", - 1407: "tibet-server", - 1408: "sophia-lm", - 1409: "here-lm", - 1410: "hiq", - 1411: "af", - 1412: "innosys", - 1413: "innosys-acl", - 1414: "ibm-mqseries", - 1415: "dbstar", - 1416: "novell-lu6-2", - 1417: "timbuktu-srv1", - 1418: "timbuktu-srv2", - 1419: "timbuktu-srv3", - 1420: "timbuktu-srv4", - 1421: "gandalf-lm", - 1422: "autodesk-lm", - 1423: "essbase", - 1424: "hybrid", - 1425: "zion-lm", - 1426: "sais", - 1427: "mloadd", - 1428: "informatik-lm", - 1429: "nms", - 1430: "tpdu", - 1431: "rgtp", - 1432: "blueberry-lm", - 1433: "ms-sql-s", - 1434: "ms-sql-m", - 1435: "ibm-cics", - 1436: "saism", - 1437: "tabula", - 1438: "eicon-server", - 1439: "eicon-x25", - 1440: "eicon-slp", - 1441: "cadis-1", - 1442: "cadis-2", - 1443: "ies-lm", - 1444: "marcam-lm", - 1445: "proxima-lm", - 1446: "ora-lm", - 1447: "apri-lm", - 1448: "oc-lm", - 1449: "peport", - 1450: "dwf", - 1451: "infoman", - 1452: "gtegsc-lm", - 1453: "genie-lm", - 1454: "interhdl-elmd", - 1455: "esl-lm", - 1456: "dca", - 1457: "valisys-lm", - 1458: "nrcabq-lm", - 1459: "proshare1", - 1460: "proshare2", - 1461: "ibm-wrless-lan", - 1462: "world-lm", - 1463: "nucleus", - 1464: "msl-lmd", - 1465: "pipes", - 1466: "oceansoft-lm", - 1467: "csdmbase", - 1468: "csdm", - 1469: "aal-lm", - 1470: "uaiact", - 1471: "csdmbase", - 1472: "csdm", - 1473: "openmath", - 1474: "telefinder", - 1475: "taligent-lm", - 1476: "clvm-cfg", - 1477: "ms-sna-server", - 1478: "ms-sna-base", - 1479: "dberegister", - 1480: "pacerforum", - 1481: "airs", - 1482: "miteksys-lm", - 1483: "afs", - 1484: "confluent", - 1485: "lansource", - 1486: "nms-topo-serv", - 1487: "localinfosrvr", - 1488: "docstor", - 1489: "dmdocbroker", - 1490: "insitu-conf", - 1492: "stone-design-1", - 1493: "netmap-lm", - 1494: "ica", - 1495: "cvc", - 1496: "liberty-lm", - 1497: "rfx-lm", - 1498: "sybase-sqlany", - 1499: "fhc", - 1500: "vlsi-lm", - 1501: "saiscm", - 1502: "shivadiscovery", - 1503: "imtc-mcs", - 1504: "evb-elm", - 1505: "funkproxy", - 1506: "utcd", - 1507: "symplex", - 1508: "diagmond", - 1509: "robcad-lm", - 1510: "mvx-lm", - 1511: "3l-l1", - 1512: "wins", - 1513: "fujitsu-dtc", - 1514: "fujitsu-dtcns", - 1515: "ifor-protocol", - 1516: "vpad", - 1517: "vpac", - 1518: "vpvd", - 1519: "vpvc", - 1520: "atm-zip-office", - 1521: "ncube-lm", - 1522: "ricardo-lm", - 1523: "cichild-lm", - 1524: "ingreslock", - 1525: "orasrv", - 1526: "pdap-np", - 1527: "tlisrv", - 1529: "coauthor", - 1530: "rap-service", - 1531: "rap-listen", - 1532: "miroconnect", - 1533: "virtual-places", - 1534: "micromuse-lm", - 1535: "ampr-info", - 1536: "ampr-inter", - 1537: "sdsc-lm", - 1538: "3ds-lm", - 1539: "intellistor-lm", - 1540: "rds", - 1541: "rds2", - 1542: "gridgen-elmd", - 1543: "simba-cs", - 1544: "aspeclmd", - 1545: "vistium-share", - 1546: "abbaccuray", - 1547: "laplink", - 1548: "axon-lm", - 1549: "shivahose", - 1550: "3m-image-lm", - 1551: "hecmtl-db", - 1552: "pciarray", - 1553: "sna-cs", - 1554: "caci-lm", - 1555: "livelan", - 1556: "veritas-pbx", - 1557: "arbortext-lm", - 1558: "xingmpeg", - 1559: "web2host", - 1560: "asci-val", - 1561: "facilityview", - 1562: "pconnectmgr", - 1563: "cadabra-lm", - 1564: "pay-per-view", - 1565: "winddlb", - 1566: "corelvideo", - 1567: "jlicelmd", - 1568: "tsspmap", - 1569: "ets", - 1570: "orbixd", - 1571: "rdb-dbs-disp", - 1572: "chip-lm", - 1573: "itscomm-ns", - 1574: "mvel-lm", - 1575: "oraclenames", - 1576: "moldflow-lm", - 1577: "hypercube-lm", - 1578: "jacobus-lm", - 1579: "ioc-sea-lm", - 1580: "tn-tl-r1", - 1581: "mil-2045-47001", - 1582: "msims", - 1583: "simbaexpress", - 1584: "tn-tl-fd2", - 1585: "intv", - 1586: "ibm-abtact", - 1587: "pra-elmd", - 1588: "triquest-lm", - 1589: "vqp", - 1590: "gemini-lm", - 1591: "ncpm-pm", - 1592: "commonspace", - 1593: "mainsoft-lm", - 1594: "sixtrak", - 1595: "radio", - 1596: "radio-sm", - 1597: "orbplus-iiop", - 1598: "picknfs", - 1599: "simbaservices", - 1600: "issd", - 1601: "aas", - 1602: "inspect", - 1603: "picodbc", - 1604: "icabrowser", - 1605: "slp", - 1606: "slm-api", - 1607: "stt", - 1608: "smart-lm", - 1609: "isysg-lm", - 1610: "taurus-wh", - 1611: "ill", - 1612: "netbill-trans", - 1613: "netbill-keyrep", - 1614: "netbill-cred", - 1615: "netbill-auth", - 1616: "netbill-prod", - 1617: "nimrod-agent", - 1618: "skytelnet", - 1619: "xs-openstorage", - 1620: "faxportwinport", - 1621: "softdataphone", - 1622: "ontime", - 1623: "jaleosnd", - 1624: "udp-sr-port", - 1625: "svs-omagent", - 1626: "shockwave", - 1627: "t128-gateway", - 1628: "lontalk-norm", - 1629: "lontalk-urgnt", - 1630: "oraclenet8cman", - 1631: "visitview", - 1632: "pammratc", - 1633: "pammrpc", - 1634: "loaprobe", - 1635: "edb-server1", - 1636: "isdc", - 1637: "islc", - 1638: "ismc", - 1639: "cert-initiator", - 1640: "cert-responder", - 1641: "invision", - 1642: "isis-am", - 1643: "isis-ambc", - 1644: "saiseh", - 1645: "sightline", - 1646: "sa-msg-port", - 1647: "rsap", - 1648: "concurrent-lm", - 1649: "kermit", - 1650: "nkd", - 1651: "shiva-confsrvr", - 1652: "xnmp", - 1653: "alphatech-lm", - 1654: "stargatealerts", - 1655: "dec-mbadmin", - 1656: "dec-mbadmin-h", - 1657: "fujitsu-mmpdc", - 1658: "sixnetudr", - 1659: "sg-lm", - 1660: "skip-mc-gikreq", - 1661: "netview-aix-1", - 1662: "netview-aix-2", - 1663: "netview-aix-3", - 1664: "netview-aix-4", - 1665: "netview-aix-5", - 1666: "netview-aix-6", - 1667: "netview-aix-7", - 1668: "netview-aix-8", - 1669: "netview-aix-9", - 1670: "netview-aix-10", - 1671: "netview-aix-11", - 1672: "netview-aix-12", - 1673: "proshare-mc-1", - 1674: "proshare-mc-2", - 1675: "pdp", - 1676: "netcomm1", - 1677: "groupwise", - 1678: "prolink", - 1679: "darcorp-lm", - 1680: "microcom-sbp", - 1681: "sd-elmd", - 1682: "lanyon-lantern", - 1683: "ncpm-hip", - 1684: "snaresecure", - 1685: "n2nremote", - 1686: "cvmon", - 1687: "nsjtp-ctrl", - 1688: "nsjtp-data", - 1689: "firefox", - 1690: "ng-umds", - 1691: "empire-empuma", - 1692: "sstsys-lm", - 1693: "rrirtr", - 1694: "rrimwm", - 1695: "rrilwm", - 1696: "rrifmm", - 1697: "rrisat", - 1698: "rsvp-encap-1", - 1699: "rsvp-encap-2", - 1700: "mps-raft", - 1701: "l2f", - 1702: "deskshare", - 1703: "hb-engine", - 1704: "bcs-broker", - 1705: "slingshot", - 1706: "jetform", - 1707: "vdmplay", - 1708: "gat-lmd", - 1709: "centra", - 1710: "impera", - 1711: "pptconference", - 1712: "registrar", - 1713: "conferencetalk", - 1714: "sesi-lm", - 1715: "houdini-lm", - 1716: "xmsg", - 1717: "fj-hdnet", - 1718: "h323gatedisc", - 1719: "h323gatestat", - 1720: "h323hostcall", - 1721: "caicci", - 1722: "hks-lm", - 1723: "pptp", - 1724: "csbphonemaster", - 1725: "iden-ralp", - 1726: "iberiagames", - 1727: "winddx", - 1728: "telindus", - 1729: "citynl", - 1730: "roketz", - 1731: "msiccp", - 1732: "proxim", - 1733: "siipat", - 1734: "cambertx-lm", - 1735: "privatechat", - 1736: "street-stream", - 1737: "ultimad", - 1738: "gamegen1", - 1739: "webaccess", - 1740: "encore", - 1741: "cisco-net-mgmt", - 1742: "3Com-nsd", - 1743: "cinegrfx-lm", - 1744: "ncpm-ft", - 1745: "remote-winsock", - 1746: "ftrapid-1", - 1747: "ftrapid-2", - 1748: "oracle-em1", - 1749: "aspen-services", - 1750: "sslp", - 1751: "swiftnet", - 1752: "lofr-lm", - 1753: "predatar-comms", - 1754: "oracle-em2", - 1755: "ms-streaming", - 1756: "capfast-lmd", - 1757: "cnhrp", - 1758: "tftp-mcast", - 1759: "spss-lm", - 1760: "www-ldap-gw", - 1761: "cft-0", - 1762: "cft-1", - 1763: "cft-2", - 1764: "cft-3", - 1765: "cft-4", - 1766: "cft-5", - 1767: "cft-6", - 1768: "cft-7", - 1769: "bmc-net-adm", - 1770: "bmc-net-svc", - 1771: "vaultbase", - 1772: "essweb-gw", - 1773: "kmscontrol", - 1774: "global-dtserv", - 1775: "vdab", - 1776: "femis", - 1777: "powerguardian", - 1778: "prodigy-intrnet", - 1779: "pharmasoft", - 1780: "dpkeyserv", - 1781: "answersoft-lm", - 1782: "hp-hcip", - 1784: "finle-lm", - 1785: "windlm", - 1786: "funk-logger", - 1787: "funk-license", - 1788: "psmond", - 1789: "hello", - 1790: "nmsp", - 1791: "ea1", - 1792: "ibm-dt-2", - 1793: "rsc-robot", - 1794: "cera-bcm", - 1795: "dpi-proxy", - 1796: "vocaltec-admin", - 1797: "uma", - 1798: "etp", - 1799: "netrisk", - 1800: "ansys-lm", - 1801: "msmq", - 1802: "concomp1", - 1803: "hp-hcip-gwy", - 1804: "enl", - 1805: "enl-name", - 1806: "musiconline", - 1807: "fhsp", - 1808: "oracle-vp2", - 1809: "oracle-vp1", - 1810: "jerand-lm", - 1811: "scientia-sdb", - 1812: "radius", - 1813: "radius-acct", - 1814: "tdp-suite", - 1815: "mmpft", - 1816: "harp", - 1817: "rkb-oscs", - 1818: "etftp", - 1819: "plato-lm", - 1820: "mcagent", - 1821: "donnyworld", - 1822: "es-elmd", - 1823: "unisys-lm", - 1824: "metrics-pas", - 1825: "direcpc-video", - 1826: "ardt", - 1827: "asi", - 1828: "itm-mcell-u", - 1829: "optika-emedia", - 1830: "net8-cman", - 1831: "myrtle", - 1832: "tht-treasure", - 1833: "udpradio", - 1834: "ardusuni", - 1835: "ardusmul", - 1836: "ste-smsc", - 1837: "csoft1", - 1838: "talnet", - 1839: "netopia-vo1", - 1840: "netopia-vo2", - 1841: "netopia-vo3", - 1842: "netopia-vo4", - 1843: "netopia-vo5", - 1844: "direcpc-dll", - 1845: "altalink", - 1846: "tunstall-pnc", - 1847: "slp-notify", - 1848: "fjdocdist", - 1849: "alpha-sms", - 1850: "gsi", - 1851: "ctcd", - 1852: "virtual-time", - 1853: "vids-avtp", - 1854: "buddy-draw", - 1855: "fiorano-rtrsvc", - 1856: "fiorano-msgsvc", - 1857: "datacaptor", - 1858: "privateark", - 1859: "gammafetchsvr", - 1860: "sunscalar-svc", - 1861: "lecroy-vicp", - 1862: "mysql-cm-agent", - 1863: "msnp", - 1864: "paradym-31port", - 1865: "entp", - 1866: "swrmi", - 1867: "udrive", - 1868: "viziblebrowser", - 1869: "transact", - 1870: "sunscalar-dns", - 1871: "canocentral0", - 1872: "canocentral1", - 1873: "fjmpjps", - 1874: "fjswapsnp", - 1875: "westell-stats", - 1876: "ewcappsrv", - 1877: "hp-webqosdb", - 1878: "drmsmc", - 1879: "nettgain-nms", - 1880: "vsat-control", - 1881: "ibm-mqseries2", - 1882: "ecsqdmn", - 1883: "mqtt", - 1884: "idmaps", - 1885: "vrtstrapserver", - 1886: "leoip", - 1887: "filex-lport", - 1888: "ncconfig", - 1889: "unify-adapter", - 1890: "wilkenlistener", - 1891: "childkey-notif", - 1892: "childkey-ctrl", - 1893: "elad", - 1894: "o2server-port", - 1896: "b-novative-ls", - 1897: "metaagent", - 1898: "cymtec-port", - 1899: "mc2studios", - 1900: "ssdp", - 1901: "fjicl-tep-a", - 1902: "fjicl-tep-b", - 1903: "linkname", - 1904: "fjicl-tep-c", - 1905: "sugp", - 1906: "tpmd", - 1907: "intrastar", - 1908: "dawn", - 1909: "global-wlink", - 1910: "ultrabac", - 1911: "mtp", - 1912: "rhp-iibp", - 1913: "armadp", - 1914: "elm-momentum", - 1915: "facelink", - 1916: "persona", - 1917: "noagent", - 1918: "can-nds", - 1919: "can-dch", - 1920: "can-ferret", - 1921: "noadmin", - 1922: "tapestry", - 1923: "spice", - 1924: "xiip", - 1925: "discovery-port", - 1926: "egs", - 1927: "videte-cipc", - 1928: "emsd-port", - 1929: "bandwiz-system", - 1930: "driveappserver", - 1931: "amdsched", - 1932: "ctt-broker", - 1933: "xmapi", - 1934: "xaapi", - 1935: "macromedia-fcs", - 1936: "jetcmeserver", - 1937: "jwserver", - 1938: "jwclient", - 1939: "jvserver", - 1940: "jvclient", - 1941: "dic-aida", - 1942: "res", - 1943: "beeyond-media", - 1944: "close-combat", - 1945: "dialogic-elmd", - 1946: "tekpls", - 1947: "sentinelsrm", - 1948: "eye2eye", - 1949: "ismaeasdaqlive", - 1950: "ismaeasdaqtest", - 1951: "bcs-lmserver", - 1952: "mpnjsc", - 1953: "rapidbase", - 1954: "abr-api", - 1955: "abr-secure", - 1956: "vrtl-vmf-ds", - 1957: "unix-status", - 1958: "dxadmind", - 1959: "simp-all", - 1960: "nasmanager", - 1961: "bts-appserver", - 1962: "biap-mp", - 1963: "webmachine", - 1964: "solid-e-engine", - 1965: "tivoli-npm", - 1966: "slush", - 1967: "sns-quote", - 1968: "lipsinc", - 1969: "lipsinc1", - 1970: "netop-rc", - 1971: "netop-school", - 1972: "intersys-cache", - 1973: "dlsrap", - 1974: "drp", - 1975: "tcoflashagent", - 1976: "tcoregagent", - 1977: "tcoaddressbook", - 1978: "unisql", - 1979: "unisql-java", - 1980: "pearldoc-xact", - 1981: "p2pq", - 1982: "estamp", - 1983: "lhtp", - 1984: "bb", - 1985: "hsrp", - 1986: "licensedaemon", - 1987: "tr-rsrb-p1", - 1988: "tr-rsrb-p2", - 1989: "tr-rsrb-p3", - 1990: "stun-p1", - 1991: "stun-p2", - 1992: "stun-p3", - 1993: "snmp-tcp-port", - 1994: "stun-port", - 1995: "perf-port", - 1996: "tr-rsrb-port", - 1997: "gdp-port", - 1998: "x25-svc-port", - 1999: "tcp-id-port", - 2000: "cisco-sccp", - 2001: "dc", - 2002: "globe", - 2003: "brutus", - 2004: "mailbox", - 2005: "berknet", - 2006: "invokator", - 2007: "dectalk", - 2008: "conf", - 2009: "news", - 2010: "search", - 2011: "raid-cc", - 2012: "ttyinfo", - 2013: "raid-am", - 2014: "troff", - 2015: "cypress", - 2016: "bootserver", - 2017: "cypress-stat", - 2018: "terminaldb", - 2019: "whosockami", - 2020: "xinupageserver", - 2021: "servexec", - 2022: "down", - 2023: "xinuexpansion3", - 2024: "xinuexpansion4", - 2025: "ellpack", - 2026: "scrabble", - 2027: "shadowserver", - 2028: "submitserver", - 2029: "hsrpv6", - 2030: "device2", - 2031: "mobrien-chat", - 2032: "blackboard", - 2033: "glogger", - 2034: "scoremgr", - 2035: "imsldoc", - 2036: "e-dpnet", - 2037: "applus", - 2038: "objectmanager", - 2039: "prizma", - 2040: "lam", - 2041: "interbase", - 2042: "isis", - 2043: "isis-bcast", - 2044: "rimsl", - 2045: "cdfunc", - 2046: "sdfunc", - 2047: "dls", - 2048: "dls-monitor", - 2049: "shilp", - 2050: "av-emb-config", - 2051: "epnsdp", - 2052: "clearvisn", - 2053: "lot105-ds-upd", - 2054: "weblogin", - 2055: "iop", - 2056: "omnisky", - 2057: "rich-cp", - 2058: "newwavesearch", - 2059: "bmc-messaging", - 2060: "teleniumdaemon", - 2061: "netmount", - 2062: "icg-swp", - 2063: "icg-bridge", - 2064: "icg-iprelay", - 2065: "dlsrpn", - 2066: "aura", - 2067: "dlswpn", - 2068: "avauthsrvprtcl", - 2069: "event-port", - 2070: "ah-esp-encap", - 2071: "acp-port", - 2072: "msync", - 2073: "gxs-data-port", - 2074: "vrtl-vmf-sa", - 2075: "newlixengine", - 2076: "newlixconfig", - 2077: "tsrmagt", - 2078: "tpcsrvr", - 2079: "idware-router", - 2080: "autodesk-nlm", - 2081: "kme-trap-port", - 2082: "infowave", - 2083: "radsec", - 2084: "sunclustergeo", - 2085: "ada-cip", - 2086: "gnunet", - 2087: "eli", - 2088: "ip-blf", - 2089: "sep", - 2090: "lrp", - 2091: "prp", - 2092: "descent3", - 2093: "nbx-cc", - 2094: "nbx-au", - 2095: "nbx-ser", - 2096: "nbx-dir", - 2097: "jetformpreview", - 2098: "dialog-port", - 2099: "h2250-annex-g", - 2100: "amiganetfs", - 2101: "rtcm-sc104", - 2102: "zephyr-srv", - 2103: "zephyr-clt", - 2104: "zephyr-hm", - 2105: "minipay", - 2106: "mzap", - 2107: "bintec-admin", - 2108: "comcam", - 2109: "ergolight", - 2110: "umsp", - 2111: "dsatp", - 2112: "idonix-metanet", - 2113: "hsl-storm", - 2114: "newheights", - 2115: "kdm", - 2116: "ccowcmr", - 2117: "mentaclient", - 2118: "mentaserver", - 2119: "gsigatekeeper", - 2120: "qencp", - 2121: "scientia-ssdb", - 2122: "caupc-remote", - 2123: "gtp-control", - 2124: "elatelink", - 2125: "lockstep", - 2126: "pktcable-cops", - 2127: "index-pc-wb", - 2128: "net-steward", - 2129: "cs-live", - 2130: "xds", - 2131: "avantageb2b", - 2132: "solera-epmap", - 2133: "zymed-zpp", - 2134: "avenue", - 2135: "gris", - 2136: "appworxsrv", - 2137: "connect", - 2138: "unbind-cluster", - 2139: "ias-auth", - 2140: "ias-reg", - 2141: "ias-admind", - 2142: "tdmoip", - 2143: "lv-jc", - 2144: "lv-ffx", - 2145: "lv-pici", - 2146: "lv-not", - 2147: "lv-auth", - 2148: "veritas-ucl", - 2149: "acptsys", - 2150: "dynamic3d", - 2151: "docent", - 2152: "gtp-user", - 2153: "ctlptc", - 2154: "stdptc", - 2155: "brdptc", - 2156: "trp", - 2157: "xnds", - 2158: "touchnetplus", - 2159: "gdbremote", - 2160: "apc-2160", - 2161: "apc-2161", - 2162: "navisphere", - 2163: "navisphere-sec", - 2164: "ddns-v3", - 2165: "x-bone-api", - 2166: "iwserver", - 2167: "raw-serial", - 2168: "easy-soft-mux", - 2169: "brain", - 2170: "eyetv", - 2171: "msfw-storage", - 2172: "msfw-s-storage", - 2173: "msfw-replica", - 2174: "msfw-array", - 2175: "airsync", - 2176: "rapi", - 2177: "qwave", - 2178: "bitspeer", - 2179: "vmrdp", - 2180: "mc-gt-srv", - 2181: "eforward", - 2182: "cgn-stat", - 2183: "cgn-config", - 2184: "nvd", - 2185: "onbase-dds", - 2186: "gtaua", - 2187: "ssmc", - 2188: "radware-rpm", - 2189: "radware-rpm-s", - 2190: "tivoconnect", - 2191: "tvbus", - 2192: "asdis", - 2193: "drwcs", - 2197: "mnp-exchange", - 2198: "onehome-remote", - 2199: "onehome-help", - 2200: "ici", - 2201: "ats", - 2202: "imtc-map", - 2203: "b2-runtime", - 2204: "b2-license", - 2205: "jps", - 2206: "hpocbus", - 2207: "hpssd", - 2208: "hpiod", - 2209: "rimf-ps", - 2210: "noaaport", - 2211: "emwin", - 2212: "leecoposserver", - 2213: "kali", - 2214: "rpi", - 2215: "ipcore", - 2216: "vtu-comms", - 2217: "gotodevice", - 2218: "bounzza", - 2219: "netiq-ncap", - 2220: "netiq", - 2221: "ethernet-ip-s", - 2222: "EtherNet-IP-1", - 2223: "rockwell-csp2", - 2224: "efi-mg", - 2225: "rcip-itu", - 2226: "di-drm", - 2227: "di-msg", - 2228: "ehome-ms", - 2229: "datalens", - 2230: "queueadm", - 2231: "wimaxasncp", - 2232: "ivs-video", - 2233: "infocrypt", - 2234: "directplay", - 2235: "sercomm-wlink", - 2236: "nani", - 2237: "optech-port1-lm", - 2238: "aviva-sna", - 2239: "imagequery", - 2240: "recipe", - 2241: "ivsd", - 2242: "foliocorp", - 2243: "magicom", - 2244: "nmsserver", - 2245: "hao", - 2246: "pc-mta-addrmap", - 2247: "antidotemgrsvr", - 2248: "ums", - 2249: "rfmp", - 2250: "remote-collab", - 2251: "dif-port", - 2252: "njenet-ssl", - 2253: "dtv-chan-req", - 2254: "seispoc", - 2255: "vrtp", - 2256: "pcc-mfp", - 2257: "simple-tx-rx", - 2258: "rcts", - 2260: "apc-2260", - 2261: "comotionmaster", - 2262: "comotionback", - 2263: "ecwcfg", - 2264: "apx500api-1", - 2265: "apx500api-2", - 2266: "mfserver", - 2267: "ontobroker", - 2268: "amt", - 2269: "mikey", - 2270: "starschool", - 2271: "mmcals", - 2272: "mmcal", - 2273: "mysql-im", - 2274: "pcttunnell", - 2275: "ibridge-data", - 2276: "ibridge-mgmt", - 2277: "bluectrlproxy", - 2278: "s3db", - 2279: "xmquery", - 2280: "lnvpoller", - 2281: "lnvconsole", - 2282: "lnvalarm", - 2283: "lnvstatus", - 2284: "lnvmaps", - 2285: "lnvmailmon", - 2286: "nas-metering", - 2287: "dna", - 2288: "netml", - 2289: "dict-lookup", - 2290: "sonus-logging", - 2291: "eapsp", - 2292: "mib-streaming", - 2293: "npdbgmngr", - 2294: "konshus-lm", - 2295: "advant-lm", - 2296: "theta-lm", - 2297: "d2k-datamover1", - 2298: "d2k-datamover2", - 2299: "pc-telecommute", - 2300: "cvmmon", - 2301: "cpq-wbem", - 2302: "binderysupport", - 2303: "proxy-gateway", - 2304: "attachmate-uts", - 2305: "mt-scaleserver", - 2306: "tappi-boxnet", - 2307: "pehelp", - 2308: "sdhelp", - 2309: "sdserver", - 2310: "sdclient", - 2311: "messageservice", - 2312: "wanscaler", - 2313: "iapp", - 2314: "cr-websystems", - 2315: "precise-sft", - 2316: "sent-lm", - 2317: "attachmate-g32", - 2318: "cadencecontrol", - 2319: "infolibria", - 2320: "siebel-ns", - 2321: "rdlap", - 2322: "ofsd", - 2323: "3d-nfsd", - 2324: "cosmocall", - 2325: "ansysli", - 2326: "idcp", - 2327: "xingcsm", - 2328: "netrix-sftm", - 2329: "nvd", - 2330: "tscchat", - 2331: "agentview", - 2332: "rcc-host", - 2333: "snapp", - 2334: "ace-client", - 2335: "ace-proxy", - 2336: "appleugcontrol", - 2337: "ideesrv", - 2338: "norton-lambert", - 2339: "3com-webview", - 2340: "wrs-registry", - 2341: "xiostatus", - 2342: "manage-exec", - 2343: "nati-logos", - 2344: "fcmsys", - 2345: "dbm", - 2346: "redstorm-join", - 2347: "redstorm-find", - 2348: "redstorm-info", - 2349: "redstorm-diag", - 2350: "psbserver", - 2351: "psrserver", - 2352: "pslserver", - 2353: "pspserver", - 2354: "psprserver", - 2355: "psdbserver", - 2356: "gxtelmd", - 2357: "unihub-server", - 2358: "futrix", - 2359: "flukeserver", - 2360: "nexstorindltd", - 2361: "tl1", - 2362: "digiman", - 2363: "mediacntrlnfsd", - 2364: "oi-2000", - 2365: "dbref", - 2366: "qip-login", - 2367: "service-ctrl", - 2368: "opentable", - 2370: "l3-hbmon", - 2371: "hp-rda", - 2372: "lanmessenger", - 2373: "remographlm", - 2374: "hydra", - 2375: "docker", - 2376: "docker-s", - 2377: "swarm", - 2379: "etcd-client", - 2380: "etcd-server", - 2381: "compaq-https", - 2382: "ms-olap3", - 2383: "ms-olap4", - 2384: "sd-request", - 2385: "sd-data", - 2386: "virtualtape", - 2387: "vsamredirector", - 2388: "mynahautostart", - 2389: "ovsessionmgr", - 2390: "rsmtp", - 2391: "3com-net-mgmt", - 2392: "tacticalauth", - 2393: "ms-olap1", - 2394: "ms-olap2", - 2395: "lan900-remote", - 2396: "wusage", - 2397: "ncl", - 2398: "orbiter", - 2399: "fmpro-fdal", - 2400: "opequus-server", - 2401: "cvspserver", - 2402: "taskmaster2000", - 2403: "taskmaster2000", - 2404: "iec-104", - 2405: "trc-netpoll", - 2406: "jediserver", - 2407: "orion", - 2408: "railgun-webaccl", - 2409: "sns-protocol", - 2410: "vrts-registry", - 2411: "netwave-ap-mgmt", - 2412: "cdn", - 2413: "orion-rmi-reg", - 2414: "beeyond", - 2415: "codima-rtp", - 2416: "rmtserver", - 2417: "composit-server", - 2418: "cas", - 2419: "attachmate-s2s", - 2420: "dslremote-mgmt", - 2421: "g-talk", - 2422: "crmsbits", - 2423: "rnrp", - 2424: "kofax-svr", - 2425: "fjitsuappmgr", - 2426: "vcmp", - 2427: "mgcp-gateway", - 2428: "ott", - 2429: "ft-role", - 2430: "venus", - 2431: "venus-se", - 2432: "codasrv", - 2433: "codasrv-se", - 2434: "pxc-epmap", - 2435: "optilogic", - 2436: "topx", - 2437: "unicontrol", - 2438: "msp", - 2439: "sybasedbsynch", - 2440: "spearway", - 2441: "pvsw-inet", - 2442: "netangel", - 2443: "powerclientcsf", - 2444: "btpp2sectrans", - 2445: "dtn1", - 2446: "bues-service", - 2447: "ovwdb", - 2448: "hpppssvr", - 2449: "ratl", - 2450: "netadmin", - 2451: "netchat", - 2452: "snifferclient", - 2453: "madge-ltd", - 2454: "indx-dds", - 2455: "wago-io-system", - 2456: "altav-remmgt", - 2457: "rapido-ip", - 2458: "griffin", - 2459: "community", - 2460: "ms-theater", - 2461: "qadmifoper", - 2462: "qadmifevent", - 2463: "lsi-raid-mgmt", - 2464: "direcpc-si", - 2465: "lbm", - 2466: "lbf", - 2467: "high-criteria", - 2468: "qip-msgd", - 2469: "mti-tcs-comm", - 2470: "taskman-port", - 2471: "seaodbc", - 2472: "c3", - 2473: "aker-cdp", - 2474: "vitalanalysis", - 2475: "ace-server", - 2476: "ace-svr-prop", - 2477: "ssm-cvs", - 2478: "ssm-cssps", - 2479: "ssm-els", - 2480: "powerexchange", - 2481: "giop", - 2482: "giop-ssl", - 2483: "ttc", - 2484: "ttc-ssl", - 2485: "netobjects1", - 2486: "netobjects2", - 2487: "pns", - 2488: "moy-corp", - 2489: "tsilb", - 2490: "qip-qdhcp", - 2491: "conclave-cpp", - 2492: "groove", - 2493: "talarian-mqs", - 2494: "bmc-ar", - 2495: "fast-rem-serv", - 2496: "dirgis", - 2497: "quaddb", - 2498: "odn-castraq", - 2499: "unicontrol", - 2500: "rtsserv", - 2501: "rtsclient", - 2502: "kentrox-prot", - 2503: "nms-dpnss", - 2504: "wlbs", - 2505: "ppcontrol", - 2506: "jbroker", - 2507: "spock", - 2508: "jdatastore", - 2509: "fjmpss", - 2510: "fjappmgrbulk", - 2511: "metastorm", - 2512: "citrixima", - 2513: "citrixadmin", - 2514: "facsys-ntp", - 2515: "facsys-router", - 2516: "maincontrol", - 2517: "call-sig-trans", - 2518: "willy", - 2519: "globmsgsvc", - 2520: "pvsw", - 2521: "adaptecmgr", - 2522: "windb", - 2523: "qke-llc-v3", - 2524: "optiwave-lm", - 2525: "ms-v-worlds", - 2526: "ema-sent-lm", - 2527: "iqserver", - 2528: "ncr-ccl", - 2529: "utsftp", - 2530: "vrcommerce", - 2531: "ito-e-gui", - 2532: "ovtopmd", - 2533: "snifferserver", - 2534: "combox-web-acc", - 2535: "madcap", - 2536: "btpp2audctr1", - 2537: "upgrade", - 2538: "vnwk-prapi", - 2539: "vsiadmin", - 2540: "lonworks", - 2541: "lonworks2", - 2542: "udrawgraph", - 2543: "reftek", - 2544: "novell-zen", - 2545: "sis-emt", - 2546: "vytalvaultbrtp", - 2547: "vytalvaultvsmp", - 2548: "vytalvaultpipe", - 2549: "ipass", - 2550: "ads", - 2551: "isg-uda-server", - 2552: "call-logging", - 2553: "efidiningport", - 2554: "vcnet-link-v10", - 2555: "compaq-wcp", - 2556: "nicetec-nmsvc", - 2557: "nicetec-mgmt", - 2558: "pclemultimedia", - 2559: "lstp", - 2560: "labrat", - 2561: "mosaixcc", - 2562: "delibo", - 2563: "cti-redwood", - 2564: "hp-3000-telnet", - 2565: "coord-svr", - 2566: "pcs-pcw", - 2567: "clp", - 2568: "spamtrap", - 2569: "sonuscallsig", - 2570: "hs-port", - 2571: "cecsvc", - 2572: "ibp", - 2573: "trustestablish", - 2574: "blockade-bpsp", - 2575: "hl7", - 2576: "tclprodebugger", - 2577: "scipticslsrvr", - 2578: "rvs-isdn-dcp", - 2579: "mpfoncl", - 2580: "tributary", - 2581: "argis-te", - 2582: "argis-ds", - 2583: "mon", - 2584: "cyaserv", - 2585: "netx-server", - 2586: "netx-agent", - 2587: "masc", - 2588: "privilege", - 2589: "quartus-tcl", - 2590: "idotdist", - 2591: "maytagshuffle", - 2592: "netrek", - 2593: "mns-mail", - 2594: "dts", - 2595: "worldfusion1", - 2596: "worldfusion2", - 2597: "homesteadglory", - 2598: "citriximaclient", - 2599: "snapd", - 2600: "hpstgmgr", - 2601: "discp-client", - 2602: "discp-server", - 2603: "servicemeter", - 2604: "nsc-ccs", - 2605: "nsc-posa", - 2606: "netmon", - 2607: "connection", - 2608: "wag-service", - 2609: "system-monitor", - 2610: "versa-tek", - 2611: "lionhead", - 2612: "qpasa-agent", - 2613: "smntubootstrap", - 2614: "neveroffline", - 2615: "firepower", - 2616: "appswitch-emp", - 2617: "cmadmin", - 2618: "priority-e-com", - 2619: "bruce", - 2620: "lpsrecommender", - 2621: "miles-apart", - 2622: "metricadbc", - 2623: "lmdp", - 2624: "aria", - 2625: "blwnkl-port", - 2626: "gbjd816", - 2627: "moshebeeri", - 2628: "dict", - 2629: "sitaraserver", - 2630: "sitaramgmt", - 2631: "sitaradir", - 2632: "irdg-post", - 2633: "interintelli", - 2634: "pk-electronics", - 2635: "backburner", - 2636: "solve", - 2637: "imdocsvc", - 2638: "sybaseanywhere", - 2639: "aminet", - 2640: "ami-control", - 2641: "hdl-srv", - 2642: "tragic", - 2643: "gte-samp", - 2644: "travsoft-ipx-t", - 2645: "novell-ipx-cmd", - 2646: "and-lm", - 2647: "syncserver", - 2648: "upsnotifyprot", - 2649: "vpsipport", - 2650: "eristwoguns", - 2651: "ebinsite", - 2652: "interpathpanel", - 2653: "sonus", - 2654: "corel-vncadmin", - 2655: "unglue", - 2656: "kana", - 2657: "sns-dispatcher", - 2658: "sns-admin", - 2659: "sns-query", - 2660: "gcmonitor", - 2661: "olhost", - 2662: "bintec-capi", - 2663: "bintec-tapi", - 2664: "patrol-mq-gm", - 2665: "patrol-mq-nm", - 2666: "extensis", - 2667: "alarm-clock-s", - 2668: "alarm-clock-c", - 2669: "toad", - 2670: "tve-announce", - 2671: "newlixreg", - 2672: "nhserver", - 2673: "firstcall42", - 2674: "ewnn", - 2675: "ttc-etap", - 2676: "simslink", - 2677: "gadgetgate1way", - 2678: "gadgetgate2way", - 2679: "syncserverssl", - 2680: "pxc-sapxom", - 2681: "mpnjsomb", - 2683: "ncdloadbalance", - 2684: "mpnjsosv", - 2685: "mpnjsocl", - 2686: "mpnjsomg", - 2687: "pq-lic-mgmt", - 2688: "md-cg-http", - 2689: "fastlynx", - 2690: "hp-nnm-data", - 2691: "itinternet", - 2692: "admins-lms", - 2694: "pwrsevent", - 2695: "vspread", - 2696: "unifyadmin", - 2697: "oce-snmp-trap", - 2698: "mck-ivpip", - 2699: "csoft-plusclnt", - 2700: "tqdata", - 2701: "sms-rcinfo", - 2702: "sms-xfer", - 2703: "sms-chat", - 2704: "sms-remctrl", - 2705: "sds-admin", - 2706: "ncdmirroring", - 2707: "emcsymapiport", - 2708: "banyan-net", - 2709: "supermon", - 2710: "sso-service", - 2711: "sso-control", - 2712: "aocp", - 2713: "raventbs", - 2714: "raventdm", - 2715: "hpstgmgr2", - 2716: "inova-ip-disco", - 2717: "pn-requester", - 2718: "pn-requester2", - 2719: "scan-change", - 2720: "wkars", - 2721: "smart-diagnose", - 2722: "proactivesrvr", - 2723: "watchdog-nt", - 2724: "qotps", - 2725: "msolap-ptp2", - 2726: "tams", - 2727: "mgcp-callagent", - 2728: "sqdr", - 2729: "tcim-control", - 2730: "nec-raidplus", - 2731: "fyre-messanger", - 2732: "g5m", - 2733: "signet-ctf", - 2734: "ccs-software", - 2735: "netiq-mc", - 2736: "radwiz-nms-srv", - 2737: "srp-feedback", - 2738: "ndl-tcp-ois-gw", - 2739: "tn-timing", - 2740: "alarm", - 2741: "tsb", - 2742: "tsb2", - 2743: "murx", - 2744: "honyaku", - 2745: "urbisnet", - 2746: "cpudpencap", - 2747: "fjippol-swrly", - 2748: "fjippol-polsvr", - 2749: "fjippol-cnsl", - 2750: "fjippol-port1", - 2751: "fjippol-port2", - 2752: "rsisysaccess", - 2753: "de-spot", - 2754: "apollo-cc", - 2755: "expresspay", - 2756: "simplement-tie", - 2757: "cnrp", - 2758: "apollo-status", - 2759: "apollo-gms", - 2760: "sabams", - 2761: "dicom-iscl", - 2762: "dicom-tls", - 2763: "desktop-dna", - 2764: "data-insurance", - 2765: "qip-audup", - 2766: "compaq-scp", - 2767: "uadtc", - 2768: "uacs", - 2769: "exce", - 2770: "veronica", - 2771: "vergencecm", - 2772: "auris", - 2773: "rbakcup1", - 2774: "rbakcup2", - 2775: "smpp", - 2776: "ridgeway1", - 2777: "ridgeway2", - 2778: "gwen-sonya", - 2779: "lbc-sync", - 2780: "lbc-control", - 2781: "whosells", - 2782: "everydayrc", - 2783: "aises", - 2784: "www-dev", - 2785: "aic-np", - 2786: "aic-oncrpc", - 2787: "piccolo", - 2788: "fryeserv", - 2789: "media-agent", - 2790: "plgproxy", - 2791: "mtport-regist", - 2792: "f5-globalsite", - 2793: "initlsmsad", - 2795: "livestats", - 2796: "ac-tech", - 2797: "esp-encap", - 2798: "tmesis-upshot", - 2799: "icon-discover", - 2800: "acc-raid", - 2801: "igcp", - 2802: "veritas-tcp1", - 2803: "btprjctrl", - 2804: "dvr-esm", - 2805: "wta-wsp-s", - 2806: "cspuni", - 2807: "cspmulti", - 2808: "j-lan-p", - 2809: "corbaloc", - 2810: "netsteward", - 2811: "gsiftp", - 2812: "atmtcp", - 2813: "llm-pass", - 2814: "llm-csv", - 2815: "lbc-measure", - 2816: "lbc-watchdog", - 2817: "nmsigport", - 2818: "rmlnk", - 2819: "fc-faultnotify", - 2820: "univision", - 2821: "vrts-at-port", - 2822: "ka0wuc", - 2823: "cqg-netlan", - 2824: "cqg-netlan-1", - 2826: "slc-systemlog", - 2827: "slc-ctrlrloops", - 2828: "itm-lm", - 2829: "silkp1", - 2830: "silkp2", - 2831: "silkp3", - 2832: "silkp4", - 2833: "glishd", - 2834: "evtp", - 2835: "evtp-data", - 2836: "catalyst", - 2837: "repliweb", - 2838: "starbot", - 2839: "nmsigport", - 2840: "l3-exprt", - 2841: "l3-ranger", - 2842: "l3-hawk", - 2843: "pdnet", - 2844: "bpcp-poll", - 2845: "bpcp-trap", - 2846: "aimpp-hello", - 2847: "aimpp-port-req", - 2848: "amt-blc-port", - 2849: "fxp", - 2850: "metaconsole", - 2851: "webemshttp", - 2852: "bears-01", - 2853: "ispipes", - 2854: "infomover", - 2855: "msrp", - 2856: "cesdinv", - 2857: "simctlp", - 2858: "ecnp", - 2859: "activememory", - 2860: "dialpad-voice1", - 2861: "dialpad-voice2", - 2862: "ttg-protocol", - 2863: "sonardata", - 2864: "astromed-main", - 2865: "pit-vpn", - 2866: "iwlistener", - 2867: "esps-portal", - 2868: "npep-messaging", - 2869: "icslap", - 2870: "daishi", - 2871: "msi-selectplay", - 2872: "radix", - 2874: "dxmessagebase1", - 2875: "dxmessagebase2", - 2876: "sps-tunnel", - 2877: "bluelance", - 2878: "aap", - 2879: "ucentric-ds", - 2880: "synapse", - 2881: "ndsp", - 2882: "ndtp", - 2883: "ndnp", - 2884: "flashmsg", - 2885: "topflow", - 2886: "responselogic", - 2887: "aironetddp", - 2888: "spcsdlobby", - 2889: "rsom", - 2890: "cspclmulti", - 2891: "cinegrfx-elmd", - 2892: "snifferdata", - 2893: "vseconnector", - 2894: "abacus-remote", - 2895: "natuslink", - 2896: "ecovisiong6-1", - 2897: "citrix-rtmp", - 2898: "appliance-cfg", - 2899: "powergemplus", - 2900: "quicksuite", - 2901: "allstorcns", - 2902: "netaspi", - 2903: "suitcase", - 2904: "m2ua", - 2905: "m3ua", - 2906: "caller9", - 2907: "webmethods-b2b", - 2908: "mao", - 2909: "funk-dialout", - 2910: "tdaccess", - 2911: "blockade", - 2912: "epicon", - 2913: "boosterware", - 2914: "gamelobby", - 2915: "tksocket", - 2916: "elvin-server", - 2917: "elvin-client", - 2918: "kastenchasepad", - 2919: "roboer", - 2920: "roboeda", - 2921: "cesdcdman", - 2922: "cesdcdtrn", - 2923: "wta-wsp-wtp-s", - 2924: "precise-vip", - 2926: "mobile-file-dl", - 2927: "unimobilectrl", - 2928: "redstone-cpss", - 2929: "amx-webadmin", - 2930: "amx-weblinx", - 2931: "circle-x", - 2932: "incp", - 2933: "4-tieropmgw", - 2934: "4-tieropmcli", - 2935: "qtp", - 2936: "otpatch", - 2937: "pnaconsult-lm", - 2938: "sm-pas-1", - 2939: "sm-pas-2", - 2940: "sm-pas-3", - 2941: "sm-pas-4", - 2942: "sm-pas-5", - 2943: "ttnrepository", - 2944: "megaco-h248", - 2945: "h248-binary", - 2946: "fjsvmpor", - 2947: "gpsd", - 2948: "wap-push", - 2949: "wap-pushsecure", - 2950: "esip", - 2951: "ottp", - 2952: "mpfwsas", - 2953: "ovalarmsrv", - 2954: "ovalarmsrv-cmd", - 2955: "csnotify", - 2956: "ovrimosdbman", - 2957: "jmact5", - 2958: "jmact6", - 2959: "rmopagt", - 2960: "dfoxserver", - 2961: "boldsoft-lm", - 2962: "iph-policy-cli", - 2963: "iph-policy-adm", - 2964: "bullant-srap", - 2965: "bullant-rap", - 2966: "idp-infotrieve", - 2967: "ssc-agent", - 2968: "enpp", - 2969: "essp", - 2970: "index-net", - 2971: "netclip", - 2972: "pmsm-webrctl", - 2973: "svnetworks", - 2974: "signal", - 2975: "fjmpcm", - 2976: "cns-srv-port", - 2977: "ttc-etap-ns", - 2978: "ttc-etap-ds", - 2979: "h263-video", - 2980: "wimd", - 2981: "mylxamport", - 2982: "iwb-whiteboard", - 2983: "netplan", - 2984: "hpidsadmin", - 2985: "hpidsagent", - 2986: "stonefalls", - 2987: "identify", - 2988: "hippad", - 2989: "zarkov", - 2990: "boscap", - 2991: "wkstn-mon", - 2992: "avenyo", - 2993: "veritas-vis1", - 2994: "veritas-vis2", - 2995: "idrs", - 2996: "vsixml", - 2997: "rebol", - 2998: "realsecure", - 2999: "remoteware-un", - 3000: "hbci", - 3001: "origo-native", - 3002: "exlm-agent", - 3003: "cgms", - 3004: "csoftragent", - 3005: "geniuslm", - 3006: "ii-admin", - 3007: "lotusmtap", - 3008: "midnight-tech", - 3009: "pxc-ntfy", - 3010: "gw", - 3011: "trusted-web", - 3012: "twsdss", - 3013: "gilatskysurfer", - 3014: "broker-service", - 3015: "nati-dstp", - 3016: "notify-srvr", - 3017: "event-listener", - 3018: "srvc-registry", - 3019: "resource-mgr", - 3020: "cifs", - 3021: "agriserver", - 3022: "csregagent", - 3023: "magicnotes", - 3024: "nds-sso", - 3025: "arepa-raft", - 3026: "agri-gateway", - 3027: "LiebDevMgmt-C", - 3028: "LiebDevMgmt-DM", - 3029: "LiebDevMgmt-A", - 3030: "arepa-cas", - 3031: "eppc", - 3032: "redwood-chat", - 3033: "pdb", - 3034: "osmosis-aeea", - 3035: "fjsv-gssagt", - 3036: "hagel-dump", - 3037: "hp-san-mgmt", - 3038: "santak-ups", - 3039: "cogitate", - 3040: "tomato-springs", - 3041: "di-traceware", - 3042: "journee", - 3043: "brp", - 3044: "epp", - 3045: "responsenet", - 3046: "di-ase", - 3047: "hlserver", - 3048: "pctrader", - 3049: "nsws", - 3050: "gds-db", - 3051: "galaxy-server", - 3052: "apc-3052", - 3053: "dsom-server", - 3054: "amt-cnf-prot", - 3055: "policyserver", - 3056: "cdl-server", - 3057: "goahead-fldup", - 3058: "videobeans", - 3059: "qsoft", - 3060: "interserver", - 3061: "cautcpd", - 3062: "ncacn-ip-tcp", - 3063: "ncadg-ip-udp", - 3064: "rprt", - 3065: "slinterbase", - 3066: "netattachsdmp", - 3067: "fjhpjp", - 3068: "ls3bcast", - 3069: "ls3", - 3070: "mgxswitch", - 3071: "xplat-replicate", - 3072: "csd-monitor", - 3073: "vcrp", - 3074: "xbox", - 3075: "orbix-locator", - 3076: "orbix-config", - 3077: "orbix-loc-ssl", - 3078: "orbix-cfg-ssl", - 3079: "lv-frontpanel", - 3080: "stm-pproc", - 3081: "tl1-lv", - 3082: "tl1-raw", - 3083: "tl1-telnet", - 3084: "itm-mccs", - 3085: "pcihreq", - 3086: "jdl-dbkitchen", - 3087: "asoki-sma", - 3088: "xdtp", - 3089: "ptk-alink", - 3090: "stss", - 3091: "1ci-smcs", - 3093: "rapidmq-center", - 3094: "rapidmq-reg", - 3095: "panasas", - 3096: "ndl-aps", - 3098: "umm-port", - 3099: "chmd", - 3100: "opcon-xps", - 3101: "hp-pxpib", - 3102: "slslavemon", - 3103: "autocuesmi", - 3104: "autocuelog", - 3105: "cardbox", - 3106: "cardbox-http", - 3107: "business", - 3108: "geolocate", - 3109: "personnel", - 3110: "sim-control", - 3111: "wsynch", - 3112: "ksysguard", - 3113: "cs-auth-svr", - 3114: "ccmad", - 3115: "mctet-master", - 3116: "mctet-gateway", - 3117: "mctet-jserv", - 3118: "pkagent", - 3119: "d2000kernel", - 3120: "d2000webserver", - 3121: "pcmk-remote", - 3122: "vtr-emulator", - 3123: "edix", - 3124: "beacon-port", - 3125: "a13-an", - 3127: "ctx-bridge", - 3128: "ndl-aas", - 3129: "netport-id", - 3130: "icpv2", - 3131: "netbookmark", - 3132: "ms-rule-engine", - 3133: "prism-deploy", - 3134: "ecp", - 3135: "peerbook-port", - 3136: "grubd", - 3137: "rtnt-1", - 3138: "rtnt-2", - 3139: "incognitorv", - 3140: "ariliamulti", - 3141: "vmodem", - 3142: "rdc-wh-eos", - 3143: "seaview", - 3144: "tarantella", - 3145: "csi-lfap", - 3146: "bears-02", - 3147: "rfio", - 3148: "nm-game-admin", - 3149: "nm-game-server", - 3150: "nm-asses-admin", - 3151: "nm-assessor", - 3152: "feitianrockey", - 3153: "s8-client-port", - 3154: "ccmrmi", - 3155: "jpegmpeg", - 3156: "indura", - 3157: "e3consultants", - 3158: "stvp", - 3159: "navegaweb-port", - 3160: "tip-app-server", - 3161: "doc1lm", - 3162: "sflm", - 3163: "res-sap", - 3164: "imprs", - 3165: "newgenpay", - 3166: "sossecollector", - 3167: "nowcontact", - 3168: "poweronnud", - 3169: "serverview-as", - 3170: "serverview-asn", - 3171: "serverview-gf", - 3172: "serverview-rm", - 3173: "serverview-icc", - 3174: "armi-server", - 3175: "t1-e1-over-ip", - 3176: "ars-master", - 3177: "phonex-port", - 3178: "radclientport", - 3179: "h2gf-w-2m", - 3180: "mc-brk-srv", - 3181: "bmcpatrolagent", - 3182: "bmcpatrolrnvu", - 3183: "cops-tls", - 3184: "apogeex-port", - 3185: "smpppd", - 3186: "iiw-port", - 3187: "odi-port", - 3188: "brcm-comm-port", - 3189: "pcle-infex", - 3190: "csvr-proxy", - 3191: "csvr-sslproxy", - 3192: "firemonrcc", - 3193: "spandataport", - 3194: "magbind", - 3195: "ncu-1", - 3196: "ncu-2", - 3197: "embrace-dp-s", - 3198: "embrace-dp-c", - 3199: "dmod-workspace", - 3200: "tick-port", - 3201: "cpq-tasksmart", - 3202: "intraintra", - 3203: "netwatcher-mon", - 3204: "netwatcher-db", - 3205: "isns", - 3206: "ironmail", - 3207: "vx-auth-port", - 3208: "pfu-prcallback", - 3209: "netwkpathengine", - 3210: "flamenco-proxy", - 3211: "avsecuremgmt", - 3212: "surveyinst", - 3213: "neon24x7", - 3214: "jmq-daemon-1", - 3215: "jmq-daemon-2", - 3216: "ferrari-foam", - 3217: "unite", - 3218: "smartpackets", - 3219: "wms-messenger", - 3220: "xnm-ssl", - 3221: "xnm-clear-text", - 3222: "glbp", - 3223: "digivote", - 3224: "aes-discovery", - 3225: "fcip-port", - 3226: "isi-irp", - 3227: "dwnmshttp", - 3228: "dwmsgserver", - 3229: "global-cd-port", - 3230: "sftdst-port", - 3231: "vidigo", - 3232: "mdtp", - 3233: "whisker", - 3234: "alchemy", - 3235: "mdap-port", - 3236: "apparenet-ts", - 3237: "apparenet-tps", - 3238: "apparenet-as", - 3239: "apparenet-ui", - 3240: "triomotion", - 3241: "sysorb", - 3242: "sdp-id-port", - 3243: "timelot", - 3244: "onesaf", - 3245: "vieo-fe", - 3246: "dvt-system", - 3247: "dvt-data", - 3248: "procos-lm", - 3249: "ssp", - 3250: "hicp", - 3251: "sysscanner", - 3252: "dhe", - 3253: "pda-data", - 3254: "pda-sys", - 3255: "semaphore", - 3256: "cpqrpm-agent", - 3257: "cpqrpm-server", - 3258: "ivecon-port", - 3259: "epncdp2", - 3260: "iscsi-target", - 3261: "winshadow", - 3262: "necp", - 3263: "ecolor-imager", - 3264: "ccmail", - 3265: "altav-tunnel", - 3266: "ns-cfg-server", - 3267: "ibm-dial-out", - 3268: "msft-gc", - 3269: "msft-gc-ssl", - 3270: "verismart", - 3271: "csoft-prev", - 3272: "user-manager", - 3273: "sxmp", - 3274: "ordinox-server", - 3275: "samd", - 3276: "maxim-asics", - 3277: "awg-proxy", - 3278: "lkcmserver", - 3279: "admind", - 3280: "vs-server", - 3281: "sysopt", - 3282: "datusorb", - 3283: "Apple Remote Desktop (Net Assistant)", - 3284: "4talk", - 3285: "plato", - 3286: "e-net", - 3287: "directvdata", - 3288: "cops", - 3289: "enpc", - 3290: "caps-lm", - 3291: "sah-lm", - 3292: "cart-o-rama", - 3293: "fg-fps", - 3294: "fg-gip", - 3295: "dyniplookup", - 3296: "rib-slm", - 3297: "cytel-lm", - 3298: "deskview", - 3299: "pdrncs", - 3300: "ceph", - 3302: "mcs-fastmail", - 3303: "opsession-clnt", - 3304: "opsession-srvr", - 3305: "odette-ftp", - 3306: "mysql", - 3307: "opsession-prxy", - 3308: "tns-server", - 3309: "tns-adv", - 3310: "dyna-access", - 3311: "mcns-tel-ret", - 3312: "appman-server", - 3313: "uorb", - 3314: "uohost", - 3315: "cdid", - 3316: "aicc-cmi", - 3317: "vsaiport", - 3318: "ssrip", - 3319: "sdt-lmd", - 3320: "officelink2000", - 3321: "vnsstr", - 3326: "sftu", - 3327: "bbars", - 3328: "egptlm", - 3329: "hp-device-disc", - 3330: "mcs-calypsoicf", - 3331: "mcs-messaging", - 3332: "mcs-mailsvr", - 3333: "dec-notes", - 3334: "directv-web", - 3335: "directv-soft", - 3336: "directv-tick", - 3337: "directv-catlg", - 3338: "anet-b", - 3339: "anet-l", - 3340: "anet-m", - 3341: "anet-h", - 3342: "webtie", - 3343: "ms-cluster-net", - 3344: "bnt-manager", - 3345: "influence", - 3346: "trnsprntproxy", - 3347: "phoenix-rpc", - 3348: "pangolin-laser", - 3349: "chevinservices", - 3350: "findviatv", - 3351: "btrieve", - 3352: "ssql", - 3353: "fatpipe", - 3354: "suitjd", - 3355: "ordinox-dbase", - 3356: "upnotifyps", - 3357: "adtech-test", - 3358: "mpsysrmsvr", - 3359: "wg-netforce", - 3360: "kv-server", - 3361: "kv-agent", - 3362: "dj-ilm", - 3363: "nati-vi-server", - 3364: "creativeserver", - 3365: "contentserver", - 3366: "creativepartnr", - 3372: "tip2", - 3373: "lavenir-lm", - 3374: "cluster-disc", - 3375: "vsnm-agent", - 3376: "cdbroker", - 3377: "cogsys-lm", - 3378: "wsicopy", - 3379: "socorfs", - 3380: "sns-channels", - 3381: "geneous", - 3382: "fujitsu-neat", - 3383: "esp-lm", - 3384: "hp-clic", - 3385: "qnxnetman", - 3386: "gprs-data", - 3387: "backroomnet", - 3388: "cbserver", - 3389: "ms-wbt-server", - 3390: "dsc", - 3391: "savant", - 3392: "efi-lm", - 3393: "d2k-tapestry1", - 3394: "d2k-tapestry2", - 3395: "dyna-lm", - 3396: "printer-agent", - 3397: "cloanto-lm", - 3398: "mercantile", - 3399: "csms", - 3400: "csms2", - 3401: "filecast", - 3402: "fxaengine-net", - 3405: "nokia-ann-ch1", - 3406: "nokia-ann-ch2", - 3407: "ldap-admin", - 3408: "BESApi", - 3409: "networklens", - 3410: "networklenss", - 3411: "biolink-auth", - 3412: "xmlblaster", - 3413: "svnet", - 3414: "wip-port", - 3415: "bcinameservice", - 3416: "commandport", - 3417: "csvr", - 3418: "rnmap", - 3419: "softaudit", - 3420: "ifcp-port", - 3421: "bmap", - 3422: "rusb-sys-port", - 3423: "xtrm", - 3424: "xtrms", - 3425: "agps-port", - 3426: "arkivio", - 3427: "websphere-snmp", - 3428: "twcss", - 3429: "gcsp", - 3430: "ssdispatch", - 3431: "ndl-als", - 3432: "osdcp", - 3433: "opnet-smp", - 3434: "opencm", - 3435: "pacom", - 3436: "gc-config", - 3437: "autocueds", - 3438: "spiral-admin", - 3439: "hri-port", - 3440: "ans-console", - 3441: "connect-client", - 3442: "connect-server", - 3443: "ov-nnm-websrv", - 3444: "denali-server", - 3445: "monp", - 3446: "3comfaxrpc", - 3447: "directnet", - 3448: "dnc-port", - 3449: "hotu-chat", - 3450: "castorproxy", - 3451: "asam", - 3452: "sabp-signal", - 3453: "pscupd", - 3454: "mira", - 3455: "prsvp", - 3456: "vat", - 3457: "vat-control", - 3458: "d3winosfi", - 3459: "integral", - 3460: "edm-manager", - 3461: "edm-stager", - 3462: "edm-std-notify", - 3463: "edm-adm-notify", - 3464: "edm-mgr-sync", - 3465: "edm-mgr-cntrl", - 3466: "workflow", - 3467: "rcst", - 3468: "ttcmremotectrl", - 3469: "pluribus", - 3470: "jt400", - 3471: "jt400-ssl", - 3472: "jaugsremotec-1", - 3473: "jaugsremotec-2", - 3474: "ttntspauto", - 3475: "genisar-port", - 3476: "nppmp", - 3477: "ecomm", - 3478: "stun", - 3479: "twrpc", - 3480: "plethora", - 3481: "cleanerliverc", - 3482: "vulture", - 3483: "slim-devices", - 3484: "gbs-stp", - 3485: "celatalk", - 3486: "ifsf-hb-port", - 3487: "ltctcp", - 3488: "fs-rh-srv", - 3489: "dtp-dia", - 3490: "colubris", - 3491: "swr-port", - 3492: "tvdumtray-port", - 3493: "nut", - 3494: "ibm3494", - 3495: "seclayer-tcp", - 3496: "seclayer-tls", - 3497: "ipether232port", - 3498: "dashpas-port", - 3499: "sccip-media", - 3500: "rtmp-port", - 3501: "isoft-p2p", - 3502: "avinstalldisc", - 3503: "lsp-ping", - 3504: "ironstorm", - 3505: "ccmcomm", - 3506: "apc-3506", - 3507: "nesh-broker", - 3508: "interactionweb", - 3509: "vt-ssl", - 3510: "xss-port", - 3511: "webmail-2", - 3512: "aztec", - 3513: "arcpd", - 3514: "must-p2p", - 3515: "must-backplane", - 3516: "smartcard-port", - 3517: "802-11-iapp", - 3518: "artifact-msg", - 3519: "nvmsgd", - 3520: "galileolog", - 3521: "mc3ss", - 3522: "nssocketport", - 3523: "odeumservlink", - 3524: "ecmport", - 3525: "eisport", - 3526: "starquiz-port", - 3527: "beserver-msg-q", - 3528: "jboss-iiop", - 3529: "jboss-iiop-ssl", - 3530: "gf", - 3531: "joltid", - 3532: "raven-rmp", - 3533: "raven-rdp", - 3534: "urld-port", - 3535: "ms-la", - 3536: "snac", - 3537: "ni-visa-remote", - 3538: "ibm-diradm", - 3539: "ibm-diradm-ssl", - 3540: "pnrp-port", - 3541: "voispeed-port", - 3542: "hacl-monitor", - 3543: "qftest-lookup", - 3544: "teredo", - 3545: "camac", - 3547: "symantec-sim", - 3548: "interworld", - 3549: "tellumat-nms", - 3550: "ssmpp", - 3551: "apcupsd", - 3552: "taserver", - 3553: "rbr-discovery", - 3554: "questnotify", - 3555: "razor", - 3556: "sky-transport", - 3557: "personalos-001", - 3558: "mcp-port", - 3559: "cctv-port", - 3560: "iniserve-port", - 3561: "bmc-onekey", - 3562: "sdbproxy", - 3563: "watcomdebug", - 3564: "esimport", - 3565: "m2pa", - 3566: "quest-data-hub", - 3567: "dof-eps", - 3568: "dof-tunnel-sec", - 3569: "mbg-ctrl", - 3570: "mccwebsvr-port", - 3571: "megardsvr-port", - 3572: "megaregsvrport", - 3573: "tag-ups-1", - 3574: "dmaf-server", - 3575: "ccm-port", - 3576: "cmc-port", - 3577: "config-port", - 3578: "data-port", - 3579: "ttat3lb", - 3580: "nati-svrloc", - 3581: "kfxaclicensing", - 3582: "press", - 3583: "canex-watch", - 3584: "u-dbap", - 3585: "emprise-lls", - 3586: "emprise-lsc", - 3587: "p2pgroup", - 3588: "sentinel", - 3589: "isomair", - 3590: "wv-csp-sms", - 3591: "gtrack-server", - 3592: "gtrack-ne", - 3593: "bpmd", - 3594: "mediaspace", - 3595: "shareapp", - 3596: "iw-mmogame", - 3597: "a14", - 3598: "a15", - 3599: "quasar-server", - 3600: "trap-daemon", - 3601: "visinet-gui", - 3602: "infiniswitchcl", - 3603: "int-rcv-cntrl", - 3604: "bmc-jmx-port", - 3605: "comcam-io", - 3606: "splitlock", - 3607: "precise-i3", - 3608: "trendchip-dcp", - 3609: "cpdi-pidas-cm", - 3610: "echonet", - 3611: "six-degrees", - 3612: "hp-dataprotect", - 3613: "alaris-disc", - 3614: "sigma-port", - 3615: "start-network", - 3616: "cd3o-protocol", - 3617: "sharp-server", - 3618: "aairnet-1", - 3619: "aairnet-2", - 3620: "ep-pcp", - 3621: "ep-nsp", - 3622: "ff-lr-port", - 3623: "haipe-discover", - 3624: "dist-upgrade", - 3625: "volley", - 3626: "bvcdaemon-port", - 3627: "jamserverport", - 3628: "ept-machine", - 3629: "escvpnet", - 3630: "cs-remote-db", - 3631: "cs-services", - 3632: "distcc", - 3633: "wacp", - 3634: "hlibmgr", - 3635: "sdo", - 3636: "servistaitsm", - 3637: "scservp", - 3638: "ehp-backup", - 3639: "xap-ha", - 3640: "netplay-port1", - 3641: "netplay-port2", - 3642: "juxml-port", - 3643: "audiojuggler", - 3644: "ssowatch", - 3645: "cyc", - 3646: "xss-srv-port", - 3647: "splitlock-gw", - 3648: "fjcp", - 3649: "nmmp", - 3650: "prismiq-plugin", - 3651: "xrpc-registry", - 3652: "vxcrnbuport", - 3653: "tsp", - 3654: "vaprtm", - 3655: "abatemgr", - 3656: "abatjss", - 3657: "immedianet-bcn", - 3658: "ps-ams", - 3659: "apple-sasl", - 3660: "can-nds-ssl", - 3661: "can-ferret-ssl", - 3662: "pserver", - 3663: "dtp", - 3664: "ups-engine", - 3665: "ent-engine", - 3666: "eserver-pap", - 3667: "infoexch", - 3668: "dell-rm-port", - 3669: "casanswmgmt", - 3670: "smile", - 3671: "efcp", - 3672: "lispworks-orb", - 3673: "mediavault-gui", - 3674: "wininstall-ipc", - 3675: "calltrax", - 3676: "va-pacbase", - 3677: "roverlog", - 3678: "ipr-dglt", - 3679: "Escale (Newton Dock)", - 3680: "npds-tracker", - 3681: "bts-x73", - 3682: "cas-mapi", - 3683: "bmc-ea", - 3684: "faxstfx-port", - 3685: "dsx-agent", - 3686: "tnmpv2", - 3687: "simple-push", - 3688: "simple-push-s", - 3689: "daap", - 3690: "svn", - 3691: "magaya-network", - 3692: "intelsync", - 3693: "easl", - 3695: "bmc-data-coll", - 3696: "telnetcpcd", - 3697: "nw-license", - 3698: "sagectlpanel", - 3699: "kpn-icw", - 3700: "lrs-paging", - 3701: "netcelera", - 3702: "ws-discovery", - 3703: "adobeserver-3", - 3704: "adobeserver-4", - 3705: "adobeserver-5", - 3706: "rt-event", - 3707: "rt-event-s", - 3708: "sun-as-iiops", - 3709: "ca-idms", - 3710: "portgate-auth", - 3711: "edb-server2", - 3712: "sentinel-ent", - 3713: "tftps", - 3714: "delos-dms", - 3715: "anoto-rendezv", - 3716: "wv-csp-sms-cir", - 3717: "wv-csp-udp-cir", - 3718: "opus-services", - 3719: "itelserverport", - 3720: "ufastro-instr", - 3721: "xsync", - 3722: "xserveraid", - 3723: "sychrond", - 3724: "blizwow", - 3725: "na-er-tip", - 3726: "array-manager", - 3727: "e-mdu", - 3728: "e-woa", - 3729: "fksp-audit", - 3730: "client-ctrl", - 3731: "smap", - 3732: "m-wnn", - 3733: "multip-msg", - 3734: "synel-data", - 3735: "pwdis", - 3736: "rs-rmi", - 3737: "xpanel", - 3738: "versatalk", - 3739: "launchbird-lm", - 3740: "heartbeat", - 3741: "wysdma", - 3742: "cst-port", - 3743: "ipcs-command", - 3744: "sasg", - 3745: "gw-call-port", - 3746: "linktest", - 3747: "linktest-s", - 3748: "webdata", - 3749: "cimtrak", - 3750: "cbos-ip-port", - 3751: "gprs-cube", - 3752: "vipremoteagent", - 3753: "nattyserver", - 3754: "timestenbroker", - 3755: "sas-remote-hlp", - 3756: "canon-capt", - 3757: "grf-port", - 3758: "apw-registry", - 3759: "exapt-lmgr", - 3760: "adtempusclient", - 3761: "gsakmp", - 3762: "gbs-smp", - 3763: "xo-wave", - 3764: "mni-prot-rout", - 3765: "rtraceroute", - 3766: "sitewatch-s", - 3767: "listmgr-port", - 3768: "rblcheckd", - 3769: "haipe-otnk", - 3770: "cindycollab", - 3771: "paging-port", - 3772: "ctp", - 3773: "ctdhercules", - 3774: "zicom", - 3775: "ispmmgr", - 3776: "dvcprov-port", - 3777: "jibe-eb", - 3778: "c-h-it-port", - 3779: "cognima", - 3780: "nnp", - 3781: "abcvoice-port", - 3782: "iso-tp0s", - 3783: "bim-pem", - 3784: "bfd-control", - 3785: "bfd-echo", - 3786: "upstriggervsw", - 3787: "fintrx", - 3788: "isrp-port", - 3789: "remotedeploy", - 3790: "quickbooksrds", - 3791: "tvnetworkvideo", - 3792: "sitewatch", - 3793: "dcsoftware", - 3794: "jaus", - 3795: "myblast", - 3796: "spw-dialer", - 3797: "idps", - 3798: "minilock", - 3799: "radius-dynauth", - 3800: "pwgpsi", - 3801: "ibm-mgr", - 3802: "vhd", - 3803: "soniqsync", - 3804: "iqnet-port", - 3805: "tcpdataserver", - 3806: "wsmlb", - 3807: "spugna", - 3808: "sun-as-iiops-ca", - 3809: "apocd", - 3810: "wlanauth", - 3811: "amp", - 3812: "neto-wol-server", - 3813: "rap-ip", - 3814: "neto-dcs", - 3815: "lansurveyorxml", - 3816: "sunlps-http", - 3817: "tapeware", - 3818: "crinis-hb", - 3819: "epl-slp", - 3820: "scp", - 3821: "pmcp", - 3822: "acp-discovery", - 3823: "acp-conduit", - 3824: "acp-policy", - 3825: "ffserver", - 3826: "warmux", - 3827: "netmpi", - 3828: "neteh", - 3829: "neteh-ext", - 3830: "cernsysmgmtagt", - 3831: "dvapps", - 3832: "xxnetserver", - 3833: "aipn-auth", - 3834: "spectardata", - 3835: "spectardb", - 3836: "markem-dcp", - 3837: "mkm-discovery", - 3838: "sos", - 3839: "amx-rms", - 3840: "flirtmitmir", - 3841: "shiprush-db-svr", - 3842: "nhci", - 3843: "quest-agent", - 3844: "rnm", - 3845: "v-one-spp", - 3846: "an-pcp", - 3847: "msfw-control", - 3848: "item", - 3849: "spw-dnspreload", - 3850: "qtms-bootstrap", - 3851: "spectraport", - 3852: "sse-app-config", - 3853: "sscan", - 3854: "stryker-com", - 3855: "opentrac", - 3856: "informer", - 3857: "trap-port", - 3858: "trap-port-mom", - 3859: "nav-port", - 3860: "sasp", - 3861: "winshadow-hd", - 3862: "giga-pocket", - 3863: "asap-tcp", - 3864: "asap-tcp-tls", - 3865: "xpl", - 3866: "dzdaemon", - 3867: "dzoglserver", - 3868: "diameter", - 3869: "ovsam-mgmt", - 3870: "ovsam-d-agent", - 3871: "avocent-adsap", - 3872: "oem-agent", - 3873: "fagordnc", - 3874: "sixxsconfig", - 3875: "pnbscada", - 3876: "dl-agent", - 3877: "xmpcr-interface", - 3878: "fotogcad", - 3879: "appss-lm", - 3880: "igrs", - 3881: "idac", - 3882: "msdts1", - 3883: "vrpn", - 3884: "softrack-meter", - 3885: "topflow-ssl", - 3886: "nei-management", - 3887: "ciphire-data", - 3888: "ciphire-serv", - 3889: "dandv-tester", - 3890: "ndsconnect", - 3891: "rtc-pm-port", - 3892: "pcc-image-port", - 3893: "cgi-starapi", - 3894: "syam-agent", - 3895: "syam-smc", - 3896: "sdo-tls", - 3897: "sdo-ssh", - 3898: "senip", - 3899: "itv-control", - 3900: "udt-os", - 3901: "nimsh", - 3902: "nimaux", - 3903: "charsetmgr", - 3904: "omnilink-port", - 3905: "mupdate", - 3906: "topovista-data", - 3907: "imoguia-port", - 3908: "hppronetman", - 3909: "surfcontrolcpa", - 3910: "prnrequest", - 3911: "prnstatus", - 3912: "gbmt-stars", - 3913: "listcrt-port", - 3914: "listcrt-port-2", - 3915: "agcat", - 3916: "wysdmc", - 3917: "aftmux", - 3918: "pktcablemmcops", - 3919: "hyperip", - 3920: "exasoftport1", - 3921: "herodotus-net", - 3922: "sor-update", - 3923: "symb-sb-port", - 3924: "mpl-gprs-port", - 3925: "zmp", - 3926: "winport", - 3927: "natdataservice", - 3928: "netboot-pxe", - 3929: "smauth-port", - 3930: "syam-webserver", - 3931: "msr-plugin-port", - 3932: "dyn-site", - 3933: "plbserve-port", - 3934: "sunfm-port", - 3935: "sdp-portmapper", - 3936: "mailprox", - 3937: "dvbservdsc", - 3938: "dbcontrol-agent", - 3939: "aamp", - 3940: "xecp-node", - 3941: "homeportal-web", - 3942: "srdp", - 3943: "tig", - 3944: "sops", - 3945: "emcads", - 3946: "backupedge", - 3947: "ccp", - 3948: "apdap", - 3949: "drip", - 3950: "namemunge", - 3951: "pwgippfax", - 3952: "i3-sessionmgr", - 3953: "xmlink-connect", - 3954: "adrep", - 3955: "p2pcommunity", - 3956: "gvcp", - 3957: "mqe-broker", - 3958: "mqe-agent", - 3959: "treehopper", - 3960: "bess", - 3961: "proaxess", - 3962: "sbi-agent", - 3963: "thrp", - 3964: "sasggprs", - 3965: "ati-ip-to-ncpe", - 3966: "bflckmgr", - 3967: "ppsms", - 3968: "ianywhere-dbns", - 3969: "landmarks", - 3970: "lanrevagent", - 3971: "lanrevserver", - 3972: "iconp", - 3973: "progistics", - 3974: "citysearch", - 3975: "airshot", - 3976: "opswagent", - 3977: "opswmanager", - 3978: "secure-cfg-svr", - 3979: "smwan", - 3980: "acms", - 3981: "starfish", - 3982: "eis", - 3983: "eisp", - 3984: "mapper-nodemgr", - 3985: "mapper-mapethd", - 3986: "mapper-ws-ethd", - 3987: "centerline", - 3988: "dcs-config", - 3989: "bv-queryengine", - 3990: "bv-is", - 3991: "bv-smcsrv", - 3992: "bv-ds", - 3993: "bv-agent", - 3995: "iss-mgmt-ssl", - 3996: "abcsoftware", - 3997: "agentsease-db", - 3998: "dnx", - 3999: "nvcnet", - 4000: "terabase", - 4001: "newoak", - 4002: "pxc-spvr-ft", - 4003: "pxc-splr-ft", - 4004: "pxc-roid", - 4005: "pxc-pin", - 4006: "pxc-spvr", - 4007: "pxc-splr", - 4008: "netcheque", - 4009: "chimera-hwm", - 4010: "samsung-unidex", - 4011: "altserviceboot", - 4012: "pda-gate", - 4013: "acl-manager", - 4014: "taiclock", - 4015: "talarian-mcast1", - 4016: "talarian-mcast2", - 4017: "talarian-mcast3", - 4018: "talarian-mcast4", - 4019: "talarian-mcast5", - 4020: "trap", - 4021: "nexus-portal", - 4022: "dnox", - 4023: "esnm-zoning", - 4024: "tnp1-port", - 4025: "partimage", - 4026: "as-debug", - 4027: "bxp", - 4028: "dtserver-port", - 4029: "ip-qsig", - 4030: "jdmn-port", - 4031: "suucp", - 4032: "vrts-auth-port", - 4033: "sanavigator", - 4034: "ubxd", - 4035: "wap-push-http", - 4036: "wap-push-https", - 4037: "ravehd", - 4038: "fazzt-ptp", - 4039: "fazzt-admin", - 4040: "yo-main", - 4041: "houston", - 4042: "ldxp", - 4043: "nirp", - 4044: "ltp", - 4045: "npp", - 4046: "acp-proto", - 4047: "ctp-state", - 4049: "wafs", - 4050: "cisco-wafs", - 4051: "cppdp", - 4052: "interact", - 4053: "ccu-comm-1", - 4054: "ccu-comm-2", - 4055: "ccu-comm-3", - 4056: "lms", - 4057: "wfm", - 4058: "kingfisher", - 4059: "dlms-cosem", - 4060: "dsmeter-iatc", - 4061: "ice-location", - 4062: "ice-slocation", - 4063: "ice-router", - 4064: "ice-srouter", - 4065: "avanti-cdp", - 4066: "pmas", - 4067: "idp", - 4068: "ipfltbcst", - 4069: "minger", - 4070: "tripe", - 4071: "aibkup", - 4072: "zieto-sock", - 4073: "iRAPP", - 4074: "cequint-cityid", - 4075: "perimlan", - 4076: "seraph", - 4078: "cssp", - 4079: "santools", - 4080: "lorica-in", - 4081: "lorica-in-sec", - 4082: "lorica-out", - 4083: "lorica-out-sec", - 4085: "ezmessagesrv", - 4087: "applusservice", - 4088: "npsp", - 4089: "opencore", - 4090: "omasgport", - 4091: "ewinstaller", - 4092: "ewdgs", - 4093: "pvxpluscs", - 4094: "sysrqd", - 4095: "xtgui", - 4096: "bre", - 4097: "patrolview", - 4098: "drmsfsd", - 4099: "dpcp", - 4100: "igo-incognito", - 4101: "brlp-0", - 4102: "brlp-1", - 4103: "brlp-2", - 4104: "brlp-3", - 4105: "shofar", - 4106: "synchronite", - 4107: "j-ac", - 4108: "accel", - 4109: "izm", - 4110: "g2tag", - 4111: "xgrid", - 4112: "apple-vpns-rp", - 4113: "aipn-reg", - 4114: "jomamqmonitor", - 4115: "cds", - 4116: "smartcard-tls", - 4117: "hillrserv", - 4118: "netscript", - 4119: "assuria-slm", - 4120: "minirem", - 4121: "e-builder", - 4122: "fprams", - 4123: "z-wave", - 4124: "tigv2", - 4125: "opsview-envoy", - 4126: "ddrepl", - 4127: "unikeypro", - 4128: "nufw", - 4129: "nuauth", - 4130: "fronet", - 4131: "stars", - 4132: "nuts-dem", - 4133: "nuts-bootp", - 4134: "nifty-hmi", - 4135: "cl-db-attach", - 4136: "cl-db-request", - 4137: "cl-db-remote", - 4138: "nettest", - 4139: "thrtx", - 4140: "cedros-fds", - 4141: "oirtgsvc", - 4142: "oidocsvc", - 4143: "oidsr", - 4145: "vvr-control", - 4146: "tgcconnect", - 4147: "vrxpservman", - 4148: "hhb-handheld", - 4149: "agslb", - 4150: "PowerAlert-nsa", - 4151: "menandmice-noh", - 4152: "idig-mux", - 4153: "mbl-battd", - 4154: "atlinks", - 4155: "bzr", - 4156: "stat-results", - 4157: "stat-scanner", - 4158: "stat-cc", - 4159: "nss", - 4160: "jini-discovery", - 4161: "omscontact", - 4162: "omstopology", - 4163: "silverpeakpeer", - 4164: "silverpeakcomm", - 4165: "altcp", - 4166: "joost", - 4167: "ddgn", - 4168: "pslicser", - 4169: "iadt", - 4170: "d-cinema-csp", - 4171: "ml-svnet", - 4172: "pcoip", - 4174: "smcluster", - 4175: "bccp", - 4176: "tl-ipcproxy", - 4177: "wello", - 4178: "storman", - 4179: "MaxumSP", - 4180: "httpx", - 4181: "macbak", - 4182: "pcptcpservice", - 4183: "cyborgnet", - 4184: "universe-suite", - 4185: "wcpp", - 4186: "boxbackupstore", - 4187: "csc-proxy", - 4188: "vatata", - 4189: "pcep", - 4190: "sieve", - 4192: "azeti", - 4193: "pvxplusio", - 4197: "hctl", - 4199: "eims-admin", - 4300: "corelccam", - 4301: "d-data", - 4302: "d-data-control", - 4303: "srcp", - 4304: "owserver", - 4305: "batman", - 4306: "pinghgl", - 4307: "trueconf", - 4308: "compx-lockview", - 4309: "dserver", - 4310: "mirrtex", - 4311: "p6ssmc", - 4312: "pscl-mgt", - 4313: "perrla", - 4314: "choiceview-agt", - 4316: "choiceview-clt", - 4320: "fdt-rcatp", - 4321: "rwhois", - 4322: "trim-event", - 4323: "trim-ice", - 4325: "geognosisman", - 4326: "geognosis", - 4327: "jaxer-web", - 4328: "jaxer-manager", - 4329: "publiqare-sync", - 4330: "dey-sapi", - 4331: "ktickets-rest", - 4333: "ahsp", - 4334: "netconf-ch-ssh", - 4335: "netconf-ch-tls", - 4336: "restconf-ch-tls", - 4340: "gaia", - 4341: "lisp-data", - 4342: "lisp-cons", - 4343: "unicall", - 4344: "vinainstall", - 4345: "m4-network-as", - 4346: "elanlm", - 4347: "lansurveyor", - 4348: "itose", - 4349: "fsportmap", - 4350: "net-device", - 4351: "plcy-net-svcs", - 4352: "pjlink", - 4353: "f5-iquery", - 4354: "qsnet-trans", - 4355: "qsnet-workst", - 4356: "qsnet-assist", - 4357: "qsnet-cond", - 4358: "qsnet-nucl", - 4359: "omabcastltkm", - 4360: "matrix-vnet", - 4368: "wxbrief", - 4369: "epmd", - 4370: "elpro-tunnel", - 4371: "l2c-control", - 4372: "l2c-data", - 4373: "remctl", - 4374: "psi-ptt", - 4375: "tolteces", - 4376: "bip", - 4377: "cp-spxsvr", - 4378: "cp-spxdpy", - 4379: "ctdb", - 4389: "xandros-cms", - 4390: "wiegand", - 4391: "apwi-imserver", - 4392: "apwi-rxserver", - 4393: "apwi-rxspooler", - 4395: "omnivisionesx", - 4396: "fly", - 4400: "ds-srv", - 4401: "ds-srvr", - 4402: "ds-clnt", - 4403: "ds-user", - 4404: "ds-admin", - 4405: "ds-mail", - 4406: "ds-slp", - 4407: "nacagent", - 4408: "slscc", - 4409: "netcabinet-com", - 4410: "itwo-server", - 4411: "found", - 4413: "avi-nms", - 4414: "updog", - 4415: "brcd-vr-req", - 4416: "pjj-player", - 4417: "workflowdir", - 4419: "cbp", - 4420: "nvm-express", - 4421: "scaleft", - 4422: "tsepisp", - 4423: "thingkit", - 4425: "netrockey6", - 4426: "beacon-port-2", - 4427: "drizzle", - 4428: "omviserver", - 4429: "omviagent", - 4430: "rsqlserver", - 4431: "wspipe", - 4432: "l-acoustics", - 4433: "vop", - 4442: "saris", - 4443: "pharos", - 4444: "krb524", - 4445: "upnotifyp", - 4446: "n1-fwp", - 4447: "n1-rmgmt", - 4448: "asc-slmd", - 4449: "privatewire", - 4450: "camp", - 4451: "ctisystemmsg", - 4452: "ctiprogramload", - 4453: "nssalertmgr", - 4454: "nssagentmgr", - 4455: "prchat-user", - 4456: "prchat-server", - 4457: "prRegister", - 4458: "mcp", - 4484: "hpssmgmt", - 4485: "assyst-dr", - 4486: "icms", - 4487: "prex-tcp", - 4488: "awacs-ice", - 4500: "ipsec-nat-t", - 4535: "ehs", - 4536: "ehs-ssl", - 4537: "wssauthsvc", - 4538: "swx-gate", - 4545: "worldscores", - 4546: "sf-lm", - 4547: "lanner-lm", - 4548: "synchromesh", - 4549: "aegate", - 4550: "gds-adppiw-db", - 4551: "ieee-mih", - 4552: "menandmice-mon", - 4553: "icshostsvc", - 4554: "msfrs", - 4555: "rsip", - 4556: "dtn-bundle", - 4559: "hylafax", - 4563: "amahi-anywhere", - 4566: "kwtc", - 4567: "tram", - 4568: "bmc-reporting", - 4569: "iax", - 4570: "deploymentmap", - 4573: "cardifftec-back", - 4590: "rid", - 4591: "l3t-at-an", - 4593: "ipt-anri-anri", - 4594: "ias-session", - 4595: "ias-paging", - 4596: "ias-neighbor", - 4597: "a21-an-1xbs", - 4598: "a16-an-an", - 4599: "a17-an-an", - 4600: "piranha1", - 4601: "piranha2", - 4602: "mtsserver", - 4603: "menandmice-upg", - 4604: "irp", - 4605: "sixchat", - 4658: "playsta2-app", - 4659: "playsta2-lob", - 4660: "smaclmgr", - 4661: "kar2ouche", - 4662: "oms", - 4663: "noteit", - 4664: "ems", - 4665: "contclientms", - 4666: "eportcomm", - 4667: "mmacomm", - 4668: "mmaeds", - 4669: "eportcommdata", - 4670: "light", - 4671: "acter", - 4672: "rfa", - 4673: "cxws", - 4674: "appiq-mgmt", - 4675: "dhct-status", - 4676: "dhct-alerts", - 4677: "bcs", - 4678: "traversal", - 4679: "mgesupervision", - 4680: "mgemanagement", - 4681: "parliant", - 4682: "finisar", - 4683: "spike", - 4684: "rfid-rp1", - 4685: "autopac", - 4686: "msp-os", - 4687: "nst", - 4688: "mobile-p2p", - 4689: "altovacentral", - 4690: "prelude", - 4691: "mtn", - 4692: "conspiracy", - 4700: "netxms-agent", - 4701: "netxms-mgmt", - 4702: "netxms-sync", - 4703: "npqes-test", - 4704: "assuria-ins", - 4711: "trinity-dist", - 4725: "truckstar", - 4727: "fcis", - 4728: "capmux", - 4730: "gearman", - 4731: "remcap", - 4733: "resorcs", - 4737: "ipdr-sp", - 4738: "solera-lpn", - 4739: "ipfix", - 4740: "ipfixs", - 4741: "lumimgrd", - 4742: "sicct", - 4743: "openhpid", - 4744: "ifsp", - 4745: "fmp", - 4749: "profilemac", - 4750: "ssad", - 4751: "spocp", - 4752: "snap", - 4753: "simon", - 4756: "RDCenter", - 4774: "converge", - 4784: "bfd-multi-ctl", - 4786: "smart-install", - 4787: "sia-ctrl-plane", - 4788: "xmcp", - 4800: "iims", - 4801: "iwec", - 4802: "ilss", - 4803: "notateit", - 4827: "htcp", - 4837: "varadero-0", - 4838: "varadero-1", - 4839: "varadero-2", - 4840: "opcua-tcp", - 4841: "quosa", - 4842: "gw-asv", - 4843: "opcua-tls", - 4844: "gw-log", - 4845: "wcr-remlib", - 4846: "contamac-icm", - 4847: "wfc", - 4848: "appserv-http", - 4849: "appserv-https", - 4850: "sun-as-nodeagt", - 4851: "derby-repli", - 4867: "unify-debug", - 4868: "phrelay", - 4869: "phrelaydbg", - 4870: "cc-tracking", - 4871: "wired", - 4876: "tritium-can", - 4877: "lmcs", - 4879: "wsdl-event", - 4880: "hislip", - 4883: "wmlserver", - 4884: "hivestor", - 4885: "abbs", - 4894: "lyskom", - 4899: "radmin-port", - 4900: "hfcs", - 4901: "flr-agent", - 4902: "magiccontrol", - 4912: "lutap", - 4913: "lutcp", - 4914: "bones", - 4915: "frcs", - 4940: "eq-office-4940", - 4941: "eq-office-4941", - 4942: "eq-office-4942", - 4949: "munin", - 4950: "sybasesrvmon", - 4951: "pwgwims", - 4952: "sagxtsds", - 4953: "dbsyncarbiter", - 4969: "ccss-qmm", - 4970: "ccss-qsm", - 4971: "burp", - 4984: "webyast", - 4985: "gerhcs", - 4986: "mrip", - 4987: "smar-se-port1", - 4988: "smar-se-port2", - 4989: "parallel", - 4990: "busycal", - 4991: "vrt", - 4999: "hfcs-manager", - 5000: "commplex-main", - 5001: "commplex-link", - 5002: "rfe", - 5003: "fmpro-internal", - 5004: "avt-profile-1", - 5005: "avt-profile-2", - 5006: "wsm-server", - 5007: "wsm-server-ssl", - 5008: "synapsis-edge", - 5009: "winfs", - 5010: "telelpathstart", - 5011: "telelpathattack", - 5012: "nsp", - 5013: "fmpro-v6", - 5015: "fmwp", - 5020: "zenginkyo-1", - 5021: "zenginkyo-2", - 5022: "mice", - 5023: "htuilsrv", - 5024: "scpi-telnet", - 5025: "scpi-raw", - 5026: "strexec-d", - 5027: "strexec-s", - 5028: "qvr", - 5029: "infobright", - 5030: "surfpass", - 5032: "signacert-agent", - 5033: "jtnetd-server", - 5034: "jtnetd-status", - 5042: "asnaacceler8db", - 5043: "swxadmin", - 5044: "lxi-evntsvc", - 5045: "osp", - 5048: "texai", - 5049: "ivocalize", - 5050: "mmcc", - 5051: "ita-agent", - 5052: "ita-manager", - 5053: "rlm", - 5054: "rlm-admin", - 5055: "unot", - 5056: "intecom-ps1", - 5057: "intecom-ps2", - 5059: "sds", - 5060: "sip", - 5061: "sips", - 5062: "na-localise", - 5063: "csrpc", - 5064: "ca-1", - 5065: "ca-2", - 5066: "stanag-5066", - 5067: "authentx", - 5068: "bitforestsrv", - 5069: "i-net-2000-npr", - 5070: "vtsas", - 5071: "powerschool", - 5072: "ayiya", - 5073: "tag-pm", - 5074: "alesquery", - 5075: "pvaccess", - 5080: "onscreen", - 5081: "sdl-ets", - 5082: "qcp", - 5083: "qfp", - 5084: "llrp", - 5085: "encrypted-llrp", - 5086: "aprigo-cs", - 5087: "biotic", - 5093: "sentinel-lm", - 5094: "hart-ip", - 5099: "sentlm-srv2srv", - 5100: "socalia", - 5101: "talarian-tcp", - 5102: "oms-nonsecure", - 5103: "actifio-c2c", - 5106: "actifioudsagent", - 5107: "actifioreplic", - 5111: "taep-as-svc", - 5112: "pm-cmdsvr", - 5114: "ev-services", - 5115: "autobuild", - 5117: "gradecam", - 5120: "barracuda-bbs", - 5133: "nbt-pc", - 5134: "ppactivation", - 5135: "erp-scale", - 5137: "ctsd", - 5145: "rmonitor-secure", - 5146: "social-alarm", - 5150: "atmp", - 5151: "esri-sde", - 5152: "sde-discovery", - 5153: "toruxserver", - 5154: "bzflag", - 5155: "asctrl-agent", - 5156: "rugameonline", - 5157: "mediat", - 5161: "snmpssh", - 5162: "snmpssh-trap", - 5163: "sbackup", - 5164: "vpa", - 5165: "ife-icorp", - 5166: "winpcs", - 5167: "scte104", - 5168: "scte30", - 5172: "pcoip-mgmt", - 5190: "aol", - 5191: "aol-1", - 5192: "aol-2", - 5193: "aol-3", - 5194: "cpscomm", - 5195: "ampl-lic", - 5196: "ampl-tableproxy", - 5197: "tunstall-lwp", - 5200: "targus-getdata", - 5201: "targus-getdata1", - 5202: "targus-getdata2", - 5203: "targus-getdata3", - 5209: "nomad", - 5215: "noteza", - 5221: "3exmp", - 5222: "xmpp-client", - 5223: "hpvirtgrp", - 5224: "hpvirtctrl", - 5225: "hp-server", - 5226: "hp-status", - 5227: "perfd", - 5228: "hpvroom", - 5229: "jaxflow", - 5230: "jaxflow-data", - 5231: "crusecontrol", - 5232: "csedaemon", - 5233: "enfs", - 5234: "eenet", - 5235: "galaxy-network", - 5236: "padl2sim", - 5237: "mnet-discovery", - 5245: "downtools", - 5248: "caacws", - 5249: "caaclang2", - 5250: "soagateway", - 5251: "caevms", - 5252: "movaz-ssc", - 5253: "kpdp", - 5254: "logcabin", - 5264: "3com-njack-1", - 5265: "3com-njack-2", - 5269: "xmpp-server", - 5270: "cartographerxmp", - 5271: "cuelink", - 5272: "pk", - 5280: "xmpp-bosh", - 5281: "undo-lm", - 5282: "transmit-port", - 5298: "presence", - 5299: "nlg-data", - 5300: "hacl-hb", - 5301: "hacl-gs", - 5302: "hacl-cfg", - 5303: "hacl-probe", - 5304: "hacl-local", - 5305: "hacl-test", - 5306: "sun-mc-grp", - 5307: "sco-aip", - 5308: "cfengine", - 5309: "jprinter", - 5310: "outlaws", - 5312: "permabit-cs", - 5313: "rrdp", - 5314: "opalis-rbt-ipc", - 5315: "hacl-poll", - 5316: "hpbladems", - 5317: "hpdevms", - 5318: "pkix-cmc", - 5320: "bsfserver-zn", - 5321: "bsfsvr-zn-ssl", - 5343: "kfserver", - 5344: "xkotodrcp", - 5349: "stuns", - 5352: "dns-llq", - 5353: "mdns", - 5354: "mdnsresponder", - 5355: "llmnr", - 5356: "ms-smlbiz", - 5357: "wsdapi", - 5358: "wsdapi-s", - 5359: "ms-alerter", - 5360: "ms-sideshow", - 5361: "ms-s-sideshow", - 5362: "serverwsd2", - 5363: "net-projection", - 5397: "stresstester", - 5398: "elektron-admin", - 5399: "securitychase", - 5400: "excerpt", - 5401: "excerpts", - 5402: "mftp", - 5403: "hpoms-ci-lstn", - 5404: "hpoms-dps-lstn", - 5405: "netsupport", - 5406: "systemics-sox", - 5407: "foresyte-clear", - 5408: "foresyte-sec", - 5409: "salient-dtasrv", - 5410: "salient-usrmgr", - 5411: "actnet", - 5412: "continuus", - 5413: "wwiotalk", - 5414: "statusd", - 5415: "ns-server", - 5416: "sns-gateway", - 5417: "sns-agent", - 5418: "mcntp", - 5419: "dj-ice", - 5420: "cylink-c", - 5421: "netsupport2", - 5422: "salient-mux", - 5423: "virtualuser", - 5424: "beyond-remote", - 5425: "br-channel", - 5426: "devbasic", - 5427: "sco-peer-tta", - 5428: "telaconsole", - 5429: "base", - 5430: "radec-corp", - 5431: "park-agent", - 5432: "postgresql", - 5433: "pyrrho", - 5434: "sgi-arrayd", - 5435: "sceanics", - 5443: "spss", - 5445: "smbdirect", - 5450: "tiepie", - 5453: "surebox", - 5454: "apc-5454", - 5455: "apc-5455", - 5456: "apc-5456", - 5461: "silkmeter", - 5462: "ttl-publisher", - 5463: "ttlpriceproxy", - 5464: "quailnet", - 5465: "netops-broker", - 5470: "apsolab-col", - 5471: "apsolab-cols", - 5472: "apsolab-tag", - 5473: "apsolab-tags", - 5475: "apsolab-data", - 5500: "fcp-addr-srvr1", - 5501: "fcp-addr-srvr2", - 5502: "fcp-srvr-inst1", - 5503: "fcp-srvr-inst2", - 5504: "fcp-cics-gw1", - 5505: "checkoutdb", - 5506: "amc", - 5507: "psl-management", - 5550: "cbus", - 5553: "sgi-eventmond", - 5554: "sgi-esphttp", - 5555: "personal-agent", - 5556: "freeciv", - 5557: "farenet", - 5565: "hpe-dp-bura", - 5566: "westec-connect", - 5567: "dof-dps-mc-sec", - 5568: "sdt", - 5569: "rdmnet-ctrl", - 5573: "sdmmp", - 5574: "lsi-bobcat", - 5575: "ora-oap", - 5579: "fdtracks", - 5580: "tmosms0", - 5581: "tmosms1", - 5582: "fac-restore", - 5583: "tmo-icon-sync", - 5584: "bis-web", - 5585: "bis-sync", - 5586: "att-mt-sms", - 5597: "ininmessaging", - 5598: "mctfeed", - 5599: "esinstall", - 5600: "esmmanager", - 5601: "esmagent", - 5602: "a1-msc", - 5603: "a1-bs", - 5604: "a3-sdunode", - 5605: "a4-sdunode", - 5618: "efr", - 5627: "ninaf", - 5628: "htrust", - 5629: "symantec-sfdb", - 5630: "precise-comm", - 5631: "pcanywheredata", - 5632: "pcanywherestat", - 5633: "beorl", - 5634: "xprtld", - 5635: "sfmsso", - 5636: "sfm-db-server", - 5637: "cssc", - 5638: "flcrs", - 5639: "ics", - 5646: "vfmobile", - 5666: "nrpe", - 5670: "filemq", - 5671: "amqps", - 5672: "amqp", - 5673: "jms", - 5674: "hyperscsi-port", - 5675: "v5ua", - 5676: "raadmin", - 5677: "questdb2-lnchr", - 5678: "rrac", - 5679: "dccm", - 5680: "auriga-router", - 5681: "ncxcp", - 5688: "ggz", - 5689: "qmvideo", - 5693: "rbsystem", - 5696: "kmip", - 5700: "supportassist", - 5705: "storageos", - 5713: "proshareaudio", - 5714: "prosharevideo", - 5715: "prosharedata", - 5716: "prosharerequest", - 5717: "prosharenotify", - 5718: "dpm", - 5719: "dpm-agent", - 5720: "ms-licensing", - 5721: "dtpt", - 5722: "msdfsr", - 5723: "omhs", - 5724: "omsdk", - 5725: "ms-ilm", - 5726: "ms-ilm-sts", - 5727: "asgenf", - 5728: "io-dist-data", - 5729: "openmail", - 5730: "unieng", - 5741: "ida-discover1", - 5742: "ida-discover2", - 5743: "watchdoc-pod", - 5744: "watchdoc", - 5745: "fcopy-server", - 5746: "fcopys-server", - 5747: "tunatic", - 5748: "tunalyzer", - 5750: "rscd", - 5755: "openmailg", - 5757: "x500ms", - 5766: "openmailns", - 5767: "s-openmail", - 5768: "openmailpxy", - 5769: "spramsca", - 5770: "spramsd", - 5771: "netagent", - 5777: "dali-port", - 5780: "vts-rpc", - 5781: "3par-evts", - 5782: "3par-mgmt", - 5783: "3par-mgmt-ssl", - 5785: "3par-rcopy", - 5793: "xtreamx", - 5813: "icmpd", - 5814: "spt-automation", - 5841: "shiprush-d-ch", - 5842: "reversion", - 5859: "wherehoo", - 5863: "ppsuitemsg", - 5868: "diameters", - 5883: "jute", - 5900: "rfb", - 5910: "cm", - 5911: "cpdlc", - 5912: "fis", - 5913: "ads-c", - 5963: "indy", - 5968: "mppolicy-v5", - 5969: "mppolicy-mgr", - 5984: "couchdb", - 5985: "wsman", - 5986: "wsmans", - 5987: "wbem-rmi", - 5988: "wbem-http", - 5989: "wbem-https", - 5990: "wbem-exp-https", - 5991: "nuxsl", - 5992: "consul-insight", - 5993: "cim-rs", - 5999: "cvsup", - 6064: "ndl-ahp-svc", - 6065: "winpharaoh", - 6066: "ewctsp", - 6068: "gsmp-ancp", - 6069: "trip", - 6070: "messageasap", - 6071: "ssdtp", - 6072: "diagnose-proc", - 6073: "directplay8", - 6074: "max", - 6075: "dpm-acm", - 6076: "msft-dpm-cert", - 6077: "iconstructsrv", - 6084: "reload-config", - 6085: "konspire2b", - 6086: "pdtp", - 6087: "ldss", - 6088: "doglms", - 6099: "raxa-mgmt", - 6100: "synchronet-db", - 6101: "synchronet-rtc", - 6102: "synchronet-upd", - 6103: "rets", - 6104: "dbdb", - 6105: "primaserver", - 6106: "mpsserver", - 6107: "etc-control", - 6108: "sercomm-scadmin", - 6109: "globecast-id", - 6110: "softcm", - 6111: "spc", - 6112: "dtspcd", - 6113: "dayliteserver", - 6114: "wrspice", - 6115: "xic", - 6116: "xtlserv", - 6117: "daylitetouch", - 6121: "spdy", - 6122: "bex-webadmin", - 6123: "backup-express", - 6124: "pnbs", - 6130: "damewaremobgtwy", - 6133: "nbt-wol", - 6140: "pulsonixnls", - 6141: "meta-corp", - 6142: "aspentec-lm", - 6143: "watershed-lm", - 6144: "statsci1-lm", - 6145: "statsci2-lm", - 6146: "lonewolf-lm", - 6147: "montage-lm", - 6148: "ricardo-lm", - 6149: "tal-pod", - 6159: "efb-aci", - 6160: "ecmp", - 6161: "patrol-ism", - 6162: "patrol-coll", - 6163: "pscribe", - 6200: "lm-x", - 6209: "qmtps", - 6222: "radmind", - 6241: "jeol-nsdtp-1", - 6242: "jeol-nsdtp-2", - 6243: "jeol-nsdtp-3", - 6244: "jeol-nsdtp-4", - 6251: "tl1-raw-ssl", - 6252: "tl1-ssh", - 6253: "crip", - 6267: "gld", - 6268: "grid", - 6269: "grid-alt", - 6300: "bmc-grx", - 6301: "bmc-ctd-ldap", - 6306: "ufmp", - 6315: "scup", - 6316: "abb-escp", - 6317: "nav-data-cmd", - 6320: "repsvc", - 6321: "emp-server1", - 6322: "emp-server2", - 6324: "hrd-ncs", - 6325: "dt-mgmtsvc", - 6326: "dt-vra", - 6343: "sflow", - 6344: "streletz", - 6346: "gnutella-svc", - 6347: "gnutella-rtr", - 6350: "adap", - 6355: "pmcs", - 6360: "metaedit-mu", - 6370: "metaedit-se", - 6379: "redis", - 6382: "metatude-mds", - 6389: "clariion-evr01", - 6390: "metaedit-ws", - 6417: "faxcomservice", - 6418: "syserverremote", - 6419: "svdrp", - 6420: "nim-vdrshell", - 6421: "nim-wan", - 6432: "pgbouncer", - 6442: "tarp", - 6443: "sun-sr-https", - 6444: "sge-qmaster", - 6445: "sge-execd", - 6446: "mysql-proxy", - 6455: "skip-cert-recv", - 6456: "skip-cert-send", - 6464: "ieee11073-20701", - 6471: "lvision-lm", - 6480: "sun-sr-http", - 6481: "servicetags", - 6482: "ldoms-mgmt", - 6483: "SunVTS-RMI", - 6484: "sun-sr-jms", - 6485: "sun-sr-iiop", - 6486: "sun-sr-iiops", - 6487: "sun-sr-iiop-aut", - 6488: "sun-sr-jmx", - 6489: "sun-sr-admin", - 6500: "boks", - 6501: "boks-servc", - 6502: "boks-servm", - 6503: "boks-clntd", - 6505: "badm-priv", - 6506: "badm-pub", - 6507: "bdir-priv", - 6508: "bdir-pub", - 6509: "mgcs-mfp-port", - 6510: "mcer-port", - 6513: "netconf-tls", - 6514: "syslog-tls", - 6515: "elipse-rec", - 6543: "lds-distrib", - 6544: "lds-dump", - 6547: "apc-6547", - 6548: "apc-6548", - 6549: "apc-6549", - 6550: "fg-sysupdate", - 6551: "sum", - 6558: "xdsxdm", - 6566: "sane-port", - 6568: "canit-store", - 6579: "affiliate", - 6580: "parsec-master", - 6581: "parsec-peer", - 6582: "parsec-game", - 6583: "joaJewelSuite", - 6600: "mshvlm", - 6601: "mstmg-sstp", - 6602: "wsscomfrmwk", - 6619: "odette-ftps", - 6620: "kftp-data", - 6621: "kftp", - 6622: "mcftp", - 6623: "ktelnet", - 6624: "datascaler-db", - 6625: "datascaler-ctl", - 6626: "wago-service", - 6627: "nexgen", - 6628: "afesc-mc", - 6629: "nexgen-aux", - 6632: "mxodbc-connect", - 6640: "ovsdb", - 6653: "openflow", - 6655: "pcs-sf-ui-man", - 6656: "emgmsg", - 6670: "vocaltec-gold", - 6671: "p4p-portal", - 6672: "vision-server", - 6673: "vision-elmd", - 6678: "vfbp", - 6679: "osaut", - 6687: "clever-ctrace", - 6688: "clever-tcpip", - 6689: "tsa", - 6690: "cleverdetect", - 6697: "ircs-u", - 6701: "kti-icad-srvr", - 6702: "e-design-net", - 6703: "e-design-web", - 6714: "ibprotocol", - 6715: "fibotrader-com", - 6716: "princity-agent", - 6767: "bmc-perf-agent", - 6768: "bmc-perf-mgrd", - 6769: "adi-gxp-srvprt", - 6770: "plysrv-http", - 6771: "plysrv-https", - 6777: "ntz-tracker", - 6778: "ntz-p2p-storage", - 6785: "dgpf-exchg", - 6786: "smc-jmx", - 6787: "smc-admin", - 6788: "smc-http", - 6789: "radg", - 6790: "hnmp", - 6791: "hnm", - 6801: "acnet", - 6817: "pentbox-sim", - 6831: "ambit-lm", - 6841: "netmo-default", - 6842: "netmo-http", - 6850: "iccrushmore", - 6868: "acctopus-cc", - 6888: "muse", - 6900: "rtimeviewer", - 6901: "jetstream", - 6935: "ethoscan", - 6936: "xsmsvc", - 6946: "bioserver", - 6951: "otlp", - 6961: "jmact3", - 6962: "jmevt2", - 6963: "swismgr1", - 6964: "swismgr2", - 6965: "swistrap", - 6966: "swispol", - 6969: "acmsoda", - 6970: "conductor", - 6997: "MobilitySrv", - 6998: "iatp-highpri", - 6999: "iatp-normalpri", - 7000: "afs3-fileserver", - 7001: "afs3-callback", - 7002: "afs3-prserver", - 7003: "afs3-vlserver", - 7004: "afs3-kaserver", - 7005: "afs3-volser", - 7006: "afs3-errors", - 7007: "afs3-bos", - 7008: "afs3-update", - 7009: "afs3-rmtsys", - 7010: "ups-onlinet", - 7011: "talon-disc", - 7012: "talon-engine", - 7013: "microtalon-dis", - 7014: "microtalon-com", - 7015: "talon-webserver", - 7016: "spg", - 7017: "grasp", - 7018: "fisa-svc", - 7019: "doceri-ctl", - 7020: "dpserve", - 7021: "dpserveadmin", - 7022: "ctdp", - 7023: "ct2nmcs", - 7024: "vmsvc", - 7025: "vmsvc-2", - 7030: "op-probe", - 7031: "iposplanet", - 7070: "arcp", - 7071: "iwg1", - 7073: "martalk", - 7080: "empowerid", - 7099: "lazy-ptop", - 7100: "font-service", - 7101: "elcn", - 7117: "rothaga", - 7121: "virprot-lm", - 7128: "scenidm", - 7129: "scenccs", - 7161: "cabsm-comm", - 7162: "caistoragemgr", - 7163: "cacsambroker", - 7164: "fsr", - 7165: "doc-server", - 7166: "aruba-server", - 7167: "casrmagent", - 7168: "cnckadserver", - 7169: "ccag-pib", - 7170: "nsrp", - 7171: "drm-production", - 7172: "metalbend", - 7173: "zsecure", - 7174: "clutild", - 7200: "fodms", - 7201: "dlip", - 7202: "pon-ictp", - 7215: "PS-Server", - 7216: "PS-Capture-Pro", - 7227: "ramp", - 7228: "citrixupp", - 7229: "citrixuppg", - 7236: "display", - 7237: "pads", - 7244: "frc-hicp", - 7262: "cnap", - 7272: "watchme-7272", - 7273: "oma-rlp", - 7274: "oma-rlp-s", - 7275: "oma-ulp", - 7276: "oma-ilp", - 7277: "oma-ilp-s", - 7278: "oma-dcdocbs", - 7279: "ctxlic", - 7280: "itactionserver1", - 7281: "itactionserver2", - 7282: "mzca-action", - 7283: "genstat", - 7365: "lcm-server", - 7391: "mindfilesys", - 7392: "mrssrendezvous", - 7393: "nfoldman", - 7394: "fse", - 7395: "winqedit", - 7397: "hexarc", - 7400: "rtps-discovery", - 7401: "rtps-dd-ut", - 7402: "rtps-dd-mt", - 7410: "ionixnetmon", - 7411: "daqstream", - 7421: "mtportmon", - 7426: "pmdmgr", - 7427: "oveadmgr", - 7428: "ovladmgr", - 7429: "opi-sock", - 7430: "xmpv7", - 7431: "pmd", - 7437: "faximum", - 7443: "oracleas-https", - 7471: "sttunnel", - 7473: "rise", - 7474: "neo4j", - 7478: "openit", - 7491: "telops-lmd", - 7500: "silhouette", - 7501: "ovbus", - 7508: "adcp", - 7509: "acplt", - 7510: "ovhpas", - 7511: "pafec-lm", - 7542: "saratoga", - 7543: "atul", - 7544: "nta-ds", - 7545: "nta-us", - 7546: "cfs", - 7547: "cwmp", - 7548: "tidp", - 7549: "nls-tl", - 7551: "controlone-con", - 7560: "sncp", - 7563: "cfw", - 7566: "vsi-omega", - 7569: "dell-eql-asm", - 7570: "aries-kfinder", - 7574: "coherence", - 7588: "sun-lm", - 7606: "mipi-debug", - 7624: "indi", - 7626: "simco", - 7627: "soap-http", - 7628: "zen-pawn", - 7629: "xdas", - 7630: "hawk", - 7631: "tesla-sys-msg", - 7633: "pmdfmgt", - 7648: "cuseeme", - 7672: "imqstomp", - 7673: "imqstomps", - 7674: "imqtunnels", - 7675: "imqtunnel", - 7676: "imqbrokerd", - 7677: "sun-user-https", - 7680: "pando-pub", - 7683: "dmt", - 7687: "bolt", - 7689: "collaber", - 7697: "klio", - 7700: "em7-secom", - 7707: "sync-em7", - 7708: "scinet", - 7720: "medimageportal", - 7724: "nsdeepfreezectl", - 7725: "nitrogen", - 7726: "freezexservice", - 7727: "trident-data", - 7728: "osvr", - 7734: "smip", - 7738: "aiagent", - 7741: "scriptview", - 7742: "msss", - 7743: "sstp-1", - 7744: "raqmon-pdu", - 7747: "prgp", - 7775: "inetfs", - 7777: "cbt", - 7778: "interwise", - 7779: "vstat", - 7781: "accu-lmgr", - 7786: "minivend", - 7787: "popup-reminders", - 7789: "office-tools", - 7794: "q3ade", - 7797: "pnet-conn", - 7798: "pnet-enc", - 7799: "altbsdp", - 7800: "asr", - 7801: "ssp-client", - 7810: "rbt-wanopt", - 7845: "apc-7845", - 7846: "apc-7846", - 7847: "csoauth", - 7869: "mobileanalyzer", - 7870: "rbt-smc", - 7871: "mdm", - 7878: "owms", - 7880: "pss", - 7887: "ubroker", - 7900: "mevent", - 7901: "tnos-sp", - 7902: "tnos-dp", - 7903: "tnos-dps", - 7913: "qo-secure", - 7932: "t2-drm", - 7933: "t2-brm", - 7962: "generalsync", - 7967: "supercell", - 7979: "micromuse-ncps", - 7980: "quest-vista", - 7981: "sossd-collect", - 7982: "sossd-agent", - 7997: "pushns", - 7999: "irdmi2", - 8000: "irdmi", - 8001: "vcom-tunnel", - 8002: "teradataordbms", - 8003: "mcreport", - 8005: "mxi", - 8006: "wpl-analytics", - 8007: "warppipe", - 8008: "http-alt", - 8019: "qbdb", - 8020: "intu-ec-svcdisc", - 8021: "intu-ec-client", - 8022: "oa-system", - 8025: "ca-audit-da", - 8026: "ca-audit-ds", - 8032: "pro-ed", - 8033: "mindprint", - 8034: "vantronix-mgmt", - 8040: "ampify", - 8041: "enguity-xccetp", - 8042: "fs-agent", - 8043: "fs-server", - 8044: "fs-mgmt", - 8051: "rocrail", - 8052: "senomix01", - 8053: "senomix02", - 8054: "senomix03", - 8055: "senomix04", - 8056: "senomix05", - 8057: "senomix06", - 8058: "senomix07", - 8059: "senomix08", - 8066: "toad-bi-appsrvr", - 8067: "infi-async", - 8070: "ucs-isc", - 8074: "gadugadu", - 8077: "mles", - 8080: "http-alt", - 8081: "sunproxyadmin", - 8082: "us-cli", - 8083: "us-srv", - 8086: "d-s-n", - 8087: "simplifymedia", - 8088: "radan-http", - 8090: "opsmessaging", - 8091: "jamlink", - 8097: "sac", - 8100: "xprint-server", - 8101: "ldoms-migr", - 8102: "kz-migr", - 8115: "mtl8000-matrix", - 8116: "cp-cluster", - 8117: "purityrpc", - 8118: "privoxy", - 8121: "apollo-data", - 8122: "apollo-admin", - 8128: "paycash-online", - 8129: "paycash-wbp", - 8130: "indigo-vrmi", - 8131: "indigo-vbcp", - 8132: "dbabble", - 8140: "puppet", - 8148: "isdd", - 8153: "quantastor", - 8160: "patrol", - 8161: "patrol-snmp", - 8162: "lpar2rrd", - 8181: "intermapper", - 8182: "vmware-fdm", - 8183: "proremote", - 8184: "itach", - 8190: "gcp-rphy", - 8191: "limnerpressure", - 8192: "spytechphone", - 8194: "blp1", - 8195: "blp2", - 8199: "vvr-data", - 8200: "trivnet1", - 8201: "trivnet2", - 8204: "lm-perfworks", - 8205: "lm-instmgr", - 8206: "lm-dta", - 8207: "lm-sserver", - 8208: "lm-webwatcher", - 8230: "rexecj", - 8243: "synapse-nhttps", - 8270: "robot-remote", - 8276: "pando-sec", - 8280: "synapse-nhttp", - 8282: "libelle", - 8292: "blp3", - 8293: "hiperscan-id", - 8294: "blp4", - 8300: "tmi", - 8301: "amberon", - 8313: "hub-open-net", - 8320: "tnp-discover", - 8321: "tnp", - 8322: "garmin-marine", - 8351: "server-find", - 8376: "cruise-enum", - 8377: "cruise-swroute", - 8378: "cruise-config", - 8379: "cruise-diags", - 8380: "cruise-update", - 8383: "m2mservices", - 8400: "cvd", - 8401: "sabarsd", - 8402: "abarsd", - 8403: "admind", - 8404: "svcloud", - 8405: "svbackup", - 8415: "dlpx-sp", - 8416: "espeech", - 8417: "espeech-rtp", - 8423: "aritts", - 8442: "cybro-a-bus", - 8443: "pcsync-https", - 8444: "pcsync-http", - 8445: "copy", - 8450: "npmp", - 8457: "nexentamv", - 8470: "cisco-avp", - 8471: "pim-port", - 8472: "otv", - 8473: "vp2p", - 8474: "noteshare", - 8500: "fmtp", - 8501: "cmtp-mgt", - 8502: "ftnmtp", - 8554: "rtsp-alt", - 8555: "d-fence", - 8567: "dof-tunnel", - 8600: "asterix", - 8610: "canon-mfnp", - 8611: "canon-bjnp1", - 8612: "canon-bjnp2", - 8613: "canon-bjnp3", - 8614: "canon-bjnp4", - 8615: "imink", - 8665: "monetra", - 8666: "monetra-admin", - 8675: "msi-cps-rm", - 8686: "sun-as-jmxrmi", - 8688: "openremote-ctrl", - 8699: "vnyx", - 8711: "nvc", - 8733: "ibus", - 8750: "dey-keyneg", - 8763: "mc-appserver", - 8764: "openqueue", - 8765: "ultraseek-http", - 8766: "amcs", - 8770: "dpap", - 8778: "uec", - 8786: "msgclnt", - 8787: "msgsrvr", - 8793: "acd-pm", - 8800: "sunwebadmin", - 8804: "truecm", - 8873: "dxspider", - 8880: "cddbp-alt", - 8881: "galaxy4d", - 8883: "secure-mqtt", - 8888: "ddi-tcp-1", - 8889: "ddi-tcp-2", - 8890: "ddi-tcp-3", - 8891: "ddi-tcp-4", - 8892: "ddi-tcp-5", - 8893: "ddi-tcp-6", - 8894: "ddi-tcp-7", - 8899: "ospf-lite", - 8900: "jmb-cds1", - 8901: "jmb-cds2", - 8910: "manyone-http", - 8911: "manyone-xml", - 8912: "wcbackup", - 8913: "dragonfly", - 8937: "twds", - 8953: "ub-dns-control", - 8954: "cumulus-admin", - 8980: "nod-provider", - 8989: "sunwebadmins", - 8990: "http-wmap", - 8991: "https-wmap", - 8997: "oracle-ms-ens", - 8998: "canto-roboflow", - 8999: "bctp", - 9000: "cslistener", - 9001: "etlservicemgr", - 9002: "dynamid", - 9005: "golem", - 9008: "ogs-server", - 9009: "pichat", - 9010: "sdr", - 9020: "tambora", - 9021: "panagolin-ident", - 9022: "paragent", - 9023: "swa-1", - 9024: "swa-2", - 9025: "swa-3", - 9026: "swa-4", - 9050: "versiera", - 9051: "fio-cmgmt", - 9060: "CardWeb-IO", - 9080: "glrpc", - 9083: "emc-pp-mgmtsvc", - 9084: "aurora", - 9085: "ibm-rsyscon", - 9086: "net2display", - 9087: "classic", - 9088: "sqlexec", - 9089: "sqlexec-ssl", - 9090: "websm", - 9091: "xmltec-xmlmail", - 9092: "XmlIpcRegSvc", - 9093: "copycat", - 9100: "hp-pdl-datastr", - 9101: "bacula-dir", - 9102: "bacula-fd", - 9103: "bacula-sd", - 9104: "peerwire", - 9105: "xadmin", - 9106: "astergate", - 9107: "astergatefax", - 9119: "mxit", - 9122: "grcmp", - 9123: "grcp", - 9131: "dddp", - 9160: "apani1", - 9161: "apani2", - 9162: "apani3", - 9163: "apani4", - 9164: "apani5", - 9191: "sun-as-jpda", - 9200: "wap-wsp", - 9201: "wap-wsp-wtp", - 9202: "wap-wsp-s", - 9203: "wap-wsp-wtp-s", - 9204: "wap-vcard", - 9205: "wap-vcal", - 9206: "wap-vcard-s", - 9207: "wap-vcal-s", - 9208: "rjcdb-vcards", - 9209: "almobile-system", - 9210: "oma-mlp", - 9211: "oma-mlp-s", - 9212: "serverviewdbms", - 9213: "serverstart", - 9214: "ipdcesgbs", - 9215: "insis", - 9216: "acme", - 9217: "fsc-port", - 9222: "teamcoherence", - 9255: "mon", - 9278: "pegasus", - 9279: "pegasus-ctl", - 9280: "pgps", - 9281: "swtp-port1", - 9282: "swtp-port2", - 9283: "callwaveiam", - 9284: "visd", - 9285: "n2h2server", - 9287: "cumulus", - 9292: "armtechdaemon", - 9293: "storview", - 9294: "armcenterhttp", - 9295: "armcenterhttps", - 9300: "vrace", - 9306: "sphinxql", - 9312: "sphinxapi", - 9318: "secure-ts", - 9321: "guibase", - 9343: "mpidcmgr", - 9344: "mphlpdmc", - 9345: "rancher", - 9346: "ctechlicensing", - 9374: "fjdmimgr", - 9380: "boxp", - 9387: "d2dconfig", - 9388: "d2ddatatrans", - 9389: "adws", - 9390: "otp", - 9396: "fjinvmgr", - 9397: "mpidcagt", - 9400: "sec-t4net-srv", - 9401: "sec-t4net-clt", - 9402: "sec-pc2fax-srv", - 9418: "git", - 9443: "tungsten-https", - 9444: "wso2esb-console", - 9445: "mindarray-ca", - 9450: "sntlkeyssrvr", - 9500: "ismserver", - 9535: "mngsuite", - 9536: "laes-bf", - 9555: "trispen-sra", - 9592: "ldgateway", - 9593: "cba8", - 9594: "msgsys", - 9595: "pds", - 9596: "mercury-disc", - 9597: "pd-admin", - 9598: "vscp", - 9599: "robix", - 9600: "micromuse-ncpw", - 9612: "streamcomm-ds", - 9614: "iadt-tls", - 9616: "erunbook-agent", - 9617: "erunbook-server", - 9618: "condor", - 9628: "odbcpathway", - 9629: "uniport", - 9630: "peoctlr", - 9631: "peocoll", - 9640: "pqsflows", - 9666: "zoomcp", - 9667: "xmms2", - 9668: "tec5-sdctp", - 9694: "client-wakeup", - 9695: "ccnx", - 9700: "board-roar", - 9747: "l5nas-parchan", - 9750: "board-voip", - 9753: "rasadv", - 9762: "tungsten-http", - 9800: "davsrc", - 9801: "sstp-2", - 9802: "davsrcs", - 9875: "sapv1", - 9876: "sd", - 9888: "cyborg-systems", - 9889: "gt-proxy", - 9898: "monkeycom", - 9900: "iua", - 9909: "domaintime", - 9911: "sype-transport", - 9925: "xybrid-cloud", - 9950: "apc-9950", - 9951: "apc-9951", - 9952: "apc-9952", - 9953: "acis", - 9954: "hinp", - 9955: "alljoyn-stm", - 9966: "odnsp", - 9978: "xybrid-rt", - 9979: "visweather", - 9981: "pumpkindb", - 9987: "dsm-scm-target", - 9988: "nsesrvr", - 9990: "osm-appsrvr", - 9991: "osm-oev", - 9992: "palace-1", - 9993: "palace-2", - 9994: "palace-3", - 9995: "palace-4", - 9996: "palace-5", - 9997: "palace-6", - 9998: "distinct32", - 9999: "distinct", - 10000: "ndmp", - 10001: "scp-config", - 10002: "documentum", - 10003: "documentum-s", - 10004: "emcrmirccd", - 10005: "emcrmird", - 10006: "netapp-sync", - 10007: "mvs-capacity", - 10008: "octopus", - 10009: "swdtp-sv", - 10010: "rxapi", - 10020: "abb-hw", - 10050: "zabbix-agent", - 10051: "zabbix-trapper", - 10055: "qptlmd", - 10080: "amanda", - 10081: "famdc", - 10100: "itap-ddtp", - 10101: "ezmeeting-2", - 10102: "ezproxy-2", - 10103: "ezrelay", - 10104: "swdtp", - 10107: "bctp-server", - 10110: "nmea-0183", - 10113: "netiq-endpoint", - 10114: "netiq-qcheck", - 10115: "netiq-endpt", - 10116: "netiq-voipa", - 10117: "iqrm", - 10125: "cimple", - 10128: "bmc-perf-sd", - 10129: "bmc-gms", - 10160: "qb-db-server", - 10161: "snmptls", - 10162: "snmptls-trap", - 10200: "trisoap", - 10201: "rsms", - 10252: "apollo-relay", - 10260: "axis-wimp-port", - 10261: "tile-ml", - 10288: "blocks", - 10321: "cosir", - 10540: "MOS-lower", - 10541: "MOS-upper", - 10542: "MOS-aux", - 10543: "MOS-soap", - 10544: "MOS-soap-opt", - 10548: "serverdocs", - 10631: "printopia", - 10800: "gap", - 10805: "lpdg", - 10809: "nbd", - 10860: "helix", - 10880: "bveapi", - 10933: "octopustentacle", - 10990: "rmiaux", - 11000: "irisa", - 11001: "metasys", - 11095: "weave", - 11103: "origo-sync", - 11104: "netapp-icmgmt", - 11105: "netapp-icdata", - 11106: "sgi-lk", - 11109: "sgi-dmfmgr", - 11110: "sgi-soap", - 11111: "vce", - 11112: "dicom", - 11161: "suncacao-snmp", - 11162: "suncacao-jmxmp", - 11163: "suncacao-rmi", - 11164: "suncacao-csa", - 11165: "suncacao-websvc", - 11172: "oemcacao-jmxmp", - 11173: "t5-straton", - 11174: "oemcacao-rmi", - 11175: "oemcacao-websvc", - 11201: "smsqp", - 11202: "dcsl-backup", - 11208: "wifree", - 11211: "memcache", - 11319: "imip", - 11320: "imip-channels", - 11321: "arena-server", - 11367: "atm-uhas", - 11371: "hkp", - 11489: "asgcypresstcps", - 11600: "tempest-port", - 11623: "emc-xsw-dconfig", - 11720: "h323callsigalt", - 11723: "emc-xsw-dcache", - 11751: "intrepid-ssl", - 11796: "lanschool", - 11876: "xoraya", - 11967: "sysinfo-sp", - 12000: "entextxid", - 12001: "entextnetwk", - 12002: "entexthigh", - 12003: "entextmed", - 12004: "entextlow", - 12005: "dbisamserver1", - 12006: "dbisamserver2", - 12007: "accuracer", - 12008: "accuracer-dbms", - 12010: "edbsrvr", - 12012: "vipera", - 12013: "vipera-ssl", - 12109: "rets-ssl", - 12121: "nupaper-ss", - 12168: "cawas", - 12172: "hivep", - 12300: "linogridengine", - 12302: "rads", - 12321: "warehouse-sss", - 12322: "warehouse", - 12345: "italk", - 12753: "tsaf", - 12865: "netperf", - 13160: "i-zipqd", - 13216: "bcslogc", - 13217: "rs-pias", - 13218: "emc-vcas-tcp", - 13223: "powwow-client", - 13224: "powwow-server", - 13400: "doip-data", - 13720: "bprd", - 13721: "bpdbm", - 13722: "bpjava-msvc", - 13724: "vnetd", - 13782: "bpcd", - 13783: "vopied", - 13785: "nbdb", - 13786: "nomdb", - 13818: "dsmcc-config", - 13819: "dsmcc-session", - 13820: "dsmcc-passthru", - 13821: "dsmcc-download", - 13822: "dsmcc-ccp", - 13823: "bmdss", - 13894: "ucontrol", - 13929: "dta-systems", - 13930: "medevolve", - 14000: "scotty-ft", - 14001: "sua", - 14033: "sage-best-com1", - 14034: "sage-best-com2", - 14141: "vcs-app", - 14142: "icpp", - 14143: "icpps", - 14145: "gcm-app", - 14149: "vrts-tdd", - 14150: "vcscmd", - 14154: "vad", - 14250: "cps", - 14414: "ca-web-update", - 14500: "xpra", - 14936: "hde-lcesrvr-1", - 14937: "hde-lcesrvr-2", - 15000: "hydap", - 15002: "onep-tls", - 15345: "xpilot", - 15363: "3link", - 15555: "cisco-snat", - 15660: "bex-xr", - 15740: "ptp", - 15999: "programmar", - 16000: "fmsas", - 16001: "fmsascon", - 16002: "gsms", - 16020: "jwpc", - 16021: "jwpc-bin", - 16161: "sun-sea-port", - 16162: "solaris-audit", - 16309: "etb4j", - 16310: "pduncs", - 16311: "pdefmns", - 16360: "netserialext1", - 16361: "netserialext2", - 16367: "netserialext3", - 16368: "netserialext4", - 16384: "connected", - 16385: "rdgs", - 16619: "xoms", - 16665: "axon-tunnel", - 16789: "cadsisvr", - 16900: "newbay-snc-mc", - 16950: "sgcip", - 16991: "intel-rci-mp", - 16992: "amt-soap-http", - 16993: "amt-soap-https", - 16994: "amt-redir-tcp", - 16995: "amt-redir-tls", - 17007: "isode-dua", - 17184: "vestasdlp", - 17185: "soundsvirtual", - 17219: "chipper", - 17220: "avtp", - 17221: "avdecc", - 17223: "isa100-gci", - 17225: "trdp-md", - 17234: "integrius-stp", - 17235: "ssh-mgmt", - 17500: "db-lsp", - 17555: "ailith", - 17729: "ea", - 17754: "zep", - 17755: "zigbee-ip", - 17756: "zigbee-ips", - 17777: "sw-orion", - 18000: "biimenu", - 18104: "radpdf", - 18136: "racf", - 18181: "opsec-cvp", - 18182: "opsec-ufp", - 18183: "opsec-sam", - 18184: "opsec-lea", - 18185: "opsec-omi", - 18186: "ohsc", - 18187: "opsec-ela", - 18241: "checkpoint-rtm", - 18242: "iclid", - 18243: "clusterxl", - 18262: "gv-pf", - 18463: "ac-cluster", - 18634: "rds-ib", - 18635: "rds-ip", - 18668: "vdmmesh", - 18769: "ique", - 18881: "infotos", - 18888: "apc-necmp", - 19000: "igrid", - 19007: "scintilla", - 19020: "j-link", - 19191: "opsec-uaa", - 19194: "ua-secureagent", - 19220: "cora", - 19283: "keysrvr", - 19315: "keyshadow", - 19398: "mtrgtrans", - 19410: "hp-sco", - 19411: "hp-sca", - 19412: "hp-sessmon", - 19539: "fxuptp", - 19540: "sxuptp", - 19541: "jcp", - 19998: "iec-104-sec", - 19999: "dnp-sec", - 20000: "dnp", - 20001: "microsan", - 20002: "commtact-http", - 20003: "commtact-https", - 20005: "openwebnet", - 20013: "ss-idi", - 20014: "opendeploy", - 20034: "nburn-id", - 20046: "tmophl7mts", - 20048: "mountd", - 20049: "nfsrdma", - 20057: "avesterra", - 20167: "tolfab", - 20202: "ipdtp-port", - 20222: "ipulse-ics", - 20480: "emwavemsg", - 20670: "track", - 20999: "athand-mmp", - 21000: "irtrans", - 21010: "notezilla-lan", - 21221: "aigairserver", - 21553: "rdm-tfs", - 21554: "dfserver", - 21590: "vofr-gateway", - 21800: "tvpm", - 21845: "webphone", - 21846: "netspeak-is", - 21847: "netspeak-cs", - 21848: "netspeak-acd", - 21849: "netspeak-cps", - 22000: "snapenetio", - 22001: "optocontrol", - 22002: "optohost002", - 22003: "optohost003", - 22004: "optohost004", - 22005: "optohost004", - 22125: "dcap", - 22128: "gsidcap", - 22222: "easyengine", - 22273: "wnn6", - 22305: "cis", - 22335: "shrewd-control", - 22343: "cis-secure", - 22347: "wibukey", - 22350: "codemeter", - 22351: "codemeter-cmwan", - 22537: "caldsoft-backup", - 22555: "vocaltec-wconf", - 22763: "talikaserver", - 22800: "aws-brf", - 22951: "brf-gw", - 23000: "inovaport1", - 23001: "inovaport2", - 23002: "inovaport3", - 23003: "inovaport4", - 23004: "inovaport5", - 23005: "inovaport6", - 23053: "gntp", - 23294: "5afe-dir", - 23333: "elxmgmt", - 23400: "novar-dbase", - 23401: "novar-alarm", - 23402: "novar-global", - 23456: "aequus", - 23457: "aequus-alt", - 23546: "areaguard-neo", - 24000: "med-ltp", - 24001: "med-fsp-rx", - 24002: "med-fsp-tx", - 24003: "med-supp", - 24004: "med-ovw", - 24005: "med-ci", - 24006: "med-net-svc", - 24242: "filesphere", - 24249: "vista-4gl", - 24321: "ild", - 24386: "intel-rci", - 24465: "tonidods", - 24554: "binkp", - 24577: "bilobit", - 24666: "sdtvwcam", - 24676: "canditv", - 24677: "flashfiler", - 24678: "proactivate", - 24680: "tcc-http", - 24754: "cslg", - 24922: "find", - 25000: "icl-twobase1", - 25001: "icl-twobase2", - 25002: "icl-twobase3", - 25003: "icl-twobase4", - 25004: "icl-twobase5", - 25005: "icl-twobase6", - 25006: "icl-twobase7", - 25007: "icl-twobase8", - 25008: "icl-twobase9", - 25009: "icl-twobase10", - 25576: "sauterdongle", - 25604: "idtp", - 25793: "vocaltec-hos", - 25900: "tasp-net", - 25901: "niobserver", - 25902: "nilinkanalyst", - 25903: "niprobe", - 26000: "quake", - 26133: "scscp", - 26208: "wnn6-ds", - 26257: "cockroach", - 26260: "ezproxy", - 26261: "ezmeeting", - 26262: "k3software-svr", - 26263: "k3software-cli", - 26486: "exoline-tcp", - 26487: "exoconfig", - 26489: "exonet", - 27345: "imagepump", - 27442: "jesmsjc", - 27504: "kopek-httphead", - 27782: "ars-vista", - 27876: "astrolink", - 27999: "tw-auth-key", - 28000: "nxlmd", - 28001: "pqsp", - 28200: "voxelstorm", - 28240: "siemensgsm", - 28589: "bosswave", - 29167: "otmp", - 29999: "bingbang", - 30000: "ndmps", - 30001: "pago-services1", - 30002: "pago-services2", - 30003: "amicon-fpsu-ra", - 30100: "rwp", - 30260: "kingdomsonline", - 30400: "gs-realtime", - 30999: "ovobs", - 31016: "ka-sddp", - 31020: "autotrac-acp", - 31400: "pace-licensed", - 31416: "xqosd", - 31457: "tetrinet", - 31620: "lm-mon", - 31685: "dsx-monitor", - 31765: "gamesmith-port", - 31948: "iceedcp-tx", - 31949: "iceedcp-rx", - 32034: "iracinghelper", - 32249: "t1distproc60", - 32400: "plex", - 32483: "apm-link", - 32635: "sec-ntb-clnt", - 32636: "DMExpress", - 32767: "filenet-powsrm", - 32768: "filenet-tms", - 32769: "filenet-rpc", - 32770: "filenet-nch", - 32771: "filenet-rmi", - 32772: "filenet-pa", - 32773: "filenet-cm", - 32774: "filenet-re", - 32775: "filenet-pch", - 32776: "filenet-peior", - 32777: "filenet-obrok", - 32801: "mlsn", - 32811: "retp", - 32896: "idmgratm", - 33060: "mysqlx", - 33123: "aurora-balaena", - 33331: "diamondport", - 33333: "dgi-serv", - 33334: "speedtrace", - 33434: "traceroute", - 33656: "snip-slave", - 34249: "turbonote-2", - 34378: "p-net-local", - 34379: "p-net-remote", - 34567: "dhanalakshmi", - 34962: "profinet-rt", - 34963: "profinet-rtm", - 34964: "profinet-cm", - 34980: "ethercat", - 35000: "heathview", - 35001: "rt-viewer", - 35002: "rt-sound", - 35003: "rt-devicemapper", - 35004: "rt-classmanager", - 35005: "rt-labtracker", - 35006: "rt-helper", - 35100: "axio-disc", - 35354: "kitim", - 35355: "altova-lm", - 35356: "guttersnex", - 35357: "openstack-id", - 36001: "allpeers", - 36524: "febooti-aw", - 36602: "observium-agent", - 36700: "mapx", - 36865: "kastenxpipe", - 37475: "neckar", - 37483: "gdrive-sync", - 37601: "eftp", - 37654: "unisys-eportal", - 38000: "ivs-database", - 38001: "ivs-insertion", - 38002: "cresco-control", - 38201: "galaxy7-data", - 38202: "fairview", - 38203: "agpolicy", - 38800: "sruth", - 38865: "secrmmsafecopya", - 39681: "turbonote-1", - 40000: "safetynetp", - 40404: "sptx", - 40841: "cscp", - 40842: "csccredir", - 40843: "csccfirewall", - 41111: "fs-qos", - 41121: "tentacle", - 41230: "z-wave-s", - 41794: "crestron-cip", - 41795: "crestron-ctp", - 41796: "crestron-cips", - 41797: "crestron-ctps", - 42508: "candp", - 42509: "candrp", - 42510: "caerpc", - 43000: "recvr-rc", - 43188: "reachout", - 43189: "ndm-agent-port", - 43190: "ip-provision", - 43191: "noit-transport", - 43210: "shaperai", - 43439: "eq3-update", - 43440: "ew-mgmt", - 43441: "ciscocsdb", - 44123: "z-wave-tunnel", - 44321: "pmcd", - 44322: "pmcdproxy", - 44323: "pmwebapi", - 44444: "cognex-dataman", - 44553: "rbr-debug", - 44818: "EtherNet-IP-2", - 44900: "m3da", - 45000: "asmp", - 45001: "asmps", - 45002: "rs-status", - 45045: "synctest", - 45054: "invision-ag", - 45514: "cloudcheck", - 45678: "eba", - 45824: "dai-shell", - 45825: "qdb2service", - 45966: "ssr-servermgr", - 46336: "inedo", - 46998: "spremotetablet", - 46999: "mediabox", - 47000: "mbus", - 47001: "winrm", - 47557: "dbbrowse", - 47624: "directplaysrvr", - 47806: "ap", - 47808: "bacnet", - 48000: "nimcontroller", - 48001: "nimspooler", - 48002: "nimhub", - 48003: "nimgtw", - 48004: "nimbusdb", - 48005: "nimbusdbctrl", - 48049: "3gpp-cbsp", - 48050: "weandsf", - 48128: "isnetserv", - 48129: "blp5", - 48556: "com-bardac-dw", - 48619: "iqobject", - 48653: "robotraconteur", - 49000: "matahari", - 49001: "nusrp", -} -var udpPortNames = map[UDPPort]string{ - 1: "tcpmux", - 2: "compressnet", - 3: "compressnet", - 5: "rje", - 7: "echo", - 9: "discard", - 11: "systat", - 13: "daytime", - 17: "qotd", - 18: "msp", - 19: "chargen", - 20: "ftp-data", - 21: "ftp", - 22: "ssh", - 23: "telnet", - 25: "smtp", - 27: "nsw-fe", - 29: "msg-icp", - 31: "msg-auth", - 33: "dsp", - 37: "time", - 38: "rap", - 39: "rlp", - 41: "graphics", - 42: "name", - 43: "nicname", - 44: "mpm-flags", - 45: "mpm", - 46: "mpm-snd", - 48: "auditd", - 49: "tacacs", - 50: "re-mail-ck", - 52: "xns-time", - 53: "domain", - 54: "xns-ch", - 55: "isi-gl", - 56: "xns-auth", - 58: "xns-mail", - 62: "acas", - 63: "whoispp", - 64: "covia", - 65: "tacacs-ds", - 66: "sql-net", - 67: "bootps", - 68: "bootpc", - 69: "tftp", - 70: "gopher", - 71: "netrjs-1", - 72: "netrjs-2", - 73: "netrjs-3", - 74: "netrjs-4", - 76: "deos", - 78: "vettcp", - 79: "finger", - 80: "http", - 82: "xfer", - 83: "mit-ml-dev", - 84: "ctf", - 85: "mit-ml-dev", - 86: "mfcobol", - 88: "kerberos", - 89: "su-mit-tg", - 90: "dnsix", - 91: "mit-dov", - 92: "npp", - 93: "dcp", - 94: "objcall", - 95: "supdup", - 96: "dixie", - 97: "swift-rvf", - 98: "tacnews", - 99: "metagram", - 101: "hostname", - 102: "iso-tsap", - 103: "gppitnp", - 104: "acr-nema", - 105: "cso", - 106: "3com-tsmux", - 107: "rtelnet", - 108: "snagas", - 109: "pop2", - 110: "pop3", - 111: "sunrpc", - 112: "mcidas", - 113: "auth", - 115: "sftp", - 116: "ansanotify", - 117: "uucp-path", - 118: "sqlserv", - 119: "nntp", - 120: "cfdptkt", - 121: "erpc", - 122: "smakynet", - 123: "ntp", - 124: "ansatrader", - 125: "locus-map", - 126: "nxedit", - 127: "locus-con", - 128: "gss-xlicen", - 129: "pwdgen", - 130: "cisco-fna", - 131: "cisco-tna", - 132: "cisco-sys", - 133: "statsrv", - 134: "ingres-net", - 135: "epmap", - 136: "profile", - 137: "netbios-ns", - 138: "netbios-dgm", - 139: "netbios-ssn", - 140: "emfis-data", - 141: "emfis-cntl", - 142: "bl-idm", - 143: "imap", - 144: "uma", - 145: "uaac", - 146: "iso-tp0", - 147: "iso-ip", - 148: "jargon", - 149: "aed-512", - 150: "sql-net", - 151: "hems", - 152: "bftp", - 153: "sgmp", - 154: "netsc-prod", - 155: "netsc-dev", - 156: "sqlsrv", - 157: "knet-cmp", - 158: "pcmail-srv", - 159: "nss-routing", - 160: "sgmp-traps", - 161: "snmp", - 162: "snmptrap", - 163: "cmip-man", - 164: "cmip-agent", - 165: "xns-courier", - 166: "s-net", - 167: "namp", - 168: "rsvd", - 169: "send", - 170: "print-srv", - 171: "multiplex", - 172: "cl-1", - 173: "xyplex-mux", - 174: "mailq", - 175: "vmnet", - 176: "genrad-mux", - 177: "xdmcp", - 178: "nextstep", - 179: "bgp", - 180: "ris", - 181: "unify", - 182: "audit", - 183: "ocbinder", - 184: "ocserver", - 185: "remote-kis", - 186: "kis", - 187: "aci", - 188: "mumps", - 189: "qft", - 190: "gacp", - 191: "prospero", - 192: "osu-nms", - 193: "srmp", - 194: "irc", - 195: "dn6-nlm-aud", - 196: "dn6-smm-red", - 197: "dls", - 198: "dls-mon", - 199: "smux", - 200: "src", - 201: "at-rtmp", - 202: "at-nbp", - 203: "at-3", - 204: "at-echo", - 205: "at-5", - 206: "at-zis", - 207: "at-7", - 208: "at-8", - 209: "qmtp", - 210: "z39-50", - 211: "914c-g", - 212: "anet", - 213: "ipx", - 214: "vmpwscs", - 215: "softpc", - 216: "CAIlic", - 217: "dbase", - 218: "mpp", - 219: "uarps", - 220: "imap3", - 221: "fln-spx", - 222: "rsh-spx", - 223: "cdc", - 224: "masqdialer", - 242: "direct", - 243: "sur-meas", - 244: "inbusiness", - 245: "link", - 246: "dsp3270", - 247: "subntbcst-tftp", - 248: "bhfhs", - 256: "rap", - 257: "set", - 259: "esro-gen", - 260: "openport", - 261: "nsiiops", - 262: "arcisdms", - 263: "hdap", - 264: "bgmp", - 265: "x-bone-ctl", - 266: "sst", - 267: "td-service", - 268: "td-replica", - 269: "manet", - 270: "gist", - 280: "http-mgmt", - 281: "personal-link", - 282: "cableport-ax", - 283: "rescap", - 284: "corerjd", - 286: "fxp", - 287: "k-block", - 308: "novastorbakcup", - 309: "entrusttime", - 310: "bhmds", - 311: "asip-webadmin", - 312: "vslmp", - 313: "magenta-logic", - 314: "opalis-robot", - 315: "dpsi", - 316: "decauth", - 317: "zannet", - 318: "pkix-timestamp", - 319: "ptp-event", - 320: "ptp-general", - 321: "pip", - 322: "rtsps", - 333: "texar", - 344: "pdap", - 345: "pawserv", - 346: "zserv", - 347: "fatserv", - 348: "csi-sgwp", - 349: "mftp", - 350: "matip-type-a", - 351: "matip-type-b", - 352: "dtag-ste-sb", - 353: "ndsauth", - 354: "bh611", - 355: "datex-asn", - 356: "cloanto-net-1", - 357: "bhevent", - 358: "shrinkwrap", - 359: "nsrmp", - 360: "scoi2odialog", - 361: "semantix", - 362: "srssend", - 363: "rsvp-tunnel", - 364: "aurora-cmgr", - 365: "dtk", - 366: "odmr", - 367: "mortgageware", - 368: "qbikgdp", - 369: "rpc2portmap", - 370: "codaauth2", - 371: "clearcase", - 372: "ulistproc", - 373: "legent-1", - 374: "legent-2", - 375: "hassle", - 376: "nip", - 377: "tnETOS", - 378: "dsETOS", - 379: "is99c", - 380: "is99s", - 381: "hp-collector", - 382: "hp-managed-node", - 383: "hp-alarm-mgr", - 384: "arns", - 385: "ibm-app", - 386: "asa", - 387: "aurp", - 388: "unidata-ldm", - 389: "ldap", - 390: "uis", - 391: "synotics-relay", - 392: "synotics-broker", - 393: "meta5", - 394: "embl-ndt", - 395: "netcp", - 396: "netware-ip", - 397: "mptn", - 398: "kryptolan", - 399: "iso-tsap-c2", - 400: "osb-sd", - 401: "ups", - 402: "genie", - 403: "decap", - 404: "nced", - 405: "ncld", - 406: "imsp", - 407: "timbuktu", - 408: "prm-sm", - 409: "prm-nm", - 410: "decladebug", - 411: "rmt", - 412: "synoptics-trap", - 413: "smsp", - 414: "infoseek", - 415: "bnet", - 416: "silverplatter", - 417: "onmux", - 418: "hyper-g", - 419: "ariel1", - 420: "smpte", - 421: "ariel2", - 422: "ariel3", - 423: "opc-job-start", - 424: "opc-job-track", - 425: "icad-el", - 426: "smartsdp", - 427: "svrloc", - 428: "ocs-cmu", - 429: "ocs-amu", - 430: "utmpsd", - 431: "utmpcd", - 432: "iasd", - 433: "nnsp", - 434: "mobileip-agent", - 435: "mobilip-mn", - 436: "dna-cml", - 437: "comscm", - 438: "dsfgw", - 439: "dasp", - 440: "sgcp", - 441: "decvms-sysmgt", - 442: "cvc-hostd", - 443: "https", - 444: "snpp", - 445: "microsoft-ds", - 446: "ddm-rdb", - 447: "ddm-dfm", - 448: "ddm-ssl", - 449: "as-servermap", - 450: "tserver", - 451: "sfs-smp-net", - 452: "sfs-config", - 453: "creativeserver", - 454: "contentserver", - 455: "creativepartnr", - 456: "macon-udp", - 457: "scohelp", - 458: "appleqtc", - 459: "ampr-rcmd", - 460: "skronk", - 461: "datasurfsrv", - 462: "datasurfsrvsec", - 463: "alpes", - 464: "kpasswd", - 465: "igmpv3lite", - 466: "digital-vrc", - 467: "mylex-mapd", - 468: "photuris", - 469: "rcp", - 470: "scx-proxy", - 471: "mondex", - 472: "ljk-login", - 473: "hybrid-pop", - 474: "tn-tl-w2", - 475: "tcpnethaspsrv", - 476: "tn-tl-fd1", - 477: "ss7ns", - 478: "spsc", - 479: "iafserver", - 480: "iafdbase", - 481: "ph", - 482: "bgs-nsi", - 483: "ulpnet", - 484: "integra-sme", - 485: "powerburst", - 486: "avian", - 487: "saft", - 488: "gss-http", - 489: "nest-protocol", - 490: "micom-pfs", - 491: "go-login", - 492: "ticf-1", - 493: "ticf-2", - 494: "pov-ray", - 495: "intecourier", - 496: "pim-rp-disc", - 497: "retrospect", - 498: "siam", - 499: "iso-ill", - 500: "isakmp", - 501: "stmf", - 502: "mbap", - 503: "intrinsa", - 504: "citadel", - 505: "mailbox-lm", - 506: "ohimsrv", - 507: "crs", - 508: "xvttp", - 509: "snare", - 510: "fcp", - 511: "passgo", - 512: "comsat", - 513: "who", - 514: "syslog", - 515: "printer", - 516: "videotex", - 517: "talk", - 518: "ntalk", - 519: "utime", - 520: "router", - 521: "ripng", - 522: "ulp", - 523: "ibm-db2", - 524: "ncp", - 525: "timed", - 526: "tempo", - 527: "stx", - 528: "custix", - 529: "irc-serv", - 530: "courier", - 531: "conference", - 532: "netnews", - 533: "netwall", - 534: "windream", - 535: "iiop", - 536: "opalis-rdv", - 537: "nmsp", - 538: "gdomap", - 539: "apertus-ldp", - 540: "uucp", - 541: "uucp-rlogin", - 542: "commerce", - 543: "klogin", - 544: "kshell", - 545: "appleqtcsrvr", - 546: "dhcpv6-client", - 547: "dhcpv6-server", - 548: "afpovertcp", - 549: "idfp", - 550: "new-rwho", - 551: "cybercash", - 552: "devshr-nts", - 553: "pirp", - 554: "rtsp", - 555: "dsf", - 556: "remotefs", - 557: "openvms-sysipc", - 558: "sdnskmp", - 559: "teedtap", - 560: "rmonitor", - 561: "monitor", - 562: "chshell", - 563: "nntps", - 564: "9pfs", - 565: "whoami", - 566: "streettalk", - 567: "banyan-rpc", - 568: "ms-shuttle", - 569: "ms-rome", - 570: "meter", - 571: "meter", - 572: "sonar", - 573: "banyan-vip", - 574: "ftp-agent", - 575: "vemmi", - 576: "ipcd", - 577: "vnas", - 578: "ipdd", - 579: "decbsrv", - 580: "sntp-heartbeat", - 581: "bdp", - 582: "scc-security", - 583: "philips-vc", - 584: "keyserver", - 586: "password-chg", - 587: "submission", - 588: "cal", - 589: "eyelink", - 590: "tns-cml", - 591: "http-alt", - 592: "eudora-set", - 593: "http-rpc-epmap", - 594: "tpip", - 595: "cab-protocol", - 596: "smsd", - 597: "ptcnameservice", - 598: "sco-websrvrmg3", - 599: "acp", - 600: "ipcserver", - 601: "syslog-conn", - 602: "xmlrpc-beep", - 603: "idxp", - 604: "tunnel", - 605: "soap-beep", - 606: "urm", - 607: "nqs", - 608: "sift-uft", - 609: "npmp-trap", - 610: "npmp-local", - 611: "npmp-gui", - 612: "hmmp-ind", - 613: "hmmp-op", - 614: "sshell", - 615: "sco-inetmgr", - 616: "sco-sysmgr", - 617: "sco-dtmgr", - 618: "dei-icda", - 619: "compaq-evm", - 620: "sco-websrvrmgr", - 621: "escp-ip", - 622: "collaborator", - 623: "asf-rmcp", - 624: "cryptoadmin", - 625: "dec-dlm", - 626: "asia", - 627: "passgo-tivoli", - 628: "qmqp", - 629: "3com-amp3", - 630: "rda", - 631: "ipp", - 632: "bmpp", - 633: "servstat", - 634: "ginad", - 635: "rlzdbase", - 636: "ldaps", - 637: "lanserver", - 638: "mcns-sec", - 639: "msdp", - 640: "entrust-sps", - 641: "repcmd", - 642: "esro-emsdp", - 643: "sanity", - 644: "dwr", - 645: "pssc", - 646: "ldp", - 647: "dhcp-failover", - 648: "rrp", - 649: "cadview-3d", - 650: "obex", - 651: "ieee-mms", - 652: "hello-port", - 653: "repscmd", - 654: "aodv", - 655: "tinc", - 656: "spmp", - 657: "rmc", - 658: "tenfold", - 660: "mac-srvr-admin", - 661: "hap", - 662: "pftp", - 663: "purenoise", - 664: "asf-secure-rmcp", - 665: "sun-dr", - 666: "mdqs", - 667: "disclose", - 668: "mecomm", - 669: "meregister", - 670: "vacdsm-sws", - 671: "vacdsm-app", - 672: "vpps-qua", - 673: "cimplex", - 674: "acap", - 675: "dctp", - 676: "vpps-via", - 677: "vpp", - 678: "ggf-ncp", - 679: "mrm", - 680: "entrust-aaas", - 681: "entrust-aams", - 682: "xfr", - 683: "corba-iiop", - 684: "corba-iiop-ssl", - 685: "mdc-portmapper", - 686: "hcp-wismar", - 687: "asipregistry", - 688: "realm-rusd", - 689: "nmap", - 690: "vatp", - 691: "msexch-routing", - 692: "hyperwave-isp", - 693: "connendp", - 694: "ha-cluster", - 695: "ieee-mms-ssl", - 696: "rushd", - 697: "uuidgen", - 698: "olsr", - 699: "accessnetwork", - 700: "epp", - 701: "lmp", - 702: "iris-beep", - 704: "elcsd", - 705: "agentx", - 706: "silc", - 707: "borland-dsj", - 709: "entrust-kmsh", - 710: "entrust-ash", - 711: "cisco-tdp", - 712: "tbrpf", - 713: "iris-xpc", - 714: "iris-xpcs", - 715: "iris-lwz", - 716: "pana", - 729: "netviewdm1", - 730: "netviewdm2", - 731: "netviewdm3", - 741: "netgw", - 742: "netrcs", - 744: "flexlm", - 747: "fujitsu-dev", - 748: "ris-cm", - 749: "kerberos-adm", - 750: "loadav", - 751: "pump", - 752: "qrh", - 753: "rrh", - 754: "tell", - 758: "nlogin", - 759: "con", - 760: "ns", - 761: "rxe", - 762: "quotad", - 763: "cycleserv", - 764: "omserv", - 765: "webster", - 767: "phonebook", - 769: "vid", - 770: "cadlock", - 771: "rtip", - 772: "cycleserv2", - 773: "notify", - 774: "acmaint-dbd", - 775: "acmaint-transd", - 776: "wpages", - 777: "multiling-http", - 780: "wpgs", - 800: "mdbs-daemon", - 801: "device", - 802: "mbap-s", - 810: "fcp-udp", - 828: "itm-mcell-s", - 829: "pkix-3-ca-ra", - 830: "netconf-ssh", - 831: "netconf-beep", - 832: "netconfsoaphttp", - 833: "netconfsoapbeep", - 847: "dhcp-failover2", - 848: "gdoi", - 853: "domain-s", - 854: "dlep", - 860: "iscsi", - 861: "owamp-control", - 862: "twamp-control", - 873: "rsync", - 886: "iclcnet-locate", - 887: "iclcnet-svinfo", - 888: "accessbuilder", - 900: "omginitialrefs", - 901: "smpnameres", - 902: "ideafarm-door", - 903: "ideafarm-panic", - 910: "kink", - 911: "xact-backup", - 912: "apex-mesh", - 913: "apex-edge", - 989: "ftps-data", - 990: "ftps", - 991: "nas", - 992: "telnets", - 993: "imaps", - 995: "pop3s", - 996: "vsinet", - 997: "maitrd", - 998: "puparp", - 999: "applix", - 1000: "cadlock2", - 1010: "surf", - 1021: "exp1", - 1022: "exp2", - 1025: "blackjack", - 1026: "cap", - 1027: "6a44", - 1029: "solid-mux", - 1033: "netinfo-local", - 1034: "activesync", - 1035: "mxxrlogin", - 1036: "nsstp", - 1037: "ams", - 1038: "mtqp", - 1039: "sbl", - 1040: "netarx", - 1041: "danf-ak2", - 1042: "afrog", - 1043: "boinc-client", - 1044: "dcutility", - 1045: "fpitp", - 1046: "wfremotertm", - 1047: "neod1", - 1048: "neod2", - 1049: "td-postman", - 1050: "cma", - 1051: "optima-vnet", - 1052: "ddt", - 1053: "remote-as", - 1054: "brvread", - 1055: "ansyslmd", - 1056: "vfo", - 1057: "startron", - 1058: "nim", - 1059: "nimreg", - 1060: "polestar", - 1061: "kiosk", - 1062: "veracity", - 1063: "kyoceranetdev", - 1064: "jstel", - 1065: "syscomlan", - 1066: "fpo-fns", - 1067: "instl-boots", - 1068: "instl-bootc", - 1069: "cognex-insight", - 1070: "gmrupdateserv", - 1071: "bsquare-voip", - 1072: "cardax", - 1073: "bridgecontrol", - 1074: "warmspotMgmt", - 1075: "rdrmshc", - 1076: "dab-sti-c", - 1077: "imgames", - 1078: "avocent-proxy", - 1079: "asprovatalk", - 1080: "socks", - 1081: "pvuniwien", - 1082: "amt-esd-prot", - 1083: "ansoft-lm-1", - 1084: "ansoft-lm-2", - 1085: "webobjects", - 1086: "cplscrambler-lg", - 1087: "cplscrambler-in", - 1088: "cplscrambler-al", - 1089: "ff-annunc", - 1090: "ff-fms", - 1091: "ff-sm", - 1092: "obrpd", - 1093: "proofd", - 1094: "rootd", - 1095: "nicelink", - 1096: "cnrprotocol", - 1097: "sunclustermgr", - 1098: "rmiactivation", - 1099: "rmiregistry", - 1100: "mctp", - 1101: "pt2-discover", - 1102: "adobeserver-1", - 1103: "adobeserver-2", - 1104: "xrl", - 1105: "ftranhc", - 1106: "isoipsigport-1", - 1107: "isoipsigport-2", - 1108: "ratio-adp", - 1110: "nfsd-keepalive", - 1111: "lmsocialserver", - 1112: "icp", - 1113: "ltp-deepspace", - 1114: "mini-sql", - 1115: "ardus-trns", - 1116: "ardus-cntl", - 1117: "ardus-mtrns", - 1118: "sacred", - 1119: "bnetgame", - 1120: "bnetfile", - 1121: "rmpp", - 1122: "availant-mgr", - 1123: "murray", - 1124: "hpvmmcontrol", - 1125: "hpvmmagent", - 1126: "hpvmmdata", - 1127: "kwdb-commn", - 1128: "saphostctrl", - 1129: "saphostctrls", - 1130: "casp", - 1131: "caspssl", - 1132: "kvm-via-ip", - 1133: "dfn", - 1134: "aplx", - 1135: "omnivision", - 1136: "hhb-gateway", - 1137: "trim", - 1138: "encrypted-admin", - 1139: "evm", - 1140: "autonoc", - 1141: "mxomss", - 1142: "edtools", - 1143: "imyx", - 1144: "fuscript", - 1145: "x9-icue", - 1146: "audit-transfer", - 1147: "capioverlan", - 1148: "elfiq-repl", - 1149: "bvtsonar", - 1150: "blaze", - 1151: "unizensus", - 1152: "winpoplanmess", - 1153: "c1222-acse", - 1154: "resacommunity", - 1155: "nfa", - 1156: "iascontrol-oms", - 1157: "iascontrol", - 1158: "dbcontrol-oms", - 1159: "oracle-oms", - 1160: "olsv", - 1161: "health-polling", - 1162: "health-trap", - 1163: "sddp", - 1164: "qsm-proxy", - 1165: "qsm-gui", - 1166: "qsm-remote", - 1167: "cisco-ipsla", - 1168: "vchat", - 1169: "tripwire", - 1170: "atc-lm", - 1171: "atc-appserver", - 1172: "dnap", - 1173: "d-cinema-rrp", - 1174: "fnet-remote-ui", - 1175: "dossier", - 1176: "indigo-server", - 1177: "dkmessenger", - 1178: "sgi-storman", - 1179: "b2n", - 1180: "mc-client", - 1181: "3comnetman", - 1182: "accelenet-data", - 1183: "llsurfup-http", - 1184: "llsurfup-https", - 1185: "catchpole", - 1186: "mysql-cluster", - 1187: "alias", - 1188: "hp-webadmin", - 1189: "unet", - 1190: "commlinx-avl", - 1191: "gpfs", - 1192: "caids-sensor", - 1193: "fiveacross", - 1194: "openvpn", - 1195: "rsf-1", - 1196: "netmagic", - 1197: "carrius-rshell", - 1198: "cajo-discovery", - 1199: "dmidi", - 1200: "scol", - 1201: "nucleus-sand", - 1202: "caiccipc", - 1203: "ssslic-mgr", - 1204: "ssslog-mgr", - 1205: "accord-mgc", - 1206: "anthony-data", - 1207: "metasage", - 1208: "seagull-ais", - 1209: "ipcd3", - 1210: "eoss", - 1211: "groove-dpp", - 1212: "lupa", - 1213: "mpc-lifenet", - 1214: "kazaa", - 1215: "scanstat-1", - 1216: "etebac5", - 1217: "hpss-ndapi", - 1218: "aeroflight-ads", - 1219: "aeroflight-ret", - 1220: "qt-serveradmin", - 1221: "sweetware-apps", - 1222: "nerv", - 1223: "tgp", - 1224: "vpnz", - 1225: "slinkysearch", - 1226: "stgxfws", - 1227: "dns2go", - 1228: "florence", - 1229: "zented", - 1230: "periscope", - 1231: "menandmice-lpm", - 1232: "first-defense", - 1233: "univ-appserver", - 1234: "search-agent", - 1235: "mosaicsyssvc1", - 1236: "bvcontrol", - 1237: "tsdos390", - 1238: "hacl-qs", - 1239: "nmsd", - 1240: "instantia", - 1241: "nessus", - 1242: "nmasoverip", - 1243: "serialgateway", - 1244: "isbconference1", - 1245: "isbconference2", - 1246: "payrouter", - 1247: "visionpyramid", - 1248: "hermes", - 1249: "mesavistaco", - 1250: "swldy-sias", - 1251: "servergraph", - 1252: "bspne-pcc", - 1253: "q55-pcc", - 1254: "de-noc", - 1255: "de-cache-query", - 1256: "de-server", - 1257: "shockwave2", - 1258: "opennl", - 1259: "opennl-voice", - 1260: "ibm-ssd", - 1261: "mpshrsv", - 1262: "qnts-orb", - 1263: "dka", - 1264: "prat", - 1265: "dssiapi", - 1266: "dellpwrappks", - 1267: "epc", - 1268: "propel-msgsys", - 1269: "watilapp", - 1270: "opsmgr", - 1271: "excw", - 1272: "cspmlockmgr", - 1273: "emc-gateway", - 1274: "t1distproc", - 1275: "ivcollector", - 1277: "miva-mqs", - 1278: "dellwebadmin-1", - 1279: "dellwebadmin-2", - 1280: "pictrography", - 1281: "healthd", - 1282: "emperion", - 1283: "productinfo", - 1284: "iee-qfx", - 1285: "neoiface", - 1286: "netuitive", - 1287: "routematch", - 1288: "navbuddy", - 1289: "jwalkserver", - 1290: "winjaserver", - 1291: "seagulllms", - 1292: "dsdn", - 1293: "pkt-krb-ipsec", - 1294: "cmmdriver", - 1295: "ehtp", - 1296: "dproxy", - 1297: "sdproxy", - 1298: "lpcp", - 1299: "hp-sci", - 1300: "h323hostcallsc", - 1301: "ci3-software-1", - 1302: "ci3-software-2", - 1303: "sftsrv", - 1304: "boomerang", - 1305: "pe-mike", - 1306: "re-conn-proto", - 1307: "pacmand", - 1308: "odsi", - 1309: "jtag-server", - 1310: "husky", - 1311: "rxmon", - 1312: "sti-envision", - 1313: "bmc-patroldb", - 1314: "pdps", - 1315: "els", - 1316: "exbit-escp", - 1317: "vrts-ipcserver", - 1318: "krb5gatekeeper", - 1319: "amx-icsp", - 1320: "amx-axbnet", - 1321: "pip", - 1322: "novation", - 1323: "brcd", - 1324: "delta-mcp", - 1325: "dx-instrument", - 1326: "wimsic", - 1327: "ultrex", - 1328: "ewall", - 1329: "netdb-export", - 1330: "streetperfect", - 1331: "intersan", - 1332: "pcia-rxp-b", - 1333: "passwrd-policy", - 1334: "writesrv", - 1335: "digital-notary", - 1336: "ischat", - 1337: "menandmice-dns", - 1338: "wmc-log-svc", - 1339: "kjtsiteserver", - 1340: "naap", - 1341: "qubes", - 1342: "esbroker", - 1343: "re101", - 1344: "icap", - 1345: "vpjp", - 1346: "alta-ana-lm", - 1347: "bbn-mmc", - 1348: "bbn-mmx", - 1349: "sbook", - 1350: "editbench", - 1351: "equationbuilder", - 1352: "lotusnote", - 1353: "relief", - 1354: "XSIP-network", - 1355: "intuitive-edge", - 1356: "cuillamartin", - 1357: "pegboard", - 1358: "connlcli", - 1359: "ftsrv", - 1360: "mimer", - 1361: "linx", - 1362: "timeflies", - 1363: "ndm-requester", - 1364: "ndm-server", - 1365: "adapt-sna", - 1366: "netware-csp", - 1367: "dcs", - 1368: "screencast", - 1369: "gv-us", - 1370: "us-gv", - 1371: "fc-cli", - 1372: "fc-ser", - 1373: "chromagrafx", - 1374: "molly", - 1375: "bytex", - 1376: "ibm-pps", - 1377: "cichlid", - 1378: "elan", - 1379: "dbreporter", - 1380: "telesis-licman", - 1381: "apple-licman", - 1382: "udt-os", - 1383: "gwha", - 1384: "os-licman", - 1385: "atex-elmd", - 1386: "checksum", - 1387: "cadsi-lm", - 1388: "objective-dbc", - 1389: "iclpv-dm", - 1390: "iclpv-sc", - 1391: "iclpv-sas", - 1392: "iclpv-pm", - 1393: "iclpv-nls", - 1394: "iclpv-nlc", - 1395: "iclpv-wsm", - 1396: "dvl-activemail", - 1397: "audio-activmail", - 1398: "video-activmail", - 1399: "cadkey-licman", - 1400: "cadkey-tablet", - 1401: "goldleaf-licman", - 1402: "prm-sm-np", - 1403: "prm-nm-np", - 1404: "igi-lm", - 1405: "ibm-res", - 1406: "netlabs-lm", - 1408: "sophia-lm", - 1409: "here-lm", - 1410: "hiq", - 1411: "af", - 1412: "innosys", - 1413: "innosys-acl", - 1414: "ibm-mqseries", - 1415: "dbstar", - 1416: "novell-lu6-2", - 1417: "timbuktu-srv1", - 1418: "timbuktu-srv2", - 1419: "timbuktu-srv3", - 1420: "timbuktu-srv4", - 1421: "gandalf-lm", - 1422: "autodesk-lm", - 1423: "essbase", - 1424: "hybrid", - 1425: "zion-lm", - 1426: "sais", - 1427: "mloadd", - 1428: "informatik-lm", - 1429: "nms", - 1430: "tpdu", - 1431: "rgtp", - 1432: "blueberry-lm", - 1433: "ms-sql-s", - 1434: "ms-sql-m", - 1435: "ibm-cics", - 1436: "saism", - 1437: "tabula", - 1438: "eicon-server", - 1439: "eicon-x25", - 1440: "eicon-slp", - 1441: "cadis-1", - 1442: "cadis-2", - 1443: "ies-lm", - 1444: "marcam-lm", - 1445: "proxima-lm", - 1446: "ora-lm", - 1447: "apri-lm", - 1448: "oc-lm", - 1449: "peport", - 1450: "dwf", - 1451: "infoman", - 1452: "gtegsc-lm", - 1453: "genie-lm", - 1454: "interhdl-elmd", - 1455: "esl-lm", - 1456: "dca", - 1457: "valisys-lm", - 1458: "nrcabq-lm", - 1459: "proshare1", - 1460: "proshare2", - 1461: "ibm-wrless-lan", - 1462: "world-lm", - 1463: "nucleus", - 1464: "msl-lmd", - 1465: "pipes", - 1466: "oceansoft-lm", - 1467: "csdmbase", - 1468: "csdm", - 1469: "aal-lm", - 1470: "uaiact", - 1471: "csdmbase", - 1472: "csdm", - 1473: "openmath", - 1474: "telefinder", - 1475: "taligent-lm", - 1476: "clvm-cfg", - 1477: "ms-sna-server", - 1478: "ms-sna-base", - 1479: "dberegister", - 1480: "pacerforum", - 1481: "airs", - 1482: "miteksys-lm", - 1483: "afs", - 1484: "confluent", - 1485: "lansource", - 1486: "nms-topo-serv", - 1487: "localinfosrvr", - 1488: "docstor", - 1489: "dmdocbroker", - 1490: "insitu-conf", - 1492: "stone-design-1", - 1493: "netmap-lm", - 1494: "ica", - 1495: "cvc", - 1496: "liberty-lm", - 1497: "rfx-lm", - 1498: "sybase-sqlany", - 1499: "fhc", - 1500: "vlsi-lm", - 1501: "saiscm", - 1502: "shivadiscovery", - 1503: "imtc-mcs", - 1504: "evb-elm", - 1505: "funkproxy", - 1506: "utcd", - 1507: "symplex", - 1508: "diagmond", - 1509: "robcad-lm", - 1510: "mvx-lm", - 1511: "3l-l1", - 1512: "wins", - 1513: "fujitsu-dtc", - 1514: "fujitsu-dtcns", - 1515: "ifor-protocol", - 1516: "vpad", - 1517: "vpac", - 1518: "vpvd", - 1519: "vpvc", - 1520: "atm-zip-office", - 1521: "ncube-lm", - 1522: "ricardo-lm", - 1523: "cichild-lm", - 1524: "ingreslock", - 1525: "orasrv", - 1526: "pdap-np", - 1527: "tlisrv", - 1528: "ngr-t", - 1529: "coauthor", - 1530: "rap-service", - 1531: "rap-listen", - 1532: "miroconnect", - 1533: "virtual-places", - 1534: "micromuse-lm", - 1535: "ampr-info", - 1536: "ampr-inter", - 1537: "sdsc-lm", - 1538: "3ds-lm", - 1539: "intellistor-lm", - 1540: "rds", - 1541: "rds2", - 1542: "gridgen-elmd", - 1543: "simba-cs", - 1544: "aspeclmd", - 1545: "vistium-share", - 1546: "abbaccuray", - 1547: "laplink", - 1548: "axon-lm", - 1549: "shivasound", - 1550: "3m-image-lm", - 1551: "hecmtl-db", - 1552: "pciarray", - 1553: "sna-cs", - 1554: "caci-lm", - 1555: "livelan", - 1556: "veritas-pbx", - 1557: "arbortext-lm", - 1558: "xingmpeg", - 1559: "web2host", - 1560: "asci-val", - 1561: "facilityview", - 1562: "pconnectmgr", - 1563: "cadabra-lm", - 1564: "pay-per-view", - 1565: "winddlb", - 1566: "corelvideo", - 1567: "jlicelmd", - 1568: "tsspmap", - 1569: "ets", - 1570: "orbixd", - 1571: "rdb-dbs-disp", - 1572: "chip-lm", - 1573: "itscomm-ns", - 1574: "mvel-lm", - 1575: "oraclenames", - 1576: "moldflow-lm", - 1577: "hypercube-lm", - 1578: "jacobus-lm", - 1579: "ioc-sea-lm", - 1580: "tn-tl-r2", - 1581: "mil-2045-47001", - 1582: "msims", - 1583: "simbaexpress", - 1584: "tn-tl-fd2", - 1585: "intv", - 1586: "ibm-abtact", - 1587: "pra-elmd", - 1588: "triquest-lm", - 1589: "vqp", - 1590: "gemini-lm", - 1591: "ncpm-pm", - 1592: "commonspace", - 1593: "mainsoft-lm", - 1594: "sixtrak", - 1595: "radio", - 1596: "radio-bc", - 1597: "orbplus-iiop", - 1598: "picknfs", - 1599: "simbaservices", - 1600: "issd", - 1601: "aas", - 1602: "inspect", - 1603: "picodbc", - 1604: "icabrowser", - 1605: "slp", - 1606: "slm-api", - 1607: "stt", - 1608: "smart-lm", - 1609: "isysg-lm", - 1610: "taurus-wh", - 1611: "ill", - 1612: "netbill-trans", - 1613: "netbill-keyrep", - 1614: "netbill-cred", - 1615: "netbill-auth", - 1616: "netbill-prod", - 1617: "nimrod-agent", - 1618: "skytelnet", - 1619: "xs-openstorage", - 1620: "faxportwinport", - 1621: "softdataphone", - 1622: "ontime", - 1623: "jaleosnd", - 1624: "udp-sr-port", - 1625: "svs-omagent", - 1626: "shockwave", - 1627: "t128-gateway", - 1628: "lontalk-norm", - 1629: "lontalk-urgnt", - 1630: "oraclenet8cman", - 1631: "visitview", - 1632: "pammratc", - 1633: "pammrpc", - 1634: "loaprobe", - 1635: "edb-server1", - 1636: "isdc", - 1637: "islc", - 1638: "ismc", - 1639: "cert-initiator", - 1640: "cert-responder", - 1641: "invision", - 1642: "isis-am", - 1643: "isis-ambc", - 1644: "saiseh", - 1645: "sightline", - 1646: "sa-msg-port", - 1647: "rsap", - 1648: "concurrent-lm", - 1649: "kermit", - 1650: "nkd", - 1651: "shiva-confsrvr", - 1652: "xnmp", - 1653: "alphatech-lm", - 1654: "stargatealerts", - 1655: "dec-mbadmin", - 1656: "dec-mbadmin-h", - 1657: "fujitsu-mmpdc", - 1658: "sixnetudr", - 1659: "sg-lm", - 1660: "skip-mc-gikreq", - 1661: "netview-aix-1", - 1662: "netview-aix-2", - 1663: "netview-aix-3", - 1664: "netview-aix-4", - 1665: "netview-aix-5", - 1666: "netview-aix-6", - 1667: "netview-aix-7", - 1668: "netview-aix-8", - 1669: "netview-aix-9", - 1670: "netview-aix-10", - 1671: "netview-aix-11", - 1672: "netview-aix-12", - 1673: "proshare-mc-1", - 1674: "proshare-mc-2", - 1675: "pdp", - 1676: "netcomm2", - 1677: "groupwise", - 1678: "prolink", - 1679: "darcorp-lm", - 1680: "microcom-sbp", - 1681: "sd-elmd", - 1682: "lanyon-lantern", - 1683: "ncpm-hip", - 1684: "snaresecure", - 1685: "n2nremote", - 1686: "cvmon", - 1687: "nsjtp-ctrl", - 1688: "nsjtp-data", - 1689: "firefox", - 1690: "ng-umds", - 1691: "empire-empuma", - 1692: "sstsys-lm", - 1693: "rrirtr", - 1694: "rrimwm", - 1695: "rrilwm", - 1696: "rrifmm", - 1697: "rrisat", - 1698: "rsvp-encap-1", - 1699: "rsvp-encap-2", - 1700: "mps-raft", - 1701: "l2f", - 1702: "deskshare", - 1703: "hb-engine", - 1704: "bcs-broker", - 1705: "slingshot", - 1706: "jetform", - 1707: "vdmplay", - 1708: "gat-lmd", - 1709: "centra", - 1710: "impera", - 1711: "pptconference", - 1712: "registrar", - 1713: "conferencetalk", - 1714: "sesi-lm", - 1715: "houdini-lm", - 1716: "xmsg", - 1717: "fj-hdnet", - 1718: "h323gatedisc", - 1719: "h323gatestat", - 1720: "h323hostcall", - 1721: "caicci", - 1722: "hks-lm", - 1723: "pptp", - 1724: "csbphonemaster", - 1725: "iden-ralp", - 1726: "iberiagames", - 1727: "winddx", - 1728: "telindus", - 1729: "citynl", - 1730: "roketz", - 1731: "msiccp", - 1732: "proxim", - 1733: "siipat", - 1734: "cambertx-lm", - 1735: "privatechat", - 1736: "street-stream", - 1737: "ultimad", - 1738: "gamegen1", - 1739: "webaccess", - 1740: "encore", - 1741: "cisco-net-mgmt", - 1742: "3Com-nsd", - 1743: "cinegrfx-lm", - 1744: "ncpm-ft", - 1745: "remote-winsock", - 1746: "ftrapid-1", - 1747: "ftrapid-2", - 1748: "oracle-em1", - 1749: "aspen-services", - 1750: "sslp", - 1751: "swiftnet", - 1752: "lofr-lm", - 1754: "oracle-em2", - 1755: "ms-streaming", - 1756: "capfast-lmd", - 1757: "cnhrp", - 1758: "tftp-mcast", - 1759: "spss-lm", - 1760: "www-ldap-gw", - 1761: "cft-0", - 1762: "cft-1", - 1763: "cft-2", - 1764: "cft-3", - 1765: "cft-4", - 1766: "cft-5", - 1767: "cft-6", - 1768: "cft-7", - 1769: "bmc-net-adm", - 1770: "bmc-net-svc", - 1771: "vaultbase", - 1772: "essweb-gw", - 1773: "kmscontrol", - 1774: "global-dtserv", - 1776: "femis", - 1777: "powerguardian", - 1778: "prodigy-intrnet", - 1779: "pharmasoft", - 1780: "dpkeyserv", - 1781: "answersoft-lm", - 1782: "hp-hcip", - 1784: "finle-lm", - 1785: "windlm", - 1786: "funk-logger", - 1787: "funk-license", - 1788: "psmond", - 1789: "hello", - 1790: "nmsp", - 1791: "ea1", - 1792: "ibm-dt-2", - 1793: "rsc-robot", - 1794: "cera-bcm", - 1795: "dpi-proxy", - 1796: "vocaltec-admin", - 1797: "uma", - 1798: "etp", - 1799: "netrisk", - 1800: "ansys-lm", - 1801: "msmq", - 1802: "concomp1", - 1803: "hp-hcip-gwy", - 1804: "enl", - 1805: "enl-name", - 1806: "musiconline", - 1807: "fhsp", - 1808: "oracle-vp2", - 1809: "oracle-vp1", - 1810: "jerand-lm", - 1811: "scientia-sdb", - 1812: "radius", - 1813: "radius-acct", - 1814: "tdp-suite", - 1815: "mmpft", - 1816: "harp", - 1817: "rkb-oscs", - 1818: "etftp", - 1819: "plato-lm", - 1820: "mcagent", - 1821: "donnyworld", - 1822: "es-elmd", - 1823: "unisys-lm", - 1824: "metrics-pas", - 1825: "direcpc-video", - 1826: "ardt", - 1827: "asi", - 1828: "itm-mcell-u", - 1829: "optika-emedia", - 1830: "net8-cman", - 1831: "myrtle", - 1832: "tht-treasure", - 1833: "udpradio", - 1834: "ardusuni", - 1835: "ardusmul", - 1836: "ste-smsc", - 1837: "csoft1", - 1838: "talnet", - 1839: "netopia-vo1", - 1840: "netopia-vo2", - 1841: "netopia-vo3", - 1842: "netopia-vo4", - 1843: "netopia-vo5", - 1844: "direcpc-dll", - 1845: "altalink", - 1846: "tunstall-pnc", - 1847: "slp-notify", - 1848: "fjdocdist", - 1849: "alpha-sms", - 1850: "gsi", - 1851: "ctcd", - 1852: "virtual-time", - 1853: "vids-avtp", - 1854: "buddy-draw", - 1855: "fiorano-rtrsvc", - 1856: "fiorano-msgsvc", - 1857: "datacaptor", - 1858: "privateark", - 1859: "gammafetchsvr", - 1860: "sunscalar-svc", - 1861: "lecroy-vicp", - 1862: "mysql-cm-agent", - 1863: "msnp", - 1864: "paradym-31port", - 1865: "entp", - 1866: "swrmi", - 1867: "udrive", - 1868: "viziblebrowser", - 1869: "transact", - 1870: "sunscalar-dns", - 1871: "canocentral0", - 1872: "canocentral1", - 1873: "fjmpjps", - 1874: "fjswapsnp", - 1875: "westell-stats", - 1876: "ewcappsrv", - 1877: "hp-webqosdb", - 1878: "drmsmc", - 1879: "nettgain-nms", - 1880: "vsat-control", - 1881: "ibm-mqseries2", - 1882: "ecsqdmn", - 1883: "mqtt", - 1884: "idmaps", - 1885: "vrtstrapserver", - 1886: "leoip", - 1887: "filex-lport", - 1888: "ncconfig", - 1889: "unify-adapter", - 1890: "wilkenlistener", - 1891: "childkey-notif", - 1892: "childkey-ctrl", - 1893: "elad", - 1894: "o2server-port", - 1896: "b-novative-ls", - 1897: "metaagent", - 1898: "cymtec-port", - 1899: "mc2studios", - 1900: "ssdp", - 1901: "fjicl-tep-a", - 1902: "fjicl-tep-b", - 1903: "linkname", - 1904: "fjicl-tep-c", - 1905: "sugp", - 1906: "tpmd", - 1907: "intrastar", - 1908: "dawn", - 1909: "global-wlink", - 1910: "ultrabac", - 1911: "mtp", - 1912: "rhp-iibp", - 1913: "armadp", - 1914: "elm-momentum", - 1915: "facelink", - 1916: "persona", - 1917: "noagent", - 1918: "can-nds", - 1919: "can-dch", - 1920: "can-ferret", - 1921: "noadmin", - 1922: "tapestry", - 1923: "spice", - 1924: "xiip", - 1925: "discovery-port", - 1926: "egs", - 1927: "videte-cipc", - 1928: "emsd-port", - 1929: "bandwiz-system", - 1930: "driveappserver", - 1931: "amdsched", - 1932: "ctt-broker", - 1933: "xmapi", - 1934: "xaapi", - 1935: "macromedia-fcs", - 1936: "jetcmeserver", - 1937: "jwserver", - 1938: "jwclient", - 1939: "jvserver", - 1940: "jvclient", - 1941: "dic-aida", - 1942: "res", - 1943: "beeyond-media", - 1944: "close-combat", - 1945: "dialogic-elmd", - 1946: "tekpls", - 1947: "sentinelsrm", - 1948: "eye2eye", - 1949: "ismaeasdaqlive", - 1950: "ismaeasdaqtest", - 1951: "bcs-lmserver", - 1952: "mpnjsc", - 1953: "rapidbase", - 1954: "abr-api", - 1955: "abr-secure", - 1956: "vrtl-vmf-ds", - 1957: "unix-status", - 1958: "dxadmind", - 1959: "simp-all", - 1960: "nasmanager", - 1961: "bts-appserver", - 1962: "biap-mp", - 1963: "webmachine", - 1964: "solid-e-engine", - 1965: "tivoli-npm", - 1966: "slush", - 1967: "sns-quote", - 1968: "lipsinc", - 1969: "lipsinc1", - 1970: "netop-rc", - 1971: "netop-school", - 1972: "intersys-cache", - 1973: "dlsrap", - 1974: "drp", - 1975: "tcoflashagent", - 1976: "tcoregagent", - 1977: "tcoaddressbook", - 1978: "unisql", - 1979: "unisql-java", - 1980: "pearldoc-xact", - 1981: "p2pq", - 1982: "estamp", - 1983: "lhtp", - 1984: "bb", - 1985: "hsrp", - 1986: "licensedaemon", - 1987: "tr-rsrb-p1", - 1988: "tr-rsrb-p2", - 1989: "tr-rsrb-p3", - 1990: "stun-p1", - 1991: "stun-p2", - 1992: "stun-p3", - 1993: "snmp-tcp-port", - 1994: "stun-port", - 1995: "perf-port", - 1996: "tr-rsrb-port", - 1997: "gdp-port", - 1998: "x25-svc-port", - 1999: "tcp-id-port", - 2000: "cisco-sccp", - 2001: "wizard", - 2002: "globe", - 2003: "brutus", - 2004: "emce", - 2005: "oracle", - 2006: "raid-cd", - 2007: "raid-am", - 2008: "terminaldb", - 2009: "whosockami", - 2010: "pipe-server", - 2011: "servserv", - 2012: "raid-ac", - 2013: "raid-cd", - 2014: "raid-sf", - 2015: "raid-cs", - 2016: "bootserver", - 2017: "bootclient", - 2018: "rellpack", - 2019: "about", - 2020: "xinupageserver", - 2021: "xinuexpansion1", - 2022: "xinuexpansion2", - 2023: "xinuexpansion3", - 2024: "xinuexpansion4", - 2025: "xribs", - 2026: "scrabble", - 2027: "shadowserver", - 2028: "submitserver", - 2029: "hsrpv6", - 2030: "device2", - 2031: "mobrien-chat", - 2032: "blackboard", - 2033: "glogger", - 2034: "scoremgr", - 2035: "imsldoc", - 2036: "e-dpnet", - 2037: "applus", - 2038: "objectmanager", - 2039: "prizma", - 2040: "lam", - 2041: "interbase", - 2042: "isis", - 2043: "isis-bcast", - 2044: "rimsl", - 2045: "cdfunc", - 2046: "sdfunc", - 2047: "dls", - 2048: "dls-monitor", - 2049: "shilp", - 2050: "av-emb-config", - 2051: "epnsdp", - 2052: "clearvisn", - 2053: "lot105-ds-upd", - 2054: "weblogin", - 2055: "iop", - 2056: "omnisky", - 2057: "rich-cp", - 2058: "newwavesearch", - 2059: "bmc-messaging", - 2060: "teleniumdaemon", - 2061: "netmount", - 2062: "icg-swp", - 2063: "icg-bridge", - 2064: "icg-iprelay", - 2065: "dlsrpn", - 2066: "aura", - 2067: "dlswpn", - 2068: "avauthsrvprtcl", - 2069: "event-port", - 2070: "ah-esp-encap", - 2071: "acp-port", - 2072: "msync", - 2073: "gxs-data-port", - 2074: "vrtl-vmf-sa", - 2075: "newlixengine", - 2076: "newlixconfig", - 2077: "tsrmagt", - 2078: "tpcsrvr", - 2079: "idware-router", - 2080: "autodesk-nlm", - 2081: "kme-trap-port", - 2082: "infowave", - 2083: "radsec", - 2084: "sunclustergeo", - 2085: "ada-cip", - 2086: "gnunet", - 2087: "eli", - 2088: "ip-blf", - 2089: "sep", - 2090: "lrp", - 2091: "prp", - 2092: "descent3", - 2093: "nbx-cc", - 2094: "nbx-au", - 2095: "nbx-ser", - 2096: "nbx-dir", - 2097: "jetformpreview", - 2098: "dialog-port", - 2099: "h2250-annex-g", - 2100: "amiganetfs", - 2101: "rtcm-sc104", - 2102: "zephyr-srv", - 2103: "zephyr-clt", - 2104: "zephyr-hm", - 2105: "minipay", - 2106: "mzap", - 2107: "bintec-admin", - 2108: "comcam", - 2109: "ergolight", - 2110: "umsp", - 2111: "dsatp", - 2112: "idonix-metanet", - 2113: "hsl-storm", - 2114: "newheights", - 2115: "kdm", - 2116: "ccowcmr", - 2117: "mentaclient", - 2118: "mentaserver", - 2119: "gsigatekeeper", - 2120: "qencp", - 2121: "scientia-ssdb", - 2122: "caupc-remote", - 2123: "gtp-control", - 2124: "elatelink", - 2125: "lockstep", - 2126: "pktcable-cops", - 2127: "index-pc-wb", - 2128: "net-steward", - 2129: "cs-live", - 2130: "xds", - 2131: "avantageb2b", - 2132: "solera-epmap", - 2133: "zymed-zpp", - 2134: "avenue", - 2135: "gris", - 2136: "appworxsrv", - 2137: "connect", - 2138: "unbind-cluster", - 2139: "ias-auth", - 2140: "ias-reg", - 2141: "ias-admind", - 2142: "tdmoip", - 2143: "lv-jc", - 2144: "lv-ffx", - 2145: "lv-pici", - 2146: "lv-not", - 2147: "lv-auth", - 2148: "veritas-ucl", - 2149: "acptsys", - 2150: "dynamic3d", - 2151: "docent", - 2152: "gtp-user", - 2153: "ctlptc", - 2154: "stdptc", - 2155: "brdptc", - 2156: "trp", - 2157: "xnds", - 2158: "touchnetplus", - 2159: "gdbremote", - 2160: "apc-2160", - 2161: "apc-2161", - 2162: "navisphere", - 2163: "navisphere-sec", - 2164: "ddns-v3", - 2165: "x-bone-api", - 2166: "iwserver", - 2167: "raw-serial", - 2168: "easy-soft-mux", - 2169: "brain", - 2170: "eyetv", - 2171: "msfw-storage", - 2172: "msfw-s-storage", - 2173: "msfw-replica", - 2174: "msfw-array", - 2175: "airsync", - 2176: "rapi", - 2177: "qwave", - 2178: "bitspeer", - 2179: "vmrdp", - 2180: "mc-gt-srv", - 2181: "eforward", - 2182: "cgn-stat", - 2183: "cgn-config", - 2184: "nvd", - 2185: "onbase-dds", - 2186: "gtaua", - 2187: "ssmd", - 2190: "tivoconnect", - 2191: "tvbus", - 2192: "asdis", - 2193: "drwcs", - 2197: "mnp-exchange", - 2198: "onehome-remote", - 2199: "onehome-help", - 2200: "ici", - 2201: "ats", - 2202: "imtc-map", - 2203: "b2-runtime", - 2204: "b2-license", - 2205: "jps", - 2206: "hpocbus", - 2207: "hpssd", - 2208: "hpiod", - 2209: "rimf-ps", - 2210: "noaaport", - 2211: "emwin", - 2212: "leecoposserver", - 2213: "kali", - 2214: "rpi", - 2215: "ipcore", - 2216: "vtu-comms", - 2217: "gotodevice", - 2218: "bounzza", - 2219: "netiq-ncap", - 2220: "netiq", - 2221: "ethernet-ip-s", - 2222: "EtherNet-IP-1", - 2223: "rockwell-csp2", - 2224: "efi-mg", - 2226: "di-drm", - 2227: "di-msg", - 2228: "ehome-ms", - 2229: "datalens", - 2230: "queueadm", - 2231: "wimaxasncp", - 2232: "ivs-video", - 2233: "infocrypt", - 2234: "directplay", - 2235: "sercomm-wlink", - 2236: "nani", - 2237: "optech-port1-lm", - 2238: "aviva-sna", - 2239: "imagequery", - 2240: "recipe", - 2241: "ivsd", - 2242: "foliocorp", - 2243: "magicom", - 2244: "nmsserver", - 2245: "hao", - 2246: "pc-mta-addrmap", - 2247: "antidotemgrsvr", - 2248: "ums", - 2249: "rfmp", - 2250: "remote-collab", - 2251: "dif-port", - 2252: "njenet-ssl", - 2253: "dtv-chan-req", - 2254: "seispoc", - 2255: "vrtp", - 2256: "pcc-mfp", - 2257: "simple-tx-rx", - 2258: "rcts", - 2260: "apc-2260", - 2261: "comotionmaster", - 2262: "comotionback", - 2263: "ecwcfg", - 2264: "apx500api-1", - 2265: "apx500api-2", - 2266: "mfserver", - 2267: "ontobroker", - 2268: "amt", - 2269: "mikey", - 2270: "starschool", - 2271: "mmcals", - 2272: "mmcal", - 2273: "mysql-im", - 2274: "pcttunnell", - 2275: "ibridge-data", - 2276: "ibridge-mgmt", - 2277: "bluectrlproxy", - 2278: "s3db", - 2279: "xmquery", - 2280: "lnvpoller", - 2281: "lnvconsole", - 2282: "lnvalarm", - 2283: "lnvstatus", - 2284: "lnvmaps", - 2285: "lnvmailmon", - 2286: "nas-metering", - 2287: "dna", - 2288: "netml", - 2289: "dict-lookup", - 2290: "sonus-logging", - 2291: "eapsp", - 2292: "mib-streaming", - 2293: "npdbgmngr", - 2294: "konshus-lm", - 2295: "advant-lm", - 2296: "theta-lm", - 2297: "d2k-datamover1", - 2298: "d2k-datamover2", - 2299: "pc-telecommute", - 2300: "cvmmon", - 2301: "cpq-wbem", - 2302: "binderysupport", - 2303: "proxy-gateway", - 2304: "attachmate-uts", - 2305: "mt-scaleserver", - 2306: "tappi-boxnet", - 2307: "pehelp", - 2308: "sdhelp", - 2309: "sdserver", - 2310: "sdclient", - 2311: "messageservice", - 2312: "wanscaler", - 2313: "iapp", - 2314: "cr-websystems", - 2315: "precise-sft", - 2316: "sent-lm", - 2317: "attachmate-g32", - 2318: "cadencecontrol", - 2319: "infolibria", - 2320: "siebel-ns", - 2321: "rdlap", - 2322: "ofsd", - 2323: "3d-nfsd", - 2324: "cosmocall", - 2325: "ansysli", - 2326: "idcp", - 2327: "xingcsm", - 2328: "netrix-sftm", - 2329: "nvd", - 2330: "tscchat", - 2331: "agentview", - 2332: "rcc-host", - 2333: "snapp", - 2334: "ace-client", - 2335: "ace-proxy", - 2336: "appleugcontrol", - 2337: "ideesrv", - 2338: "norton-lambert", - 2339: "3com-webview", - 2340: "wrs-registry", - 2341: "xiostatus", - 2342: "manage-exec", - 2343: "nati-logos", - 2344: "fcmsys", - 2345: "dbm", - 2346: "redstorm-join", - 2347: "redstorm-find", - 2348: "redstorm-info", - 2349: "redstorm-diag", - 2350: "psbserver", - 2351: "psrserver", - 2352: "pslserver", - 2353: "pspserver", - 2354: "psprserver", - 2355: "psdbserver", - 2356: "gxtelmd", - 2357: "unihub-server", - 2358: "futrix", - 2359: "flukeserver", - 2360: "nexstorindltd", - 2361: "tl1", - 2362: "digiman", - 2363: "mediacntrlnfsd", - 2364: "oi-2000", - 2365: "dbref", - 2366: "qip-login", - 2367: "service-ctrl", - 2368: "opentable", - 2370: "l3-hbmon", - 2372: "lanmessenger", - 2381: "compaq-https", - 2382: "ms-olap3", - 2383: "ms-olap4", - 2384: "sd-capacity", - 2385: "sd-data", - 2386: "virtualtape", - 2387: "vsamredirector", - 2388: "mynahautostart", - 2389: "ovsessionmgr", - 2390: "rsmtp", - 2391: "3com-net-mgmt", - 2392: "tacticalauth", - 2393: "ms-olap1", - 2394: "ms-olap2", - 2395: "lan900-remote", - 2396: "wusage", - 2397: "ncl", - 2398: "orbiter", - 2399: "fmpro-fdal", - 2400: "opequus-server", - 2401: "cvspserver", - 2402: "taskmaster2000", - 2403: "taskmaster2000", - 2404: "iec-104", - 2405: "trc-netpoll", - 2406: "jediserver", - 2407: "orion", - 2409: "sns-protocol", - 2410: "vrts-registry", - 2411: "netwave-ap-mgmt", - 2412: "cdn", - 2413: "orion-rmi-reg", - 2414: "beeyond", - 2415: "codima-rtp", - 2416: "rmtserver", - 2417: "composit-server", - 2418: "cas", - 2419: "attachmate-s2s", - 2420: "dslremote-mgmt", - 2421: "g-talk", - 2422: "crmsbits", - 2423: "rnrp", - 2424: "kofax-svr", - 2425: "fjitsuappmgr", - 2426: "vcmp", - 2427: "mgcp-gateway", - 2428: "ott", - 2429: "ft-role", - 2430: "venus", - 2431: "venus-se", - 2432: "codasrv", - 2433: "codasrv-se", - 2434: "pxc-epmap", - 2435: "optilogic", - 2436: "topx", - 2437: "unicontrol", - 2438: "msp", - 2439: "sybasedbsynch", - 2440: "spearway", - 2441: "pvsw-inet", - 2442: "netangel", - 2443: "powerclientcsf", - 2444: "btpp2sectrans", - 2445: "dtn1", - 2446: "bues-service", - 2447: "ovwdb", - 2448: "hpppssvr", - 2449: "ratl", - 2450: "netadmin", - 2451: "netchat", - 2452: "snifferclient", - 2453: "madge-ltd", - 2454: "indx-dds", - 2455: "wago-io-system", - 2456: "altav-remmgt", - 2457: "rapido-ip", - 2458: "griffin", - 2459: "community", - 2460: "ms-theater", - 2461: "qadmifoper", - 2462: "qadmifevent", - 2463: "lsi-raid-mgmt", - 2464: "direcpc-si", - 2465: "lbm", - 2466: "lbf", - 2467: "high-criteria", - 2468: "qip-msgd", - 2469: "mti-tcs-comm", - 2470: "taskman-port", - 2471: "seaodbc", - 2472: "c3", - 2473: "aker-cdp", - 2474: "vitalanalysis", - 2475: "ace-server", - 2476: "ace-svr-prop", - 2477: "ssm-cvs", - 2478: "ssm-cssps", - 2479: "ssm-els", - 2480: "powerexchange", - 2481: "giop", - 2482: "giop-ssl", - 2483: "ttc", - 2484: "ttc-ssl", - 2485: "netobjects1", - 2486: "netobjects2", - 2487: "pns", - 2488: "moy-corp", - 2489: "tsilb", - 2490: "qip-qdhcp", - 2491: "conclave-cpp", - 2492: "groove", - 2493: "talarian-mqs", - 2494: "bmc-ar", - 2495: "fast-rem-serv", - 2496: "dirgis", - 2497: "quaddb", - 2498: "odn-castraq", - 2499: "unicontrol", - 2500: "rtsserv", - 2501: "rtsclient", - 2502: "kentrox-prot", - 2503: "nms-dpnss", - 2504: "wlbs", - 2505: "ppcontrol", - 2506: "jbroker", - 2507: "spock", - 2508: "jdatastore", - 2509: "fjmpss", - 2510: "fjappmgrbulk", - 2511: "metastorm", - 2512: "citrixima", - 2513: "citrixadmin", - 2514: "facsys-ntp", - 2515: "facsys-router", - 2516: "maincontrol", - 2517: "call-sig-trans", - 2518: "willy", - 2519: "globmsgsvc", - 2520: "pvsw", - 2521: "adaptecmgr", - 2522: "windb", - 2523: "qke-llc-v3", - 2524: "optiwave-lm", - 2525: "ms-v-worlds", - 2526: "ema-sent-lm", - 2527: "iqserver", - 2528: "ncr-ccl", - 2529: "utsftp", - 2530: "vrcommerce", - 2531: "ito-e-gui", - 2532: "ovtopmd", - 2533: "snifferserver", - 2534: "combox-web-acc", - 2535: "madcap", - 2536: "btpp2audctr1", - 2537: "upgrade", - 2538: "vnwk-prapi", - 2539: "vsiadmin", - 2540: "lonworks", - 2541: "lonworks2", - 2542: "udrawgraph", - 2543: "reftek", - 2544: "novell-zen", - 2545: "sis-emt", - 2546: "vytalvaultbrtp", - 2547: "vytalvaultvsmp", - 2548: "vytalvaultpipe", - 2549: "ipass", - 2550: "ads", - 2551: "isg-uda-server", - 2552: "call-logging", - 2553: "efidiningport", - 2554: "vcnet-link-v10", - 2555: "compaq-wcp", - 2556: "nicetec-nmsvc", - 2557: "nicetec-mgmt", - 2558: "pclemultimedia", - 2559: "lstp", - 2560: "labrat", - 2561: "mosaixcc", - 2562: "delibo", - 2563: "cti-redwood", - 2564: "hp-3000-telnet", - 2565: "coord-svr", - 2566: "pcs-pcw", - 2567: "clp", - 2568: "spamtrap", - 2569: "sonuscallsig", - 2570: "hs-port", - 2571: "cecsvc", - 2572: "ibp", - 2573: "trustestablish", - 2574: "blockade-bpsp", - 2575: "hl7", - 2576: "tclprodebugger", - 2577: "scipticslsrvr", - 2578: "rvs-isdn-dcp", - 2579: "mpfoncl", - 2580: "tributary", - 2581: "argis-te", - 2582: "argis-ds", - 2583: "mon", - 2584: "cyaserv", - 2585: "netx-server", - 2586: "netx-agent", - 2587: "masc", - 2588: "privilege", - 2589: "quartus-tcl", - 2590: "idotdist", - 2591: "maytagshuffle", - 2592: "netrek", - 2593: "mns-mail", - 2594: "dts", - 2595: "worldfusion1", - 2596: "worldfusion2", - 2597: "homesteadglory", - 2598: "citriximaclient", - 2599: "snapd", - 2600: "hpstgmgr", - 2601: "discp-client", - 2602: "discp-server", - 2603: "servicemeter", - 2604: "nsc-ccs", - 2605: "nsc-posa", - 2606: "netmon", - 2607: "connection", - 2608: "wag-service", - 2609: "system-monitor", - 2610: "versa-tek", - 2611: "lionhead", - 2612: "qpasa-agent", - 2613: "smntubootstrap", - 2614: "neveroffline", - 2615: "firepower", - 2616: "appswitch-emp", - 2617: "cmadmin", - 2618: "priority-e-com", - 2619: "bruce", - 2620: "lpsrecommender", - 2621: "miles-apart", - 2622: "metricadbc", - 2623: "lmdp", - 2624: "aria", - 2625: "blwnkl-port", - 2626: "gbjd816", - 2627: "moshebeeri", - 2628: "dict", - 2629: "sitaraserver", - 2630: "sitaramgmt", - 2631: "sitaradir", - 2632: "irdg-post", - 2633: "interintelli", - 2634: "pk-electronics", - 2635: "backburner", - 2636: "solve", - 2637: "imdocsvc", - 2638: "sybaseanywhere", - 2639: "aminet", - 2640: "ami-control", - 2641: "hdl-srv", - 2642: "tragic", - 2643: "gte-samp", - 2644: "travsoft-ipx-t", - 2645: "novell-ipx-cmd", - 2646: "and-lm", - 2647: "syncserver", - 2648: "upsnotifyprot", - 2649: "vpsipport", - 2650: "eristwoguns", - 2651: "ebinsite", - 2652: "interpathpanel", - 2653: "sonus", - 2654: "corel-vncadmin", - 2655: "unglue", - 2656: "kana", - 2657: "sns-dispatcher", - 2658: "sns-admin", - 2659: "sns-query", - 2660: "gcmonitor", - 2661: "olhost", - 2662: "bintec-capi", - 2663: "bintec-tapi", - 2664: "patrol-mq-gm", - 2665: "patrol-mq-nm", - 2666: "extensis", - 2667: "alarm-clock-s", - 2668: "alarm-clock-c", - 2669: "toad", - 2670: "tve-announce", - 2671: "newlixreg", - 2672: "nhserver", - 2673: "firstcall42", - 2674: "ewnn", - 2675: "ttc-etap", - 2676: "simslink", - 2677: "gadgetgate1way", - 2678: "gadgetgate2way", - 2679: "syncserverssl", - 2680: "pxc-sapxom", - 2681: "mpnjsomb", - 2683: "ncdloadbalance", - 2684: "mpnjsosv", - 2685: "mpnjsocl", - 2686: "mpnjsomg", - 2687: "pq-lic-mgmt", - 2688: "md-cg-http", - 2689: "fastlynx", - 2690: "hp-nnm-data", - 2691: "itinternet", - 2692: "admins-lms", - 2694: "pwrsevent", - 2695: "vspread", - 2696: "unifyadmin", - 2697: "oce-snmp-trap", - 2698: "mck-ivpip", - 2699: "csoft-plusclnt", - 2700: "tqdata", - 2701: "sms-rcinfo", - 2702: "sms-xfer", - 2703: "sms-chat", - 2704: "sms-remctrl", - 2705: "sds-admin", - 2706: "ncdmirroring", - 2707: "emcsymapiport", - 2708: "banyan-net", - 2709: "supermon", - 2710: "sso-service", - 2711: "sso-control", - 2712: "aocp", - 2713: "raventbs", - 2714: "raventdm", - 2715: "hpstgmgr2", - 2716: "inova-ip-disco", - 2717: "pn-requester", - 2718: "pn-requester2", - 2719: "scan-change", - 2720: "wkars", - 2721: "smart-diagnose", - 2722: "proactivesrvr", - 2723: "watchdog-nt", - 2724: "qotps", - 2725: "msolap-ptp2", - 2726: "tams", - 2727: "mgcp-callagent", - 2728: "sqdr", - 2729: "tcim-control", - 2730: "nec-raidplus", - 2731: "fyre-messanger", - 2732: "g5m", - 2733: "signet-ctf", - 2734: "ccs-software", - 2735: "netiq-mc", - 2736: "radwiz-nms-srv", - 2737: "srp-feedback", - 2738: "ndl-tcp-ois-gw", - 2739: "tn-timing", - 2740: "alarm", - 2741: "tsb", - 2742: "tsb2", - 2743: "murx", - 2744: "honyaku", - 2745: "urbisnet", - 2746: "cpudpencap", - 2747: "fjippol-swrly", - 2748: "fjippol-polsvr", - 2749: "fjippol-cnsl", - 2750: "fjippol-port1", - 2751: "fjippol-port2", - 2752: "rsisysaccess", - 2753: "de-spot", - 2754: "apollo-cc", - 2755: "expresspay", - 2756: "simplement-tie", - 2757: "cnrp", - 2758: "apollo-status", - 2759: "apollo-gms", - 2760: "sabams", - 2761: "dicom-iscl", - 2762: "dicom-tls", - 2763: "desktop-dna", - 2764: "data-insurance", - 2765: "qip-audup", - 2766: "compaq-scp", - 2767: "uadtc", - 2768: "uacs", - 2769: "exce", - 2770: "veronica", - 2771: "vergencecm", - 2772: "auris", - 2773: "rbakcup1", - 2774: "rbakcup2", - 2775: "smpp", - 2776: "ridgeway1", - 2777: "ridgeway2", - 2778: "gwen-sonya", - 2779: "lbc-sync", - 2780: "lbc-control", - 2781: "whosells", - 2782: "everydayrc", - 2783: "aises", - 2784: "www-dev", - 2785: "aic-np", - 2786: "aic-oncrpc", - 2787: "piccolo", - 2788: "fryeserv", - 2789: "media-agent", - 2790: "plgproxy", - 2791: "mtport-regist", - 2792: "f5-globalsite", - 2793: "initlsmsad", - 2795: "livestats", - 2796: "ac-tech", - 2797: "esp-encap", - 2798: "tmesis-upshot", - 2799: "icon-discover", - 2800: "acc-raid", - 2801: "igcp", - 2802: "veritas-udp1", - 2803: "btprjctrl", - 2804: "dvr-esm", - 2805: "wta-wsp-s", - 2806: "cspuni", - 2807: "cspmulti", - 2808: "j-lan-p", - 2809: "corbaloc", - 2810: "netsteward", - 2811: "gsiftp", - 2812: "atmtcp", - 2813: "llm-pass", - 2814: "llm-csv", - 2815: "lbc-measure", - 2816: "lbc-watchdog", - 2817: "nmsigport", - 2818: "rmlnk", - 2819: "fc-faultnotify", - 2820: "univision", - 2821: "vrts-at-port", - 2822: "ka0wuc", - 2823: "cqg-netlan", - 2824: "cqg-netlan-1", - 2826: "slc-systemlog", - 2827: "slc-ctrlrloops", - 2828: "itm-lm", - 2829: "silkp1", - 2830: "silkp2", - 2831: "silkp3", - 2832: "silkp4", - 2833: "glishd", - 2834: "evtp", - 2835: "evtp-data", - 2836: "catalyst", - 2837: "repliweb", - 2838: "starbot", - 2839: "nmsigport", - 2840: "l3-exprt", - 2841: "l3-ranger", - 2842: "l3-hawk", - 2843: "pdnet", - 2844: "bpcp-poll", - 2845: "bpcp-trap", - 2846: "aimpp-hello", - 2847: "aimpp-port-req", - 2848: "amt-blc-port", - 2849: "fxp", - 2850: "metaconsole", - 2851: "webemshttp", - 2852: "bears-01", - 2853: "ispipes", - 2854: "infomover", - 2856: "cesdinv", - 2857: "simctlp", - 2858: "ecnp", - 2859: "activememory", - 2860: "dialpad-voice1", - 2861: "dialpad-voice2", - 2862: "ttg-protocol", - 2863: "sonardata", - 2864: "astromed-main", - 2865: "pit-vpn", - 2866: "iwlistener", - 2867: "esps-portal", - 2868: "npep-messaging", - 2869: "icslap", - 2870: "daishi", - 2871: "msi-selectplay", - 2872: "radix", - 2874: "dxmessagebase1", - 2875: "dxmessagebase2", - 2876: "sps-tunnel", - 2877: "bluelance", - 2878: "aap", - 2879: "ucentric-ds", - 2880: "synapse", - 2881: "ndsp", - 2882: "ndtp", - 2883: "ndnp", - 2884: "flashmsg", - 2885: "topflow", - 2886: "responselogic", - 2887: "aironetddp", - 2888: "spcsdlobby", - 2889: "rsom", - 2890: "cspclmulti", - 2891: "cinegrfx-elmd", - 2892: "snifferdata", - 2893: "vseconnector", - 2894: "abacus-remote", - 2895: "natuslink", - 2896: "ecovisiong6-1", - 2897: "citrix-rtmp", - 2898: "appliance-cfg", - 2899: "powergemplus", - 2900: "quicksuite", - 2901: "allstorcns", - 2902: "netaspi", - 2903: "suitcase", - 2904: "m2ua", - 2906: "caller9", - 2907: "webmethods-b2b", - 2908: "mao", - 2909: "funk-dialout", - 2910: "tdaccess", - 2911: "blockade", - 2912: "epicon", - 2913: "boosterware", - 2914: "gamelobby", - 2915: "tksocket", - 2916: "elvin-server", - 2917: "elvin-client", - 2918: "kastenchasepad", - 2919: "roboer", - 2920: "roboeda", - 2921: "cesdcdman", - 2922: "cesdcdtrn", - 2923: "wta-wsp-wtp-s", - 2924: "precise-vip", - 2926: "mobile-file-dl", - 2927: "unimobilectrl", - 2928: "redstone-cpss", - 2929: "amx-webadmin", - 2930: "amx-weblinx", - 2931: "circle-x", - 2932: "incp", - 2933: "4-tieropmgw", - 2934: "4-tieropmcli", - 2935: "qtp", - 2936: "otpatch", - 2937: "pnaconsult-lm", - 2938: "sm-pas-1", - 2939: "sm-pas-2", - 2940: "sm-pas-3", - 2941: "sm-pas-4", - 2942: "sm-pas-5", - 2943: "ttnrepository", - 2944: "megaco-h248", - 2945: "h248-binary", - 2946: "fjsvmpor", - 2947: "gpsd", - 2948: "wap-push", - 2949: "wap-pushsecure", - 2950: "esip", - 2951: "ottp", - 2952: "mpfwsas", - 2953: "ovalarmsrv", - 2954: "ovalarmsrv-cmd", - 2955: "csnotify", - 2956: "ovrimosdbman", - 2957: "jmact5", - 2958: "jmact6", - 2959: "rmopagt", - 2960: "dfoxserver", - 2961: "boldsoft-lm", - 2962: "iph-policy-cli", - 2963: "iph-policy-adm", - 2964: "bullant-srap", - 2965: "bullant-rap", - 2966: "idp-infotrieve", - 2967: "ssc-agent", - 2968: "enpp", - 2969: "essp", - 2970: "index-net", - 2971: "netclip", - 2972: "pmsm-webrctl", - 2973: "svnetworks", - 2974: "signal", - 2975: "fjmpcm", - 2976: "cns-srv-port", - 2977: "ttc-etap-ns", - 2978: "ttc-etap-ds", - 2979: "h263-video", - 2980: "wimd", - 2981: "mylxamport", - 2982: "iwb-whiteboard", - 2983: "netplan", - 2984: "hpidsadmin", - 2985: "hpidsagent", - 2986: "stonefalls", - 2987: "identify", - 2988: "hippad", - 2989: "zarkov", - 2990: "boscap", - 2991: "wkstn-mon", - 2992: "avenyo", - 2993: "veritas-vis1", - 2994: "veritas-vis2", - 2995: "idrs", - 2996: "vsixml", - 2997: "rebol", - 2998: "realsecure", - 2999: "remoteware-un", - 3000: "hbci", - 3002: "exlm-agent", - 3003: "cgms", - 3004: "csoftragent", - 3005: "geniuslm", - 3006: "ii-admin", - 3007: "lotusmtap", - 3008: "midnight-tech", - 3009: "pxc-ntfy", - 3010: "ping-pong", - 3011: "trusted-web", - 3012: "twsdss", - 3013: "gilatskysurfer", - 3014: "broker-service", - 3015: "nati-dstp", - 3016: "notify-srvr", - 3017: "event-listener", - 3018: "srvc-registry", - 3019: "resource-mgr", - 3020: "cifs", - 3021: "agriserver", - 3022: "csregagent", - 3023: "magicnotes", - 3024: "nds-sso", - 3025: "arepa-raft", - 3026: "agri-gateway", - 3027: "LiebDevMgmt-C", - 3028: "LiebDevMgmt-DM", - 3029: "LiebDevMgmt-A", - 3030: "arepa-cas", - 3031: "eppc", - 3032: "redwood-chat", - 3033: "pdb", - 3034: "osmosis-aeea", - 3035: "fjsv-gssagt", - 3036: "hagel-dump", - 3037: "hp-san-mgmt", - 3038: "santak-ups", - 3039: "cogitate", - 3040: "tomato-springs", - 3041: "di-traceware", - 3042: "journee", - 3043: "brp", - 3044: "epp", - 3045: "responsenet", - 3046: "di-ase", - 3047: "hlserver", - 3048: "pctrader", - 3049: "nsws", - 3050: "gds-db", - 3051: "galaxy-server", - 3052: "apc-3052", - 3053: "dsom-server", - 3054: "amt-cnf-prot", - 3055: "policyserver", - 3056: "cdl-server", - 3057: "goahead-fldup", - 3058: "videobeans", - 3059: "qsoft", - 3060: "interserver", - 3061: "cautcpd", - 3062: "ncacn-ip-tcp", - 3063: "ncadg-ip-udp", - 3064: "rprt", - 3065: "slinterbase", - 3066: "netattachsdmp", - 3067: "fjhpjp", - 3068: "ls3bcast", - 3069: "ls3", - 3070: "mgxswitch", - 3072: "csd-monitor", - 3073: "vcrp", - 3074: "xbox", - 3075: "orbix-locator", - 3076: "orbix-config", - 3077: "orbix-loc-ssl", - 3078: "orbix-cfg-ssl", - 3079: "lv-frontpanel", - 3080: "stm-pproc", - 3081: "tl1-lv", - 3082: "tl1-raw", - 3083: "tl1-telnet", - 3084: "itm-mccs", - 3085: "pcihreq", - 3086: "jdl-dbkitchen", - 3087: "asoki-sma", - 3088: "xdtp", - 3089: "ptk-alink", - 3090: "stss", - 3091: "1ci-smcs", - 3093: "rapidmq-center", - 3094: "rapidmq-reg", - 3095: "panasas", - 3096: "ndl-aps", - 3098: "umm-port", - 3099: "chmd", - 3100: "opcon-xps", - 3101: "hp-pxpib", - 3102: "slslavemon", - 3103: "autocuesmi", - 3104: "autocuetime", - 3105: "cardbox", - 3106: "cardbox-http", - 3107: "business", - 3108: "geolocate", - 3109: "personnel", - 3110: "sim-control", - 3111: "wsynch", - 3112: "ksysguard", - 3113: "cs-auth-svr", - 3114: "ccmad", - 3115: "mctet-master", - 3116: "mctet-gateway", - 3117: "mctet-jserv", - 3118: "pkagent", - 3119: "d2000kernel", - 3120: "d2000webserver", - 3122: "vtr-emulator", - 3123: "edix", - 3124: "beacon-port", - 3125: "a13-an", - 3127: "ctx-bridge", - 3128: "ndl-aas", - 3129: "netport-id", - 3130: "icpv2", - 3131: "netbookmark", - 3132: "ms-rule-engine", - 3133: "prism-deploy", - 3134: "ecp", - 3135: "peerbook-port", - 3136: "grubd", - 3137: "rtnt-1", - 3138: "rtnt-2", - 3139: "incognitorv", - 3140: "ariliamulti", - 3141: "vmodem", - 3142: "rdc-wh-eos", - 3143: "seaview", - 3144: "tarantella", - 3145: "csi-lfap", - 3146: "bears-02", - 3147: "rfio", - 3148: "nm-game-admin", - 3149: "nm-game-server", - 3150: "nm-asses-admin", - 3151: "nm-assessor", - 3152: "feitianrockey", - 3153: "s8-client-port", - 3154: "ccmrmi", - 3155: "jpegmpeg", - 3156: "indura", - 3157: "e3consultants", - 3158: "stvp", - 3159: "navegaweb-port", - 3160: "tip-app-server", - 3161: "doc1lm", - 3162: "sflm", - 3163: "res-sap", - 3164: "imprs", - 3165: "newgenpay", - 3166: "sossecollector", - 3167: "nowcontact", - 3168: "poweronnud", - 3169: "serverview-as", - 3170: "serverview-asn", - 3171: "serverview-gf", - 3172: "serverview-rm", - 3173: "serverview-icc", - 3174: "armi-server", - 3175: "t1-e1-over-ip", - 3176: "ars-master", - 3177: "phonex-port", - 3178: "radclientport", - 3179: "h2gf-w-2m", - 3180: "mc-brk-srv", - 3181: "bmcpatrolagent", - 3182: "bmcpatrolrnvu", - 3183: "cops-tls", - 3184: "apogeex-port", - 3185: "smpppd", - 3186: "iiw-port", - 3187: "odi-port", - 3188: "brcm-comm-port", - 3189: "pcle-infex", - 3190: "csvr-proxy", - 3191: "csvr-sslproxy", - 3192: "firemonrcc", - 3193: "spandataport", - 3194: "magbind", - 3195: "ncu-1", - 3196: "ncu-2", - 3197: "embrace-dp-s", - 3198: "embrace-dp-c", - 3199: "dmod-workspace", - 3200: "tick-port", - 3201: "cpq-tasksmart", - 3202: "intraintra", - 3203: "netwatcher-mon", - 3204: "netwatcher-db", - 3205: "isns", - 3206: "ironmail", - 3207: "vx-auth-port", - 3208: "pfu-prcallback", - 3209: "netwkpathengine", - 3210: "flamenco-proxy", - 3211: "avsecuremgmt", - 3212: "surveyinst", - 3213: "neon24x7", - 3214: "jmq-daemon-1", - 3215: "jmq-daemon-2", - 3216: "ferrari-foam", - 3217: "unite", - 3218: "smartpackets", - 3219: "wms-messenger", - 3220: "xnm-ssl", - 3221: "xnm-clear-text", - 3222: "glbp", - 3223: "digivote", - 3224: "aes-discovery", - 3225: "fcip-port", - 3226: "isi-irp", - 3227: "dwnmshttp", - 3228: "dwmsgserver", - 3229: "global-cd-port", - 3230: "sftdst-port", - 3231: "vidigo", - 3232: "mdtp", - 3233: "whisker", - 3234: "alchemy", - 3235: "mdap-port", - 3236: "apparenet-ts", - 3237: "apparenet-tps", - 3238: "apparenet-as", - 3239: "apparenet-ui", - 3240: "triomotion", - 3241: "sysorb", - 3242: "sdp-id-port", - 3243: "timelot", - 3244: "onesaf", - 3245: "vieo-fe", - 3246: "dvt-system", - 3247: "dvt-data", - 3248: "procos-lm", - 3249: "ssp", - 3250: "hicp", - 3251: "sysscanner", - 3252: "dhe", - 3253: "pda-data", - 3254: "pda-sys", - 3255: "semaphore", - 3256: "cpqrpm-agent", - 3257: "cpqrpm-server", - 3258: "ivecon-port", - 3259: "epncdp2", - 3260: "iscsi-target", - 3261: "winshadow", - 3262: "necp", - 3263: "ecolor-imager", - 3264: "ccmail", - 3265: "altav-tunnel", - 3266: "ns-cfg-server", - 3267: "ibm-dial-out", - 3268: "msft-gc", - 3269: "msft-gc-ssl", - 3270: "verismart", - 3271: "csoft-prev", - 3272: "user-manager", - 3273: "sxmp", - 3274: "ordinox-server", - 3275: "samd", - 3276: "maxim-asics", - 3277: "awg-proxy", - 3278: "lkcmserver", - 3279: "admind", - 3280: "vs-server", - 3281: "sysopt", - 3282: "datusorb", - 3283: "Apple Remote Desktop (Net Assistant)", - 3284: "4talk", - 3285: "plato", - 3286: "e-net", - 3287: "directvdata", - 3288: "cops", - 3289: "enpc", - 3290: "caps-lm", - 3291: "sah-lm", - 3292: "cart-o-rama", - 3293: "fg-fps", - 3294: "fg-gip", - 3295: "dyniplookup", - 3296: "rib-slm", - 3297: "cytel-lm", - 3298: "deskview", - 3299: "pdrncs", - 3302: "mcs-fastmail", - 3303: "opsession-clnt", - 3304: "opsession-srvr", - 3305: "odette-ftp", - 3306: "mysql", - 3307: "opsession-prxy", - 3308: "tns-server", - 3309: "tns-adv", - 3310: "dyna-access", - 3311: "mcns-tel-ret", - 3312: "appman-server", - 3313: "uorb", - 3314: "uohost", - 3315: "cdid", - 3316: "aicc-cmi", - 3317: "vsaiport", - 3318: "ssrip", - 3319: "sdt-lmd", - 3320: "officelink2000", - 3321: "vnsstr", - 3326: "sftu", - 3327: "bbars", - 3328: "egptlm", - 3329: "hp-device-disc", - 3330: "mcs-calypsoicf", - 3331: "mcs-messaging", - 3332: "mcs-mailsvr", - 3333: "dec-notes", - 3334: "directv-web", - 3335: "directv-soft", - 3336: "directv-tick", - 3337: "directv-catlg", - 3338: "anet-b", - 3339: "anet-l", - 3340: "anet-m", - 3341: "anet-h", - 3342: "webtie", - 3343: "ms-cluster-net", - 3344: "bnt-manager", - 3345: "influence", - 3346: "trnsprntproxy", - 3347: "phoenix-rpc", - 3348: "pangolin-laser", - 3349: "chevinservices", - 3350: "findviatv", - 3351: "btrieve", - 3352: "ssql", - 3353: "fatpipe", - 3354: "suitjd", - 3355: "ordinox-dbase", - 3356: "upnotifyps", - 3357: "adtech-test", - 3358: "mpsysrmsvr", - 3359: "wg-netforce", - 3360: "kv-server", - 3361: "kv-agent", - 3362: "dj-ilm", - 3363: "nati-vi-server", - 3364: "creativeserver", - 3365: "contentserver", - 3366: "creativepartnr", - 3372: "tip2", - 3373: "lavenir-lm", - 3374: "cluster-disc", - 3375: "vsnm-agent", - 3376: "cdbroker", - 3377: "cogsys-lm", - 3378: "wsicopy", - 3379: "socorfs", - 3380: "sns-channels", - 3381: "geneous", - 3382: "fujitsu-neat", - 3383: "esp-lm", - 3384: "hp-clic", - 3385: "qnxnetman", - 3386: "gprs-sig", - 3387: "backroomnet", - 3388: "cbserver", - 3389: "ms-wbt-server", - 3390: "dsc", - 3391: "savant", - 3392: "efi-lm", - 3393: "d2k-tapestry1", - 3394: "d2k-tapestry2", - 3395: "dyna-lm", - 3396: "printer-agent", - 3397: "cloanto-lm", - 3398: "mercantile", - 3399: "csms", - 3400: "csms2", - 3401: "filecast", - 3402: "fxaengine-net", - 3405: "nokia-ann-ch1", - 3406: "nokia-ann-ch2", - 3407: "ldap-admin", - 3408: "BESApi", - 3409: "networklens", - 3410: "networklenss", - 3411: "biolink-auth", - 3412: "xmlblaster", - 3413: "svnet", - 3414: "wip-port", - 3415: "bcinameservice", - 3416: "commandport", - 3417: "csvr", - 3418: "rnmap", - 3419: "softaudit", - 3420: "ifcp-port", - 3421: "bmap", - 3422: "rusb-sys-port", - 3423: "xtrm", - 3424: "xtrms", - 3425: "agps-port", - 3426: "arkivio", - 3427: "websphere-snmp", - 3428: "twcss", - 3429: "gcsp", - 3430: "ssdispatch", - 3431: "ndl-als", - 3432: "osdcp", - 3433: "opnet-smp", - 3434: "opencm", - 3435: "pacom", - 3436: "gc-config", - 3437: "autocueds", - 3438: "spiral-admin", - 3439: "hri-port", - 3440: "ans-console", - 3441: "connect-client", - 3442: "connect-server", - 3443: "ov-nnm-websrv", - 3444: "denali-server", - 3445: "monp", - 3446: "3comfaxrpc", - 3447: "directnet", - 3448: "dnc-port", - 3449: "hotu-chat", - 3450: "castorproxy", - 3451: "asam", - 3452: "sabp-signal", - 3453: "pscupd", - 3454: "mira", - 3455: "prsvp", - 3456: "vat", - 3457: "vat-control", - 3458: "d3winosfi", - 3459: "integral", - 3460: "edm-manager", - 3461: "edm-stager", - 3462: "edm-std-notify", - 3463: "edm-adm-notify", - 3464: "edm-mgr-sync", - 3465: "edm-mgr-cntrl", - 3466: "workflow", - 3467: "rcst", - 3468: "ttcmremotectrl", - 3469: "pluribus", - 3470: "jt400", - 3471: "jt400-ssl", - 3472: "jaugsremotec-1", - 3473: "jaugsremotec-2", - 3474: "ttntspauto", - 3475: "genisar-port", - 3476: "nppmp", - 3477: "ecomm", - 3478: "stun", - 3479: "twrpc", - 3480: "plethora", - 3481: "cleanerliverc", - 3482: "vulture", - 3483: "slim-devices", - 3484: "gbs-stp", - 3485: "celatalk", - 3486: "ifsf-hb-port", - 3487: "ltcudp", - 3488: "fs-rh-srv", - 3489: "dtp-dia", - 3490: "colubris", - 3491: "swr-port", - 3492: "tvdumtray-port", - 3493: "nut", - 3494: "ibm3494", - 3495: "seclayer-tcp", - 3496: "seclayer-tls", - 3497: "ipether232port", - 3498: "dashpas-port", - 3499: "sccip-media", - 3500: "rtmp-port", - 3501: "isoft-p2p", - 3502: "avinstalldisc", - 3503: "lsp-ping", - 3504: "ironstorm", - 3505: "ccmcomm", - 3506: "apc-3506", - 3507: "nesh-broker", - 3508: "interactionweb", - 3509: "vt-ssl", - 3510: "xss-port", - 3511: "webmail-2", - 3512: "aztec", - 3513: "arcpd", - 3514: "must-p2p", - 3515: "must-backplane", - 3516: "smartcard-port", - 3517: "802-11-iapp", - 3518: "artifact-msg", - 3519: "galileo", - 3520: "galileolog", - 3521: "mc3ss", - 3522: "nssocketport", - 3523: "odeumservlink", - 3524: "ecmport", - 3525: "eisport", - 3526: "starquiz-port", - 3527: "beserver-msg-q", - 3528: "jboss-iiop", - 3529: "jboss-iiop-ssl", - 3530: "gf", - 3531: "joltid", - 3532: "raven-rmp", - 3533: "raven-rdp", - 3534: "urld-port", - 3535: "ms-la", - 3536: "snac", - 3537: "ni-visa-remote", - 3538: "ibm-diradm", - 3539: "ibm-diradm-ssl", - 3540: "pnrp-port", - 3541: "voispeed-port", - 3542: "hacl-monitor", - 3543: "qftest-lookup", - 3544: "teredo", - 3545: "camac", - 3547: "symantec-sim", - 3548: "interworld", - 3549: "tellumat-nms", - 3550: "ssmpp", - 3551: "apcupsd", - 3552: "taserver", - 3553: "rbr-discovery", - 3554: "questnotify", - 3555: "razor", - 3556: "sky-transport", - 3557: "personalos-001", - 3558: "mcp-port", - 3559: "cctv-port", - 3560: "iniserve-port", - 3561: "bmc-onekey", - 3562: "sdbproxy", - 3563: "watcomdebug", - 3564: "esimport", - 3567: "dof-eps", - 3568: "dof-tunnel-sec", - 3569: "mbg-ctrl", - 3570: "mccwebsvr-port", - 3571: "megardsvr-port", - 3572: "megaregsvrport", - 3573: "tag-ups-1", - 3574: "dmaf-caster", - 3575: "ccm-port", - 3576: "cmc-port", - 3577: "config-port", - 3578: "data-port", - 3579: "ttat3lb", - 3580: "nati-svrloc", - 3581: "kfxaclicensing", - 3582: "press", - 3583: "canex-watch", - 3584: "u-dbap", - 3585: "emprise-lls", - 3586: "emprise-lsc", - 3587: "p2pgroup", - 3588: "sentinel", - 3589: "isomair", - 3590: "wv-csp-sms", - 3591: "gtrack-server", - 3592: "gtrack-ne", - 3593: "bpmd", - 3594: "mediaspace", - 3595: "shareapp", - 3596: "iw-mmogame", - 3597: "a14", - 3598: "a15", - 3599: "quasar-server", - 3600: "trap-daemon", - 3601: "visinet-gui", - 3602: "infiniswitchcl", - 3603: "int-rcv-cntrl", - 3604: "bmc-jmx-port", - 3605: "comcam-io", - 3606: "splitlock", - 3607: "precise-i3", - 3608: "trendchip-dcp", - 3609: "cpdi-pidas-cm", - 3610: "echonet", - 3611: "six-degrees", - 3612: "hp-dataprotect", - 3613: "alaris-disc", - 3614: "sigma-port", - 3615: "start-network", - 3616: "cd3o-protocol", - 3617: "sharp-server", - 3618: "aairnet-1", - 3619: "aairnet-2", - 3620: "ep-pcp", - 3621: "ep-nsp", - 3622: "ff-lr-port", - 3623: "haipe-discover", - 3624: "dist-upgrade", - 3625: "volley", - 3626: "bvcdaemon-port", - 3627: "jamserverport", - 3628: "ept-machine", - 3629: "escvpnet", - 3630: "cs-remote-db", - 3631: "cs-services", - 3632: "distcc", - 3633: "wacp", - 3634: "hlibmgr", - 3635: "sdo", - 3636: "servistaitsm", - 3637: "scservp", - 3638: "ehp-backup", - 3639: "xap-ha", - 3640: "netplay-port1", - 3641: "netplay-port2", - 3642: "juxml-port", - 3643: "audiojuggler", - 3644: "ssowatch", - 3645: "cyc", - 3646: "xss-srv-port", - 3647: "splitlock-gw", - 3648: "fjcp", - 3649: "nmmp", - 3650: "prismiq-plugin", - 3651: "xrpc-registry", - 3652: "vxcrnbuport", - 3653: "tsp", - 3654: "vaprtm", - 3655: "abatemgr", - 3656: "abatjss", - 3657: "immedianet-bcn", - 3658: "ps-ams", - 3659: "apple-sasl", - 3660: "can-nds-ssl", - 3661: "can-ferret-ssl", - 3662: "pserver", - 3663: "dtp", - 3664: "ups-engine", - 3665: "ent-engine", - 3666: "eserver-pap", - 3667: "infoexch", - 3668: "dell-rm-port", - 3669: "casanswmgmt", - 3670: "smile", - 3671: "efcp", - 3672: "lispworks-orb", - 3673: "mediavault-gui", - 3674: "wininstall-ipc", - 3675: "calltrax", - 3676: "va-pacbase", - 3677: "roverlog", - 3678: "ipr-dglt", - 3679: "Escale (Newton Dock)", - 3680: "npds-tracker", - 3681: "bts-x73", - 3682: "cas-mapi", - 3683: "bmc-ea", - 3684: "faxstfx-port", - 3685: "dsx-agent", - 3686: "tnmpv2", - 3687: "simple-push", - 3688: "simple-push-s", - 3689: "daap", - 3690: "svn", - 3691: "magaya-network", - 3692: "intelsync", - 3695: "bmc-data-coll", - 3696: "telnetcpcd", - 3697: "nw-license", - 3698: "sagectlpanel", - 3699: "kpn-icw", - 3700: "lrs-paging", - 3701: "netcelera", - 3702: "ws-discovery", - 3703: "adobeserver-3", - 3704: "adobeserver-4", - 3705: "adobeserver-5", - 3706: "rt-event", - 3707: "rt-event-s", - 3708: "sun-as-iiops", - 3709: "ca-idms", - 3710: "portgate-auth", - 3711: "edb-server2", - 3712: "sentinel-ent", - 3713: "tftps", - 3714: "delos-dms", - 3715: "anoto-rendezv", - 3716: "wv-csp-sms-cir", - 3717: "wv-csp-udp-cir", - 3718: "opus-services", - 3719: "itelserverport", - 3720: "ufastro-instr", - 3721: "xsync", - 3722: "xserveraid", - 3723: "sychrond", - 3724: "blizwow", - 3725: "na-er-tip", - 3726: "array-manager", - 3727: "e-mdu", - 3728: "e-woa", - 3729: "fksp-audit", - 3730: "client-ctrl", - 3731: "smap", - 3732: "m-wnn", - 3733: "multip-msg", - 3734: "synel-data", - 3735: "pwdis", - 3736: "rs-rmi", - 3738: "versatalk", - 3739: "launchbird-lm", - 3740: "heartbeat", - 3741: "wysdma", - 3742: "cst-port", - 3743: "ipcs-command", - 3744: "sasg", - 3745: "gw-call-port", - 3746: "linktest", - 3747: "linktest-s", - 3748: "webdata", - 3749: "cimtrak", - 3750: "cbos-ip-port", - 3751: "gprs-cube", - 3752: "vipremoteagent", - 3753: "nattyserver", - 3754: "timestenbroker", - 3755: "sas-remote-hlp", - 3756: "canon-capt", - 3757: "grf-port", - 3758: "apw-registry", - 3759: "exapt-lmgr", - 3760: "adtempusclient", - 3761: "gsakmp", - 3762: "gbs-smp", - 3763: "xo-wave", - 3764: "mni-prot-rout", - 3765: "rtraceroute", - 3767: "listmgr-port", - 3768: "rblcheckd", - 3769: "haipe-otnk", - 3770: "cindycollab", - 3771: "paging-port", - 3772: "ctp", - 3773: "ctdhercules", - 3774: "zicom", - 3775: "ispmmgr", - 3776: "dvcprov-port", - 3777: "jibe-eb", - 3778: "c-h-it-port", - 3779: "cognima", - 3780: "nnp", - 3781: "abcvoice-port", - 3782: "iso-tp0s", - 3783: "bim-pem", - 3784: "bfd-control", - 3785: "bfd-echo", - 3786: "upstriggervsw", - 3787: "fintrx", - 3788: "isrp-port", - 3789: "remotedeploy", - 3790: "quickbooksrds", - 3791: "tvnetworkvideo", - 3792: "sitewatch", - 3793: "dcsoftware", - 3794: "jaus", - 3795: "myblast", - 3796: "spw-dialer", - 3797: "idps", - 3798: "minilock", - 3799: "radius-dynauth", - 3800: "pwgpsi", - 3801: "ibm-mgr", - 3802: "vhd", - 3803: "soniqsync", - 3804: "iqnet-port", - 3805: "tcpdataserver", - 3806: "wsmlb", - 3807: "spugna", - 3808: "sun-as-iiops-ca", - 3809: "apocd", - 3810: "wlanauth", - 3811: "amp", - 3812: "neto-wol-server", - 3813: "rap-ip", - 3814: "neto-dcs", - 3815: "lansurveyorxml", - 3816: "sunlps-http", - 3817: "tapeware", - 3818: "crinis-hb", - 3819: "epl-slp", - 3820: "scp", - 3821: "pmcp", - 3822: "acp-discovery", - 3823: "acp-conduit", - 3824: "acp-policy", - 3825: "ffserver", - 3826: "warmux", - 3827: "netmpi", - 3828: "neteh", - 3829: "neteh-ext", - 3830: "cernsysmgmtagt", - 3831: "dvapps", - 3832: "xxnetserver", - 3833: "aipn-auth", - 3834: "spectardata", - 3835: "spectardb", - 3836: "markem-dcp", - 3837: "mkm-discovery", - 3838: "sos", - 3839: "amx-rms", - 3840: "flirtmitmir", - 3842: "nhci", - 3843: "quest-agent", - 3844: "rnm", - 3845: "v-one-spp", - 3846: "an-pcp", - 3847: "msfw-control", - 3848: "item", - 3849: "spw-dnspreload", - 3850: "qtms-bootstrap", - 3851: "spectraport", - 3852: "sse-app-config", - 3853: "sscan", - 3854: "stryker-com", - 3855: "opentrac", - 3856: "informer", - 3857: "trap-port", - 3858: "trap-port-mom", - 3859: "nav-port", - 3860: "sasp", - 3861: "winshadow-hd", - 3862: "giga-pocket", - 3863: "asap-udp", - 3865: "xpl", - 3866: "dzdaemon", - 3867: "dzoglserver", - 3869: "ovsam-mgmt", - 3870: "ovsam-d-agent", - 3871: "avocent-adsap", - 3872: "oem-agent", - 3873: "fagordnc", - 3874: "sixxsconfig", - 3875: "pnbscada", - 3876: "dl-agent", - 3877: "xmpcr-interface", - 3878: "fotogcad", - 3879: "appss-lm", - 3880: "igrs", - 3881: "idac", - 3882: "msdts1", - 3883: "vrpn", - 3884: "softrack-meter", - 3885: "topflow-ssl", - 3886: "nei-management", - 3887: "ciphire-data", - 3888: "ciphire-serv", - 3889: "dandv-tester", - 3890: "ndsconnect", - 3891: "rtc-pm-port", - 3892: "pcc-image-port", - 3893: "cgi-starapi", - 3894: "syam-agent", - 3895: "syam-smc", - 3896: "sdo-tls", - 3897: "sdo-ssh", - 3898: "senip", - 3899: "itv-control", - 3900: "udt-os", - 3901: "nimsh", - 3902: "nimaux", - 3903: "charsetmgr", - 3904: "omnilink-port", - 3905: "mupdate", - 3906: "topovista-data", - 3907: "imoguia-port", - 3908: "hppronetman", - 3909: "surfcontrolcpa", - 3910: "prnrequest", - 3911: "prnstatus", - 3912: "gbmt-stars", - 3913: "listcrt-port", - 3914: "listcrt-port-2", - 3915: "agcat", - 3916: "wysdmc", - 3917: "aftmux", - 3918: "pktcablemmcops", - 3919: "hyperip", - 3920: "exasoftport1", - 3921: "herodotus-net", - 3922: "sor-update", - 3923: "symb-sb-port", - 3924: "mpl-gprs-port", - 3925: "zmp", - 3926: "winport", - 3927: "natdataservice", - 3928: "netboot-pxe", - 3929: "smauth-port", - 3930: "syam-webserver", - 3931: "msr-plugin-port", - 3932: "dyn-site", - 3933: "plbserve-port", - 3934: "sunfm-port", - 3935: "sdp-portmapper", - 3936: "mailprox", - 3937: "dvbservdsc", - 3938: "dbcontrol-agent", - 3939: "aamp", - 3940: "xecp-node", - 3941: "homeportal-web", - 3942: "srdp", - 3943: "tig", - 3944: "sops", - 3945: "emcads", - 3946: "backupedge", - 3947: "ccp", - 3948: "apdap", - 3949: "drip", - 3950: "namemunge", - 3951: "pwgippfax", - 3952: "i3-sessionmgr", - 3953: "xmlink-connect", - 3954: "adrep", - 3955: "p2pcommunity", - 3956: "gvcp", - 3957: "mqe-broker", - 3958: "mqe-agent", - 3959: "treehopper", - 3960: "bess", - 3961: "proaxess", - 3962: "sbi-agent", - 3963: "thrp", - 3964: "sasggprs", - 3965: "ati-ip-to-ncpe", - 3966: "bflckmgr", - 3967: "ppsms", - 3968: "ianywhere-dbns", - 3969: "landmarks", - 3970: "lanrevagent", - 3971: "lanrevserver", - 3972: "iconp", - 3973: "progistics", - 3974: "citysearch", - 3975: "airshot", - 3976: "opswagent", - 3977: "opswmanager", - 3978: "secure-cfg-svr", - 3979: "smwan", - 3980: "acms", - 3981: "starfish", - 3982: "eis", - 3983: "eisp", - 3984: "mapper-nodemgr", - 3985: "mapper-mapethd", - 3986: "mapper-ws-ethd", - 3987: "centerline", - 3988: "dcs-config", - 3989: "bv-queryengine", - 3990: "bv-is", - 3991: "bv-smcsrv", - 3992: "bv-ds", - 3993: "bv-agent", - 3995: "iss-mgmt-ssl", - 3996: "abcsoftware", - 3997: "agentsease-db", - 3998: "dnx", - 3999: "nvcnet", - 4000: "terabase", - 4001: "newoak", - 4002: "pxc-spvr-ft", - 4003: "pxc-splr-ft", - 4004: "pxc-roid", - 4005: "pxc-pin", - 4006: "pxc-spvr", - 4007: "pxc-splr", - 4008: "netcheque", - 4009: "chimera-hwm", - 4010: "samsung-unidex", - 4011: "altserviceboot", - 4012: "pda-gate", - 4013: "acl-manager", - 4014: "taiclock", - 4015: "talarian-mcast1", - 4016: "talarian-mcast2", - 4017: "talarian-mcast3", - 4018: "talarian-mcast4", - 4019: "talarian-mcast5", - 4020: "trap", - 4021: "nexus-portal", - 4022: "dnox", - 4023: "esnm-zoning", - 4024: "tnp1-port", - 4025: "partimage", - 4026: "as-debug", - 4027: "bxp", - 4028: "dtserver-port", - 4029: "ip-qsig", - 4030: "jdmn-port", - 4031: "suucp", - 4032: "vrts-auth-port", - 4033: "sanavigator", - 4034: "ubxd", - 4035: "wap-push-http", - 4036: "wap-push-https", - 4037: "ravehd", - 4038: "fazzt-ptp", - 4039: "fazzt-admin", - 4040: "yo-main", - 4041: "houston", - 4042: "ldxp", - 4043: "nirp", - 4044: "ltp", - 4045: "npp", - 4046: "acp-proto", - 4047: "ctp-state", - 4049: "wafs", - 4050: "cisco-wafs", - 4051: "cppdp", - 4052: "interact", - 4053: "ccu-comm-1", - 4054: "ccu-comm-2", - 4055: "ccu-comm-3", - 4056: "lms", - 4057: "wfm", - 4058: "kingfisher", - 4059: "dlms-cosem", - 4060: "dsmeter-iatc", - 4061: "ice-location", - 4062: "ice-slocation", - 4063: "ice-router", - 4064: "ice-srouter", - 4065: "avanti-cdp", - 4066: "pmas", - 4067: "idp", - 4068: "ipfltbcst", - 4069: "minger", - 4070: "tripe", - 4071: "aibkup", - 4072: "zieto-sock", - 4073: "iRAPP", - 4074: "cequint-cityid", - 4075: "perimlan", - 4076: "seraph", - 4077: "ascomalarm", - 4079: "santools", - 4080: "lorica-in", - 4081: "lorica-in-sec", - 4082: "lorica-out", - 4083: "lorica-out-sec", - 4084: "fortisphere-vm", - 4086: "ftsync", - 4089: "opencore", - 4090: "omasgport", - 4091: "ewinstaller", - 4092: "ewdgs", - 4093: "pvxpluscs", - 4094: "sysrqd", - 4095: "xtgui", - 4096: "bre", - 4097: "patrolview", - 4098: "drmsfsd", - 4099: "dpcp", - 4100: "igo-incognito", - 4101: "brlp-0", - 4102: "brlp-1", - 4103: "brlp-2", - 4104: "brlp-3", - 4105: "shofar", - 4106: "synchronite", - 4107: "j-ac", - 4108: "accel", - 4109: "izm", - 4110: "g2tag", - 4111: "xgrid", - 4112: "apple-vpns-rp", - 4113: "aipn-reg", - 4114: "jomamqmonitor", - 4115: "cds", - 4116: "smartcard-tls", - 4117: "hillrserv", - 4118: "netscript", - 4119: "assuria-slm", - 4121: "e-builder", - 4122: "fprams", - 4123: "z-wave", - 4124: "tigv2", - 4125: "opsview-envoy", - 4126: "ddrepl", - 4127: "unikeypro", - 4128: "nufw", - 4129: "nuauth", - 4130: "fronet", - 4131: "stars", - 4132: "nuts-dem", - 4133: "nuts-bootp", - 4134: "nifty-hmi", - 4135: "cl-db-attach", - 4136: "cl-db-request", - 4137: "cl-db-remote", - 4138: "nettest", - 4139: "thrtx", - 4140: "cedros-fds", - 4141: "oirtgsvc", - 4142: "oidocsvc", - 4143: "oidsr", - 4145: "vvr-control", - 4146: "tgcconnect", - 4147: "vrxpservman", - 4148: "hhb-handheld", - 4149: "agslb", - 4150: "PowerAlert-nsa", - 4151: "menandmice-noh", - 4152: "idig-mux", - 4153: "mbl-battd", - 4154: "atlinks", - 4155: "bzr", - 4156: "stat-results", - 4157: "stat-scanner", - 4158: "stat-cc", - 4159: "nss", - 4160: "jini-discovery", - 4161: "omscontact", - 4162: "omstopology", - 4163: "silverpeakpeer", - 4164: "silverpeakcomm", - 4165: "altcp", - 4166: "joost", - 4167: "ddgn", - 4168: "pslicser", - 4169: "iadt-disc", - 4172: "pcoip", - 4173: "mma-discovery", - 4174: "sm-disc", - 4177: "wello", - 4178: "storman", - 4179: "MaxumSP", - 4180: "httpx", - 4181: "macbak", - 4182: "pcptcpservice", - 4183: "cyborgnet", - 4184: "universe-suite", - 4185: "wcpp", - 4188: "vatata", - 4191: "dsmipv6", - 4192: "azeti-bd", - 4197: "hctl", - 4199: "eims-admin", - 4300: "corelccam", - 4301: "d-data", - 4302: "d-data-control", - 4303: "srcp", - 4304: "owserver", - 4305: "batman", - 4306: "pinghgl", - 4307: "trueconf", - 4308: "compx-lockview", - 4309: "dserver", - 4310: "mirrtex", - 4320: "fdt-rcatp", - 4321: "rwhois", - 4322: "trim-event", - 4323: "trim-ice", - 4325: "geognosisman", - 4326: "geognosis", - 4327: "jaxer-web", - 4328: "jaxer-manager", - 4333: "ahsp", - 4340: "gaia", - 4341: "lisp-data", - 4342: "lisp-control", - 4343: "unicall", - 4344: "vinainstall", - 4345: "m4-network-as", - 4346: "elanlm", - 4347: "lansurveyor", - 4348: "itose", - 4349: "fsportmap", - 4350: "net-device", - 4351: "plcy-net-svcs", - 4352: "pjlink", - 4353: "f5-iquery", - 4354: "qsnet-trans", - 4355: "qsnet-workst", - 4356: "qsnet-assist", - 4357: "qsnet-cond", - 4358: "qsnet-nucl", - 4359: "omabcastltkm", - 4361: "nacnl", - 4362: "afore-vdp-disc", - 4366: "shadowstream", - 4368: "wxbrief", - 4369: "epmd", - 4370: "elpro-tunnel", - 4371: "l2c-disc", - 4372: "l2c-data", - 4373: "remctl", - 4375: "tolteces", - 4376: "bip", - 4377: "cp-spxsvr", - 4378: "cp-spxdpy", - 4379: "ctdb", - 4389: "xandros-cms", - 4390: "wiegand", - 4394: "apwi-disc", - 4395: "omnivisionesx", - 4400: "ds-srv", - 4401: "ds-srvr", - 4402: "ds-clnt", - 4403: "ds-user", - 4404: "ds-admin", - 4405: "ds-mail", - 4406: "ds-slp", - 4412: "smallchat", - 4413: "avi-nms-disc", - 4416: "pjj-player-disc", - 4418: "axysbridge", - 4420: "nvm-express", - 4425: "netrockey6", - 4426: "beacon-port-2", - 4430: "rsqlserver", - 4432: "l-acoustics", - 4441: "netblox", - 4442: "saris", - 4443: "pharos", - 4444: "krb524", - 4445: "upnotifyp", - 4446: "n1-fwp", - 4447: "n1-rmgmt", - 4448: "asc-slmd", - 4449: "privatewire", - 4450: "camp", - 4451: "ctisystemmsg", - 4452: "ctiprogramload", - 4453: "nssalertmgr", - 4454: "nssagentmgr", - 4455: "prchat-user", - 4456: "prchat-server", - 4457: "prRegister", - 4458: "mcp", - 4484: "hpssmgmt", - 4486: "icms", - 4488: "awacs-ice", - 4500: "ipsec-nat-t", - 4534: "armagetronad", - 4535: "ehs", - 4536: "ehs-ssl", - 4537: "wssauthsvc", - 4538: "swx-gate", - 4545: "worldscores", - 4546: "sf-lm", - 4547: "lanner-lm", - 4548: "synchromesh", - 4549: "aegate", - 4550: "gds-adppiw-db", - 4551: "ieee-mih", - 4552: "menandmice-mon", - 4554: "msfrs", - 4555: "rsip", - 4556: "dtn-bundle", - 4557: "mtcevrunqss", - 4558: "mtcevrunqman", - 4559: "hylafax", - 4566: "kwtc", - 4567: "tram", - 4568: "bmc-reporting", - 4569: "iax", - 4591: "l3t-at-an", - 4592: "hrpd-ith-at-an", - 4593: "ipt-anri-anri", - 4594: "ias-session", - 4595: "ias-paging", - 4596: "ias-neighbor", - 4597: "a21-an-1xbs", - 4598: "a16-an-an", - 4599: "a17-an-an", - 4600: "piranha1", - 4601: "piranha2", - 4621: "ventoso", - 4658: "playsta2-app", - 4659: "playsta2-lob", - 4660: "smaclmgr", - 4661: "kar2ouche", - 4662: "oms", - 4663: "noteit", - 4664: "ems", - 4665: "contclientms", - 4666: "eportcomm", - 4667: "mmacomm", - 4668: "mmaeds", - 4669: "eportcommdata", - 4670: "light", - 4671: "acter", - 4672: "rfa", - 4673: "cxws", - 4674: "appiq-mgmt", - 4675: "dhct-status", - 4676: "dhct-alerts", - 4677: "bcs", - 4678: "traversal", - 4679: "mgesupervision", - 4680: "mgemanagement", - 4681: "parliant", - 4682: "finisar", - 4683: "spike", - 4684: "rfid-rp1", - 4685: "autopac", - 4686: "msp-os", - 4687: "nst", - 4688: "mobile-p2p", - 4689: "altovacentral", - 4690: "prelude", - 4691: "mtn", - 4692: "conspiracy", - 4700: "netxms-agent", - 4701: "netxms-mgmt", - 4702: "netxms-sync", - 4711: "trinity-dist", - 4725: "truckstar", - 4726: "a26-fap-fgw", - 4727: "fcis-disc", - 4728: "capmux", - 4729: "gsmtap", - 4730: "gearman", - 4732: "ohmtrigger", - 4737: "ipdr-sp", - 4738: "solera-lpn", - 4739: "ipfix", - 4740: "ipfixs", - 4741: "lumimgrd", - 4742: "sicct-sdp", - 4743: "openhpid", - 4744: "ifsp", - 4745: "fmp", - 4746: "intelliadm-disc", - 4747: "buschtrommel", - 4749: "profilemac", - 4750: "ssad", - 4751: "spocp", - 4752: "snap", - 4753: "simon-disc", - 4754: "gre-in-udp", - 4755: "gre-udp-dtls", - 4784: "bfd-multi-ctl", - 4785: "cncp", - 4789: "vxlan", - 4790: "vxlan-gpe", - 4791: "roce", - 4800: "iims", - 4801: "iwec", - 4802: "ilss", - 4803: "notateit-disc", - 4804: "aja-ntv4-disc", - 4827: "htcp", - 4837: "varadero-0", - 4838: "varadero-1", - 4839: "varadero-2", - 4840: "opcua-udp", - 4841: "quosa", - 4842: "gw-asv", - 4843: "opcua-tls", - 4844: "gw-log", - 4845: "wcr-remlib", - 4846: "contamac-icm", - 4847: "wfc", - 4848: "appserv-http", - 4849: "appserv-https", - 4850: "sun-as-nodeagt", - 4851: "derby-repli", - 4867: "unify-debug", - 4868: "phrelay", - 4869: "phrelaydbg", - 4870: "cc-tracking", - 4871: "wired", - 4876: "tritium-can", - 4877: "lmcs", - 4878: "inst-discovery", - 4881: "socp-t", - 4882: "socp-c", - 4884: "hivestor", - 4885: "abbs", - 4894: "lyskom", - 4899: "radmin-port", - 4900: "hfcs", - 4914: "bones", - 4936: "an-signaling", - 4937: "atsc-mh-ssc", - 4940: "eq-office-4940", - 4941: "eq-office-4941", - 4942: "eq-office-4942", - 4949: "munin", - 4950: "sybasesrvmon", - 4951: "pwgwims", - 4952: "sagxtsds", - 4969: "ccss-qmm", - 4970: "ccss-qsm", - 4980: "ctxs-vpp", - 4986: "mrip", - 4987: "smar-se-port1", - 4988: "smar-se-port2", - 4989: "parallel", - 4990: "busycal", - 4991: "vrt", - 4999: "hfcs-manager", - 5000: "commplex-main", - 5001: "commplex-link", - 5002: "rfe", - 5003: "fmpro-internal", - 5004: "avt-profile-1", - 5005: "avt-profile-2", - 5006: "wsm-server", - 5007: "wsm-server-ssl", - 5008: "synapsis-edge", - 5009: "winfs", - 5010: "telelpathstart", - 5011: "telelpathattack", - 5012: "nsp", - 5013: "fmpro-v6", - 5014: "onpsocket", - 5020: "zenginkyo-1", - 5021: "zenginkyo-2", - 5022: "mice", - 5023: "htuilsrv", - 5024: "scpi-telnet", - 5025: "scpi-raw", - 5026: "strexec-d", - 5027: "strexec-s", - 5029: "infobright", - 5030: "surfpass", - 5031: "dmp", - 5042: "asnaacceler8db", - 5043: "swxadmin", - 5044: "lxi-evntsvc", - 5046: "vpm-udp", - 5047: "iscape", - 5049: "ivocalize", - 5050: "mmcc", - 5051: "ita-agent", - 5052: "ita-manager", - 5053: "rlm-disc", - 5055: "unot", - 5056: "intecom-ps1", - 5057: "intecom-ps2", - 5058: "locus-disc", - 5059: "sds", - 5060: "sip", - 5061: "sips", - 5062: "na-localise", - 5064: "ca-1", - 5065: "ca-2", - 5066: "stanag-5066", - 5067: "authentx", - 5069: "i-net-2000-npr", - 5070: "vtsas", - 5071: "powerschool", - 5072: "ayiya", - 5073: "tag-pm", - 5074: "alesquery", - 5078: "pixelpusher", - 5079: "cp-spxrpts", - 5080: "onscreen", - 5081: "sdl-ets", - 5082: "qcp", - 5083: "qfp", - 5084: "llrp", - 5085: "encrypted-llrp", - 5092: "magpie", - 5093: "sentinel-lm", - 5094: "hart-ip", - 5099: "sentlm-srv2srv", - 5100: "socalia", - 5101: "talarian-udp", - 5102: "oms-nonsecure", - 5104: "tinymessage", - 5105: "hughes-ap", - 5111: "taep-as-svc", - 5112: "pm-cmdsvr", - 5116: "emb-proj-cmd", - 5120: "barracuda-bbs", - 5133: "nbt-pc", - 5136: "minotaur-sa", - 5137: "ctsd", - 5145: "rmonitor-secure", - 5150: "atmp", - 5151: "esri-sde", - 5152: "sde-discovery", - 5154: "bzflag", - 5155: "asctrl-agent", - 5164: "vpa-disc", - 5165: "ife-icorp", - 5166: "winpcs", - 5167: "scte104", - 5168: "scte30", - 5190: "aol", - 5191: "aol-1", - 5192: "aol-2", - 5193: "aol-3", - 5200: "targus-getdata", - 5201: "targus-getdata1", - 5202: "targus-getdata2", - 5203: "targus-getdata3", - 5223: "hpvirtgrp", - 5224: "hpvirtctrl", - 5225: "hp-server", - 5226: "hp-status", - 5227: "perfd", - 5234: "eenet", - 5235: "galaxy-network", - 5236: "padl2sim", - 5237: "mnet-discovery", - 5245: "downtools-disc", - 5246: "capwap-control", - 5247: "capwap-data", - 5248: "caacws", - 5249: "caaclang2", - 5250: "soagateway", - 5251: "caevms", - 5252: "movaz-ssc", - 5264: "3com-njack-1", - 5265: "3com-njack-2", - 5270: "cartographerxmp", - 5271: "cuelink-disc", - 5272: "pk", - 5282: "transmit-port", - 5298: "presence", - 5299: "nlg-data", - 5300: "hacl-hb", - 5301: "hacl-gs", - 5302: "hacl-cfg", - 5303: "hacl-probe", - 5304: "hacl-local", - 5305: "hacl-test", - 5306: "sun-mc-grp", - 5307: "sco-aip", - 5308: "cfengine", - 5309: "jprinter", - 5310: "outlaws", - 5312: "permabit-cs", - 5313: "rrdp", - 5314: "opalis-rbt-ipc", - 5315: "hacl-poll", - 5343: "kfserver", - 5344: "xkotodrcp", - 5349: "stuns", - 5350: "pcp-multicast", - 5351: "pcp", - 5352: "dns-llq", - 5353: "mdns", - 5354: "mdnsresponder", - 5355: "llmnr", - 5356: "ms-smlbiz", - 5357: "wsdapi", - 5358: "wsdapi-s", - 5359: "ms-alerter", - 5360: "ms-sideshow", - 5361: "ms-s-sideshow", - 5362: "serverwsd2", - 5363: "net-projection", - 5364: "kdnet", - 5397: "stresstester", - 5398: "elektron-admin", - 5399: "securitychase", - 5400: "excerpt", - 5401: "excerpts", - 5402: "mftp", - 5403: "hpoms-ci-lstn", - 5404: "hpoms-dps-lstn", - 5405: "netsupport", - 5406: "systemics-sox", - 5407: "foresyte-clear", - 5408: "foresyte-sec", - 5409: "salient-dtasrv", - 5410: "salient-usrmgr", - 5411: "actnet", - 5412: "continuus", - 5413: "wwiotalk", - 5414: "statusd", - 5415: "ns-server", - 5416: "sns-gateway", - 5417: "sns-agent", - 5418: "mcntp", - 5419: "dj-ice", - 5420: "cylink-c", - 5421: "netsupport2", - 5422: "salient-mux", - 5423: "virtualuser", - 5424: "beyond-remote", - 5425: "br-channel", - 5426: "devbasic", - 5427: "sco-peer-tta", - 5428: "telaconsole", - 5429: "base", - 5430: "radec-corp", - 5431: "park-agent", - 5432: "postgresql", - 5433: "pyrrho", - 5434: "sgi-arrayd", - 5435: "sceanics", - 5436: "pmip6-cntl", - 5437: "pmip6-data", - 5443: "spss", - 5450: "tiepie-disc", - 5453: "surebox", - 5454: "apc-5454", - 5455: "apc-5455", - 5456: "apc-5456", - 5461: "silkmeter", - 5462: "ttl-publisher", - 5463: "ttlpriceproxy", - 5464: "quailnet", - 5465: "netops-broker", - 5474: "apsolab-rpc", - 5500: "fcp-addr-srvr1", - 5501: "fcp-addr-srvr2", - 5502: "fcp-srvr-inst1", - 5503: "fcp-srvr-inst2", - 5504: "fcp-cics-gw1", - 5505: "checkoutdb", - 5506: "amc", - 5553: "sgi-eventmond", - 5554: "sgi-esphttp", - 5555: "personal-agent", - 5556: "freeciv", - 5567: "dof-dps-mc-sec", - 5568: "sdt", - 5569: "rdmnet-device", - 5573: "sdmmp", - 5580: "tmosms0", - 5581: "tmosms1", - 5582: "fac-restore", - 5583: "tmo-icon-sync", - 5584: "bis-web", - 5585: "bis-sync", - 5597: "ininmessaging", - 5598: "mctfeed", - 5599: "esinstall", - 5600: "esmmanager", - 5601: "esmagent", - 5602: "a1-msc", - 5603: "a1-bs", - 5604: "a3-sdunode", - 5605: "a4-sdunode", - 5627: "ninaf", - 5628: "htrust", - 5629: "symantec-sfdb", - 5630: "precise-comm", - 5631: "pcanywheredata", - 5632: "pcanywherestat", - 5633: "beorl", - 5634: "xprtld", - 5670: "zre-disc", - 5671: "amqps", - 5672: "amqp", - 5673: "jms", - 5674: "hyperscsi-port", - 5675: "v5ua", - 5676: "raadmin", - 5677: "questdb2-lnchr", - 5678: "rrac", - 5679: "dccm", - 5680: "auriga-router", - 5681: "ncxcp", - 5682: "brightcore", - 5683: "coap", - 5684: "coaps", - 5687: "gog-multiplayer", - 5688: "ggz", - 5689: "qmvideo", - 5713: "proshareaudio", - 5714: "prosharevideo", - 5715: "prosharedata", - 5716: "prosharerequest", - 5717: "prosharenotify", - 5718: "dpm", - 5719: "dpm-agent", - 5720: "ms-licensing", - 5721: "dtpt", - 5722: "msdfsr", - 5723: "omhs", - 5724: "omsdk", - 5728: "io-dist-group", - 5729: "openmail", - 5730: "unieng", - 5741: "ida-discover1", - 5742: "ida-discover2", - 5743: "watchdoc-pod", - 5744: "watchdoc", - 5745: "fcopy-server", - 5746: "fcopys-server", - 5747: "tunatic", - 5748: "tunalyzer", - 5750: "rscd", - 5755: "openmailg", - 5757: "x500ms", - 5766: "openmailns", - 5767: "s-openmail", - 5768: "openmailpxy", - 5769: "spramsca", - 5770: "spramsd", - 5771: "netagent", - 5777: "dali-port", - 5781: "3par-evts", - 5782: "3par-mgmt", - 5783: "3par-mgmt-ssl", - 5784: "ibar", - 5785: "3par-rcopy", - 5786: "cisco-redu", - 5787: "waascluster", - 5793: "xtreamx", - 5794: "spdp", - 5813: "icmpd", - 5814: "spt-automation", - 5859: "wherehoo", - 5863: "ppsuitemsg", - 5900: "rfb", - 5910: "cm", - 5911: "cpdlc", - 5912: "fis", - 5913: "ads-c", - 5963: "indy", - 5968: "mppolicy-v5", - 5969: "mppolicy-mgr", - 5984: "couchdb", - 5985: "wsman", - 5986: "wsmans", - 5987: "wbem-rmi", - 5988: "wbem-http", - 5989: "wbem-https", - 5990: "wbem-exp-https", - 5991: "nuxsl", - 5992: "consul-insight", - 5999: "cvsup", - 6064: "ndl-ahp-svc", - 6065: "winpharaoh", - 6066: "ewctsp", - 6069: "trip", - 6070: "messageasap", - 6071: "ssdtp", - 6072: "diagnose-proc", - 6073: "directplay8", - 6074: "max", - 6080: "gue", - 6081: "geneve", - 6082: "p25cai", - 6083: "miami-bcast", - 6085: "konspire2b", - 6086: "pdtp", - 6087: "ldss", - 6088: "doglms-notify", - 6100: "synchronet-db", - 6101: "synchronet-rtc", - 6102: "synchronet-upd", - 6103: "rets", - 6104: "dbdb", - 6105: "primaserver", - 6106: "mpsserver", - 6107: "etc-control", - 6108: "sercomm-scadmin", - 6109: "globecast-id", - 6110: "softcm", - 6111: "spc", - 6112: "dtspcd", - 6118: "tipc", - 6122: "bex-webadmin", - 6123: "backup-express", - 6124: "pnbs", - 6133: "nbt-wol", - 6140: "pulsonixnls", - 6141: "meta-corp", - 6142: "aspentec-lm", - 6143: "watershed-lm", - 6144: "statsci1-lm", - 6145: "statsci2-lm", - 6146: "lonewolf-lm", - 6147: "montage-lm", - 6148: "ricardo-lm", - 6149: "tal-pod", - 6160: "ecmp-data", - 6161: "patrol-ism", - 6162: "patrol-coll", - 6163: "pscribe", - 6200: "lm-x", - 6201: "thermo-calc", - 6209: "qmtps", - 6222: "radmind", - 6241: "jeol-nsddp-1", - 6242: "jeol-nsddp-2", - 6243: "jeol-nsddp-3", - 6244: "jeol-nsddp-4", - 6251: "tl1-raw-ssl", - 6252: "tl1-ssh", - 6253: "crip", - 6268: "grid", - 6269: "grid-alt", - 6300: "bmc-grx", - 6301: "bmc-ctd-ldap", - 6306: "ufmp", - 6315: "scup-disc", - 6316: "abb-escp", - 6317: "nav-data", - 6320: "repsvc", - 6321: "emp-server1", - 6322: "emp-server2", - 6324: "hrd-ns-disc", - 6343: "sflow", - 6346: "gnutella-svc", - 6347: "gnutella-rtr", - 6350: "adap", - 6355: "pmcs", - 6360: "metaedit-mu", - 6363: "ndn", - 6370: "metaedit-se", - 6382: "metatude-mds", - 6389: "clariion-evr01", - 6390: "metaedit-ws", - 6417: "faxcomservice", - 6419: "svdrp-disc", - 6420: "nim-vdrshell", - 6421: "nim-wan", - 6443: "sun-sr-https", - 6444: "sge-qmaster", - 6445: "sge-execd", - 6446: "mysql-proxy", - 6455: "skip-cert-recv", - 6456: "skip-cert-send", - 6464: "ieee11073-20701", - 6471: "lvision-lm", - 6480: "sun-sr-http", - 6481: "servicetags", - 6482: "ldoms-mgmt", - 6483: "SunVTS-RMI", - 6484: "sun-sr-jms", - 6485: "sun-sr-iiop", - 6486: "sun-sr-iiops", - 6487: "sun-sr-iiop-aut", - 6488: "sun-sr-jmx", - 6489: "sun-sr-admin", - 6500: "boks", - 6501: "boks-servc", - 6502: "boks-servm", - 6503: "boks-clntd", - 6505: "badm-priv", - 6506: "badm-pub", - 6507: "bdir-priv", - 6508: "bdir-pub", - 6509: "mgcs-mfp-port", - 6510: "mcer-port", - 6511: "dccp-udp", - 6514: "syslog-tls", - 6515: "elipse-rec", - 6543: "lds-distrib", - 6544: "lds-dump", - 6547: "apc-6547", - 6548: "apc-6548", - 6549: "apc-6549", - 6550: "fg-sysupdate", - 6551: "sum", - 6558: "xdsxdm", - 6566: "sane-port", - 6568: "rp-reputation", - 6579: "affiliate", - 6580: "parsec-master", - 6581: "parsec-peer", - 6582: "parsec-game", - 6583: "joaJewelSuite", - 6619: "odette-ftps", - 6620: "kftp-data", - 6621: "kftp", - 6622: "mcftp", - 6623: "ktelnet", - 6626: "wago-service", - 6627: "nexgen", - 6628: "afesc-mc", - 6629: "nexgen-aux", - 6633: "cisco-vpath-tun", - 6634: "mpls-pm", - 6635: "mpls-udp", - 6636: "mpls-udp-dtls", - 6653: "openflow", - 6657: "palcom-disc", - 6670: "vocaltec-gold", - 6671: "p4p-portal", - 6672: "vision-server", - 6673: "vision-elmd", - 6678: "vfbp-disc", - 6679: "osaut", - 6689: "tsa", - 6696: "babel", - 6701: "kti-icad-srvr", - 6702: "e-design-net", - 6703: "e-design-web", - 6714: "ibprotocol", - 6715: "fibotrader-com", - 6767: "bmc-perf-agent", - 6768: "bmc-perf-mgrd", - 6769: "adi-gxp-srvprt", - 6770: "plysrv-http", - 6771: "plysrv-https", - 6784: "bfd-lag", - 6785: "dgpf-exchg", - 6786: "smc-jmx", - 6787: "smc-admin", - 6788: "smc-http", - 6790: "hnmp", - 6791: "hnm", - 6801: "acnet", - 6831: "ambit-lm", - 6841: "netmo-default", - 6842: "netmo-http", - 6850: "iccrushmore", - 6868: "acctopus-st", - 6888: "muse", - 6935: "ethoscan", - 6936: "xsmsvc", - 6946: "bioserver", - 6951: "otlp", - 6961: "jmact3", - 6962: "jmevt2", - 6963: "swismgr1", - 6964: "swismgr2", - 6965: "swistrap", - 6966: "swispol", - 6969: "acmsoda", - 6997: "MobilitySrv", - 6998: "iatp-highpri", - 6999: "iatp-normalpri", - 7000: "afs3-fileserver", - 7001: "afs3-callback", - 7002: "afs3-prserver", - 7003: "afs3-vlserver", - 7004: "afs3-kaserver", - 7005: "afs3-volser", - 7006: "afs3-errors", - 7007: "afs3-bos", - 7008: "afs3-update", - 7009: "afs3-rmtsys", - 7010: "ups-onlinet", - 7011: "talon-disc", - 7012: "talon-engine", - 7013: "microtalon-dis", - 7014: "microtalon-com", - 7015: "talon-webserver", - 7016: "spg", - 7017: "grasp", - 7019: "doceri-view", - 7020: "dpserve", - 7021: "dpserveadmin", - 7022: "ctdp", - 7023: "ct2nmcs", - 7024: "vmsvc", - 7025: "vmsvc-2", - 7030: "op-probe", - 7040: "quest-disc", - 7070: "arcp", - 7071: "iwg1", - 7080: "empowerid", - 7088: "zixi-transport", - 7095: "jdp-disc", - 7099: "lazy-ptop", - 7100: "font-service", - 7101: "elcn", - 7107: "aes-x170", - 7121: "virprot-lm", - 7128: "scenidm", - 7129: "scenccs", - 7161: "cabsm-comm", - 7162: "caistoragemgr", - 7163: "cacsambroker", - 7164: "fsr", - 7165: "doc-server", - 7166: "aruba-server", - 7169: "ccag-pib", - 7170: "nsrp", - 7171: "drm-production", - 7174: "clutild", - 7181: "janus-disc", - 7200: "fodms", - 7201: "dlip", - 7227: "ramp", - 7235: "aspcoordination", - 7244: "frc-hicp-disc", - 7262: "cnap", - 7272: "watchme-7272", - 7273: "oma-rlp", - 7274: "oma-rlp-s", - 7275: "oma-ulp", - 7276: "oma-ilp", - 7277: "oma-ilp-s", - 7278: "oma-dcdocbs", - 7279: "ctxlic", - 7280: "itactionserver1", - 7281: "itactionserver2", - 7282: "mzca-alert", - 7365: "lcm-server", - 7391: "mindfilesys", - 7392: "mrssrendezvous", - 7393: "nfoldman", - 7394: "fse", - 7395: "winqedit", - 7397: "hexarc", - 7400: "rtps-discovery", - 7401: "rtps-dd-ut", - 7402: "rtps-dd-mt", - 7410: "ionixnetmon", - 7411: "daqstream", - 7421: "mtportmon", - 7426: "pmdmgr", - 7427: "oveadmgr", - 7428: "ovladmgr", - 7429: "opi-sock", - 7430: "xmpv7", - 7431: "pmd", - 7437: "faximum", - 7443: "oracleas-https", - 7473: "rise", - 7491: "telops-lmd", - 7500: "silhouette", - 7501: "ovbus", - 7510: "ovhpas", - 7511: "pafec-lm", - 7542: "saratoga", - 7543: "atul", - 7544: "nta-ds", - 7545: "nta-us", - 7546: "cfs", - 7547: "cwmp", - 7548: "tidp", - 7549: "nls-tl", - 7550: "cloudsignaling", - 7560: "sncp", - 7566: "vsi-omega", - 7570: "aries-kfinder", - 7574: "coherence-disc", - 7588: "sun-lm", - 7606: "mipi-debug", - 7624: "indi", - 7627: "soap-http", - 7628: "zen-pawn", - 7629: "xdas", - 7633: "pmdfmgt", - 7648: "cuseeme", - 7674: "imqtunnels", - 7675: "imqtunnel", - 7676: "imqbrokerd", - 7677: "sun-user-https", - 7680: "pando-pub", - 7689: "collaber", - 7697: "klio", - 7707: "sync-em7", - 7708: "scinet", - 7720: "medimageportal", - 7724: "nsdeepfreezectl", - 7725: "nitrogen", - 7726: "freezexservice", - 7727: "trident-data", - 7728: "osvr", - 7734: "smip", - 7738: "aiagent", - 7741: "scriptview", - 7743: "sstp-1", - 7744: "raqmon-pdu", - 7747: "prgp", - 7777: "cbt", - 7778: "interwise", - 7779: "vstat", - 7781: "accu-lmgr", - 7784: "s-bfd", - 7786: "minivend", - 7787: "popup-reminders", - 7789: "office-tools", - 7794: "q3ade", - 7797: "pnet-conn", - 7798: "pnet-enc", - 7799: "altbsdp", - 7800: "asr", - 7801: "ssp-client", - 7802: "vns-tp", - 7810: "rbt-wanopt", - 7845: "apc-7845", - 7846: "apc-7846", - 7872: "mipv6tls", - 7880: "pss", - 7887: "ubroker", - 7900: "mevent", - 7901: "tnos-sp", - 7902: "tnos-dp", - 7903: "tnos-dps", - 7913: "qo-secure", - 7932: "t2-drm", - 7933: "t2-brm", - 7962: "generalsync", - 7967: "supercell", - 7979: "micromuse-ncps", - 7980: "quest-vista", - 7982: "sossd-disc", - 7998: "usicontentpush", - 7999: "irdmi2", - 8000: "irdmi", - 8001: "vcom-tunnel", - 8002: "teradataordbms", - 8003: "mcreport", - 8005: "mxi", - 8006: "wpl-disc", - 8007: "warppipe", - 8008: "http-alt", - 8019: "qbdb", - 8020: "intu-ec-svcdisc", - 8021: "intu-ec-client", - 8022: "oa-system", - 8025: "ca-audit-da", - 8026: "ca-audit-ds", - 8032: "pro-ed", - 8033: "mindprint", - 8034: "vantronix-mgmt", - 8040: "ampify", - 8041: "enguity-xccetp", - 8052: "senomix01", - 8053: "senomix02", - 8054: "senomix03", - 8055: "senomix04", - 8056: "senomix05", - 8057: "senomix06", - 8058: "senomix07", - 8059: "senomix08", - 8060: "aero", - 8074: "gadugadu", - 8080: "http-alt", - 8081: "sunproxyadmin", - 8082: "us-cli", - 8083: "us-srv", - 8086: "d-s-n", - 8087: "simplifymedia", - 8088: "radan-http", - 8097: "sac", - 8100: "xprint-server", - 8115: "mtl8000-matrix", - 8116: "cp-cluster", - 8118: "privoxy", - 8121: "apollo-data", - 8122: "apollo-admin", - 8128: "paycash-online", - 8129: "paycash-wbp", - 8130: "indigo-vrmi", - 8131: "indigo-vbcp", - 8132: "dbabble", - 8148: "isdd", - 8149: "eor-game", - 8160: "patrol", - 8161: "patrol-snmp", - 8182: "vmware-fdm", - 8184: "itach", - 8192: "spytechphone", - 8194: "blp1", - 8195: "blp2", - 8199: "vvr-data", - 8200: "trivnet1", - 8201: "trivnet2", - 8202: "aesop", - 8204: "lm-perfworks", - 8205: "lm-instmgr", - 8206: "lm-dta", - 8207: "lm-sserver", - 8208: "lm-webwatcher", - 8230: "rexecj", - 8231: "hncp-udp-port", - 8232: "hncp-dtls-port", - 8243: "synapse-nhttps", - 8276: "pando-sec", - 8280: "synapse-nhttp", - 8282: "libelle-disc", - 8292: "blp3", - 8294: "blp4", - 8300: "tmi", - 8301: "amberon", - 8320: "tnp-discover", - 8321: "tnp", - 8322: "garmin-marine", - 8351: "server-find", - 8376: "cruise-enum", - 8377: "cruise-swroute", - 8378: "cruise-config", - 8379: "cruise-diags", - 8380: "cruise-update", - 8383: "m2mservices", - 8384: "marathontp", - 8400: "cvd", - 8401: "sabarsd", - 8402: "abarsd", - 8403: "admind", - 8416: "espeech", - 8417: "espeech-rtp", - 8442: "cybro-a-bus", - 8443: "pcsync-https", - 8444: "pcsync-http", - 8445: "copy-disc", - 8450: "npmp", - 8472: "otv", - 8473: "vp2p", - 8474: "noteshare", - 8500: "fmtp", - 8501: "cmtp-av", - 8503: "lsp-self-ping", - 8554: "rtsp-alt", - 8555: "d-fence", - 8567: "dof-tunnel", - 8600: "asterix", - 8609: "canon-cpp-disc", - 8610: "canon-mfnp", - 8611: "canon-bjnp1", - 8612: "canon-bjnp2", - 8613: "canon-bjnp3", - 8614: "canon-bjnp4", - 8675: "msi-cps-rm-disc", - 8686: "sun-as-jmxrmi", - 8732: "dtp-net", - 8733: "ibus", - 8763: "mc-appserver", - 8764: "openqueue", - 8765: "ultraseek-http", - 8766: "amcs", - 8770: "dpap", - 8786: "msgclnt", - 8787: "msgsrvr", - 8793: "acd-pm", - 8800: "sunwebadmin", - 8804: "truecm", - 8805: "pfcp", - 8808: "ssports-bcast", - 8873: "dxspider", - 8880: "cddbp-alt", - 8883: "secure-mqtt", - 8888: "ddi-udp-1", - 8889: "ddi-udp-2", - 8890: "ddi-udp-3", - 8891: "ddi-udp-4", - 8892: "ddi-udp-5", - 8893: "ddi-udp-6", - 8894: "ddi-udp-7", - 8899: "ospf-lite", - 8900: "jmb-cds1", - 8901: "jmb-cds2", - 8910: "manyone-http", - 8911: "manyone-xml", - 8912: "wcbackup", - 8913: "dragonfly", - 8954: "cumulus-admin", - 8980: "nod-provider", - 8981: "nod-client", - 8989: "sunwebadmins", - 8990: "http-wmap", - 8991: "https-wmap", - 8999: "bctp", - 9000: "cslistener", - 9001: "etlservicemgr", - 9002: "dynamid", - 9007: "ogs-client", - 9009: "pichat", - 9020: "tambora", - 9021: "panagolin-ident", - 9022: "paragent", - 9023: "swa-1", - 9024: "swa-2", - 9025: "swa-3", - 9026: "swa-4", - 9060: "CardWeb-RT", - 9080: "glrpc", - 9084: "aurora", - 9085: "ibm-rsyscon", - 9086: "net2display", - 9087: "classic", - 9088: "sqlexec", - 9089: "sqlexec-ssl", - 9090: "websm", - 9091: "xmltec-xmlmail", - 9092: "XmlIpcRegSvc", - 9100: "hp-pdl-datastr", - 9101: "bacula-dir", - 9102: "bacula-fd", - 9103: "bacula-sd", - 9104: "peerwire", - 9105: "xadmin", - 9106: "astergate-disc", - 9119: "mxit", - 9131: "dddp", - 9160: "apani1", - 9161: "apani2", - 9162: "apani3", - 9163: "apani4", - 9164: "apani5", - 9191: "sun-as-jpda", - 9200: "wap-wsp", - 9201: "wap-wsp-wtp", - 9202: "wap-wsp-s", - 9203: "wap-wsp-wtp-s", - 9204: "wap-vcard", - 9205: "wap-vcal", - 9206: "wap-vcard-s", - 9207: "wap-vcal-s", - 9208: "rjcdb-vcards", - 9209: "almobile-system", - 9210: "oma-mlp", - 9211: "oma-mlp-s", - 9212: "serverviewdbms", - 9213: "serverstart", - 9214: "ipdcesgbs", - 9215: "insis", - 9216: "acme", - 9217: "fsc-port", - 9222: "teamcoherence", - 9255: "mon", - 9277: "traingpsdata", - 9278: "pegasus", - 9279: "pegasus-ctl", - 9280: "pgps", - 9281: "swtp-port1", - 9282: "swtp-port2", - 9283: "callwaveiam", - 9284: "visd", - 9285: "n2h2server", - 9286: "n2receive", - 9287: "cumulus", - 9292: "armtechdaemon", - 9293: "storview", - 9294: "armcenterhttp", - 9295: "armcenterhttps", - 9300: "vrace", - 9318: "secure-ts", - 9321: "guibase", - 9343: "mpidcmgr", - 9344: "mphlpdmc", - 9346: "ctechlicensing", - 9374: "fjdmimgr", - 9380: "boxp", - 9396: "fjinvmgr", - 9397: "mpidcagt", - 9400: "sec-t4net-srv", - 9401: "sec-t4net-clt", - 9402: "sec-pc2fax-srv", - 9418: "git", - 9443: "tungsten-https", - 9444: "wso2esb-console", - 9450: "sntlkeyssrvr", - 9500: "ismserver", - 9522: "sma-spw", - 9535: "mngsuite", - 9536: "laes-bf", - 9555: "trispen-sra", - 9592: "ldgateway", - 9593: "cba8", - 9594: "msgsys", - 9595: "pds", - 9596: "mercury-disc", - 9597: "pd-admin", - 9598: "vscp", - 9599: "robix", - 9600: "micromuse-ncpw", - 9612: "streamcomm-ds", - 9618: "condor", - 9628: "odbcpathway", - 9629: "uniport", - 9632: "mc-comm", - 9667: "xmms2", - 9668: "tec5-sdctp", - 9694: "client-wakeup", - 9695: "ccnx", - 9700: "board-roar", - 9747: "l5nas-parchan", - 9750: "board-voip", - 9753: "rasadv", - 9762: "tungsten-http", - 9800: "davsrc", - 9801: "sstp-2", - 9802: "davsrcs", - 9875: "sapv1", - 9878: "kca-service", - 9888: "cyborg-systems", - 9889: "gt-proxy", - 9898: "monkeycom", - 9899: "sctp-tunneling", - 9900: "iua", - 9901: "enrp", - 9903: "multicast-ping", - 9909: "domaintime", - 9911: "sype-transport", - 9950: "apc-9950", - 9951: "apc-9951", - 9952: "apc-9952", - 9953: "acis", - 9955: "alljoyn-mcm", - 9956: "alljoyn", - 9966: "odnsp", - 9987: "dsm-scm-target", - 9990: "osm-appsrvr", - 9991: "osm-oev", - 9992: "palace-1", - 9993: "palace-2", - 9994: "palace-3", - 9995: "palace-4", - 9996: "palace-5", - 9997: "palace-6", - 9998: "distinct32", - 9999: "distinct", - 10000: "ndmp", - 10001: "scp-config", - 10002: "documentum", - 10003: "documentum-s", - 10007: "mvs-capacity", - 10008: "octopus", - 10009: "swdtp-sv", - 10050: "zabbix-agent", - 10051: "zabbix-trapper", - 10080: "amanda", - 10081: "famdc", - 10100: "itap-ddtp", - 10101: "ezmeeting-2", - 10102: "ezproxy-2", - 10103: "ezrelay", - 10104: "swdtp", - 10107: "bctp-server", - 10110: "nmea-0183", - 10111: "nmea-onenet", - 10113: "netiq-endpoint", - 10114: "netiq-qcheck", - 10115: "netiq-endpt", - 10116: "netiq-voipa", - 10117: "iqrm", - 10128: "bmc-perf-sd", - 10160: "qb-db-server", - 10161: "snmpdtls", - 10162: "snmpdtls-trap", - 10200: "trisoap", - 10201: "rscs", - 10252: "apollo-relay", - 10253: "eapol-relay", - 10260: "axis-wimp-port", - 10288: "blocks", - 10439: "bngsync", - 10500: "hip-nat-t", - 10540: "MOS-lower", - 10541: "MOS-upper", - 10542: "MOS-aux", - 10543: "MOS-soap", - 10544: "MOS-soap-opt", - 10800: "gap", - 10805: "lpdg", - 10810: "nmc-disc", - 10860: "helix", - 10880: "bveapi", - 10990: "rmiaux", - 11000: "irisa", - 11001: "metasys", - 10023: "cefd-vmp", - 11095: "weave", - 11106: "sgi-lk", - 11108: "myq-termlink", - 11111: "vce", - 11112: "dicom", - 11161: "suncacao-snmp", - 11162: "suncacao-jmxmp", - 11163: "suncacao-rmi", - 11164: "suncacao-csa", - 11165: "suncacao-websvc", - 11171: "snss", - 11201: "smsqp", - 11208: "wifree", - 11211: "memcache", - 11319: "imip", - 11320: "imip-channels", - 11321: "arena-server", - 11367: "atm-uhas", - 11371: "hkp", - 11430: "lsdp", - 11600: "tempest-port", - 11720: "h323callsigalt", - 11723: "emc-xsw-dcache", - 11751: "intrepid-ssl", - 11796: "lanschool-mpt", - 11876: "xoraya", - 11877: "x2e-disc", - 11967: "sysinfo-sp", - 12000: "entextxid", - 12001: "entextnetwk", - 12002: "entexthigh", - 12003: "entextmed", - 12004: "entextlow", - 12005: "dbisamserver1", - 12006: "dbisamserver2", - 12007: "accuracer", - 12008: "accuracer-dbms", - 12009: "ghvpn", - 12012: "vipera", - 12013: "vipera-ssl", - 12109: "rets-ssl", - 12121: "nupaper-ss", - 12168: "cawas", - 12172: "hivep", - 12300: "linogridengine", - 12321: "warehouse-sss", - 12322: "warehouse", - 12345: "italk", - 12753: "tsaf", - 13160: "i-zipqd", - 13216: "bcslogc", - 13217: "rs-pias", - 13218: "emc-vcas-udp", - 13223: "powwow-client", - 13224: "powwow-server", - 13400: "doip-disc", - 13720: "bprd", - 13721: "bpdbm", - 13722: "bpjava-msvc", - 13724: "vnetd", - 13782: "bpcd", - 13783: "vopied", - 13785: "nbdb", - 13786: "nomdb", - 13818: "dsmcc-config", - 13819: "dsmcc-session", - 13820: "dsmcc-passthru", - 13821: "dsmcc-download", - 13822: "dsmcc-ccp", - 13894: "ucontrol", - 13929: "dta-systems", - 14000: "scotty-ft", - 14001: "sua", - 14002: "scotty-disc", - 14033: "sage-best-com1", - 14034: "sage-best-com2", - 14141: "vcs-app", - 14142: "icpp", - 14145: "gcm-app", - 14149: "vrts-tdd", - 14154: "vad", - 14250: "cps", - 14414: "ca-web-update", - 14936: "hde-lcesrvr-1", - 14937: "hde-lcesrvr-2", - 15000: "hydap", - 15118: "v2g-secc", - 15345: "xpilot", - 15363: "3link", - 15555: "cisco-snat", - 15660: "bex-xr", - 15740: "ptp", - 15998: "2ping", - 16003: "alfin", - 16161: "sun-sea-port", - 16309: "etb4j", - 16310: "pduncs", - 16311: "pdefmns", - 16360: "netserialext1", - 16361: "netserialext2", - 16367: "netserialext3", - 16368: "netserialext4", - 16384: "connected", - 16666: "vtp", - 16900: "newbay-snc-mc", - 16950: "sgcip", - 16991: "intel-rci-mp", - 16992: "amt-soap-http", - 16993: "amt-soap-https", - 16994: "amt-redir-tcp", - 16995: "amt-redir-tls", - 17007: "isode-dua", - 17185: "soundsvirtual", - 17219: "chipper", - 17220: "avtp", - 17221: "avdecc", - 17222: "cpsp", - 17224: "trdp-pd", - 17225: "trdp-md", - 17234: "integrius-stp", - 17235: "ssh-mgmt", - 17500: "db-lsp-disc", - 17729: "ea", - 17754: "zep", - 17755: "zigbee-ip", - 17756: "zigbee-ips", - 18000: "biimenu", - 18181: "opsec-cvp", - 18182: "opsec-ufp", - 18183: "opsec-sam", - 18184: "opsec-lea", - 18185: "opsec-omi", - 18186: "ohsc", - 18187: "opsec-ela", - 18241: "checkpoint-rtm", - 18262: "gv-pf", - 18463: "ac-cluster", - 18634: "rds-ib", - 18635: "rds-ip", - 18668: "vdmmesh-disc", - 18769: "ique", - 18881: "infotos", - 18888: "apc-necmp", - 19000: "igrid", - 19007: "scintilla", - 19191: "opsec-uaa", - 19194: "ua-secureagent", - 19220: "cora-disc", - 19283: "keysrvr", - 19315: "keyshadow", - 19398: "mtrgtrans", - 19410: "hp-sco", - 19411: "hp-sca", - 19412: "hp-sessmon", - 19539: "fxuptp", - 19540: "sxuptp", - 19541: "jcp", - 19788: "mle", - 19999: "dnp-sec", - 20000: "dnp", - 20001: "microsan", - 20002: "commtact-http", - 20003: "commtact-https", - 20005: "openwebnet", - 20012: "ss-idi-disc", - 20014: "opendeploy", - 20034: "nburn-id", - 20046: "tmophl7mts", - 20048: "mountd", - 20049: "nfsrdma", - 20167: "tolfab", - 20202: "ipdtp-port", - 20222: "ipulse-ics", - 20480: "emwavemsg", - 20670: "track", - 20999: "athand-mmp", - 21000: "irtrans", - 21554: "dfserver", - 21590: "vofr-gateway", - 21800: "tvpm", - 21845: "webphone", - 21846: "netspeak-is", - 21847: "netspeak-cs", - 21848: "netspeak-acd", - 21849: "netspeak-cps", - 22000: "snapenetio", - 22001: "optocontrol", - 22002: "optohost002", - 22003: "optohost003", - 22004: "optohost004", - 22005: "optohost004", - 22273: "wnn6", - 22305: "cis", - 22335: "shrewd-stream", - 22343: "cis-secure", - 22347: "wibukey", - 22350: "codemeter", - 22555: "vocaltec-phone", - 22763: "talikaserver", - 22800: "aws-brf", - 22951: "brf-gw", - 23000: "inovaport1", - 23001: "inovaport2", - 23002: "inovaport3", - 23003: "inovaport4", - 23004: "inovaport5", - 23005: "inovaport6", - 23272: "s102", - 23294: "5afe-disc", - 23333: "elxmgmt", - 23400: "novar-dbase", - 23401: "novar-alarm", - 23402: "novar-global", - 24000: "med-ltp", - 24001: "med-fsp-rx", - 24002: "med-fsp-tx", - 24003: "med-supp", - 24004: "med-ovw", - 24005: "med-ci", - 24006: "med-net-svc", - 24242: "filesphere", - 24249: "vista-4gl", - 24321: "ild", - 24322: "hid", - 24386: "intel-rci", - 24465: "tonidods", - 24554: "binkp", - 24577: "bilobit-update", - 24676: "canditv", - 24677: "flashfiler", - 24678: "proactivate", - 24680: "tcc-http", - 24850: "assoc-disc", - 24922: "find", - 25000: "icl-twobase1", - 25001: "icl-twobase2", - 25002: "icl-twobase3", - 25003: "icl-twobase4", - 25004: "icl-twobase5", - 25005: "icl-twobase6", - 25006: "icl-twobase7", - 25007: "icl-twobase8", - 25008: "icl-twobase9", - 25009: "icl-twobase10", - 25793: "vocaltec-hos", - 25900: "tasp-net", - 25901: "niobserver", - 25902: "nilinkanalyst", - 25903: "niprobe", - 25954: "bf-game", - 25955: "bf-master", - 26000: "quake", - 26133: "scscp", - 26208: "wnn6-ds", - 26260: "ezproxy", - 26261: "ezmeeting", - 26262: "k3software-svr", - 26263: "k3software-cli", - 26486: "exoline-udp", - 26487: "exoconfig", - 26489: "exonet", - 27345: "imagepump", - 27442: "jesmsjc", - 27504: "kopek-httphead", - 27782: "ars-vista", - 27999: "tw-auth-key", - 28000: "nxlmd", - 28119: "a27-ran-ran", - 28200: "voxelstorm", - 28240: "siemensgsm", - 29167: "otmp", - 30001: "pago-services1", - 30002: "pago-services2", - 30003: "amicon-fpsu-ra", - 30004: "amicon-fpsu-s", - 30260: "kingdomsonline", - 30832: "samsung-disc", - 30999: "ovobs", - 31016: "ka-kdp", - 31029: "yawn", - 31416: "xqosd", - 31457: "tetrinet", - 31620: "lm-mon", - 31765: "gamesmith-port", - 31948: "iceedcp-tx", - 31949: "iceedcp-rx", - 32034: "iracinghelper", - 32249: "t1distproc60", - 32483: "apm-link", - 32635: "sec-ntb-clnt", - 32636: "DMExpress", - 32767: "filenet-powsrm", - 32768: "filenet-tms", - 32769: "filenet-rpc", - 32770: "filenet-nch", - 32771: "filenet-rmi", - 32772: "filenet-pa", - 32773: "filenet-cm", - 32774: "filenet-re", - 32775: "filenet-pch", - 32776: "filenet-peior", - 32777: "filenet-obrok", - 32801: "mlsn", - 32896: "idmgratm", - 33123: "aurora-balaena", - 33331: "diamondport", - 33334: "speedtrace-disc", - 33434: "traceroute", - 33656: "snip-slave", - 34249: "turbonote-2", - 34378: "p-net-local", - 34379: "p-net-remote", - 34567: "edi_service", - 34962: "profinet-rt", - 34963: "profinet-rtm", - 34964: "profinet-cm", - 34980: "ethercat", - 35001: "rt-viewer", - 35004: "rt-classmanager", - 35100: "axio-disc", - 35355: "altova-lm-disc", - 36001: "allpeers", - 36411: "wlcp", - 36865: "kastenxpipe", - 37475: "neckar", - 37654: "unisys-eportal", - 38002: "crescoctrl-disc", - 38201: "galaxy7-data", - 38202: "fairview", - 38203: "agpolicy", - 39681: "turbonote-1", - 40000: "safetynetp", - 40023: "k-patentssensor", - 40841: "cscp", - 40842: "csccredir", - 40843: "csccfirewall", - 40853: "ortec-disc", - 41111: "fs-qos", - 41230: "z-wave-s", - 41794: "crestron-cip", - 41795: "crestron-ctp", - 42508: "candp", - 42509: "candrp", - 42510: "caerpc", - 43000: "recvr-rc-disc", - 43188: "reachout", - 43189: "ndm-agent-port", - 43190: "ip-provision", - 43210: "shaperai-disc", - 43439: "eq3-config", - 43440: "ew-disc-cmd", - 43441: "ciscocsdb", - 44321: "pmcd", - 44322: "pmcdproxy", - 44544: "domiq", - 44553: "rbr-debug", - 44600: "asihpi", - 44818: "EtherNet-IP-2", - 44900: "m3da-disc", - 45000: "asmp-mon", - 45054: "invision-ag", - 45514: "cloudcheck-ping", - 45678: "eba", - 45825: "qdb2service", - 45966: "ssr-servermgr", - 46999: "mediabox", - 47000: "mbus", - 47100: "jvl-mactalk", - 47557: "dbbrowse", - 47624: "directplaysrvr", - 47806: "ap", - 47808: "bacnet", - 47809: "presonus-ucnet", - 48000: "nimcontroller", - 48001: "nimspooler", - 48002: "nimhub", - 48003: "nimgtw", - 48128: "isnetserv", - 48129: "blp5", - 48556: "com-bardac-dw", - 48619: "iqobject", - 48653: "robotraconteur", - 49001: "nusdp-disc", -} -var sctpPortNames = map[SCTPPort]string{ - 9: "discard", - 20: "ftp-data", - 21: "ftp", - 22: "ssh", - 80: "http", - 179: "bgp", - 443: "https", - 1021: "exp1", - 1022: "exp2", - 1167: "cisco-ipsla", - 1720: "h323hostcall", - 2049: "nfs", - 2225: "rcip-itu", - 2904: "m2ua", - 2905: "m3ua", - 2944: "megaco-h248", - 2945: "h248-binary", - 3097: "itu-bicc-stc", - 3565: "m2pa", - 3863: "asap-sctp", - 3864: "asap-sctp-tls", - 3868: "diameter", - 4333: "ahsp", - 4502: "a25-fap-fgw", - 4711: "trinity-dist", - 4739: "ipfix", - 4740: "ipfixs", - 5060: "sip", - 5061: "sips", - 5090: "car", - 5091: "cxtp", - 5215: "noteza", - 5445: "smbdirect", - 5672: "amqp", - 5675: "v5ua", - 5868: "diameters", - 5910: "cm", - 5911: "cpdlc", - 5912: "fis", - 5913: "ads-c", - 6704: "frc-hp", - 6705: "frc-mp", - 6706: "frc-lp", - 6970: "conductor-mpx", - 7626: "simco", - 7701: "nfapi", - 7728: "osvr", - 8471: "pim-port", - 9082: "lcs-ap", - 9084: "aurora", - 9900: "iua", - 9901: "enrp-sctp", - 9902: "enrp-sctp-tls", - 11997: "wmereceiving", - 11998: "wmedistribution", - 11999: "wmereporting", - 14001: "sua", - 20049: "nfsrdma", - 25471: "rna", - 29118: "sgsap", - 29168: "sbcap", - 29169: "iuhsctpassoc", - 30100: "rwp", - 36412: "s1-control", - 36422: "x2-control", - 36423: "slmap", - 36424: "nq-ap", - 36443: "m2ap", - 36444: "m3ap", - 36462: "xw-control", - 38412: "ng-control", - 38422: "xn-control", - 38472: "f1-control", -} diff --git a/vendor/github.com/google/gopacket/layers/stp.go b/vendor/github.com/google/gopacket/layers/stp.go deleted file mode 100644 index bde7d7c8e..000000000 --- a/vendor/github.com/google/gopacket/layers/stp.go +++ /dev/null @@ -1,27 +0,0 @@ -// Copyright 2017 Google, Inc. All rights reserved. -// -// Use of this source code is governed by a BSD-style license -// that can be found in the LICENSE file in the root of the source -// tree. - -package layers - -import ( - "github.com/google/gopacket" -) - -// STP decode spanning tree protocol packets to transport BPDU (bridge protocol data unit) message. -type STP struct { - BaseLayer -} - -// LayerType returns gopacket.LayerTypeSTP. -func (s *STP) LayerType() gopacket.LayerType { return LayerTypeSTP } - -func decodeSTP(data []byte, p gopacket.PacketBuilder) error { - stp := &STP{} - stp.Contents = data[:] - // TODO: parse the STP protocol into actual subfields. - p.AddLayer(stp) - return nil -} diff --git a/vendor/github.com/google/gopacket/layers/tls_handshake.go b/vendor/github.com/google/gopacket/layers/tls_handshake.go deleted file mode 100644 index e45e2c7cb..000000000 --- a/vendor/github.com/google/gopacket/layers/tls_handshake.go +++ /dev/null @@ -1,28 +0,0 @@ -// Copyright 2018 The GoPacket Authors. All rights reserved. -// -// Use of this source code is governed by a BSD-style license -// that can be found in the LICENSE file in the root of the source -// tree. - -package layers - -import ( - "github.com/google/gopacket" -) - -// TLSHandshakeRecord defines the structure of a Handshare Record -type TLSHandshakeRecord struct { - TLSRecordHeader -} - -// DecodeFromBytes decodes the slice into the TLS struct. -func (t *TLSHandshakeRecord) decodeFromBytes(h TLSRecordHeader, data []byte, df gopacket.DecodeFeedback) error { - // TLS Record Header - t.ContentType = h.ContentType - t.Version = h.Version - t.Length = h.Length - - // TODO - - return nil -} diff --git a/vendor/github.com/google/gopacket/.gitignore b/vendor/github.com/gopacket/gopacket/.gitignore similarity index 98% rename from vendor/github.com/google/gopacket/.gitignore rename to vendor/github.com/gopacket/gopacket/.gitignore index 149266fdb..b79b2e2d3 100644 --- a/vendor/github.com/google/gopacket/.gitignore +++ b/vendor/github.com/gopacket/gopacket/.gitignore @@ -36,3 +36,4 @@ examples/reassemblydump/reassemblydump layers/gen macs/gen pcap/pcap_tester +.idea/ \ No newline at end of file diff --git a/vendor/github.com/google/gopacket/AUTHORS b/vendor/github.com/gopacket/gopacket/AUTHORS similarity index 100% rename from vendor/github.com/google/gopacket/AUTHORS rename to vendor/github.com/gopacket/gopacket/AUTHORS diff --git a/vendor/github.com/google/gopacket/CONTRIBUTING.md b/vendor/github.com/gopacket/gopacket/CONTRIBUTING.md similarity index 99% rename from vendor/github.com/google/gopacket/CONTRIBUTING.md rename to vendor/github.com/gopacket/gopacket/CONTRIBUTING.md index 99ab7a2e4..ac32ea3d2 100644 --- a/vendor/github.com/google/gopacket/CONTRIBUTING.md +++ b/vendor/github.com/gopacket/gopacket/CONTRIBUTING.md @@ -36,8 +36,8 @@ runs a local set of checks, which should give you relatively high confidence that your pull won't fail github pull checks. ```sh -go get github.com/google/gopacket -cd $GOROOT/src/pkg/github.com/google/gopacket +go get github.com/gopacket/gopacket +cd $GOROOT/src/pkg/github.com/gopacket/gopacket git checkout -b # create a new branch to work from ... code code code ... ./gc # Run this to do local commits, it performs a number of checks diff --git a/vendor/github.com/google/gopacket/LICENSE b/vendor/github.com/gopacket/gopacket/LICENSE similarity index 100% rename from vendor/github.com/google/gopacket/LICENSE rename to vendor/github.com/gopacket/gopacket/LICENSE diff --git a/vendor/github.com/gopacket/gopacket/README.md b/vendor/github.com/gopacket/gopacket/README.md new file mode 100644 index 000000000..41e74a650 --- /dev/null +++ b/vendor/github.com/gopacket/gopacket/README.md @@ -0,0 +1,17 @@ +![Build Status](https://img.shields.io/github/actions/workflow/status/gopacket/gopacket/push_pr.yaml?branch=master) +![Go Version](https://img.shields.io/github/go-mod/go-version/gopacket/gopacket/master?filename=go.mod&style=flat-square) +![Latest Version](https://img.shields.io/github/v/tag/gopacket/gopacket?label=latest&style=flat-square) +![License](https://img.shields.io/github/license/gopacket/gopacket?style=flat-square) +![Open Issues](https://img.shields.io/github/issues/gopacket/gopacket?style=flat-square) +[![GoDoc](https://godoc.org/github.com/gopacket/gopacket?status.svg)](https://godoc.org/github.com/gopacket/gopacket) + +# GoPacket + +This library provides packet decoding capabilities for Go. + +Forked from the popular gopacket [repo](https://github.com/google/gopacket) by Google, this fork was created to ensure the project doesn't become stale and bugfixes, new protocols and performance improvements can be merged into it. submit your PRs here :) + +See [godoc](https://godoc.org/github.com/gopacket/gopacket) for more details. + +Minimum Go supported is 1.19 + diff --git a/vendor/github.com/gopacket/gopacket/SECURITY.md b/vendor/github.com/gopacket/gopacket/SECURITY.md new file mode 100644 index 000000000..b91f53755 --- /dev/null +++ b/vendor/github.com/gopacket/gopacket/SECURITY.md @@ -0,0 +1,29 @@ +# Security Policy for `gopacket/gopacket` Module + +## Supported Versions + +This section provides information about the versions of the `gopacket` module that are currently being supported with security updates. + +| Version | Supported | +| ------- | ------------------ | +| 1.x.x | :white_check_mark: | + +It is highly recommended to use the supported versions to ensure the security and stability of your projects. Unsupported versions will not receive security updates, and using them may expose your projects to vulnerabilities. + +## Reporting a Vulnerability + +If you discover a vulnerability in the `gopacket` module, please take the following steps to report it: + +1. **Contact**: please use the private fork and PR function to raise the issue. + +2. **Acknowledgment**: You can expect to receive an acknowledgment of your vulnerability report within a week of submission. + +3. **Updates**: The security team will keep you updated on the status of your report and the planned resolution timeline. Updates will be provided at least once a week until the issue is resolved. + +4. **Disclosure**: If the vulnerability is confirmed, the security team will work to promptly release a fix. Details about the vulnerability and the fix will be publicly disclosed after the release, allowing users to update and secure their systems. + +5. **Acceptance or Decline**: If your report is accepted, you will be credited for the discovery, and the details will be shared in the public disclosure. If the report is declined, the security team will provide an explanation for the decision. + +Your cooperation and responsible disclosure are greatly appreciated in helping to keep the `gopacket/gopacket` module and its users secure. + +Keep in mind that `gopacket` is maintained by only a few people, so if there are multiple bugs it might take a while for them to get fixed. diff --git a/vendor/github.com/google/gopacket/base.go b/vendor/github.com/gopacket/gopacket/base.go similarity index 95% rename from vendor/github.com/google/gopacket/base.go rename to vendor/github.com/gopacket/gopacket/base.go index 91e150c21..60fbd6410 100644 --- a/vendor/github.com/google/gopacket/base.go +++ b/vendor/github.com/gopacket/gopacket/base.go @@ -26,6 +26,13 @@ type Layer interface { LayerPayload() []byte } +// LayerWithChecksum should be implemented by layers that contain a checksum +// that can be verified after a packet has been decoded. +type LayerWithChecksum interface { + // VerifyChecksum verifies the checksum and returns the result. + VerifyChecksum() (error, ChecksumVerificationResult) +} + // Payload is a Layer containing the payload of a packet. The definition of // what constitutes the payload of a packet depends on previous layers; for // TCP and UDP, we stop decoding above layer 4 and return the remaining diff --git a/vendor/github.com/gopacket/gopacket/checksum.go b/vendor/github.com/gopacket/gopacket/checksum.go new file mode 100644 index 000000000..5d46c4767 --- /dev/null +++ b/vendor/github.com/gopacket/gopacket/checksum.go @@ -0,0 +1,58 @@ +// Copyright 2012 Google, Inc. All rights reserved. +// +// Use of this source code is governed by a BSD-style license +// that can be found in the LICENSE file in the root of the source +// tree. + +package gopacket + +// ChecksumVerificationResult provides information about a checksum verification. +// The checksums are represented using uint32 to fit even the largest checksums. +// If a checksum is optional and unset, Correct and Actual might mismatch even +// though Valid is true. In this case, Correct is the computed optional checksum +// and Actual is 0. +type ChecksumVerificationResult struct { + // Valid tells whether the checksum verification succeeded. + Valid bool + // Correct is the correct checksum that was expected to be found. + Correct uint32 + // Actual is the checksum that was found and which might be wrong. + Actual uint32 +} + +// ChecksumMismatch provides information about a failed checksum verification +// for a layer. +type ChecksumMismatch struct { + ChecksumVerificationResult + // Layer is the layer whose checksum is invalid. + Layer Layer + // LayerIndex is the index of the layer in the packet. + LayerIndex int +} + +// ComputeChecksum computes the internet checksum as defined in RFC1071. The +// passed-in csum is any initial checksum data that's already been computed. +func ComputeChecksum(data []byte, csum uint32) uint32 { + // to handle odd lengths, we loop to length - 1, incrementing by 2, then + // handle the last byte specifically by checking against the original + // length. + length := len(data) - 1 + for i := 0; i < length; i += 2 { + // For our test packet, doing this manually is about 25% faster + // (740 ns vs. 1000ns) than doing it by calling binary.BigEndian.Uint16. + csum += uint32(data[i]) << 8 + csum += uint32(data[i+1]) + } + if len(data)%2 == 1 { + csum += uint32(data[length]) << 8 + } + return csum +} + +// FoldChecksum folds a 32 bit checksum as defined in RFC1071. +func FoldChecksum(csum uint32) uint16 { + for csum > 0xffff { + csum = (csum >> 16) + (csum & 0xffff) + } + return ^uint16(csum) +} diff --git a/vendor/github.com/google/gopacket/decode.go b/vendor/github.com/gopacket/gopacket/decode.go similarity index 94% rename from vendor/github.com/google/gopacket/decode.go rename to vendor/github.com/gopacket/gopacket/decode.go index 2633f848e..a53312d2a 100644 --- a/vendor/github.com/google/gopacket/decode.go +++ b/vendor/github.com/gopacket/gopacket/decode.go @@ -28,16 +28,17 @@ var NilDecodeFeedback DecodeFeedback = nilDecodeFeedback{} // PacketBuilder is used by layer decoders to store the layers they've decoded, // and to defer future decoding via NextDecoder. // Typically, the pattern for use is: -// func (m *myDecoder) Decode(data []byte, p PacketBuilder) error { -// if myLayer, err := myDecodingLogic(data); err != nil { -// return err -// } else { -// p.AddLayer(myLayer) -// } -// // maybe do this, if myLayer is a LinkLayer -// p.SetLinkLayer(myLayer) -// return p.NextDecoder(nextDecoder) -// } +// +// func (m *myDecoder) Decode(data []byte, p PacketBuilder) error { +// if myLayer, err := myDecodingLogic(data); err != nil { +// return err +// } else { +// p.AddLayer(myLayer) +// } +// // maybe do this, if myLayer is a LinkLayer +// p.SetLinkLayer(myLayer) +// return p.NextDecoder(nextDecoder) +// } type PacketBuilder interface { DecodeFeedback // AddLayer should be called by a decoder immediately upon successful diff --git a/vendor/github.com/google/gopacket/doc.go b/vendor/github.com/gopacket/gopacket/doc.go similarity index 58% rename from vendor/github.com/google/gopacket/doc.go rename to vendor/github.com/gopacket/gopacket/doc.go index b46e43dfa..2927c4e4d 100644 --- a/vendor/github.com/google/gopacket/doc.go +++ b/vendor/github.com/gopacket/gopacket/doc.go @@ -10,14 +10,14 @@ Package gopacket provides packet decoding for the Go language. gopacket contains many sub-packages with additional functionality you may find useful, including: - * layers: You'll probably use this every time. This contains of the logic - built into gopacket for decoding packet protocols. Note that all example - code below assumes that you have imported both gopacket and - gopacket/layers. - * pcap: C bindings to use libpcap to read packets off the wire. - * pfring: C bindings to use PF_RING to read packets off the wire. - * afpacket: C bindings for Linux's AF_PACKET to read packets off the wire. - * tcpassembly: TCP stream reassembly + - layers: You'll probably use this every time. This contains of the logic + built into gopacket for decoding packet protocols. Note that all example + code below assumes that you have imported both gopacket and + gopacket/layers. + - pcap: C bindings to use libpcap to read packets off the wire. + - pfring: C bindings to use PF_RING to read packets off the wire. + - afpacket: C bindings for Linux's AF_PACKET to read packets off the wire. + - tcpassembly: TCP stream reassembly Also, if you're looking to dive right into code, see the examples subdirectory for numerous simple binaries built using gopacket libraries. @@ -25,40 +25,39 @@ for numerous simple binaries built using gopacket libraries. Minimum go version required is 1.5 except for pcapgo/EthernetHandle, afpacket, and bsdbpf which need at least 1.7 due to x/sys/unix dependencies. -Basic Usage +# Basic Usage gopacket takes in packet data as a []byte and decodes it into a packet with a non-zero number of "layers". Each layer corresponds to a protocol within the bytes. Once a packet has been decoded, the layers of the packet can be requested from the packet. - // Decode a packet - packet := gopacket.NewPacket(myPacketData, layers.LayerTypeEthernet, gopacket.Default) - // Get the TCP layer from this packet - if tcpLayer := packet.Layer(layers.LayerTypeTCP); tcpLayer != nil { - fmt.Println("This is a TCP packet!") - // Get actual TCP data from this layer - tcp, _ := tcpLayer.(*layers.TCP) - fmt.Printf("From src port %d to dst port %d\n", tcp.SrcPort, tcp.DstPort) - } - // Iterate over all layers, printing out each layer type - for _, layer := range packet.Layers() { - fmt.Println("PACKET LAYER:", layer.LayerType()) - } + // Decode a packet + packet := gopacket.NewPacket(myPacketData, layers.LayerTypeEthernet, gopacket.Default) + // Get the TCP layer from this packet + if tcpLayer := packet.Layer(layers.LayerTypeTCP); tcpLayer != nil { + fmt.Println("This is a TCP packet!") + // Get actual TCP data from this layer + tcp, _ := tcpLayer.(*layers.TCP) + fmt.Printf("From src port %d to dst port %d\n", tcp.SrcPort, tcp.DstPort) + } + // Iterate over all layers, printing out each layer type + for _, layer := range packet.Layers() { + fmt.Println("PACKET LAYER:", layer.LayerType()) + } Packets can be decoded from a number of starting points. Many of our base types implement Decoder, which allow us to decode packets for which we don't have full data. - // Decode an ethernet packet - ethP := gopacket.NewPacket(p1, layers.LayerTypeEthernet, gopacket.Default) - // Decode an IPv6 header and everything it contains - ipP := gopacket.NewPacket(p2, layers.LayerTypeIPv6, gopacket.Default) - // Decode a TCP header and its payload - tcpP := gopacket.NewPacket(p3, layers.LayerTypeTCP, gopacket.Default) + // Decode an ethernet packet + ethP := gopacket.NewPacket(p1, layers.LayerTypeEthernet, gopacket.Default) + // Decode an IPv6 header and everything it contains + ipP := gopacket.NewPacket(p2, layers.LayerTypeIPv6, gopacket.Default) + // Decode a TCP header and its payload + tcpP := gopacket.NewPacket(p3, layers.LayerTypeTCP, gopacket.Default) - -Reading Packets From A Source +# Reading Packets From A Source Most of the time, you won't just have a []byte of packet data lying around. Instead, you'll want to read packets in from somewhere (file, interface, etc) @@ -77,29 +76,28 @@ Packets function, which returns a channel, then asynchronously writes new packets into that channel, closing the channel if the packetSource hits an end-of-file. - packetSource := ... // construct using pcap or pfring - for packet := range packetSource.Packets() { - handlePacket(packet) // do something with each packet - } + packetSource := ... // construct using pcap or pfring + for packet := range packetSource.Packets() { + handlePacket(packet) // do something with each packet + } You can change the decoding options of the packetSource by setting fields in packetSource.DecodeOptions... see the following sections for more details. - -Lazy Decoding +# Lazy Decoding gopacket optionally decodes packet data lazily, meaning it only decodes a packet layer when it needs to handle a function call. - // Create a packet, but don't actually decode anything yet - packet := gopacket.NewPacket(myPacketData, layers.LayerTypeEthernet, gopacket.Lazy) - // Now, decode the packet up to the first IPv4 layer found but no further. - // If no IPv4 layer was found, the whole packet will be decoded looking for - // it. - ip4 := packet.Layer(layers.LayerTypeIPv4) - // Decode all layers and return them. The layers up to the first IPv4 layer - // are already decoded, and will not require decoding a second time. - layers := packet.Layers() + // Create a packet, but don't actually decode anything yet + packet := gopacket.NewPacket(myPacketData, layers.LayerTypeEthernet, gopacket.Lazy) + // Now, decode the packet up to the first IPv4 layer found but no further. + // If no IPv4 layer was found, the whole packet will be decoded looking for + // it. + ip4 := packet.Layer(layers.LayerTypeIPv4) + // Decode all layers and return them. The layers up to the first IPv4 layer + // are already decoded, and will not require decoding a second time. + layers := packet.Layers() Lazily-decoded packets are not concurrency-safe. Since layers have not all been decoded, each call to Layer() or Layers() has the potential to mutate the packet @@ -108,8 +106,7 @@ in multiple goroutines concurrently, don't use gopacket.Lazy. Then gopacket will decode the packet fully, and all future function calls won't mutate the object. - -NoCopy Decoding +# NoCopy Decoding By default, gopacket will copy the slice passed to NewPacket and store the copy within the packet, so future mutations to the bytes underlying the slice @@ -117,20 +114,19 @@ don't affect the packet and its layers. If you can guarantee that the underlying slice bytes won't be changed, you can use NoCopy to tell gopacket.NewPacket, and it'll use the passed-in slice itself. - // This channel returns new byte slices, each of which points to a new - // memory location that's guaranteed immutable for the duration of the - // packet. - for data := range myByteSliceChannel { - p := gopacket.NewPacket(data, layers.LayerTypeEthernet, gopacket.NoCopy) - doSomethingWithPacket(p) - } + // This channel returns new byte slices, each of which points to a new + // memory location that's guaranteed immutable for the duration of the + // packet. + for data := range myByteSliceChannel { + p := gopacket.NewPacket(data, layers.LayerTypeEthernet, gopacket.NoCopy) + doSomethingWithPacket(p) + } The fastest method of decoding is to use both Lazy and NoCopy, but note from the many caveats above that for some implementations either or both may be dangerous. - -Pointers To Known Layers +# Pointers To Known Layers During decoding, certain layers are stored in the packet as well-known layer types. For example, IPv4 and IPv6 are both considered NetworkLayer @@ -146,30 +142,29 @@ while the final layer provides a Payload function to get payload data. This is helpful, for example, to get payloads for all packets regardless of their underlying data type: - // Get packets from some source - for packet := range someSource { - if app := packet.ApplicationLayer(); app != nil { - if strings.Contains(string(app.Payload()), "magic string") { - fmt.Println("Found magic string in a packet!") - } - } - } + // Get packets from some source + for packet := range someSource { + if app := packet.ApplicationLayer(); app != nil { + if strings.Contains(string(app.Payload()), "magic string") { + fmt.Println("Found magic string in a packet!") + } + } + } A particularly useful layer is ErrorLayer, which is set whenever there's an error parsing part of the packet. - packet := gopacket.NewPacket(myPacketData, layers.LayerTypeEthernet, gopacket.Default) - if err := packet.ErrorLayer(); err != nil { - fmt.Println("Error decoding some part of the packet:", err) - } + packet := gopacket.NewPacket(myPacketData, layers.LayerTypeEthernet, gopacket.Default) + if err := packet.ErrorLayer(); err != nil { + fmt.Println("Error decoding some part of the packet:", err) + } Note that we don't return an error from NewPacket because we may have decoded a number of layers successfully before running into our erroneous layer. You may still be able to get your Ethernet and IPv4 layers correctly, even if your TCP layer is malformed. - -Flow And Endpoint +# Flow And Endpoint gopacket has two useful objects, Flow and Endpoint, for communicating in a protocol independent manner the fact that a packet is coming from A and going to B. @@ -185,91 +180,89 @@ example, for LayerTypeIPv4, an Endpoint contains the IP address bytes for a v4 IP packet. A Flow can be broken into Endpoints, and Endpoints can be combined into Flows: - packet := gopacket.NewPacket(myPacketData, layers.LayerTypeEthernet, gopacket.Lazy) - netFlow := packet.NetworkLayer().NetworkFlow() - src, dst := netFlow.Endpoints() - reverseFlow := gopacket.NewFlow(dst, src) + packet := gopacket.NewPacket(myPacketData, layers.LayerTypeEthernet, gopacket.Lazy) + netFlow := packet.NetworkLayer().NetworkFlow() + src, dst := netFlow.Endpoints() + reverseFlow := gopacket.NewFlow(dst, src) Both Endpoint and Flow objects can be used as map keys, and the equality operator can compare them, so you can easily group together all packets based on endpoint criteria: - flows := map[gopacket.Endpoint]chan gopacket.Packet - packet := gopacket.NewPacket(myPacketData, layers.LayerTypeEthernet, gopacket.Lazy) - // Send all TCP packets to channels based on their destination port. - if tcp := packet.Layer(layers.LayerTypeTCP); tcp != nil { - flows[tcp.TransportFlow().Dst()] <- packet - } - // Look for all packets with the same source and destination network address - if net := packet.NetworkLayer(); net != nil { - src, dst := net.NetworkFlow().Endpoints() - if src == dst { - fmt.Println("Fishy packet has same network source and dst: %s", src) - } - } - // Find all packets coming from UDP port 1000 to UDP port 500 - interestingFlow := gopacket.FlowFromEndpoints(layers.NewUDPPortEndpoint(1000), layers.NewUDPPortEndpoint(500)) - if t := packet.NetworkLayer(); t != nil && t.TransportFlow() == interestingFlow { - fmt.Println("Found that UDP flow I was looking for!") - } + flows := map[gopacket.Endpoint]chan gopacket.Packet + packet := gopacket.NewPacket(myPacketData, layers.LayerTypeEthernet, gopacket.Lazy) + // Send all TCP packets to channels based on their destination port. + if tcp := packet.Layer(layers.LayerTypeTCP); tcp != nil { + flows[tcp.TransportFlow().Dst()] <- packet + } + // Look for all packets with the same source and destination network address + if net := packet.NetworkLayer(); net != nil { + src, dst := net.NetworkFlow().Endpoints() + if src == dst { + fmt.Println("Fishy packet has same network source and dst: %s", src) + } + } + // Find all packets coming from UDP port 1000 to UDP port 500 + interestingFlow := gopacket.FlowFromEndpoints(layers.NewUDPPortEndpoint(1000), layers.NewUDPPortEndpoint(500)) + if t := packet.NetworkLayer(); t != nil && t.TransportFlow() == interestingFlow { + fmt.Println("Found that UDP flow I was looking for!") + } For load-balancing purposes, both Flow and Endpoint have FastHash() functions, which provide quick, non-cryptographic hashes of their contents. Of particular importance is the fact that Flow FastHash() is symmetric: A->B will have the same hash as B->A. An example usage could be: - channels := [8]chan gopacket.Packet - for i := 0; i < 8; i++ { - channels[i] = make(chan gopacket.Packet) - go packetHandler(channels[i]) - } - for packet := range getPackets() { - if net := packet.NetworkLayer(); net != nil { - channels[int(net.NetworkFlow().FastHash()) & 0x7] <- packet - } - } + channels := [8]chan gopacket.Packet + for i := 0; i < 8; i++ { + channels[i] = make(chan gopacket.Packet) + go packetHandler(channels[i]) + } + for packet := range getPackets() { + if net := packet.NetworkLayer(); net != nil { + channels[int(net.NetworkFlow().FastHash()) & 0x7] <- packet + } + } This allows us to split up a packet stream while still making sure that each stream sees all packets for a flow (and its bidirectional opposite). - -Implementing Your Own Decoder +# Implementing Your Own Decoder If your network has some strange encapsulation, you can implement your own decoder. In this example, we handle Ethernet packets which are encapsulated in a 4-byte header. - // Create a layer type, should be unique and high, so it doesn't conflict, - // giving it a name and a decoder to use. - var MyLayerType = gopacket.RegisterLayerType(12345, gopacket.LayerTypeMetadata{Name: "MyLayerType", Decoder: gopacket.DecodeFunc(decodeMyLayer)}) - - // Implement my layer - type MyLayer struct { - StrangeHeader []byte - payload []byte - } - func (m MyLayer) LayerType() gopacket.LayerType { return MyLayerType } - func (m MyLayer) LayerContents() []byte { return m.StrangeHeader } - func (m MyLayer) LayerPayload() []byte { return m.payload } - - // Now implement a decoder... this one strips off the first 4 bytes of the - // packet. - func decodeMyLayer(data []byte, p gopacket.PacketBuilder) error { - // Create my layer - p.AddLayer(&MyLayer{data[:4], data[4:]}) - // Determine how to handle the rest of the packet - return p.NextDecoder(layers.LayerTypeEthernet) - } - - // Finally, decode your packets: - p := gopacket.NewPacket(data, MyLayerType, gopacket.Lazy) + // Create a layer type, should be unique and high, so it doesn't conflict, + // giving it a name and a decoder to use. + var MyLayerType = gopacket.RegisterLayerType(12345, gopacket.LayerTypeMetadata{Name: "MyLayerType", Decoder: gopacket.DecodeFunc(decodeMyLayer)}) + + // Implement my layer + type MyLayer struct { + StrangeHeader []byte + payload []byte + } + func (m MyLayer) LayerType() gopacket.LayerType { return MyLayerType } + func (m MyLayer) LayerContents() []byte { return m.StrangeHeader } + func (m MyLayer) LayerPayload() []byte { return m.payload } + + // Now implement a decoder... this one strips off the first 4 bytes of the + // packet. + func decodeMyLayer(data []byte, p gopacket.PacketBuilder) error { + // Create my layer + p.AddLayer(&MyLayer{data[:4], data[4:]}) + // Determine how to handle the rest of the packet + return p.NextDecoder(layers.LayerTypeEthernet) + } + + // Finally, decode your packets: + p := gopacket.NewPacket(data, MyLayerType, gopacket.Lazy) See the docs for Decoder and PacketBuilder for more details on how coding decoders works, or look at RegisterLayerType and RegisterEndpointType to see how to add layer/endpoint types to gopacket. - -Fast Decoding With DecodingLayerParser +# Fast Decoding With DecodingLayerParser TLDR: DecodingLayerParser takes about 10% of the time as NewPacket to decode packet data, but only for known packet stacks. @@ -283,28 +276,28 @@ DecodingLayerParser avoids memory allocation altogether by decoding packet layers directly into preallocated objects, which you can then reference to get the packet's information. A quick example: - func main() { - var eth layers.Ethernet - var ip4 layers.IPv4 - var ip6 layers.IPv6 - var tcp layers.TCP - parser := gopacket.NewDecodingLayerParser(layers.LayerTypeEthernet, ð, &ip4, &ip6, &tcp) - decoded := []gopacket.LayerType{} - for packetData := range somehowGetPacketData() { - if err := parser.DecodeLayers(packetData, &decoded); err != nil { - fmt.Fprintf(os.Stderr, "Could not decode layers: %v\n", err) - continue - } - for _, layerType := range decoded { - switch layerType { - case layers.LayerTypeIPv6: - fmt.Println(" IP6 ", ip6.SrcIP, ip6.DstIP) - case layers.LayerTypeIPv4: - fmt.Println(" IP4 ", ip4.SrcIP, ip4.DstIP) - } - } - } - } + func main() { + var eth layers.Ethernet + var ip4 layers.IPv4 + var ip6 layers.IPv6 + var tcp layers.TCP + parser := gopacket.NewDecodingLayerParser(layers.LayerTypeEthernet, ð, &ip4, &ip6, &tcp) + decoded := []gopacket.LayerType{} + for packetData := range somehowGetPacketData() { + if err := parser.DecodeLayers(packetData, &decoded); err != nil { + fmt.Fprintf(os.Stderr, "Could not decode layers: %v\n", err) + continue + } + for _, layerType := range decoded { + switch layerType { + case layers.LayerTypeIPv6: + fmt.Println(" IP6 ", ip6.SrcIP, ip6.DstIP) + case layers.LayerTypeIPv4: + fmt.Println(" IP4 ", ip4.SrcIP, ip4.DstIP) + } + } + } + } The important thing to note here is that the parser is modifying the passed in layers (eth, ip4, ip6, tcp) instead of allocating new ones, thus greatly @@ -320,7 +313,7 @@ implementing the DecodingLayer interface are usable. Also, it's possible to create DecodingLayers that are not themselves Layers... see layers.IPv6ExtensionSkipper for an example of this. -Faster And Customized Decoding with DecodingLayerContainer +# Faster And Customized Decoding with DecodingLayerContainer By default, DecodingLayerParser uses native map to store and search for a layer to decode. Though being versatile, in some cases this solution may be not so @@ -332,44 +325,44 @@ along with its implementations: DecodingLayerSparse, DecodingLayerArray and DecodingLayerMap. You can specify a container implementation to DecodingLayerParser with SetDecodingLayerContainer method. Example: - dlp := gopacket.NewDecodingLayerParser(LayerTypeEthernet) - dlp.SetDecodingLayerContainer(gopacket.DecodingLayerSparse(nil)) - var eth layers.Ethernet - dlp.AddDecodingLayer(ð) - // ... add layers and use DecodingLayerParser as usual... + dlp := gopacket.NewDecodingLayerParser(LayerTypeEthernet) + dlp.SetDecodingLayerContainer(gopacket.DecodingLayerSparse(nil)) + var eth layers.Ethernet + dlp.AddDecodingLayer(ð) + // ... add layers and use DecodingLayerParser as usual... To skip one level of indirection (though sacrificing some capabilities) you may also use DecodingLayerContainer as a decoding tool as it is. In this case you have to handle unknown layer types and layer panics by yourself. Example: - func main() { - var eth layers.Ethernet - var ip4 layers.IPv4 - var ip6 layers.IPv6 - var tcp layers.TCP - dlc := gopacket.DecodingLayerContainer(gopacket.DecodingLayerArray(nil)) - dlc = dlc.Put(ð) - dlc = dlc.Put(&ip4) - dlc = dlc.Put(&ip6) - dlc = dlc.Put(&tcp) - // you may specify some meaningful DecodeFeedback - decoder := dlc.LayersDecoder(LayerTypeEthernet, gopacket.NilDecodeFeedback) - decoded := make([]gopacket.LayerType, 0, 20) - for packetData := range somehowGetPacketData() { - lt, err := decoder(packetData, &decoded) - if err != nil { - fmt.Fprintf(os.Stderr, "Could not decode layers: %v\n", err) - continue - } - if lt != gopacket.LayerTypeZero { - fmt.Fprintf(os.Stderr, "unknown layer type: %v\n", lt) - continue - } - for _, layerType := range decoded { - // examine decoded layertypes just as already shown above - } - } - } + func main() { + var eth layers.Ethernet + var ip4 layers.IPv4 + var ip6 layers.IPv6 + var tcp layers.TCP + dlc := gopacket.DecodingLayerContainer(gopacket.DecodingLayerArray(nil)) + dlc = dlc.Put(ð) + dlc = dlc.Put(&ip4) + dlc = dlc.Put(&ip6) + dlc = dlc.Put(&tcp) + // you may specify some meaningful DecodeFeedback + decoder := dlc.LayersDecoder(LayerTypeEthernet, gopacket.NilDecodeFeedback) + decoded := make([]gopacket.LayerType, 0, 20) + for packetData := range somehowGetPacketData() { + lt, err := decoder(packetData, &decoded) + if err != nil { + fmt.Fprintf(os.Stderr, "Could not decode layers: %v\n", err) + continue + } + if lt != gopacket.LayerTypeZero { + fmt.Fprintf(os.Stderr, "unknown layer type: %v\n", lt) + continue + } + for _, layerType := range decoded { + // examine decoded layertypes just as already shown above + } + } + } DecodingLayerSparse is the fastest but most effective when LayerType values that layers in use can decode are not large because otherwise that would lead @@ -382,23 +375,23 @@ subpackage to further examine usage examples and performance measurements. You may also choose to implement your own DecodingLayerContainer if you want to make use of your own internal packet decoding logic. -Creating Packet Data +# Creating Packet Data As well as offering the ability to decode packet data, gopacket will allow you to create packets from scratch, as well. A number of gopacket layers implement the SerializableLayer interface; these layers can be serialized to a []byte in the following manner: - ip := &layers.IPv4{ - SrcIP: net.IP{1, 2, 3, 4}, - DstIP: net.IP{5, 6, 7, 8}, - // etc... - } - buf := gopacket.NewSerializeBuffer() - opts := gopacket.SerializeOptions{} // See SerializeOptions for more details. - err := ip.SerializeTo(buf, opts) - if err != nil { panic(err) } - fmt.Println(buf.Bytes()) // prints out a byte slice containing the serialized IPv4 layer. + ip := &layers.IPv4{ + SrcIP: net.IP{1, 2, 3, 4}, + DstIP: net.IP{5, 6, 7, 8}, + // etc... + } + buf := gopacket.NewSerializeBuffer() + opts := gopacket.SerializeOptions{} // See SerializeOptions for more details. + err := ip.SerializeTo(buf, opts) + if err != nil { panic(err) } + fmt.Println(buf.Bytes()) // prints out a byte slice containing the serialized IPv4 layer. SerializeTo PREPENDS the given layer onto the SerializeBuffer, and they treat the current buffer's Bytes() slice as the payload of the serializing layer. @@ -409,24 +402,24 @@ SerializeBuffer's SerializeLayers function is a helper that does exactly that. To generate a (empty and useless, because no fields are set) Ethernet(IPv4(TCP(Payload))) packet, for example, you can run: - buf := gopacket.NewSerializeBuffer() - opts := gopacket.SerializeOptions{} - gopacket.SerializeLayers(buf, opts, - &layers.Ethernet{}, - &layers.IPv4{}, - &layers.TCP{}, - gopacket.Payload([]byte{1, 2, 3, 4})) - packetData := buf.Bytes() + buf := gopacket.NewSerializeBuffer() + opts := gopacket.SerializeOptions{} + gopacket.SerializeLayers(buf, opts, + &layers.Ethernet{}, + &layers.IPv4{}, + &layers.TCP{}, + gopacket.Payload([]byte{1, 2, 3, 4})) + packetData := buf.Bytes() -A Final Note +# A Final Note If you use gopacket, you'll almost definitely want to make sure gopacket/layers is imported, since when imported it sets all the LayerType variables and fills in a lot of interesting variables/maps (DecodersByLayerName, etc). Therefore, it's recommended that even if you don't use any layers functions directly, you still import with: - import ( - _ "github.com/google/gopacket/layers" - ) + import ( + _ "github.com/gopacket/gopacket/layers" + ) */ package gopacket diff --git a/vendor/github.com/google/gopacket/flows.go b/vendor/github.com/gopacket/gopacket/flows.go similarity index 100% rename from vendor/github.com/google/gopacket/flows.go rename to vendor/github.com/gopacket/gopacket/flows.go diff --git a/vendor/github.com/google/gopacket/gc b/vendor/github.com/gopacket/gopacket/gc similarity index 100% rename from vendor/github.com/google/gopacket/gc rename to vendor/github.com/gopacket/gopacket/gc diff --git a/vendor/github.com/google/gopacket/layerclass.go b/vendor/github.com/gopacket/gopacket/layerclass.go similarity index 100% rename from vendor/github.com/google/gopacket/layerclass.go rename to vendor/github.com/gopacket/gopacket/layerclass.go diff --git a/vendor/github.com/google/gopacket/layers/.lint_blacklist b/vendor/github.com/gopacket/gopacket/layers/.lint_blacklist similarity index 100% rename from vendor/github.com/google/gopacket/layers/.lint_blacklist rename to vendor/github.com/gopacket/gopacket/layers/.lint_blacklist diff --git a/vendor/github.com/google/gopacket/layers/arp.go b/vendor/github.com/gopacket/gopacket/layers/arp.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/arp.go rename to vendor/github.com/gopacket/gopacket/layers/arp.go index 0775ac0b6..64120253a 100644 --- a/vendor/github.com/google/gopacket/layers/arp.go +++ b/vendor/github.com/gopacket/gopacket/layers/arp.go @@ -12,7 +12,7 @@ import ( "errors" "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // Potential values for ARP.Operation. diff --git a/vendor/github.com/google/gopacket/layers/asf.go b/vendor/github.com/gopacket/gopacket/layers/asf.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/asf.go rename to vendor/github.com/gopacket/gopacket/layers/asf.go index d698bd0e5..c714e9f4e 100644 --- a/vendor/github.com/google/gopacket/layers/asf.go +++ b/vendor/github.com/gopacket/gopacket/layers/asf.go @@ -12,7 +12,7 @@ import ( "encoding/binary" "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) const ( diff --git a/vendor/github.com/google/gopacket/layers/asf_presencepong.go b/vendor/github.com/gopacket/gopacket/layers/asf_presencepong.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/asf_presencepong.go rename to vendor/github.com/gopacket/gopacket/layers/asf_presencepong.go index e9a8baf16..526cca4b9 100644 --- a/vendor/github.com/google/gopacket/layers/asf_presencepong.go +++ b/vendor/github.com/gopacket/gopacket/layers/asf_presencepong.go @@ -16,7 +16,7 @@ import ( "encoding/binary" "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) type ( diff --git a/vendor/github.com/google/gopacket/layers/base.go b/vendor/github.com/gopacket/gopacket/layers/base.go similarity index 97% rename from vendor/github.com/google/gopacket/layers/base.go rename to vendor/github.com/gopacket/gopacket/layers/base.go index cd59b4678..6a8b52dab 100644 --- a/vendor/github.com/google/gopacket/layers/base.go +++ b/vendor/github.com/gopacket/gopacket/layers/base.go @@ -7,7 +7,7 @@ package layers import ( - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // BaseLayer is a convenience struct which implements the LayerData and diff --git a/vendor/github.com/google/gopacket/layers/bfd.go b/vendor/github.com/gopacket/gopacket/layers/bfd.go similarity index 76% rename from vendor/github.com/google/gopacket/layers/bfd.go rename to vendor/github.com/gopacket/gopacket/layers/bfd.go index 43030fb6a..e66fd1ee0 100644 --- a/vendor/github.com/google/gopacket/layers/bfd.go +++ b/vendor/github.com/gopacket/gopacket/layers/bfd.go @@ -11,7 +11,7 @@ import ( "encoding/binary" "errors" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // BFD Control Packet Format @@ -19,72 +19,72 @@ import ( // The current version of BFD's RFC (RFC 5880) contains the following // diagram for the BFD Control packet format: // -// 0 1 2 3 -// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// |Vers | Diag |Sta|P|F|C|A|D|M| Detect Mult | Length | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | My Discriminator | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Your Discriminator | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Desired Min TX Interval | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Required Min RX Interval | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Required Min Echo RX Interval | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// 0 1 2 3 +// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// |Vers | Diag |Sta|P|F|C|A|D|M| Detect Mult | Length | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | My Discriminator | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Your Discriminator | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Desired Min TX Interval | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Required Min RX Interval | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Required Min Echo RX Interval | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ // -// An optional Authentication Section MAY be present: +// An optional Authentication Section MAY be present: // -// 0 1 2 3 -// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Auth Type | Auth Len | Authentication Data... | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// 0 1 2 3 +// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Auth Type | Auth Len | Authentication Data... | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ // // -// Simple Password Authentication Section Format -// --------------------------------------------- -// 0 1 2 3 -// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Auth Type | Auth Len | Auth Key ID | Password... | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | ... | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// Simple Password Authentication Section Format +// --------------------------------------------- +// 0 1 2 3 +// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Auth Type | Auth Len | Auth Key ID | Password... | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | ... | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ // // -// Keyed MD5 and Meticulous Keyed MD5 Authentication Section Format -// ---------------------------------------------------------------- -// 0 1 2 3 -// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Auth Type | Auth Len | Auth Key ID | Reserved | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Sequence Number | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Auth Key/Digest... | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | ... | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// Keyed MD5 and Meticulous Keyed MD5 Authentication Section Format +// ---------------------------------------------------------------- +// 0 1 2 3 +// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Auth Type | Auth Len | Auth Key ID | Reserved | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Sequence Number | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Auth Key/Digest... | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | ... | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ // // -// Keyed SHA1 and Meticulous Keyed SHA1 Authentication Section Format -// ------------------------------------------------------------------ -// 0 1 2 3 -// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Auth Type | Auth Len | Auth Key ID | Reserved | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Sequence Number | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Auth Key/Hash... | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | ... | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// Keyed SHA1 and Meticulous Keyed SHA1 Authentication Section Format +// ------------------------------------------------------------------ +// 0 1 2 3 +// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Auth Type | Auth Len | Auth Key ID | Reserved | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Sequence Number | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Auth Key/Hash... | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | ... | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ // -// From https://tools.ietf.org/rfc/rfc5880.txt +// From https://tools.ietf.org/rfc/rfc5880.txt const bfdMinimumRecordSizeInBytes int = 24 // BFDVersion represents the version as decoded from the BFD control message @@ -248,17 +248,20 @@ func (h *BFDAuthHeader) Length() int { // ---------- // // Wikipedia's BFD entry: -// https://en.wikipedia.org/wiki/Bidirectional_Forwarding_Detection -// This is the best place to get an overview of BFD. +// +// https://en.wikipedia.org/wiki/Bidirectional_Forwarding_Detection +// This is the best place to get an overview of BFD. // // RFC 5880 "Bidirectional Forwarding Detection (BFD)" (2010) -// https://tools.ietf.org/html/rfc5880 -// This is the original BFD specification. +// +// https://tools.ietf.org/html/rfc5880 +// This is the original BFD specification. // // RFC 5881 "Bidirectional Forwarding Detection (BFD) for IPv4 and IPv6 (Single Hop)" (2010) -// https://tools.ietf.org/html/rfc5881 -// Describes the use of the Bidirectional Forwarding Detection (BFD) -// protocol over IPv4 and IPv6 for single IP hops. +// +// https://tools.ietf.org/html/rfc5881 +// Describes the use of the Bidirectional Forwarding Detection (BFD) +// protocol over IPv4 and IPv6 for single IP hops. type BFD struct { BaseLayer // Stores the packet bytes and payload bytes. diff --git a/vendor/github.com/gopacket/gopacket/layers/bitfield.go b/vendor/github.com/gopacket/gopacket/layers/bitfield.go new file mode 100644 index 000000000..7d54acf07 --- /dev/null +++ b/vendor/github.com/gopacket/gopacket/layers/bitfield.go @@ -0,0 +1,18 @@ +// Copyright 2021 The GoPacket Authors. All rights reserved. +// +// Use of this source code is governed by a BSD-style license that can be found +// in the LICENSE file in the root of the source tree. + +package layers + +type bitfield [1024]uint64 + +// set sets bit i in bitfield b to 1. +func (b *bitfield) set(i uint16) { + b[i>>6] |= (1 << (i & 0x3f)) +} + +// has reports whether bit i is set to 1 in bitfield b. +func (b *bitfield) has(i uint16) bool { + return b[i>>6]&(1<<(i&0x3f)) != 0 +} diff --git a/vendor/github.com/google/gopacket/layers/cdp.go b/vendor/github.com/gopacket/gopacket/layers/cdp.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/cdp.go rename to vendor/github.com/gopacket/gopacket/layers/cdp.go index 095f92612..a920112e9 100644 --- a/vendor/github.com/google/gopacket/layers/cdp.go +++ b/vendor/github.com/gopacket/gopacket/layers/cdp.go @@ -17,7 +17,7 @@ import ( "fmt" "net" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // CDPTLVType is the type of each TLV value in a CiscoDiscovery packet. diff --git a/vendor/github.com/google/gopacket/layers/ctp.go b/vendor/github.com/gopacket/gopacket/layers/ctp.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/ctp.go rename to vendor/github.com/gopacket/gopacket/layers/ctp.go index 82875845a..8b43cb804 100644 --- a/vendor/github.com/google/gopacket/layers/ctp.go +++ b/vendor/github.com/gopacket/gopacket/layers/ctp.go @@ -9,7 +9,8 @@ package layers import ( "encoding/binary" "fmt" - "github.com/google/gopacket" + + "github.com/gopacket/gopacket" ) // EthernetCTPFunction is the function code used by the EthernetCTP protocol to identify each diff --git a/vendor/github.com/google/gopacket/layers/dhcpv4.go b/vendor/github.com/gopacket/gopacket/layers/dhcpv4.go similarity index 97% rename from vendor/github.com/google/gopacket/layers/dhcpv4.go rename to vendor/github.com/gopacket/gopacket/layers/dhcpv4.go index d79c59150..1f1e623ec 100644 --- a/vendor/github.com/google/gopacket/layers/dhcpv4.go +++ b/vendor/github.com/gopacket/gopacket/layers/dhcpv4.go @@ -12,7 +12,7 @@ import ( "fmt" "net" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // DHCPOp rerprents a bootp operation @@ -78,7 +78,7 @@ func (o DHCPMsgType) String() string { } } -//DHCPMagic is the RFC 2131 "magic cooke" for DHCP. +// DHCPMagic is the RFC 2131 "magic cooke" for DHCP. var DHCPMagic uint32 = 0x63825363 // DHCPv4 contains data for a single DHCP packet. @@ -87,7 +87,7 @@ type DHCPv4 struct { Operation DHCPOp HardwareType LinkType HardwareLen uint8 - HardwareOpts uint8 + RelayHops uint8 Xid uint32 Secs uint16 Flags uint16 @@ -132,7 +132,7 @@ func (d *DHCPv4) DecodeFromBytes(data []byte, df gopacket.DecodeFeedback) error d.Operation = DHCPOp(data[0]) d.HardwareType = LinkType(data[1]) d.HardwareLen = data[2] - d.HardwareOpts = data[3] + d.RelayHops = data[3] d.Xid = binary.BigEndian.Uint32(data[4:8]) d.Secs = binary.BigEndian.Uint16(data[8:10]) d.Flags = binary.BigEndian.Uint16(data[10:12]) @@ -209,7 +209,7 @@ func (d *DHCPv4) SerializeTo(b gopacket.SerializeBuffer, opts gopacket.Serialize d.HardwareLen = uint8(len(d.ClientHWAddr)) } data[2] = d.HardwareLen - data[3] = d.HardwareOpts + data[3] = d.RelayHops binary.BigEndian.PutUint32(data[4:8], d.Xid) binary.BigEndian.PutUint16(data[8:10], d.Secs) binary.BigEndian.PutUint16(data[10:12], d.Flags) @@ -222,8 +222,8 @@ func (d *DHCPv4) SerializeTo(b gopacket.SerializeBuffer, opts gopacket.Serialize copy(data[108:236], d.File) binary.BigEndian.PutUint32(data[236:240], DHCPMagic) + offset := 240 if len(d.Options) > 0 { - offset := 240 for _, o := range d.Options { if err := o.encode(data[offset:]); err != nil { return err @@ -235,10 +235,10 @@ func (d *DHCPv4) SerializeTo(b gopacket.SerializeBuffer, opts gopacket.Serialize offset += 2 + len(o.Data) } } - optend := NewDHCPOption(DHCPOptEnd, nil) - if err := optend.encode(data[offset:]); err != nil { - return err - } + } + optend := NewDHCPOption(DHCPOptEnd, nil) + if err := optend.encode(data[offset:]); err != nil { + return err } return nil } @@ -333,6 +333,7 @@ const ( DHCPOptDomainSearch DHCPOpt = 119 // n, string DHCPOptSIPServers DHCPOpt = 120 // n, url DHCPOptClasslessStaticRoute DHCPOpt = 121 // + DHCPOptMUDURLV4 DHCPOpt = 161 // n, string DHCPOptEnd DHCPOpt = 255 ) @@ -471,6 +472,8 @@ func (o DHCPOpt) String() string { return "DomainSearch" case DHCPOptClasslessStaticRoute: return "ClasslessStaticRoute" + case DHCPOptMUDURLV4: + return "ManufacturerUsageDescriptionURL" default: return "Unknown" } diff --git a/vendor/github.com/google/gopacket/layers/dhcpv6.go b/vendor/github.com/gopacket/gopacket/layers/dhcpv6.go similarity index 98% rename from vendor/github.com/google/gopacket/layers/dhcpv6.go rename to vendor/github.com/gopacket/gopacket/layers/dhcpv6.go index 2698cfb19..ef0c2455a 100644 --- a/vendor/github.com/google/gopacket/layers/dhcpv6.go +++ b/vendor/github.com/gopacket/gopacket/layers/dhcpv6.go @@ -11,7 +11,7 @@ import ( "fmt" "net" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // DHCPv6MsgType represents a DHCPv6 operation @@ -21,7 +21,7 @@ type DHCPv6MsgType byte const ( DHCPv6MsgTypeUnspecified DHCPv6MsgType = iota DHCPv6MsgTypeSolicit - DHCPv6MsgTypeAdverstise + DHCPv6MsgTypeAdvertise DHCPv6MsgTypeRequest DHCPv6MsgTypeConfirm DHCPv6MsgTypeRenew @@ -42,8 +42,8 @@ func (o DHCPv6MsgType) String() string { return "Unspecified" case DHCPv6MsgTypeSolicit: return "Solicit" - case DHCPv6MsgTypeAdverstise: - return "Adverstise" + case DHCPv6MsgTypeAdvertise: + return "Advertise" case DHCPv6MsgTypeRequest: return "Request" case DHCPv6MsgTypeConfirm: diff --git a/vendor/github.com/google/gopacket/layers/dhcpv6_options.go b/vendor/github.com/gopacket/gopacket/layers/dhcpv6_options.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/dhcpv6_options.go rename to vendor/github.com/gopacket/gopacket/layers/dhcpv6_options.go index 5a1f9919b..fd25775b9 100644 --- a/vendor/github.com/google/gopacket/layers/dhcpv6_options.go +++ b/vendor/github.com/gopacket/gopacket/layers/dhcpv6_options.go @@ -11,7 +11,8 @@ import ( "encoding/binary" "errors" "fmt" - "github.com/google/gopacket" + + "github.com/gopacket/gopacket" ) // DHCPv6Opt represents a DHCP option or parameter from RFC-3315 diff --git a/vendor/github.com/google/gopacket/layers/dns.go b/vendor/github.com/gopacket/gopacket/layers/dns.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/dns.go rename to vendor/github.com/gopacket/gopacket/layers/dns.go index de55294b5..0e7237e9b 100644 --- a/vendor/github.com/google/gopacket/layers/dns.go +++ b/vendor/github.com/gopacket/gopacket/layers/dns.go @@ -13,7 +13,7 @@ import ( "net" "strings" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // DNSClass defines the class associated with a request/response. Different DNS @@ -639,6 +639,10 @@ func (q *DNSQuestion) decode(data []byte, offset int, df gopacket.DecodeFeedback return 0, err } + if len(data) < endq+4 { + return 0, errors.New("DNS question too small") + } + q.Name = name q.Type = DNSType(binary.BigEndian.Uint16(data[endq : endq+2])) q.Class = DNSClass(binary.BigEndian.Uint16(data[endq+2 : endq+4])) @@ -709,6 +713,10 @@ func (rr *DNSResourceRecord) decode(data []byte, offset int, df gopacket.DecodeF return 0, err } + if len(data) < endq+10 { + return 0, errors.New("DNS record too small") + } + rr.Name = name rr.Type = DNSType(binary.BigEndian.Uint16(data[endq : endq+2])) rr.Class = DNSClass(binary.BigEndian.Uint16(data[endq+2 : endq+4])) @@ -720,8 +728,10 @@ func (rr *DNSResourceRecord) decode(data []byte, offset int, df gopacket.DecodeF } rr.Data = data[endq+10 : end] - if err = rr.decodeRData(data[:end], endq+10, buffer); err != nil { - return 0, err + if rr.DataLength > 0 { + if err = rr.decodeRData(data[:end], endq+10, buffer); err != nil { + return 0, err + } } return endq + 10 + int(rr.DataLength), nil diff --git a/vendor/github.com/google/gopacket/layers/doc.go b/vendor/github.com/gopacket/gopacket/layers/doc.go similarity index 89% rename from vendor/github.com/google/gopacket/layers/doc.go rename to vendor/github.com/gopacket/gopacket/layers/doc.go index 3c882c3fa..846ace904 100644 --- a/vendor/github.com/google/gopacket/layers/doc.go +++ b/vendor/github.com/gopacket/gopacket/layers/doc.go @@ -29,9 +29,9 @@ ApplicationLayer, while base SCTP implements TransportLayer), or possibly because splitting a protocol into a few layers makes decoding easier. This package is meant to be used with its parent, -http://github.com/google/gopacket. +http://github.com/gopacket/gopacket. -Port Types +# Port Types Instead of using raw uint16 or uint8 values for ports, we use a different port type for every protocol, for example TCPPort and UDPPort. This allows us to @@ -39,11 +39,11 @@ override string behavior for each port, which we do by setting up port name maps (TCPPortNames, UDPPortNames, etc...). Well-known ports are annotated with their protocol names, and their String function displays these names: - p := TCPPort(80) - fmt.Printf("Number: %d String: %v", p, p) - // Prints: "Number: 80 String: 80(http)" + p := TCPPort(80) + fmt.Printf("Number: %d String: %v", p, p) + // Prints: "Number: 80 String: 80(http)" -Modifying Decode Behavior +# Modifying Decode Behavior layers links together decoding through its enumerations. For example, after decoding layer type Ethernet, it uses Ethernet.EthernetType as its next decoder. @@ -52,8 +52,8 @@ users depending on their preferences. For example, if you have a spiffy new IPv4 decoder that works way better than the one built into layers, you can do this: - var mySpiffyIPv4Decoder gopacket.Decoder = ... - layers.EthernetTypeMetadata[EthernetTypeIPv4].DecodeWith = mySpiffyIPv4Decoder + var mySpiffyIPv4Decoder gopacket.Decoder = ... + layers.EthernetTypeMetadata[EthernetTypeIPv4].DecodeWith = mySpiffyIPv4Decoder This will make all future ethernet packets use your new decoder to decode IPv4 packets, instead of the built-in decoder used by gopacket. diff --git a/vendor/github.com/google/gopacket/layers/dot11.go b/vendor/github.com/gopacket/gopacket/layers/dot11.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/dot11.go rename to vendor/github.com/gopacket/gopacket/layers/dot11.go index 3e6491061..2b184779a 100644 --- a/vendor/github.com/google/gopacket/layers/dot11.go +++ b/vendor/github.com/gopacket/gopacket/layers/dot11.go @@ -16,7 +16,7 @@ import ( "hash/crc32" "net" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // Dot11Flags contains the set of 8 flags in the IEEE 802.11 frame control diff --git a/vendor/github.com/google/gopacket/layers/dot1q.go b/vendor/github.com/gopacket/gopacket/layers/dot1q.go similarity index 98% rename from vendor/github.com/google/gopacket/layers/dot1q.go rename to vendor/github.com/gopacket/gopacket/layers/dot1q.go index 5cdd2f8d6..ada0950f9 100644 --- a/vendor/github.com/google/gopacket/layers/dot1q.go +++ b/vendor/github.com/gopacket/gopacket/layers/dot1q.go @@ -10,7 +10,8 @@ package layers import ( "encoding/binary" "fmt" - "github.com/google/gopacket" + + "github.com/gopacket/gopacket" ) // Dot1Q is the packet layer for 802.1Q VLAN headers. diff --git a/vendor/github.com/google/gopacket/layers/eap.go b/vendor/github.com/gopacket/gopacket/layers/eap.go similarity index 98% rename from vendor/github.com/google/gopacket/layers/eap.go rename to vendor/github.com/gopacket/gopacket/layers/eap.go index 54238e8c7..d8dc9a9ec 100644 --- a/vendor/github.com/google/gopacket/layers/eap.go +++ b/vendor/github.com/gopacket/gopacket/layers/eap.go @@ -9,7 +9,8 @@ package layers import ( "encoding/binary" "fmt" - "github.com/google/gopacket" + + "github.com/gopacket/gopacket" ) type EAPCode uint8 diff --git a/vendor/github.com/google/gopacket/layers/eapol.go b/vendor/github.com/gopacket/gopacket/layers/eapol.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/eapol.go rename to vendor/github.com/gopacket/gopacket/layers/eapol.go index 902598a20..1016e1d4b 100644 --- a/vendor/github.com/google/gopacket/layers/eapol.go +++ b/vendor/github.com/gopacket/gopacket/layers/eapol.go @@ -9,7 +9,8 @@ package layers import ( "encoding/binary" "fmt" - "github.com/google/gopacket" + + "github.com/gopacket/gopacket" ) // EAPOL defines an EAP over LAN (802.1x) layer. diff --git a/vendor/github.com/google/gopacket/layers/endpoints.go b/vendor/github.com/gopacket/gopacket/layers/endpoints.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/endpoints.go rename to vendor/github.com/gopacket/gopacket/layers/endpoints.go index 4c91cc332..f2cec019d 100644 --- a/vendor/github.com/google/gopacket/layers/endpoints.go +++ b/vendor/github.com/gopacket/gopacket/layers/endpoints.go @@ -8,9 +8,10 @@ package layers import ( "encoding/binary" - "github.com/google/gopacket" "net" "strconv" + + "github.com/gopacket/gopacket" ) var ( diff --git a/vendor/github.com/google/gopacket/layers/enums.go b/vendor/github.com/gopacket/gopacket/layers/enums.go similarity index 98% rename from vendor/github.com/google/gopacket/layers/enums.go rename to vendor/github.com/gopacket/gopacket/layers/enums.go index 8427bdaf4..d76eed34c 100644 --- a/vendor/github.com/google/gopacket/layers/enums.go +++ b/vendor/github.com/gopacket/gopacket/layers/enums.go @@ -11,7 +11,7 @@ import ( "fmt" "runtime" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // EnumMetadata keeps track of a set of metadata for each enumeration value @@ -85,11 +85,11 @@ const ( // LinkType is an enumeration of link types, and acts as a decoder for any // link type it supports. -type LinkType uint8 +type LinkType uint16 const ( // According to pcap-linktype(7) and http://www.tcpdump.org/linktypes.html - LinkTypeNull LinkType = 0 + LinkTypeNull LinkType = iota LinkTypeEthernet LinkType = 1 LinkTypeAX25 LinkType = 3 LinkTypeTokenRing LinkType = 6 @@ -126,6 +126,10 @@ const ( LinkTypeFC2Framed LinkType = 225 LinkTypeIPv4 LinkType = 228 LinkTypeIPv6 LinkType = 229 + LinkTypeLinuxSLL2 LinkType = 276 + + // Warning: this const should always be 1 larger than the largest valid value + LinkTypeMax LinkType = 277 ) // PPPoECode is the PPPoE code enum, taken from http://tools.ietf.org/html/rfc2516 @@ -385,6 +389,7 @@ func initActualTypeData() { LinkTypeMetadata[LinkTypeLinuxUSB] = EnumMetadata{DecodeWith: gopacket.DecodeFunc(decodeUSB), Name: "USB"} LinkTypeMetadata[LinkTypeLinuxSLL] = EnumMetadata{DecodeWith: gopacket.DecodeFunc(decodeLinuxSLL), Name: "Linux SLL"} LinkTypeMetadata[LinkTypePrismHeader] = EnumMetadata{DecodeWith: gopacket.DecodeFunc(decodePrismHeader), Name: "Prism"} + LinkTypeMetadata[LinkTypeLinuxSLL2] = EnumMetadata{DecodeWith: gopacket.DecodeFunc(decodeLinuxSLL2), Name: "Linux SLL2"} FDDIFrameControlMetadata[FDDIFrameControlLLC] = EnumMetadata{DecodeWith: gopacket.DecodeFunc(decodeLLC), Name: "LLC"} diff --git a/vendor/github.com/gopacket/gopacket/layers/enums_generated.go b/vendor/github.com/gopacket/gopacket/layers/enums_generated.go new file mode 100644 index 000000000..64f5bf380 --- /dev/null +++ b/vendor/github.com/gopacket/gopacket/layers/enums_generated.go @@ -0,0 +1,401 @@ +// Copyright 2012 Google, Inc. All rights reserved. + +package layers + +// Created by gen2.go, don't edit manually +// Generated at 2023-09-26 15:45:59.728838421 +0400 +04 m=+0.000090902 + +import ( + "fmt" + + "github.com/gopacket/gopacket" +) + +func init() { + initActualTypeData() +} + +// Decoder calls LinkTypeMetadata.DecodeWith's decoder. +func (a LinkType) Decode(data []byte, p gopacket.PacketBuilder) error { + if int(a) < 277 { + if metadata := LinkTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.DecodeWith.Decode(data, p) + } + } + + return fmt.Errorf("Unable to decode LinkType %d", a) +} + +// String returns LinkTypeMetadata.Name. +func (a LinkType) String() string { + if int(a) < 277 { + if metadata := LinkTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.Name + } + } + + return "UnknownLinkType" +} + +// LayerType returns LinkTypeMetadata.LayerType. +func (a LinkType) LayerType() gopacket.LayerType { + if int(a) < 277 { + if metadata := LinkTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.LayerType + } + } + + return 0 +} + +var LinkTypeMetadata [277]EnumMetadata + +// Decoder calls EthernetTypeMetadata.DecodeWith's decoder. +func (a EthernetType) Decode(data []byte, p gopacket.PacketBuilder) error { + if int(a) < 65536 { + if metadata := EthernetTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.DecodeWith.Decode(data, p) + } + } + + return fmt.Errorf("Unable to decode EthernetType %d", a) +} + +// String returns EthernetTypeMetadata.Name. +func (a EthernetType) String() string { + if int(a) < 65536 { + if metadata := EthernetTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.Name + } + } + + return "UnknownEthernetType" +} + +// LayerType returns EthernetTypeMetadata.LayerType. +func (a EthernetType) LayerType() gopacket.LayerType { + if int(a) < 65536 { + if metadata := EthernetTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.LayerType + } + } + + return 0 +} + +var EthernetTypeMetadata [65536]EnumMetadata + +// Decoder calls PPPTypeMetadata.DecodeWith's decoder. +func (a PPPType) Decode(data []byte, p gopacket.PacketBuilder) error { + if int(a) < 65536 { + if metadata := PPPTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.DecodeWith.Decode(data, p) + } + } + + return fmt.Errorf("Unable to decode PPPType %d", a) +} + +// String returns PPPTypeMetadata.Name. +func (a PPPType) String() string { + if int(a) < 65536 { + if metadata := PPPTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.Name + } + } + + return "UnknownPPPType" +} + +// LayerType returns PPPTypeMetadata.LayerType. +func (a PPPType) LayerType() gopacket.LayerType { + if int(a) < 65536 { + if metadata := PPPTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.LayerType + } + } + + return 0 +} + +var PPPTypeMetadata [65536]EnumMetadata + +// Decoder calls IPProtocolMetadata.DecodeWith's decoder. +func (a IPProtocol) Decode(data []byte, p gopacket.PacketBuilder) error { + if int(a) < 256 { + if metadata := IPProtocolMetadata[a]; metadata.DecodeWith != nil { + return metadata.DecodeWith.Decode(data, p) + } + } + + return fmt.Errorf("Unable to decode IPProtocol %d", a) +} + +// String returns IPProtocolMetadata.Name. +func (a IPProtocol) String() string { + if int(a) < 256 { + if metadata := IPProtocolMetadata[a]; metadata.DecodeWith != nil { + return metadata.Name + } + } + + return "UnknownIPProtocol" +} + +// LayerType returns IPProtocolMetadata.LayerType. +func (a IPProtocol) LayerType() gopacket.LayerType { + if int(a) < 256 { + if metadata := IPProtocolMetadata[a]; metadata.DecodeWith != nil { + return metadata.LayerType + } + } + + return 0 +} + +var IPProtocolMetadata [256]EnumMetadata + +// Decoder calls SCTPChunkTypeMetadata.DecodeWith's decoder. +func (a SCTPChunkType) Decode(data []byte, p gopacket.PacketBuilder) error { + if int(a) < 256 { + if metadata := SCTPChunkTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.DecodeWith.Decode(data, p) + } + } + + return fmt.Errorf("Unable to decode SCTPChunkType %d", a) +} + +// String returns SCTPChunkTypeMetadata.Name. +func (a SCTPChunkType) String() string { + if int(a) < 256 { + if metadata := SCTPChunkTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.Name + } + } + + return "UnknownSCTPChunkType" +} + +// LayerType returns SCTPChunkTypeMetadata.LayerType. +func (a SCTPChunkType) LayerType() gopacket.LayerType { + if int(a) < 256 { + if metadata := SCTPChunkTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.LayerType + } + } + + return 0 +} + +var SCTPChunkTypeMetadata [256]EnumMetadata + +// Decoder calls PPPoECodeMetadata.DecodeWith's decoder. +func (a PPPoECode) Decode(data []byte, p gopacket.PacketBuilder) error { + if int(a) < 256 { + if metadata := PPPoECodeMetadata[a]; metadata.DecodeWith != nil { + return metadata.DecodeWith.Decode(data, p) + } + } + + return fmt.Errorf("Unable to decode PPPoECode %d", a) +} + +// String returns PPPoECodeMetadata.Name. +func (a PPPoECode) String() string { + if int(a) < 256 { + if metadata := PPPoECodeMetadata[a]; metadata.DecodeWith != nil { + return metadata.Name + } + } + + return "UnknownPPPoECode" +} + +// LayerType returns PPPoECodeMetadata.LayerType. +func (a PPPoECode) LayerType() gopacket.LayerType { + if int(a) < 256 { + if metadata := PPPoECodeMetadata[a]; metadata.DecodeWith != nil { + return metadata.LayerType + } + } + + return 0 +} + +var PPPoECodeMetadata [256]EnumMetadata + +// Decoder calls FDDIFrameControlMetadata.DecodeWith's decoder. +func (a FDDIFrameControl) Decode(data []byte, p gopacket.PacketBuilder) error { + if int(a) < 256 { + if metadata := FDDIFrameControlMetadata[a]; metadata.DecodeWith != nil { + return metadata.DecodeWith.Decode(data, p) + } + } + + return fmt.Errorf("Unable to decode FDDIFrameControl %d", a) +} + +// String returns FDDIFrameControlMetadata.Name. +func (a FDDIFrameControl) String() string { + if int(a) < 256 { + if metadata := FDDIFrameControlMetadata[a]; metadata.DecodeWith != nil { + return metadata.Name + } + } + + return "UnknownFDDIFrameControl" +} + +// LayerType returns FDDIFrameControlMetadata.LayerType. +func (a FDDIFrameControl) LayerType() gopacket.LayerType { + if int(a) < 256 { + if metadata := FDDIFrameControlMetadata[a]; metadata.DecodeWith != nil { + return metadata.LayerType + } + } + + return 0 +} + +var FDDIFrameControlMetadata [256]EnumMetadata + +// Decoder calls EAPOLTypeMetadata.DecodeWith's decoder. +func (a EAPOLType) Decode(data []byte, p gopacket.PacketBuilder) error { + if int(a) < 256 { + if metadata := EAPOLTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.DecodeWith.Decode(data, p) + } + } + + return fmt.Errorf("Unable to decode EAPOLType %d", a) +} + +// String returns EAPOLTypeMetadata.Name. +func (a EAPOLType) String() string { + if int(a) < 256 { + if metadata := EAPOLTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.Name + } + } + + return "UnknownEAPOLType" +} + +// LayerType returns EAPOLTypeMetadata.LayerType. +func (a EAPOLType) LayerType() gopacket.LayerType { + if int(a) < 256 { + if metadata := EAPOLTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.LayerType + } + } + + return 0 +} + +var EAPOLTypeMetadata [256]EnumMetadata + +// Decoder calls ProtocolFamilyMetadata.DecodeWith's decoder. +func (a ProtocolFamily) Decode(data []byte, p gopacket.PacketBuilder) error { + if int(a) < 256 { + if metadata := ProtocolFamilyMetadata[a]; metadata.DecodeWith != nil { + return metadata.DecodeWith.Decode(data, p) + } + } + + return fmt.Errorf("Unable to decode ProtocolFamily %d", a) +} + +// String returns ProtocolFamilyMetadata.Name. +func (a ProtocolFamily) String() string { + if int(a) < 256 { + if metadata := ProtocolFamilyMetadata[a]; metadata.DecodeWith != nil { + return metadata.Name + } + } + + return "UnknownProtocolFamily" +} + +// LayerType returns ProtocolFamilyMetadata.LayerType. +func (a ProtocolFamily) LayerType() gopacket.LayerType { + if int(a) < 256 { + if metadata := ProtocolFamilyMetadata[a]; metadata.DecodeWith != nil { + return metadata.LayerType + } + } + + return 0 +} + +var ProtocolFamilyMetadata [256]EnumMetadata + +// Decoder calls Dot11TypeMetadata.DecodeWith's decoder. +func (a Dot11Type) Decode(data []byte, p gopacket.PacketBuilder) error { + if int(a) < 256 { + if metadata := Dot11TypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.DecodeWith.Decode(data, p) + } + } + + return fmt.Errorf("Unable to decode Dot11Type %d", a) +} + +// String returns Dot11TypeMetadata.Name. +func (a Dot11Type) String() string { + if int(a) < 256 { + if metadata := Dot11TypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.Name + } + } + + return "UnknownDot11Type" +} + +// LayerType returns Dot11TypeMetadata.LayerType. +func (a Dot11Type) LayerType() gopacket.LayerType { + if int(a) < 256 { + if metadata := Dot11TypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.LayerType + } + } + + return 0 +} + +var Dot11TypeMetadata [256]EnumMetadata + +// Decoder calls USBTransportTypeMetadata.DecodeWith's decoder. +func (a USBTransportType) Decode(data []byte, p gopacket.PacketBuilder) error { + if int(a) < 256 { + if metadata := USBTransportTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.DecodeWith.Decode(data, p) + } + } + + return fmt.Errorf("Unable to decode USBTransportType %d", a) +} + +// String returns USBTransportTypeMetadata.Name. +func (a USBTransportType) String() string { + if int(a) < 256 { + if metadata := USBTransportTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.Name + } + } + + return "UnknownUSBTransportType" +} + +// LayerType returns USBTransportTypeMetadata.LayerType. +func (a USBTransportType) LayerType() gopacket.LayerType { + if int(a) < 256 { + if metadata := USBTransportTypeMetadata[a]; metadata.DecodeWith != nil { + return metadata.LayerType + } + } + + return 0 +} + +var USBTransportTypeMetadata [256]EnumMetadata diff --git a/vendor/github.com/google/gopacket/layers/erspan2.go b/vendor/github.com/gopacket/gopacket/layers/erspan2.go similarity index 98% rename from vendor/github.com/google/gopacket/layers/erspan2.go rename to vendor/github.com/gopacket/gopacket/layers/erspan2.go index 154436205..dae2b30c8 100644 --- a/vendor/github.com/google/gopacket/layers/erspan2.go +++ b/vendor/github.com/gopacket/gopacket/layers/erspan2.go @@ -9,7 +9,7 @@ package layers import ( "encoding/binary" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) const ( diff --git a/vendor/github.com/google/gopacket/layers/etherip.go b/vendor/github.com/gopacket/gopacket/layers/etherip.go similarity index 97% rename from vendor/github.com/google/gopacket/layers/etherip.go rename to vendor/github.com/gopacket/gopacket/layers/etherip.go index 5b7b7229e..d290e3036 100644 --- a/vendor/github.com/google/gopacket/layers/etherip.go +++ b/vendor/github.com/gopacket/gopacket/layers/etherip.go @@ -8,7 +8,8 @@ package layers import ( "encoding/binary" - "github.com/google/gopacket" + + "github.com/gopacket/gopacket" ) // EtherIP is the struct for storing RFC 3378 EtherIP packet headers. diff --git a/vendor/github.com/google/gopacket/layers/ethernet.go b/vendor/github.com/gopacket/gopacket/layers/ethernet.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/ethernet.go rename to vendor/github.com/gopacket/gopacket/layers/ethernet.go index b73748f2f..eb787a40e 100644 --- a/vendor/github.com/google/gopacket/layers/ethernet.go +++ b/vendor/github.com/gopacket/gopacket/layers/ethernet.go @@ -11,8 +11,9 @@ import ( "encoding/binary" "errors" "fmt" - "github.com/google/gopacket" "net" + + "github.com/gopacket/gopacket" ) // EthernetBroadcast is the broadcast MAC address used by Ethernet. diff --git a/vendor/github.com/google/gopacket/layers/fddi.go b/vendor/github.com/gopacket/gopacket/layers/fddi.go similarity index 96% rename from vendor/github.com/google/gopacket/layers/fddi.go rename to vendor/github.com/gopacket/gopacket/layers/fddi.go index ed9e1957b..a99bdd004 100644 --- a/vendor/github.com/google/gopacket/layers/fddi.go +++ b/vendor/github.com/gopacket/gopacket/layers/fddi.go @@ -7,8 +7,9 @@ package layers import ( - "github.com/google/gopacket" "net" + + "github.com/gopacket/gopacket" ) // FDDI contains the header for FDDI frames. diff --git a/vendor/github.com/google/gopacket/layers/fuzz_layer.go b/vendor/github.com/gopacket/gopacket/layers/fuzz_layer.go similarity index 97% rename from vendor/github.com/google/gopacket/layers/fuzz_layer.go rename to vendor/github.com/gopacket/gopacket/layers/fuzz_layer.go index 606e45d24..3f6a8f65b 100644 --- a/vendor/github.com/google/gopacket/layers/fuzz_layer.go +++ b/vendor/github.com/gopacket/gopacket/layers/fuzz_layer.go @@ -8,7 +8,7 @@ package layers import ( "encoding/binary" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // FuzzLayer is a fuzz target for the layers package of gopacket diff --git a/vendor/github.com/google/gopacket/layers/gen_linted.sh b/vendor/github.com/gopacket/gopacket/layers/gen_linted.sh similarity index 100% rename from vendor/github.com/google/gopacket/layers/gen_linted.sh rename to vendor/github.com/gopacket/gopacket/layers/gen_linted.sh diff --git a/vendor/github.com/google/gopacket/layers/geneve.go b/vendor/github.com/gopacket/gopacket/layers/geneve.go similarity index 51% rename from vendor/github.com/google/gopacket/layers/geneve.go rename to vendor/github.com/gopacket/gopacket/layers/geneve.go index e9a142880..61af26112 100644 --- a/vendor/github.com/google/gopacket/layers/geneve.go +++ b/vendor/github.com/gopacket/gopacket/layers/geneve.go @@ -9,19 +9,21 @@ package layers import ( "encoding/binary" "errors" + "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // Geneve is specifed here https://tools.ietf.org/html/draft-ietf-nvo3-geneve-03 // Geneve Header: -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// |Ver| Opt Len |O|C| Rsvd. | Protocol Type | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Virtual Network Identifier (VNI) | Reserved | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Variable Length Options | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// |Ver| Opt Len |O|C| Rsvd. | Protocol Type | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Virtual Network Identifier (VNI) | Reserved | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Variable Length Options | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ type Geneve struct { BaseLayer Version uint8 // 2 bits @@ -34,11 +36,12 @@ type Geneve struct { } // Geneve Tunnel Options -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Option Class | Type |R|R|R| Length | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Variable Option Data | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Option Class | Type |R|R|R| Length | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Variable Option Data | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ type GeneveOption struct { Class uint16 // 16 bits Type uint8 // 8 bits @@ -59,8 +62,8 @@ func decodeGeneveOption(data []byte, gn *Geneve, df gopacket.DecodeFeedback) (*G opt.Class = binary.BigEndian.Uint16(data[0:2]) opt.Type = data[2] - opt.Flags = data[3] >> 4 - opt.Length = (data[3]&0xf)*4 + 4 + opt.Flags = data[3] >> 5 + opt.Length = (data[3]&0x1f)*4 + 4 if len(data) < int(opt.Length) { df.SetTruncated() @@ -119,3 +122,73 @@ func decodeGeneve(data []byte, p gopacket.PacketBuilder) error { gn := &Geneve{} return decodingLayerDecoder(gn, data, p) } + +// SerializeTo writes the serialized form of this layer into the +// SerializationBuffer, implementing gopacket.SerializableLayer. +// See the docs for gopacket.SerializableLayer for more info. +func (gn *Geneve) SerializeTo(b gopacket.SerializeBuffer, opts gopacket.SerializeOptions) error { + var optionsLength int + for _, o := range gn.Options { + dataLen := len(o.Data) & ^3 + optionsLength += 4 + dataLen + } + if opts.FixLengths { + gn.OptionsLength = uint8(optionsLength) + } + + plen := int(8 + optionsLength) + bytes, err := b.PrependBytes(plen) + if err != nil { + return err + } + + // PrependBytes does not guarantee that bytes are zeroed. Setting flags via OR requires that they start off at zero + bytes[0] = 0 + bytes[1] = 0 + + // Construct Geneve + + bytes[0] |= gn.Version << 6 + bytes[0] |= ((gn.OptionsLength >> 2) & 0x3f) + + if gn.OAMPacket { + bytes[1] |= 0x80 + } + + if gn.CriticalOption { + bytes[1] |= 0x40 + } + + binary.BigEndian.PutUint16(bytes[2:4], uint16(gn.Protocol)) + + if gn.VNI >= 1<<24 { + return fmt.Errorf("Virtual Network Identifier = %x exceeds max for 24-bit uint", gn.VNI) + } + binary.BigEndian.PutUint32(bytes[4:8], gn.VNI<<8) + + // Construct Options + + offset := 8 + for _, o := range gn.Options { + dataLen := len(o.Data) & ^3 + if opts.FixLengths { + o.Length = uint8(4 + dataLen) + } + + binary.BigEndian.PutUint16(bytes[offset:(offset+2)], uint16(o.Class)) + + offset += 2 + bytes[offset] = o.Type + + offset += 1 + bytes[offset] = o.Flags << 5 + bytes[offset] |= ((o.Length - 4) >> 2) & 0x1f + + offset += 1 + copy(bytes[offset:(offset+dataLen)], o.Data) + + offset += dataLen + } + + return nil +} diff --git a/vendor/github.com/google/gopacket/layers/gre.go b/vendor/github.com/gopacket/gopacket/layers/gre.go similarity index 90% rename from vendor/github.com/google/gopacket/layers/gre.go rename to vendor/github.com/gopacket/gopacket/layers/gre.go index 9c5e7d246..308166cc1 100644 --- a/vendor/github.com/google/gopacket/layers/gre.go +++ b/vendor/github.com/gopacket/gopacket/layers/gre.go @@ -9,7 +9,7 @@ package layers import ( "encoding/binary" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // GRE is a Generic Routing Encapsulation header. @@ -176,7 +176,8 @@ func (g *GRE) SerializeTo(b gopacket.SerializeBuffer, opts gopacket.SerializeOpt } if g.ChecksumPresent { if opts.ComputeChecksums { - g.Checksum = tcpipChecksum(b.Bytes(), 0) + csum := gopacket.ComputeChecksum(b.Bytes(), 0) + g.Checksum = gopacket.FoldChecksum(csum) } binary.BigEndian.PutUint16(buf[4:6], g.Checksum) @@ -194,6 +195,19 @@ func (g *GRE) NextLayerType() gopacket.LayerType { return g.Protocol.LayerType() } +func (g *GRE) VerifyChecksum() (error, gopacket.ChecksumVerificationResult) { + bytes := append(g.Contents, g.Payload...) + + existing := g.Checksum + verification := gopacket.ComputeChecksum(bytes, 0) + correct := gopacket.FoldChecksum(verification - uint32(existing)) + return nil, gopacket.ChecksumVerificationResult{ + Valid: !g.ChecksumPresent || correct == existing, + Correct: uint32(correct), + Actual: uint32(existing), + } +} + func decodeGRE(data []byte, p gopacket.PacketBuilder) error { g := &GRE{} return decodingLayerDecoder(g, data, p) diff --git a/vendor/github.com/google/gopacket/layers/gtp.go b/vendor/github.com/gopacket/gopacket/layers/gtp.go similarity index 98% rename from vendor/github.com/google/gopacket/layers/gtp.go rename to vendor/github.com/gopacket/gopacket/layers/gtp.go index fe3054a6d..82b80bede 100644 --- a/vendor/github.com/google/gopacket/layers/gtp.go +++ b/vendor/github.com/gopacket/gopacket/layers/gtp.go @@ -10,7 +10,8 @@ package layers import ( "encoding/binary" "fmt" - "github.com/google/gopacket" + + "github.com/gopacket/gopacket" ) const gtpMinimumSizeInBytes int = 8 @@ -87,7 +88,6 @@ func (g *GTPv1U) DecodeFromBytes(data []byte, df gopacket.DecodeFeedback) error // extensionLength is in 4-octet units lIndex := cIndex + (uint16(extensionLength) * 4) if uint16(dLen) < lIndex { - fmt.Println(dLen, lIndex) return fmt.Errorf("GTP packet with small extension header: %d bytes", dLen) } content := data[cIndex+1 : lIndex-1] diff --git a/vendor/github.com/gopacket/gopacket/layers/iana_ports.go b/vendor/github.com/gopacket/gopacket/layers/iana_ports.go new file mode 100644 index 000000000..73e892227 --- /dev/null +++ b/vendor/github.com/gopacket/gopacket/layers/iana_ports.go @@ -0,0 +1,22944 @@ +// Copyright 2012 Google, Inc. All rights reserved. + +package layers + +// Created by gen.go, don't edit manually +// Generated at 2023-07-28 17:00:37.114586196 +0400 +04 m=+2.218439472 +// Fetched from "http://www.iana.org/assignments/service-names-port-numbers/service-names-port-numbers.xml" + +// TCPPortNames contains the port names for all TCP ports. +func TCPPortNames(port TCPPort) (string, bool) { + switch port { + case 1: + return "tcpmux", true + case 2: + return "compressnet", true + case 3: + return "compressnet", true + case 5: + return "rje", true + case 7: + return "echo", true + case 9: + return "discard", true + case 11: + return "systat", true + case 13: + return "daytime", true + case 17: + return "qotd", true + case 18: + return "msp", true + case 19: + return "chargen", true + case 20: + return "ftp-data", true + case 21: + return "ftp", true + case 22: + return "ssh", true + case 23: + return "telnet", true + case 25: + return "smtp", true + case 27: + return "nsw-fe", true + case 29: + return "msg-icp", true + case 31: + return "msg-auth", true + case 33: + return "dsp", true + case 37: + return "time", true + case 38: + return "rap", true + case 39: + return "rlp", true + case 41: + return "graphics", true + case 42: + return "name", true + case 43: + return "nicname", true + case 44: + return "mpm-flags", true + case 45: + return "mpm", true + case 46: + return "mpm-snd", true + case 48: + return "auditd", true + case 49: + return "tacacs", true + case 50: + return "re-mail-ck", true + case 52: + return "xns-time", true + case 53: + return "domain", true + case 54: + return "xns-ch", true + case 55: + return "isi-gl", true + case 56: + return "xns-auth", true + case 58: + return "xns-mail", true + case 62: + return "acas", true + case 63: + return "whoispp", true + case 64: + return "covia", true + case 65: + return "tacacs-ds", true + case 66: + return "sql-net", true + case 67: + return "bootps", true + case 68: + return "bootpc", true + case 69: + return "tftp", true + case 70: + return "gopher", true + case 71: + return "netrjs-1", true + case 72: + return "netrjs-2", true + case 73: + return "netrjs-3", true + case 74: + return "netrjs-4", true + case 76: + return "deos", true + case 78: + return "vettcp", true + case 79: + return "finger", true + case 80: + return "http", true + case 82: + return "xfer", true + case 83: + return "mit-ml-dev", true + case 84: + return "ctf", true + case 85: + return "mit-ml-dev", true + case 86: + return "mfcobol", true + case 88: + return "kerberos", true + case 89: + return "su-mit-tg", true + case 90: + return "dnsix", true + case 91: + return "mit-dov", true + case 92: + return "npp", true + case 93: + return "dcp", true + case 94: + return "objcall", true + case 95: + return "supdup", true + case 96: + return "dixie", true + case 97: + return "swift-rvf", true + case 98: + return "tacnews", true + case 99: + return "metagram", true + case 101: + return "hostname", true + case 102: + return "iso-tsap", true + case 103: + return "gppitnp", true + case 104: + return "acr-nema", true + case 105: + return "cso", true + case 106: + return "3com-tsmux", true + case 107: + return "rtelnet", true + case 108: + return "snagas", true + case 109: + return "pop2", true + case 110: + return "pop3", true + case 111: + return "sunrpc", true + case 112: + return "mcidas", true + case 113: + return "ident", true + case 115: + return "sftp", true + case 116: + return "ansanotify", true + case 117: + return "uucp-path", true + case 118: + return "sqlserv", true + case 119: + return "nntp", true + case 120: + return "cfdptkt", true + case 121: + return "erpc", true + case 122: + return "smakynet", true + case 123: + return "ntp", true + case 124: + return "ansatrader", true + case 125: + return "locus-map", true + case 126: + return "nxedit", true + case 127: + return "locus-con", true + case 128: + return "gss-xlicen", true + case 129: + return "pwdgen", true + case 130: + return "cisco-fna", true + case 131: + return "cisco-tna", true + case 132: + return "cisco-sys", true + case 133: + return "statsrv", true + case 134: + return "ingres-net", true + case 135: + return "epmap", true + case 136: + return "profile", true + case 137: + return "netbios-ns", true + case 138: + return "netbios-dgm", true + case 139: + return "netbios-ssn", true + case 140: + return "emfis-data", true + case 141: + return "emfis-cntl", true + case 142: + return "bl-idm", true + case 143: + return "imap", true + case 144: + return "uma", true + case 145: + return "uaac", true + case 146: + return "iso-tp0", true + case 147: + return "iso-ip", true + case 148: + return "jargon", true + case 149: + return "aed-512", true + case 150: + return "sql-net", true + case 151: + return "hems", true + case 152: + return "bftp", true + case 153: + return "sgmp", true + case 154: + return "netsc-prod", true + case 155: + return "netsc-dev", true + case 156: + return "sqlsrv", true + case 157: + return "knet-cmp", true + case 158: + return "pcmail-srv", true + case 159: + return "nss-routing", true + case 160: + return "sgmp-traps", true + case 161: + return "snmp", true + case 162: + return "snmptrap", true + case 163: + return "cmip-man", true + case 164: + return "cmip-agent", true + case 165: + return "xns-courier", true + case 166: + return "s-net", true + case 167: + return "namp", true + case 168: + return "rsvd", true + case 169: + return "send", true + case 170: + return "print-srv", true + case 171: + return "multiplex", true + case 172: + return "cl-1", true + case 173: + return "xyplex-mux", true + case 174: + return "mailq", true + case 175: + return "vmnet", true + case 176: + return "genrad-mux", true + case 177: + return "xdmcp", true + case 178: + return "nextstep", true + case 179: + return "bgp", true + case 180: + return "ris", true + case 181: + return "unify", true + case 182: + return "audit", true + case 183: + return "ocbinder", true + case 184: + return "ocserver", true + case 185: + return "remote-kis", true + case 186: + return "kis", true + case 187: + return "aci", true + case 188: + return "mumps", true + case 189: + return "qft", true + case 190: + return "gacp", true + case 191: + return "prospero", true + case 192: + return "osu-nms", true + case 193: + return "srmp", true + case 194: + return "irc", true + case 195: + return "dn6-nlm-aud", true + case 196: + return "dn6-smm-red", true + case 197: + return "dls", true + case 198: + return "dls-mon", true + case 199: + return "smux", true + case 200: + return "src", true + case 201: + return "at-rtmp", true + case 202: + return "at-nbp", true + case 203: + return "at-3", true + case 204: + return "at-echo", true + case 205: + return "at-5", true + case 206: + return "at-zis", true + case 207: + return "at-7", true + case 208: + return "at-8", true + case 209: + return "qmtp", true + case 210: + return "z39-50", true + case 211: + return "914c-g", true + case 212: + return "anet", true + case 213: + return "ipx", true + case 214: + return "vmpwscs", true + case 215: + return "softpc", true + case 216: + return "CAIlic", true + case 217: + return "dbase", true + case 218: + return "mpp", true + case 219: + return "uarps", true + case 220: + return "imap3", true + case 221: + return "fln-spx", true + case 222: + return "rsh-spx", true + case 223: + return "cdc", true + case 224: + return "masqdialer", true + case 242: + return "direct", true + case 243: + return "sur-meas", true + case 244: + return "inbusiness", true + case 245: + return "link", true + case 246: + return "dsp3270", true + case 247: + return "subntbcst-tftp", true + case 248: + return "bhfhs", true + case 256: + return "rap", true + case 257: + return "set", true + case 259: + return "esro-gen", true + case 260: + return "openport", true + case 261: + return "nsiiops", true + case 262: + return "arcisdms", true + case 263: + return "hdap", true + case 264: + return "bgmp", true + case 265: + return "x-bone-ctl", true + case 266: + return "sst", true + case 267: + return "td-service", true + case 268: + return "td-replica", true + case 269: + return "manet", true + case 271: + return "pt-tls", true + case 280: + return "http-mgmt", true + case 281: + return "personal-link", true + case 282: + return "cableport-ax", true + case 283: + return "rescap", true + case 284: + return "corerjd", true + case 286: + return "fxp", true + case 287: + return "k-block", true + case 308: + return "novastorbakcup", true + case 309: + return "entrusttime", true + case 310: + return "bhmds", true + case 311: + return "asip-webadmin", true + case 312: + return "vslmp", true + case 313: + return "magenta-logic", true + case 314: + return "opalis-robot", true + case 315: + return "dpsi", true + case 316: + return "decauth", true + case 317: + return "zannet", true + case 318: + return "pkix-timestamp", true + case 319: + return "ptp-event", true + case 320: + return "ptp-general", true + case 321: + return "pip", true + case 322: + return "rtsps", true + case 323: + return "rpki-rtr", true + case 324: + return "rpki-rtr-tls", true + case 333: + return "texar", true + case 344: + return "pdap", true + case 345: + return "pawserv", true + case 346: + return "zserv", true + case 347: + return "fatserv", true + case 348: + return "csi-sgwp", true + case 349: + return "mftp", true + case 350: + return "matip-type-a", true + case 351: + return "matip-type-b", true + case 352: + return "dtag-ste-sb", true + case 353: + return "ndsauth", true + case 354: + return "bh611", true + case 355: + return "datex-asn", true + case 356: + return "cloanto-net-1", true + case 357: + return "bhevent", true + case 358: + return "shrinkwrap", true + case 359: + return "nsrmp", true + case 360: + return "scoi2odialog", true + case 361: + return "semantix", true + case 362: + return "srssend", true + case 363: + return "rsvp-tunnel", true + case 364: + return "aurora-cmgr", true + case 365: + return "dtk", true + case 366: + return "odmr", true + case 367: + return "mortgageware", true + case 368: + return "qbikgdp", true + case 369: + return "rpc2portmap", true + case 370: + return "codaauth2", true + case 371: + return "clearcase", true + case 372: + return "ulistproc", true + case 373: + return "legent-1", true + case 374: + return "legent-2", true + case 375: + return "hassle", true + case 376: + return "nip", true + case 377: + return "tnETOS", true + case 378: + return "dsETOS", true + case 379: + return "is99c", true + case 380: + return "is99s", true + case 381: + return "hp-collector", true + case 382: + return "hp-managed-node", true + case 383: + return "hp-alarm-mgr", true + case 384: + return "arns", true + case 385: + return "ibm-app", true + case 386: + return "asa", true + case 387: + return "aurp", true + case 388: + return "unidata-ldm", true + case 389: + return "ldap", true + case 390: + return "uis", true + case 391: + return "synotics-relay", true + case 392: + return "synotics-broker", true + case 393: + return "meta5", true + case 394: + return "embl-ndt", true + case 395: + return "netcp", true + case 396: + return "netware-ip", true + case 397: + return "mptn", true + case 398: + return "kryptolan", true + case 399: + return "iso-tsap-c2", true + case 400: + return "osb-sd", true + case 401: + return "ups", true + case 402: + return "genie", true + case 403: + return "decap", true + case 404: + return "nced", true + case 405: + return "ncld", true + case 406: + return "imsp", true + case 407: + return "timbuktu", true + case 408: + return "prm-sm", true + case 409: + return "prm-nm", true + case 410: + return "decladebug", true + case 411: + return "rmt", true + case 412: + return "synoptics-trap", true + case 413: + return "smsp", true + case 414: + return "infoseek", true + case 415: + return "bnet", true + case 416: + return "silverplatter", true + case 417: + return "onmux", true + case 418: + return "hyper-g", true + case 419: + return "ariel1", true + case 420: + return "smpte", true + case 421: + return "ariel2", true + case 422: + return "ariel3", true + case 423: + return "opc-job-start", true + case 424: + return "opc-job-track", true + case 425: + return "icad-el", true + case 426: + return "smartsdp", true + case 427: + return "svrloc", true + case 428: + return "ocs-cmu", true + case 429: + return "ocs-amu", true + case 430: + return "utmpsd", true + case 431: + return "utmpcd", true + case 432: + return "iasd", true + case 433: + return "nnsp", true + case 434: + return "mobileip-agent", true + case 435: + return "mobilip-mn", true + case 436: + return "dna-cml", true + case 437: + return "comscm", true + case 438: + return "dsfgw", true + case 439: + return "dasp", true + case 440: + return "sgcp", true + case 441: + return "decvms-sysmgt", true + case 442: + return "cvc-hostd", true + case 443: + return "https", true + case 444: + return "snpp", true + case 445: + return "microsoft-ds", true + case 446: + return "ddm-rdb", true + case 447: + return "ddm-dfm", true + case 448: + return "ddm-ssl", true + case 449: + return "as-servermap", true + case 450: + return "tserver", true + case 451: + return "sfs-smp-net", true + case 452: + return "sfs-config", true + case 453: + return "creativeserver", true + case 454: + return "contentserver", true + case 455: + return "creativepartnr", true + case 456: + return "macon-tcp", true + case 457: + return "scohelp", true + case 458: + return "appleqtc", true + case 459: + return "ampr-rcmd", true + case 460: + return "skronk", true + case 461: + return "datasurfsrv", true + case 462: + return "datasurfsrvsec", true + case 463: + return "alpes", true + case 464: + return "kpasswd", true + case 465: + return "urd", true + case 466: + return "digital-vrc", true + case 467: + return "mylex-mapd", true + case 468: + return "photuris", true + case 469: + return "rcp", true + case 470: + return "scx-proxy", true + case 471: + return "mondex", true + case 472: + return "ljk-login", true + case 473: + return "hybrid-pop", true + case 474: + return "tn-tl-w1", true + case 475: + return "tcpnethaspsrv", true + case 476: + return "tn-tl-fd1", true + case 477: + return "ss7ns", true + case 478: + return "spsc", true + case 479: + return "iafserver", true + case 480: + return "iafdbase", true + case 481: + return "ph", true + case 482: + return "bgs-nsi", true + case 483: + return "ulpnet", true + case 484: + return "integra-sme", true + case 485: + return "powerburst", true + case 486: + return "avian", true + case 487: + return "saft", true + case 488: + return "gss-http", true + case 489: + return "nest-protocol", true + case 490: + return "micom-pfs", true + case 491: + return "go-login", true + case 492: + return "ticf-1", true + case 493: + return "ticf-2", true + case 494: + return "pov-ray", true + case 495: + return "intecourier", true + case 496: + return "pim-rp-disc", true + case 497: + return "retrospect", true + case 498: + return "siam", true + case 499: + return "iso-ill", true + case 500: + return "isakmp", true + case 501: + return "stmf", true + case 502: + return "mbap", true + case 503: + return "intrinsa", true + case 504: + return "citadel", true + case 505: + return "mailbox-lm", true + case 506: + return "ohimsrv", true + case 507: + return "crs", true + case 508: + return "xvttp", true + case 509: + return "snare", true + case 510: + return "fcp", true + case 511: + return "passgo", true + case 512: + return "exec", true + case 513: + return "login", true + case 514: + return "shell", true + case 515: + return "printer", true + case 516: + return "videotex", true + case 517: + return "talk", true + case 518: + return "ntalk", true + case 519: + return "utime", true + case 520: + return "efs", true + case 521: + return "ripng", true + case 522: + return "ulp", true + case 523: + return "ibm-db2", true + case 524: + return "ncp", true + case 525: + return "timed", true + case 526: + return "tempo", true + case 527: + return "stx", true + case 528: + return "custix", true + case 529: + return "irc-serv", true + case 530: + return "courier", true + case 531: + return "conference", true + case 532: + return "netnews", true + case 533: + return "netwall", true + case 534: + return "windream", true + case 535: + return "iiop", true + case 536: + return "opalis-rdv", true + case 537: + return "nmsp", true + case 538: + return "gdomap", true + case 539: + return "apertus-ldp", true + case 540: + return "uucp", true + case 541: + return "uucp-rlogin", true + case 542: + return "commerce", true + case 543: + return "klogin", true + case 544: + return "kshell", true + case 545: + return "appleqtcsrvr", true + case 546: + return "dhcpv6-client", true + case 547: + return "dhcpv6-server", true + case 548: + return "afpovertcp", true + case 549: + return "idfp", true + case 550: + return "new-rwho", true + case 551: + return "cybercash", true + case 552: + return "devshr-nts", true + case 553: + return "pirp", true + case 554: + return "rtsp", true + case 555: + return "dsf", true + case 556: + return "remotefs", true + case 557: + return "openvms-sysipc", true + case 558: + return "sdnskmp", true + case 559: + return "teedtap", true + case 560: + return "rmonitor", true + case 561: + return "monitor", true + case 562: + return "chshell", true + case 563: + return "nntps", true + case 564: + return "9pfs", true + case 565: + return "whoami", true + case 566: + return "streettalk", true + case 567: + return "banyan-rpc", true + case 568: + return "ms-shuttle", true + case 569: + return "ms-rome", true + case 570: + return "meter", true + case 571: + return "meter", true + case 572: + return "sonar", true + case 573: + return "banyan-vip", true + case 574: + return "ftp-agent", true + case 575: + return "vemmi", true + case 576: + return "ipcd", true + case 577: + return "vnas", true + case 578: + return "ipdd", true + case 579: + return "decbsrv", true + case 580: + return "sntp-heartbeat", true + case 581: + return "bdp", true + case 582: + return "scc-security", true + case 583: + return "philips-vc", true + case 584: + return "keyserver", true + case 586: + return "password-chg", true + case 587: + return "submission", true + case 588: + return "cal", true + case 589: + return "eyelink", true + case 590: + return "tns-cml", true + case 591: + return "http-alt", true + case 592: + return "eudora-set", true + case 593: + return "http-rpc-epmap", true + case 594: + return "tpip", true + case 595: + return "cab-protocol", true + case 596: + return "smsd", true + case 597: + return "ptcnameservice", true + case 598: + return "sco-websrvrmg3", true + case 599: + return "acp", true + case 600: + return "ipcserver", true + case 601: + return "syslog-conn", true + case 602: + return "xmlrpc-beep", true + case 603: + return "idxp", true + case 604: + return "tunnel", true + case 605: + return "soap-beep", true + case 606: + return "urm", true + case 607: + return "nqs", true + case 608: + return "sift-uft", true + case 609: + return "npmp-trap", true + case 610: + return "npmp-local", true + case 611: + return "npmp-gui", true + case 612: + return "hmmp-ind", true + case 613: + return "hmmp-op", true + case 614: + return "sshell", true + case 615: + return "sco-inetmgr", true + case 616: + return "sco-sysmgr", true + case 617: + return "sco-dtmgr", true + case 618: + return "dei-icda", true + case 619: + return "compaq-evm", true + case 620: + return "sco-websrvrmgr", true + case 621: + return "escp-ip", true + case 622: + return "collaborator", true + case 623: + return "oob-ws-http", true + case 624: + return "cryptoadmin", true + case 625: + return "dec-dlm", true + case 626: + return "asia", true + case 627: + return "passgo-tivoli", true + case 628: + return "qmqp", true + case 629: + return "3com-amp3", true + case 630: + return "rda", true + case 631: + return "ipp", true + case 632: + return "bmpp", true + case 633: + return "servstat", true + case 634: + return "ginad", true + case 635: + return "rlzdbase", true + case 636: + return "ldaps", true + case 637: + return "lanserver", true + case 638: + return "mcns-sec", true + case 639: + return "msdp", true + case 640: + return "entrust-sps", true + case 641: + return "repcmd", true + case 642: + return "esro-emsdp", true + case 643: + return "sanity", true + case 644: + return "dwr", true + case 645: + return "pssc", true + case 646: + return "ldp", true + case 647: + return "dhcp-failover", true + case 648: + return "rrp", true + case 649: + return "cadview-3d", true + case 650: + return "obex", true + case 651: + return "ieee-mms", true + case 652: + return "hello-port", true + case 653: + return "repscmd", true + case 654: + return "aodv", true + case 655: + return "tinc", true + case 656: + return "spmp", true + case 657: + return "rmc", true + case 658: + return "tenfold", true + case 660: + return "mac-srvr-admin", true + case 661: + return "hap", true + case 662: + return "pftp", true + case 663: + return "purenoise", true + case 664: + return "oob-ws-https", true + case 665: + return "sun-dr", true + case 666: + return "mdqs", true + case 667: + return "disclose", true + case 668: + return "mecomm", true + case 669: + return "meregister", true + case 670: + return "vacdsm-sws", true + case 671: + return "vacdsm-app", true + case 672: + return "vpps-qua", true + case 673: + return "cimplex", true + case 674: + return "acap", true + case 675: + return "dctp", true + case 676: + return "vpps-via", true + case 677: + return "vpp", true + case 678: + return "ggf-ncp", true + case 679: + return "mrm", true + case 680: + return "entrust-aaas", true + case 681: + return "entrust-aams", true + case 682: + return "xfr", true + case 683: + return "corba-iiop", true + case 684: + return "corba-iiop-ssl", true + case 685: + return "mdc-portmapper", true + case 686: + return "hcp-wismar", true + case 687: + return "asipregistry", true + case 688: + return "realm-rusd", true + case 689: + return "nmap", true + case 690: + return "vatp", true + case 691: + return "msexch-routing", true + case 692: + return "hyperwave-isp", true + case 693: + return "connendp", true + case 694: + return "ha-cluster", true + case 695: + return "ieee-mms-ssl", true + case 696: + return "rushd", true + case 697: + return "uuidgen", true + case 698: + return "olsr", true + case 699: + return "accessnetwork", true + case 700: + return "epp", true + case 701: + return "lmp", true + case 702: + return "iris-beep", true + case 704: + return "elcsd", true + case 705: + return "agentx", true + case 706: + return "silc", true + case 707: + return "borland-dsj", true + case 709: + return "entrust-kmsh", true + case 710: + return "entrust-ash", true + case 711: + return "cisco-tdp", true + case 712: + return "tbrpf", true + case 713: + return "iris-xpc", true + case 714: + return "iris-xpcs", true + case 715: + return "iris-lwz", true + case 729: + return "netviewdm1", true + case 730: + return "netviewdm2", true + case 731: + return "netviewdm3", true + case 741: + return "netgw", true + case 742: + return "netrcs", true + case 744: + return "flexlm", true + case 747: + return "fujitsu-dev", true + case 748: + return "ris-cm", true + case 749: + return "kerberos-adm", true + case 750: + return "rfile", true + case 751: + return "pump", true + case 752: + return "qrh", true + case 753: + return "rrh", true + case 754: + return "tell", true + case 758: + return "nlogin", true + case 759: + return "con", true + case 760: + return "ns", true + case 761: + return "rxe", true + case 762: + return "quotad", true + case 763: + return "cycleserv", true + case 764: + return "omserv", true + case 765: + return "webster", true + case 767: + return "phonebook", true + case 769: + return "vid", true + case 770: + return "cadlock", true + case 771: + return "rtip", true + case 772: + return "cycleserv2", true + case 773: + return "submit", true + case 774: + return "rpasswd", true + case 775: + return "entomb", true + case 776: + return "wpages", true + case 777: + return "multiling-http", true + case 780: + return "wpgs", true + case 800: + return "mdbs-daemon", true + case 801: + return "device", true + case 802: + return "mbap-s", true + case 810: + return "fcp-udp", true + case 828: + return "itm-mcell-s", true + case 829: + return "pkix-3-ca-ra", true + case 830: + return "netconf-ssh", true + case 831: + return "netconf-beep", true + case 832: + return "netconfsoaphttp", true + case 833: + return "netconfsoapbeep", true + case 847: + return "dhcp-failover2", true + case 848: + return "gdoi", true + case 853: + return "domain-s", true + case 854: + return "dlep", true + case 860: + return "iscsi", true + case 861: + return "owamp-control", true + case 862: + return "twamp-control", true + case 873: + return "rsync", true + case 886: + return "iclcnet-locate", true + case 887: + return "iclcnet-svinfo", true + case 888: + return "accessbuilder", true + case 900: + return "omginitialrefs", true + case 901: + return "smpnameres", true + case 902: + return "ideafarm-door", true + case 903: + return "ideafarm-panic", true + case 910: + return "kink", true + case 911: + return "xact-backup", true + case 912: + return "apex-mesh", true + case 913: + return "apex-edge", true + case 953: + return "rndc", true + case 989: + return "ftps-data", true + case 990: + return "ftps", true + case 991: + return "nas", true + case 992: + return "telnets", true + case 993: + return "imaps", true + case 995: + return "pop3s", true + case 996: + return "vsinet", true + case 997: + return "maitrd", true + case 998: + return "busboy", true + case 999: + return "garcon", true + case 1000: + return "cadlock2", true + case 1001: + return "webpush", true + case 1010: + return "surf", true + case 1021: + return "exp1", true + case 1022: + return "exp2", true + case 1025: + return "blackjack", true + case 1026: + return "cap", true + case 1029: + return "solid-mux", true + case 1033: + return "netinfo-local", true + case 1034: + return "activesync", true + case 1035: + return "mxxrlogin", true + case 1036: + return "nsstp", true + case 1037: + return "ams", true + case 1038: + return "mtqp", true + case 1039: + return "sbl", true + case 1040: + return "netarx", true + case 1041: + return "danf-ak2", true + case 1042: + return "afrog", true + case 1043: + return "boinc-client", true + case 1044: + return "dcutility", true + case 1045: + return "fpitp", true + case 1046: + return "wfremotertm", true + case 1047: + return "neod1", true + case 1048: + return "neod2", true + case 1049: + return "td-postman", true + case 1050: + return "cma", true + case 1051: + return "optima-vnet", true + case 1052: + return "ddt", true + case 1053: + return "remote-as", true + case 1054: + return "brvread", true + case 1055: + return "ansyslmd", true + case 1056: + return "vfo", true + case 1057: + return "startron", true + case 1058: + return "nim", true + case 1059: + return "nimreg", true + case 1060: + return "polestar", true + case 1061: + return "kiosk", true + case 1062: + return "veracity", true + case 1063: + return "kyoceranetdev", true + case 1064: + return "jstel", true + case 1065: + return "syscomlan", true + case 1066: + return "fpo-fns", true + case 1067: + return "instl-boots", true + case 1068: + return "instl-bootc", true + case 1069: + return "cognex-insight", true + case 1070: + return "gmrupdateserv", true + case 1071: + return "bsquare-voip", true + case 1072: + return "cardax", true + case 1073: + return "bridgecontrol", true + case 1074: + return "warmspotMgmt", true + case 1075: + return "rdrmshc", true + case 1076: + return "dab-sti-c", true + case 1077: + return "imgames", true + case 1078: + return "avocent-proxy", true + case 1079: + return "asprovatalk", true + case 1080: + return "socks", true + case 1081: + return "pvuniwien", true + case 1082: + return "amt-esd-prot", true + case 1083: + return "ansoft-lm-1", true + case 1084: + return "ansoft-lm-2", true + case 1085: + return "webobjects", true + case 1086: + return "cplscrambler-lg", true + case 1087: + return "cplscrambler-in", true + case 1088: + return "cplscrambler-al", true + case 1089: + return "ff-annunc", true + case 1090: + return "ff-fms", true + case 1091: + return "ff-sm", true + case 1092: + return "obrpd", true + case 1093: + return "proofd", true + case 1094: + return "rootd", true + case 1095: + return "nicelink", true + case 1096: + return "cnrprotocol", true + case 1097: + return "sunclustermgr", true + case 1098: + return "rmiactivation", true + case 1099: + return "rmiregistry", true + case 1100: + return "mctp", true + case 1101: + return "pt2-discover", true + case 1102: + return "adobeserver-1", true + case 1103: + return "adobeserver-2", true + case 1104: + return "xrl", true + case 1105: + return "ftranhc", true + case 1106: + return "isoipsigport-1", true + case 1107: + return "isoipsigport-2", true + case 1108: + return "ratio-adp", true + case 1110: + return "webadmstart", true + case 1111: + return "lmsocialserver", true + case 1112: + return "icp", true + case 1113: + return "ltp-deepspace", true + case 1114: + return "mini-sql", true + case 1115: + return "ardus-trns", true + case 1116: + return "ardus-cntl", true + case 1117: + return "ardus-mtrns", true + case 1118: + return "sacred", true + case 1119: + return "bnetgame", true + case 1120: + return "bnetfile", true + case 1121: + return "rmpp", true + case 1122: + return "availant-mgr", true + case 1123: + return "murray", true + case 1124: + return "hpvmmcontrol", true + case 1125: + return "hpvmmagent", true + case 1126: + return "hpvmmdata", true + case 1127: + return "kwdb-commn", true + case 1128: + return "saphostctrl", true + case 1129: + return "saphostctrls", true + case 1130: + return "casp", true + case 1131: + return "caspssl", true + case 1132: + return "kvm-via-ip", true + case 1133: + return "dfn", true + case 1134: + return "aplx", true + case 1135: + return "omnivision", true + case 1136: + return "hhb-gateway", true + case 1137: + return "trim", true + case 1138: + return "encrypted-admin", true + case 1139: + return "evm", true + case 1140: + return "autonoc", true + case 1141: + return "mxomss", true + case 1142: + return "edtools", true + case 1143: + return "imyx", true + case 1144: + return "fuscript", true + case 1145: + return "x9-icue", true + case 1146: + return "audit-transfer", true + case 1147: + return "capioverlan", true + case 1148: + return "elfiq-repl", true + case 1149: + return "bvtsonar", true + case 1150: + return "blaze", true + case 1151: + return "unizensus", true + case 1152: + return "winpoplanmess", true + case 1153: + return "c1222-acse", true + case 1154: + return "resacommunity", true + case 1155: + return "nfa", true + case 1156: + return "iascontrol-oms", true + case 1157: + return "iascontrol", true + case 1158: + return "dbcontrol-oms", true + case 1159: + return "oracle-oms", true + case 1160: + return "olsv", true + case 1161: + return "health-polling", true + case 1162: + return "health-trap", true + case 1163: + return "sddp", true + case 1164: + return "qsm-proxy", true + case 1165: + return "qsm-gui", true + case 1166: + return "qsm-remote", true + case 1167: + return "cisco-ipsla", true + case 1168: + return "vchat", true + case 1169: + return "tripwire", true + case 1170: + return "atc-lm", true + case 1171: + return "atc-appserver", true + case 1172: + return "dnap", true + case 1173: + return "d-cinema-rrp", true + case 1174: + return "fnet-remote-ui", true + case 1175: + return "dossier", true + case 1176: + return "indigo-server", true + case 1177: + return "dkmessenger", true + case 1178: + return "sgi-storman", true + case 1179: + return "b2n", true + case 1180: + return "mc-client", true + case 1181: + return "3comnetman", true + case 1182: + return "accelenet", true + case 1183: + return "llsurfup-http", true + case 1184: + return "llsurfup-https", true + case 1185: + return "catchpole", true + case 1186: + return "mysql-cluster", true + case 1187: + return "alias", true + case 1188: + return "hp-webadmin", true + case 1189: + return "unet", true + case 1190: + return "commlinx-avl", true + case 1191: + return "gpfs", true + case 1192: + return "caids-sensor", true + case 1193: + return "fiveacross", true + case 1194: + return "openvpn", true + case 1195: + return "rsf-1", true + case 1196: + return "netmagic", true + case 1197: + return "carrius-rshell", true + case 1198: + return "cajo-discovery", true + case 1199: + return "dmidi", true + case 1200: + return "scol", true + case 1201: + return "nucleus-sand", true + case 1202: + return "caiccipc", true + case 1203: + return "ssslic-mgr", true + case 1204: + return "ssslog-mgr", true + case 1205: + return "accord-mgc", true + case 1206: + return "anthony-data", true + case 1207: + return "metasage", true + case 1208: + return "seagull-ais", true + case 1209: + return "ipcd3", true + case 1210: + return "eoss", true + case 1211: + return "groove-dpp", true + case 1212: + return "lupa", true + case 1213: + return "mpc-lifenet", true + case 1214: + return "kazaa", true + case 1215: + return "scanstat-1", true + case 1216: + return "etebac5", true + case 1217: + return "hpss-ndapi", true + case 1218: + return "aeroflight-ads", true + case 1219: + return "aeroflight-ret", true + case 1220: + return "qt-serveradmin", true + case 1221: + return "sweetware-apps", true + case 1222: + return "nerv", true + case 1223: + return "tgp", true + case 1224: + return "vpnz", true + case 1225: + return "slinkysearch", true + case 1226: + return "stgxfws", true + case 1227: + return "dns2go", true + case 1228: + return "florence", true + case 1229: + return "zented", true + case 1230: + return "periscope", true + case 1231: + return "menandmice-lpm", true + case 1232: + return "first-defense", true + case 1233: + return "univ-appserver", true + case 1234: + return "search-agent", true + case 1235: + return "mosaicsyssvc1", true + case 1236: + return "bvcontrol", true + case 1237: + return "tsdos390", true + case 1238: + return "hacl-qs", true + case 1239: + return "nmsd", true + case 1240: + return "instantia", true + case 1241: + return "nessus", true + case 1242: + return "nmasoverip", true + case 1243: + return "serialgateway", true + case 1244: + return "isbconference1", true + case 1245: + return "isbconference2", true + case 1246: + return "payrouter", true + case 1247: + return "visionpyramid", true + case 1248: + return "hermes", true + case 1249: + return "mesavistaco", true + case 1250: + return "swldy-sias", true + case 1251: + return "servergraph", true + case 1252: + return "bspne-pcc", true + case 1253: + return "q55-pcc", true + case 1254: + return "de-noc", true + case 1255: + return "de-cache-query", true + case 1256: + return "de-server", true + case 1257: + return "shockwave2", true + case 1258: + return "opennl", true + case 1259: + return "opennl-voice", true + case 1260: + return "ibm-ssd", true + case 1261: + return "mpshrsv", true + case 1262: + return "qnts-orb", true + case 1263: + return "dka", true + case 1264: + return "prat", true + case 1265: + return "dssiapi", true + case 1266: + return "dellpwrappks", true + case 1267: + return "epc", true + case 1268: + return "propel-msgsys", true + case 1269: + return "watilapp", true + case 1270: + return "opsmgr", true + case 1271: + return "excw", true + case 1272: + return "cspmlockmgr", true + case 1273: + return "emc-gateway", true + case 1274: + return "t1distproc", true + case 1275: + return "ivcollector", true + case 1277: + return "miva-mqs", true + case 1278: + return "dellwebadmin-1", true + case 1279: + return "dellwebadmin-2", true + case 1280: + return "pictrography", true + case 1281: + return "healthd", true + case 1282: + return "emperion", true + case 1283: + return "productinfo", true + case 1284: + return "iee-qfx", true + case 1285: + return "neoiface", true + case 1286: + return "netuitive", true + case 1287: + return "routematch", true + case 1288: + return "navbuddy", true + case 1289: + return "jwalkserver", true + case 1290: + return "winjaserver", true + case 1291: + return "seagulllms", true + case 1292: + return "dsdn", true + case 1293: + return "pkt-krb-ipsec", true + case 1294: + return "cmmdriver", true + case 1295: + return "ehtp", true + case 1296: + return "dproxy", true + case 1297: + return "sdproxy", true + case 1298: + return "lpcp", true + case 1299: + return "hp-sci", true + case 1300: + return "h323hostcallsc", true + case 1303: + return "sftsrv", true + case 1304: + return "boomerang", true + case 1305: + return "pe-mike", true + case 1306: + return "re-conn-proto", true + case 1307: + return "pacmand", true + case 1308: + return "odsi", true + case 1309: + return "jtag-server", true + case 1310: + return "husky", true + case 1311: + return "rxmon", true + case 1312: + return "sti-envision", true + case 1313: + return "bmc-patroldb", true + case 1314: + return "pdps", true + case 1315: + return "els", true + case 1316: + return "exbit-escp", true + case 1317: + return "vrts-ipcserver", true + case 1318: + return "krb5gatekeeper", true + case 1319: + return "amx-icsp", true + case 1320: + return "amx-axbnet", true + case 1321: + return "pip", true + case 1322: + return "novation", true + case 1323: + return "brcd", true + case 1324: + return "delta-mcp", true + case 1325: + return "dx-instrument", true + case 1326: + return "wimsic", true + case 1327: + return "ultrex", true + case 1328: + return "ewall", true + case 1329: + return "netdb-export", true + case 1330: + return "streetperfect", true + case 1331: + return "intersan", true + case 1332: + return "pcia-rxp-b", true + case 1333: + return "passwrd-policy", true + case 1334: + return "writesrv", true + case 1335: + return "digital-notary", true + case 1336: + return "ischat", true + case 1337: + return "menandmice-dns", true + case 1338: + return "wmc-log-svc", true + case 1339: + return "kjtsiteserver", true + case 1340: + return "naap", true + case 1341: + return "qubes", true + case 1342: + return "esbroker", true + case 1343: + return "re101", true + case 1344: + return "icap", true + case 1345: + return "vpjp", true + case 1346: + return "alta-ana-lm", true + case 1347: + return "bbn-mmc", true + case 1348: + return "bbn-mmx", true + case 1349: + return "sbook", true + case 1350: + return "editbench", true + case 1351: + return "equationbuilder", true + case 1352: + return "lotusnote", true + case 1353: + return "relief", true + case 1354: + return "XSIP-network", true + case 1355: + return "intuitive-edge", true + case 1356: + return "cuillamartin", true + case 1357: + return "pegboard", true + case 1358: + return "connlcli", true + case 1359: + return "ftsrv", true + case 1360: + return "mimer", true + case 1361: + return "linx", true + case 1362: + return "timeflies", true + case 1363: + return "ndm-requester", true + case 1364: + return "ndm-server", true + case 1365: + return "adapt-sna", true + case 1366: + return "netware-csp", true + case 1367: + return "dcs", true + case 1368: + return "screencast", true + case 1369: + return "gv-us", true + case 1370: + return "us-gv", true + case 1371: + return "fc-cli", true + case 1372: + return "fc-ser", true + case 1373: + return "chromagrafx", true + case 1374: + return "molly", true + case 1375: + return "bytex", true + case 1376: + return "ibm-pps", true + case 1377: + return "cichlid", true + case 1378: + return "elan", true + case 1379: + return "dbreporter", true + case 1380: + return "telesis-licman", true + case 1381: + return "apple-licman", true + case 1382: + return "udt-os", true + case 1383: + return "gwha", true + case 1384: + return "os-licman", true + case 1385: + return "atex-elmd", true + case 1386: + return "checksum", true + case 1387: + return "cadsi-lm", true + case 1388: + return "objective-dbc", true + case 1389: + return "iclpv-dm", true + case 1390: + return "iclpv-sc", true + case 1391: + return "iclpv-sas", true + case 1392: + return "iclpv-pm", true + case 1393: + return "iclpv-nls", true + case 1394: + return "iclpv-nlc", true + case 1395: + return "iclpv-wsm", true + case 1396: + return "dvl-activemail", true + case 1397: + return "audio-activmail", true + case 1398: + return "video-activmail", true + case 1399: + return "cadkey-licman", true + case 1400: + return "cadkey-tablet", true + case 1401: + return "goldleaf-licman", true + case 1402: + return "prm-sm-np", true + case 1403: + return "prm-nm-np", true + case 1404: + return "igi-lm", true + case 1405: + return "ibm-res", true + case 1406: + return "netlabs-lm", true + case 1407: + return "tibet-server", true + case 1408: + return "sophia-lm", true + case 1409: + return "here-lm", true + case 1410: + return "hiq", true + case 1411: + return "af", true + case 1412: + return "innosys", true + case 1413: + return "innosys-acl", true + case 1414: + return "ibm-mqseries", true + case 1415: + return "dbstar", true + case 1416: + return "novell-lu6-2", true + case 1417: + return "timbuktu-srv1", true + case 1418: + return "timbuktu-srv2", true + case 1419: + return "timbuktu-srv3", true + case 1420: + return "timbuktu-srv4", true + case 1421: + return "gandalf-lm", true + case 1422: + return "autodesk-lm", true + case 1423: + return "essbase", true + case 1424: + return "hybrid", true + case 1425: + return "zion-lm", true + case 1426: + return "sais", true + case 1427: + return "mloadd", true + case 1428: + return "informatik-lm", true + case 1429: + return "nms", true + case 1430: + return "tpdu", true + case 1431: + return "rgtp", true + case 1432: + return "blueberry-lm", true + case 1433: + return "ms-sql-s", true + case 1434: + return "ms-sql-m", true + case 1435: + return "ibm-cics", true + case 1436: + return "saism", true + case 1437: + return "tabula", true + case 1438: + return "eicon-server", true + case 1439: + return "eicon-x25", true + case 1440: + return "eicon-slp", true + case 1441: + return "cadis-1", true + case 1442: + return "cadis-2", true + case 1443: + return "ies-lm", true + case 1444: + return "marcam-lm", true + case 1445: + return "proxima-lm", true + case 1446: + return "ora-lm", true + case 1447: + return "apri-lm", true + case 1448: + return "oc-lm", true + case 1449: + return "peport", true + case 1450: + return "dwf", true + case 1451: + return "infoman", true + case 1452: + return "gtegsc-lm", true + case 1453: + return "genie-lm", true + case 1454: + return "interhdl-elmd", true + case 1455: + return "esl-lm", true + case 1456: + return "dca", true + case 1457: + return "valisys-lm", true + case 1458: + return "nrcabq-lm", true + case 1459: + return "proshare1", true + case 1460: + return "proshare2", true + case 1461: + return "ibm-wrless-lan", true + case 1462: + return "world-lm", true + case 1463: + return "nucleus", true + case 1464: + return "msl-lmd", true + case 1465: + return "pipes", true + case 1466: + return "oceansoft-lm", true + case 1467: + return "csdmbase", true + case 1468: + return "csdm", true + case 1469: + return "aal-lm", true + case 1470: + return "uaiact", true + case 1471: + return "csdmbase", true + case 1472: + return "csdm", true + case 1473: + return "openmath", true + case 1474: + return "telefinder", true + case 1475: + return "taligent-lm", true + case 1476: + return "clvm-cfg", true + case 1477: + return "ms-sna-server", true + case 1478: + return "ms-sna-base", true + case 1479: + return "dberegister", true + case 1480: + return "pacerforum", true + case 1481: + return "airs", true + case 1482: + return "miteksys-lm", true + case 1483: + return "afs", true + case 1484: + return "confluent", true + case 1485: + return "lansource", true + case 1486: + return "nms-topo-serv", true + case 1487: + return "localinfosrvr", true + case 1488: + return "docstor", true + case 1489: + return "dmdocbroker", true + case 1490: + return "insitu-conf", true + case 1492: + return "stone-design-1", true + case 1493: + return "netmap-lm", true + case 1494: + return "ica", true + case 1495: + return "cvc", true + case 1496: + return "liberty-lm", true + case 1497: + return "rfx-lm", true + case 1498: + return "sybase-sqlany", true + case 1499: + return "fhc", true + case 1500: + return "vlsi-lm", true + case 1501: + return "saiscm", true + case 1502: + return "shivadiscovery", true + case 1503: + return "imtc-mcs", true + case 1504: + return "evb-elm", true + case 1505: + return "funkproxy", true + case 1506: + return "utcd", true + case 1507: + return "symplex", true + case 1508: + return "diagmond", true + case 1509: + return "robcad-lm", true + case 1510: + return "mvx-lm", true + case 1511: + return "3l-l1", true + case 1512: + return "wins", true + case 1513: + return "fujitsu-dtc", true + case 1514: + return "fujitsu-dtcns", true + case 1515: + return "ifor-protocol", true + case 1516: + return "vpad", true + case 1517: + return "vpac", true + case 1518: + return "vpvd", true + case 1519: + return "vpvc", true + case 1520: + return "atm-zip-office", true + case 1521: + return "ncube-lm", true + case 1522: + return "ricardo-lm", true + case 1523: + return "cichild-lm", true + case 1524: + return "ingreslock", true + case 1525: + return "orasrv", true + case 1526: + return "pdap-np", true + case 1527: + return "tlisrv", true + case 1528: + return "norp", true + case 1529: + return "coauthor", true + case 1530: + return "rap-service", true + case 1531: + return "rap-listen", true + case 1532: + return "miroconnect", true + case 1533: + return "virtual-places", true + case 1534: + return "micromuse-lm", true + case 1535: + return "ampr-info", true + case 1536: + return "ampr-inter", true + case 1537: + return "sdsc-lm", true + case 1538: + return "3ds-lm", true + case 1539: + return "intellistor-lm", true + case 1540: + return "rds", true + case 1541: + return "rds2", true + case 1542: + return "gridgen-elmd", true + case 1543: + return "simba-cs", true + case 1544: + return "aspeclmd", true + case 1545: + return "vistium-share", true + case 1546: + return "abbaccuray", true + case 1547: + return "laplink", true + case 1548: + return "axon-lm", true + case 1549: + return "shivahose", true + case 1550: + return "3m-image-lm", true + case 1551: + return "hecmtl-db", true + case 1552: + return "pciarray", true + case 1553: + return "sna-cs", true + case 1554: + return "caci-lm", true + case 1555: + return "livelan", true + case 1556: + return "veritas-pbx", true + case 1557: + return "arbortext-lm", true + case 1558: + return "xingmpeg", true + case 1559: + return "web2host", true + case 1560: + return "asci-val", true + case 1561: + return "facilityview", true + case 1562: + return "pconnectmgr", true + case 1563: + return "cadabra-lm", true + case 1564: + return "pay-per-view", true + case 1565: + return "winddlb", true + case 1566: + return "corelvideo", true + case 1567: + return "jlicelmd", true + case 1568: + return "tsspmap", true + case 1569: + return "ets", true + case 1570: + return "orbixd", true + case 1571: + return "rdb-dbs-disp", true + case 1572: + return "chip-lm", true + case 1573: + return "itscomm-ns", true + case 1574: + return "mvel-lm", true + case 1575: + return "oraclenames", true + case 1576: + return "moldflow-lm", true + case 1577: + return "hypercube-lm", true + case 1578: + return "jacobus-lm", true + case 1579: + return "ioc-sea-lm", true + case 1580: + return "tn-tl-r1", true + case 1581: + return "mil-2045-47001", true + case 1582: + return "msims", true + case 1583: + return "simbaexpress", true + case 1584: + return "tn-tl-fd2", true + case 1585: + return "intv", true + case 1586: + return "ibm-abtact", true + case 1587: + return "pra-elmd", true + case 1588: + return "triquest-lm", true + case 1589: + return "vqp", true + case 1590: + return "gemini-lm", true + case 1591: + return "ncpm-pm", true + case 1592: + return "commonspace", true + case 1593: + return "mainsoft-lm", true + case 1594: + return "sixtrak", true + case 1595: + return "radio", true + case 1596: + return "radio-sm", true + case 1597: + return "orbplus-iiop", true + case 1598: + return "picknfs", true + case 1599: + return "simbaservices", true + case 1600: + return "issd", true + case 1601: + return "aas", true + case 1602: + return "inspect", true + case 1603: + return "picodbc", true + case 1604: + return "icabrowser", true + case 1605: + return "slp", true + case 1606: + return "slm-api", true + case 1607: + return "stt", true + case 1608: + return "smart-lm", true + case 1609: + return "isysg-lm", true + case 1610: + return "taurus-wh", true + case 1611: + return "ill", true + case 1612: + return "netbill-trans", true + case 1613: + return "netbill-keyrep", true + case 1614: + return "netbill-cred", true + case 1615: + return "netbill-auth", true + case 1616: + return "netbill-prod", true + case 1617: + return "nimrod-agent", true + case 1618: + return "skytelnet", true + case 1619: + return "xs-openstorage", true + case 1620: + return "faxportwinport", true + case 1621: + return "softdataphone", true + case 1622: + return "ontime", true + case 1623: + return "jaleosnd", true + case 1624: + return "udp-sr-port", true + case 1625: + return "svs-omagent", true + case 1626: + return "shockwave", true + case 1627: + return "t128-gateway", true + case 1628: + return "lontalk-norm", true + case 1629: + return "lontalk-urgnt", true + case 1630: + return "oraclenet8cman", true + case 1631: + return "visitview", true + case 1632: + return "pammratc", true + case 1633: + return "pammrpc", true + case 1634: + return "loaprobe", true + case 1635: + return "edb-server1", true + case 1636: + return "isdc", true + case 1637: + return "islc", true + case 1638: + return "ismc", true + case 1639: + return "cert-initiator", true + case 1640: + return "cert-responder", true + case 1641: + return "invision", true + case 1642: + return "isis-am", true + case 1643: + return "isis-ambc", true + case 1644: + return "saiseh", true + case 1645: + return "sightline", true + case 1646: + return "sa-msg-port", true + case 1647: + return "rsap", true + case 1648: + return "concurrent-lm", true + case 1649: + return "kermit", true + case 1650: + return "nkd", true + case 1651: + return "shiva-confsrvr", true + case 1652: + return "xnmp", true + case 1653: + return "alphatech-lm", true + case 1654: + return "stargatealerts", true + case 1655: + return "dec-mbadmin", true + case 1656: + return "dec-mbadmin-h", true + case 1657: + return "fujitsu-mmpdc", true + case 1658: + return "sixnetudr", true + case 1659: + return "sg-lm", true + case 1660: + return "skip-mc-gikreq", true + case 1661: + return "netview-aix-1", true + case 1662: + return "netview-aix-2", true + case 1663: + return "netview-aix-3", true + case 1664: + return "netview-aix-4", true + case 1665: + return "netview-aix-5", true + case 1666: + return "netview-aix-6", true + case 1667: + return "netview-aix-7", true + case 1668: + return "netview-aix-8", true + case 1669: + return "netview-aix-9", true + case 1670: + return "netview-aix-10", true + case 1671: + return "netview-aix-11", true + case 1672: + return "netview-aix-12", true + case 1673: + return "proshare-mc-1", true + case 1674: + return "proshare-mc-2", true + case 1675: + return "pdp", true + case 1676: + return "netcomm1", true + case 1677: + return "groupwise", true + case 1678: + return "prolink", true + case 1679: + return "darcorp-lm", true + case 1680: + return "microcom-sbp", true + case 1681: + return "sd-elmd", true + case 1682: + return "lanyon-lantern", true + case 1683: + return "ncpm-hip", true + case 1684: + return "snaresecure", true + case 1685: + return "n2nremote", true + case 1686: + return "cvmon", true + case 1687: + return "nsjtp-ctrl", true + case 1688: + return "nsjtp-data", true + case 1689: + return "firefox", true + case 1690: + return "ng-umds", true + case 1691: + return "empire-empuma", true + case 1692: + return "sstsys-lm", true + case 1693: + return "rrirtr", true + case 1694: + return "rrimwm", true + case 1695: + return "rrilwm", true + case 1696: + return "rrifmm", true + case 1697: + return "rrisat", true + case 1698: + return "rsvp-encap-1", true + case 1699: + return "rsvp-encap-2", true + case 1700: + return "mps-raft", true + case 1701: + return "l2f", true + case 1702: + return "deskshare", true + case 1703: + return "hb-engine", true + case 1704: + return "bcs-broker", true + case 1705: + return "slingshot", true + case 1706: + return "jetform", true + case 1707: + return "vdmplay", true + case 1708: + return "gat-lmd", true + case 1709: + return "centra", true + case 1710: + return "impera", true + case 1711: + return "pptconference", true + case 1712: + return "registrar", true + case 1713: + return "conferencetalk", true + case 1714: + return "sesi-lm", true + case 1715: + return "houdini-lm", true + case 1716: + return "xmsg", true + case 1717: + return "fj-hdnet", true + case 1718: + return "h323gatedisc", true + case 1719: + return "h323gatestat", true + case 1720: + return "h323hostcall", true + case 1721: + return "caicci", true + case 1722: + return "hks-lm", true + case 1723: + return "pptp", true + case 1724: + return "csbphonemaster", true + case 1725: + return "iden-ralp", true + case 1726: + return "iberiagames", true + case 1727: + return "winddx", true + case 1728: + return "telindus", true + case 1729: + return "citynl", true + case 1730: + return "roketz", true + case 1731: + return "msiccp", true + case 1732: + return "proxim", true + case 1733: + return "siipat", true + case 1734: + return "cambertx-lm", true + case 1735: + return "privatechat", true + case 1736: + return "street-stream", true + case 1737: + return "ultimad", true + case 1738: + return "gamegen1", true + case 1739: + return "webaccess", true + case 1740: + return "encore", true + case 1741: + return "cisco-net-mgmt", true + case 1742: + return "3Com-nsd", true + case 1743: + return "cinegrfx-lm", true + case 1744: + return "ncpm-ft", true + case 1745: + return "remote-winsock", true + case 1746: + return "ftrapid-1", true + case 1747: + return "ftrapid-2", true + case 1748: + return "oracle-em1", true + case 1749: + return "aspen-services", true + case 1750: + return "sslp", true + case 1751: + return "swiftnet", true + case 1752: + return "lofr-lm", true + case 1753: + return "predatar-comms", true + case 1754: + return "oracle-em2", true + case 1755: + return "ms-streaming", true + case 1756: + return "capfast-lmd", true + case 1757: + return "cnhrp", true + case 1758: + return "tftp-mcast", true + case 1759: + return "spss-lm", true + case 1760: + return "www-ldap-gw", true + case 1761: + return "cft-0", true + case 1762: + return "cft-1", true + case 1763: + return "cft-2", true + case 1764: + return "cft-3", true + case 1765: + return "cft-4", true + case 1766: + return "cft-5", true + case 1767: + return "cft-6", true + case 1768: + return "cft-7", true + case 1769: + return "bmc-net-adm", true + case 1770: + return "bmc-net-svc", true + case 1771: + return "vaultbase", true + case 1772: + return "essweb-gw", true + case 1773: + return "kmscontrol", true + case 1774: + return "global-dtserv", true + case 1775: + return "vdab", true + case 1776: + return "femis", true + case 1777: + return "powerguardian", true + case 1778: + return "prodigy-intrnet", true + case 1779: + return "pharmasoft", true + case 1780: + return "dpkeyserv", true + case 1781: + return "answersoft-lm", true + case 1782: + return "hp-hcip", true + case 1784: + return "finle-lm", true + case 1785: + return "windlm", true + case 1786: + return "funk-logger", true + case 1787: + return "funk-license", true + case 1788: + return "psmond", true + case 1789: + return "hello", true + case 1790: + return "nmsp", true + case 1791: + return "ea1", true + case 1792: + return "ibm-dt-2", true + case 1793: + return "rsc-robot", true + case 1794: + return "cera-bcm", true + case 1795: + return "dpi-proxy", true + case 1796: + return "vocaltec-admin", true + case 1797: + return "uma", true + case 1798: + return "etp", true + case 1799: + return "netrisk", true + case 1800: + return "ansys-lm", true + case 1801: + return "msmq", true + case 1802: + return "concomp1", true + case 1803: + return "hp-hcip-gwy", true + case 1804: + return "enl", true + case 1805: + return "enl-name", true + case 1806: + return "musiconline", true + case 1807: + return "fhsp", true + case 1808: + return "oracle-vp2", true + case 1809: + return "oracle-vp1", true + case 1810: + return "jerand-lm", true + case 1811: + return "scientia-sdb", true + case 1812: + return "radius", true + case 1813: + return "radius-acct", true + case 1814: + return "tdp-suite", true + case 1815: + return "mmpft", true + case 1816: + return "harp", true + case 1817: + return "rkb-oscs", true + case 1818: + return "etftp", true + case 1819: + return "plato-lm", true + case 1820: + return "mcagent", true + case 1821: + return "donnyworld", true + case 1822: + return "es-elmd", true + case 1823: + return "unisys-lm", true + case 1824: + return "metrics-pas", true + case 1825: + return "direcpc-video", true + case 1826: + return "ardt", true + case 1827: + return "asi", true + case 1828: + return "itm-mcell-u", true + case 1829: + return "optika-emedia", true + case 1830: + return "net8-cman", true + case 1831: + return "myrtle", true + case 1832: + return "tht-treasure", true + case 1833: + return "udpradio", true + case 1834: + return "ardusuni", true + case 1835: + return "ardusmul", true + case 1836: + return "ste-smsc", true + case 1837: + return "csoft1", true + case 1838: + return "talnet", true + case 1839: + return "netopia-vo1", true + case 1840: + return "netopia-vo2", true + case 1841: + return "netopia-vo3", true + case 1842: + return "netopia-vo4", true + case 1843: + return "netopia-vo5", true + case 1844: + return "direcpc-dll", true + case 1845: + return "altalink", true + case 1846: + return "tunstall-pnc", true + case 1847: + return "slp-notify", true + case 1848: + return "fjdocdist", true + case 1849: + return "alpha-sms", true + case 1850: + return "gsi", true + case 1851: + return "ctcd", true + case 1852: + return "virtual-time", true + case 1853: + return "vids-avtp", true + case 1854: + return "buddy-draw", true + case 1855: + return "fiorano-rtrsvc", true + case 1856: + return "fiorano-msgsvc", true + case 1857: + return "datacaptor", true + case 1858: + return "privateark", true + case 1859: + return "gammafetchsvr", true + case 1860: + return "sunscalar-svc", true + case 1861: + return "lecroy-vicp", true + case 1862: + return "mysql-cm-agent", true + case 1863: + return "msnp", true + case 1864: + return "paradym-31port", true + case 1865: + return "entp", true + case 1866: + return "swrmi", true + case 1867: + return "udrive", true + case 1868: + return "viziblebrowser", true + case 1869: + return "transact", true + case 1870: + return "sunscalar-dns", true + case 1871: + return "canocentral0", true + case 1872: + return "canocentral1", true + case 1873: + return "fjmpjps", true + case 1874: + return "fjswapsnp", true + case 1875: + return "westell-stats", true + case 1876: + return "ewcappsrv", true + case 1877: + return "hp-webqosdb", true + case 1878: + return "drmsmc", true + case 1879: + return "nettgain-nms", true + case 1880: + return "vsat-control", true + case 1881: + return "ibm-mqseries2", true + case 1882: + return "ecsqdmn", true + case 1883: + return "mqtt", true + case 1884: + return "idmaps", true + case 1885: + return "vrtstrapserver", true + case 1886: + return "leoip", true + case 1887: + return "filex-lport", true + case 1888: + return "ncconfig", true + case 1889: + return "unify-adapter", true + case 1890: + return "wilkenlistener", true + case 1891: + return "childkey-notif", true + case 1892: + return "childkey-ctrl", true + case 1893: + return "elad", true + case 1894: + return "o2server-port", true + case 1896: + return "b-novative-ls", true + case 1897: + return "metaagent", true + case 1898: + return "cymtec-port", true + case 1899: + return "mc2studios", true + case 1900: + return "ssdp", true + case 1901: + return "fjicl-tep-a", true + case 1902: + return "fjicl-tep-b", true + case 1903: + return "linkname", true + case 1904: + return "fjicl-tep-c", true + case 1905: + return "sugp", true + case 1906: + return "tpmd", true + case 1907: + return "intrastar", true + case 1908: + return "dawn", true + case 1909: + return "global-wlink", true + case 1910: + return "ultrabac", true + case 1911: + return "mtp", true + case 1912: + return "rhp-iibp", true + case 1913: + return "armadp", true + case 1914: + return "elm-momentum", true + case 1915: + return "facelink", true + case 1916: + return "persona", true + case 1917: + return "noagent", true + case 1918: + return "can-nds", true + case 1919: + return "can-dch", true + case 1920: + return "can-ferret", true + case 1921: + return "noadmin", true + case 1922: + return "tapestry", true + case 1923: + return "spice", true + case 1924: + return "xiip", true + case 1925: + return "discovery-port", true + case 1926: + return "egs", true + case 1927: + return "videte-cipc", true + case 1928: + return "emsd-port", true + case 1929: + return "bandwiz-system", true + case 1930: + return "driveappserver", true + case 1931: + return "amdsched", true + case 1932: + return "ctt-broker", true + case 1933: + return "xmapi", true + case 1934: + return "xaapi", true + case 1935: + return "macromedia-fcs", true + case 1936: + return "jetcmeserver", true + case 1937: + return "jwserver", true + case 1938: + return "jwclient", true + case 1939: + return "jvserver", true + case 1940: + return "jvclient", true + case 1941: + return "dic-aida", true + case 1942: + return "res", true + case 1943: + return "beeyond-media", true + case 1944: + return "close-combat", true + case 1945: + return "dialogic-elmd", true + case 1946: + return "tekpls", true + case 1947: + return "sentinelsrm", true + case 1948: + return "eye2eye", true + case 1949: + return "ismaeasdaqlive", true + case 1950: + return "ismaeasdaqtest", true + case 1951: + return "bcs-lmserver", true + case 1952: + return "mpnjsc", true + case 1953: + return "rapidbase", true + case 1954: + return "abr-api", true + case 1955: + return "abr-secure", true + case 1956: + return "vrtl-vmf-ds", true + case 1957: + return "unix-status", true + case 1958: + return "dxadmind", true + case 1959: + return "simp-all", true + case 1960: + return "nasmanager", true + case 1961: + return "bts-appserver", true + case 1962: + return "biap-mp", true + case 1963: + return "webmachine", true + case 1964: + return "solid-e-engine", true + case 1965: + return "tivoli-npm", true + case 1966: + return "slush", true + case 1967: + return "sns-quote", true + case 1968: + return "lipsinc", true + case 1969: + return "lipsinc1", true + case 1970: + return "netop-rc", true + case 1971: + return "netop-school", true + case 1972: + return "intersys-cache", true + case 1973: + return "dlsrap", true + case 1974: + return "drp", true + case 1975: + return "tcoflashagent", true + case 1976: + return "tcoregagent", true + case 1977: + return "tcoaddressbook", true + case 1978: + return "unisql", true + case 1979: + return "unisql-java", true + case 1980: + return "pearldoc-xact", true + case 1981: + return "p2pq", true + case 1982: + return "estamp", true + case 1983: + return "lhtp", true + case 1984: + return "bb", true + case 1985: + return "hsrp", true + case 1986: + return "licensedaemon", true + case 1987: + return "tr-rsrb-p1", true + case 1988: + return "tr-rsrb-p2", true + case 1989: + return "tr-rsrb-p3", true + case 1990: + return "stun-p1", true + case 1991: + return "stun-p2", true + case 1992: + return "stun-p3", true + case 1993: + return "snmp-tcp-port", true + case 1994: + return "stun-port", true + case 1995: + return "perf-port", true + case 1996: + return "tr-rsrb-port", true + case 1997: + return "gdp-port", true + case 1998: + return "x25-svc-port", true + case 1999: + return "tcp-id-port", true + case 2000: + return "cisco-sccp", true + case 2001: + return "dc", true + case 2002: + return "globe", true + case 2003: + return "brutus", true + case 2004: + return "mailbox", true + case 2005: + return "berknet", true + case 2006: + return "invokator", true + case 2007: + return "dectalk", true + case 2008: + return "conf", true + case 2009: + return "news", true + case 2010: + return "search", true + case 2011: + return "raid-cc", true + case 2012: + return "ttyinfo", true + case 2013: + return "raid-am", true + case 2014: + return "troff", true + case 2015: + return "cypress", true + case 2016: + return "bootserver", true + case 2017: + return "cypress-stat", true + case 2018: + return "terminaldb", true + case 2019: + return "whosockami", true + case 2020: + return "xinupageserver", true + case 2021: + return "servexec", true + case 2022: + return "down", true + case 2023: + return "xinuexpansion3", true + case 2024: + return "xinuexpansion4", true + case 2025: + return "ellpack", true + case 2026: + return "scrabble", true + case 2027: + return "shadowserver", true + case 2028: + return "submitserver", true + case 2029: + return "hsrpv6", true + case 2030: + return "device2", true + case 2031: + return "mobrien-chat", true + case 2032: + return "blackboard", true + case 2033: + return "glogger", true + case 2034: + return "scoremgr", true + case 2035: + return "imsldoc", true + case 2036: + return "e-dpnet", true + case 2037: + return "applus", true + case 2038: + return "objectmanager", true + case 2039: + return "prizma", true + case 2040: + return "lam", true + case 2041: + return "interbase", true + case 2042: + return "isis", true + case 2043: + return "isis-bcast", true + case 2044: + return "rimsl", true + case 2045: + return "cdfunc", true + case 2046: + return "sdfunc", true + case 2047: + return "dls", true + case 2048: + return "dls-monitor", true + case 2049: + return "shilp", true + case 2050: + return "av-emb-config", true + case 2051: + return "epnsdp", true + case 2052: + return "clearvisn", true + case 2053: + return "lot105-ds-upd", true + case 2054: + return "weblogin", true + case 2055: + return "iop", true + case 2056: + return "omnisky", true + case 2057: + return "rich-cp", true + case 2058: + return "newwavesearch", true + case 2059: + return "bmc-messaging", true + case 2060: + return "teleniumdaemon", true + case 2061: + return "netmount", true + case 2062: + return "icg-swp", true + case 2063: + return "icg-bridge", true + case 2064: + return "icg-iprelay", true + case 2065: + return "dlsrpn", true + case 2066: + return "aura", true + case 2067: + return "dlswpn", true + case 2068: + return "avauthsrvprtcl", true + case 2069: + return "event-port", true + case 2070: + return "ah-esp-encap", true + case 2071: + return "acp-port", true + case 2072: + return "msync", true + case 2073: + return "gxs-data-port", true + case 2074: + return "vrtl-vmf-sa", true + case 2075: + return "newlixengine", true + case 2076: + return "newlixconfig", true + case 2077: + return "tsrmagt", true + case 2078: + return "tpcsrvr", true + case 2079: + return "idware-router", true + case 2080: + return "autodesk-nlm", true + case 2081: + return "kme-trap-port", true + case 2082: + return "infowave", true + case 2083: + return "radsec", true + case 2084: + return "sunclustergeo", true + case 2085: + return "ada-cip", true + case 2086: + return "gnunet", true + case 2087: + return "eli", true + case 2088: + return "ip-blf", true + case 2089: + return "sep", true + case 2090: + return "lrp", true + case 2091: + return "prp", true + case 2092: + return "descent3", true + case 2093: + return "nbx-cc", true + case 2094: + return "nbx-au", true + case 2095: + return "nbx-ser", true + case 2096: + return "nbx-dir", true + case 2097: + return "jetformpreview", true + case 2098: + return "dialog-port", true + case 2099: + return "h2250-annex-g", true + case 2100: + return "amiganetfs", true + case 2101: + return "rtcm-sc104", true + case 2102: + return "zephyr-srv", true + case 2103: + return "zephyr-clt", true + case 2104: + return "zephyr-hm", true + case 2105: + return "minipay", true + case 2106: + return "mzap", true + case 2107: + return "bintec-admin", true + case 2108: + return "comcam", true + case 2109: + return "ergolight", true + case 2110: + return "umsp", true + case 2111: + return "dsatp", true + case 2112: + return "idonix-metanet", true + case 2113: + return "hsl-storm", true + case 2114: + return "ariascribe", true + case 2115: + return "kdm", true + case 2116: + return "ccowcmr", true + case 2117: + return "mentaclient", true + case 2118: + return "mentaserver", true + case 2119: + return "gsigatekeeper", true + case 2120: + return "qencp", true + case 2121: + return "scientia-ssdb", true + case 2122: + return "caupc-remote", true + case 2123: + return "gtp-control", true + case 2124: + return "elatelink", true + case 2125: + return "lockstep", true + case 2126: + return "pktcable-cops", true + case 2127: + return "index-pc-wb", true + case 2128: + return "net-steward", true + case 2129: + return "cs-live", true + case 2130: + return "xds", true + case 2131: + return "avantageb2b", true + case 2132: + return "solera-epmap", true + case 2133: + return "zymed-zpp", true + case 2134: + return "avenue", true + case 2135: + return "gris", true + case 2136: + return "appworxsrv", true + case 2137: + return "connect", true + case 2138: + return "unbind-cluster", true + case 2139: + return "ias-auth", true + case 2140: + return "ias-reg", true + case 2141: + return "ias-admind", true + case 2142: + return "tdmoip", true + case 2143: + return "lv-jc", true + case 2144: + return "lv-ffx", true + case 2145: + return "lv-pici", true + case 2146: + return "lv-not", true + case 2147: + return "lv-auth", true + case 2148: + return "veritas-ucl", true + case 2149: + return "acptsys", true + case 2150: + return "dynamic3d", true + case 2151: + return "docent", true + case 2152: + return "gtp-user", true + case 2153: + return "ctlptc", true + case 2154: + return "stdptc", true + case 2155: + return "brdptc", true + case 2156: + return "trp", true + case 2157: + return "xnds", true + case 2158: + return "touchnetplus", true + case 2159: + return "gdbremote", true + case 2160: + return "apc-2160", true + case 2161: + return "apc-2161", true + case 2162: + return "navisphere", true + case 2163: + return "navisphere-sec", true + case 2164: + return "ddns-v3", true + case 2165: + return "x-bone-api", true + case 2166: + return "iwserver", true + case 2167: + return "raw-serial", true + case 2168: + return "easy-soft-mux", true + case 2169: + return "brain", true + case 2170: + return "eyetv", true + case 2171: + return "msfw-storage", true + case 2172: + return "msfw-s-storage", true + case 2173: + return "msfw-replica", true + case 2174: + return "msfw-array", true + case 2175: + return "airsync", true + case 2176: + return "rapi", true + case 2177: + return "qwave", true + case 2178: + return "bitspeer", true + case 2179: + return "vmrdp", true + case 2180: + return "mc-gt-srv", true + case 2181: + return "eforward", true + case 2182: + return "cgn-stat", true + case 2183: + return "cgn-config", true + case 2184: + return "nvd", true + case 2185: + return "onbase-dds", true + case 2186: + return "gtaua", true + case 2187: + return "ssmc", true + case 2188: + return "radware-rpm", true + case 2189: + return "radware-rpm-s", true + case 2190: + return "tivoconnect", true + case 2191: + return "tvbus", true + case 2192: + return "asdis", true + case 2193: + return "drwcs", true + case 2197: + return "mnp-exchange", true + case 2198: + return "onehome-remote", true + case 2199: + return "onehome-help", true + case 2201: + return "ats", true + case 2202: + return "imtc-map", true + case 2203: + return "b2-runtime", true + case 2204: + return "b2-license", true + case 2205: + return "jps", true + case 2206: + return "hpocbus", true + case 2207: + return "hpssd", true + case 2208: + return "hpiod", true + case 2209: + return "rimf-ps", true + case 2210: + return "noaaport", true + case 2211: + return "emwin", true + case 2212: + return "leecoposserver", true + case 2213: + return "kali", true + case 2214: + return "rpi", true + case 2215: + return "ipcore", true + case 2216: + return "vtu-comms", true + case 2217: + return "gotodevice", true + case 2218: + return "bounzza", true + case 2219: + return "netiq-ncap", true + case 2220: + return "netiq", true + case 2221: + return "ethernet-ip-s", true + case 2222: + return "EtherNet-IP-1", true + case 2223: + return "rockwell-csp2", true + case 2224: + return "efi-mg", true + case 2225: + return "rcip-itu", true + case 2226: + return "di-drm", true + case 2227: + return "di-msg", true + case 2228: + return "ehome-ms", true + case 2229: + return "datalens", true + case 2230: + return "queueadm", true + case 2231: + return "wimaxasncp", true + case 2232: + return "ivs-video", true + case 2233: + return "infocrypt", true + case 2234: + return "directplay", true + case 2235: + return "sercomm-wlink", true + case 2236: + return "nani", true + case 2237: + return "optech-port1-lm", true + case 2238: + return "aviva-sna", true + case 2239: + return "imagequery", true + case 2240: + return "recipe", true + case 2241: + return "ivsd", true + case 2242: + return "foliocorp", true + case 2243: + return "magicom", true + case 2244: + return "nmsserver", true + case 2245: + return "hao", true + case 2246: + return "pc-mta-addrmap", true + case 2247: + return "antidotemgrsvr", true + case 2248: + return "ums", true + case 2249: + return "rfmp", true + case 2250: + return "remote-collab", true + case 2251: + return "dif-port", true + case 2252: + return "njenet-ssl", true + case 2253: + return "dtv-chan-req", true + case 2254: + return "seispoc", true + case 2255: + return "vrtp", true + case 2256: + return "pcc-mfp", true + case 2257: + return "simple-tx-rx", true + case 2258: + return "rcts", true + case 2259: + return "bid-serv", true + case 2260: + return "apc-2260", true + case 2261: + return "comotionmaster", true + case 2262: + return "comotionback", true + case 2263: + return "ecwcfg", true + case 2264: + return "apx500api-1", true + case 2265: + return "apx500api-2", true + case 2266: + return "mfserver", true + case 2267: + return "ontobroker", true + case 2268: + return "amt", true + case 2269: + return "mikey", true + case 2270: + return "starschool", true + case 2271: + return "mmcals", true + case 2272: + return "mmcal", true + case 2273: + return "mysql-im", true + case 2274: + return "pcttunnell", true + case 2275: + return "ibridge-data", true + case 2276: + return "ibridge-mgmt", true + case 2277: + return "bluectrlproxy", true + case 2278: + return "s3db", true + case 2279: + return "xmquery", true + case 2280: + return "lnvpoller", true + case 2281: + return "lnvconsole", true + case 2282: + return "lnvalarm", true + case 2283: + return "lnvstatus", true + case 2284: + return "lnvmaps", true + case 2285: + return "lnvmailmon", true + case 2286: + return "nas-metering", true + case 2287: + return "dna", true + case 2288: + return "netml", true + case 2289: + return "dict-lookup", true + case 2290: + return "sonus-logging", true + case 2291: + return "eapsp", true + case 2292: + return "mib-streaming", true + case 2293: + return "npdbgmngr", true + case 2294: + return "konshus-lm", true + case 2295: + return "advant-lm", true + case 2296: + return "theta-lm", true + case 2297: + return "d2k-datamover1", true + case 2298: + return "d2k-datamover2", true + case 2299: + return "pc-telecommute", true + case 2300: + return "cvmmon", true + case 2301: + return "cpq-wbem", true + case 2302: + return "binderysupport", true + case 2303: + return "proxy-gateway", true + case 2304: + return "attachmate-uts", true + case 2305: + return "mt-scaleserver", true + case 2306: + return "tappi-boxnet", true + case 2307: + return "pehelp", true + case 2308: + return "sdhelp", true + case 2309: + return "sdserver", true + case 2310: + return "sdclient", true + case 2311: + return "messageservice", true + case 2312: + return "wanscaler", true + case 2313: + return "iapp", true + case 2314: + return "cr-websystems", true + case 2315: + return "precise-sft", true + case 2316: + return "sent-lm", true + case 2317: + return "attachmate-g32", true + case 2318: + return "cadencecontrol", true + case 2319: + return "infolibria", true + case 2320: + return "siebel-ns", true + case 2321: + return "rdlap", true + case 2322: + return "ofsd", true + case 2323: + return "3d-nfsd", true + case 2324: + return "cosmocall", true + case 2325: + return "ansysli", true + case 2326: + return "idcp", true + case 2327: + return "xingcsm", true + case 2328: + return "netrix-sftm", true + case 2329: + return "nvd", true + case 2330: + return "tscchat", true + case 2331: + return "agentview", true + case 2332: + return "rcc-host", true + case 2333: + return "snapp", true + case 2334: + return "ace-client", true + case 2335: + return "ace-proxy", true + case 2336: + return "appleugcontrol", true + case 2337: + return "ideesrv", true + case 2338: + return "norton-lambert", true + case 2339: + return "3com-webview", true + case 2340: + return "wrs-registry", true + case 2341: + return "xiostatus", true + case 2342: + return "manage-exec", true + case 2343: + return "nati-logos", true + case 2344: + return "fcmsys", true + case 2345: + return "dbm", true + case 2346: + return "redstorm-join", true + case 2347: + return "redstorm-find", true + case 2348: + return "redstorm-info", true + case 2349: + return "redstorm-diag", true + case 2350: + return "psbserver", true + case 2351: + return "psrserver", true + case 2352: + return "pslserver", true + case 2353: + return "pspserver", true + case 2354: + return "psprserver", true + case 2355: + return "psdbserver", true + case 2356: + return "gxtelmd", true + case 2357: + return "unihub-server", true + case 2358: + return "futrix", true + case 2359: + return "flukeserver", true + case 2360: + return "nexstorindltd", true + case 2361: + return "tl1", true + case 2362: + return "digiman", true + case 2363: + return "mediacntrlnfsd", true + case 2364: + return "oi-2000", true + case 2365: + return "dbref", true + case 2366: + return "qip-login", true + case 2367: + return "service-ctrl", true + case 2368: + return "opentable", true + case 2369: + return "bif-p2p", true + case 2370: + return "l3-hbmon", true + case 2371: + return "rda", true + case 2372: + return "lanmessenger", true + case 2373: + return "remographlm", true + case 2374: + return "hydra", true + case 2375: + return "docker", true + case 2376: + return "docker-s", true + case 2377: + return "swarm", true + case 2379: + return "etcd-client", true + case 2380: + return "etcd-server", true + case 2381: + return "compaq-https", true + case 2382: + return "ms-olap3", true + case 2383: + return "ms-olap4", true + case 2384: + return "sd-request", true + case 2385: + return "sd-data", true + case 2386: + return "virtualtape", true + case 2387: + return "vsamredirector", true + case 2388: + return "mynahautostart", true + case 2389: + return "ovsessionmgr", true + case 2390: + return "rsmtp", true + case 2391: + return "3com-net-mgmt", true + case 2392: + return "tacticalauth", true + case 2393: + return "ms-olap1", true + case 2394: + return "ms-olap2", true + case 2395: + return "lan900-remote", true + case 2396: + return "wusage", true + case 2397: + return "ncl", true + case 2398: + return "orbiter", true + case 2399: + return "fmpro-fdal", true + case 2400: + return "opequus-server", true + case 2401: + return "cvspserver", true + case 2402: + return "taskmaster2000", true + case 2403: + return "taskmaster2000", true + case 2404: + return "iec-104", true + case 2405: + return "trc-netpoll", true + case 2406: + return "jediserver", true + case 2407: + return "orion", true + case 2408: + return "railgun-webaccl", true + case 2409: + return "sns-protocol", true + case 2410: + return "vrts-registry", true + case 2411: + return "netwave-ap-mgmt", true + case 2412: + return "cdn", true + case 2413: + return "orion-rmi-reg", true + case 2414: + return "beeyond", true + case 2415: + return "codima-rtp", true + case 2416: + return "rmtserver", true + case 2417: + return "composit-server", true + case 2418: + return "cas", true + case 2419: + return "attachmate-s2s", true + case 2420: + return "dslremote-mgmt", true + case 2421: + return "g-talk", true + case 2422: + return "crmsbits", true + case 2423: + return "rnrp", true + case 2424: + return "kofax-svr", true + case 2425: + return "fjitsuappmgr", true + case 2426: + return "vcmp", true + case 2427: + return "mgcp-gateway", true + case 2428: + return "ott", true + case 2429: + return "ft-role", true + case 2430: + return "venus", true + case 2431: + return "venus-se", true + case 2432: + return "codasrv", true + case 2433: + return "codasrv-se", true + case 2434: + return "pxc-epmap", true + case 2435: + return "optilogic", true + case 2436: + return "topx", true + case 2437: + return "unicontrol", true + case 2438: + return "msp", true + case 2439: + return "sybasedbsynch", true + case 2440: + return "spearway", true + case 2441: + return "pvsw-inet", true + case 2442: + return "netangel", true + case 2443: + return "powerclientcsf", true + case 2444: + return "btpp2sectrans", true + case 2445: + return "dtn1", true + case 2446: + return "bues-service", true + case 2447: + return "ovwdb", true + case 2448: + return "hpppssvr", true + case 2449: + return "ratl", true + case 2450: + return "netadmin", true + case 2451: + return "netchat", true + case 2452: + return "snifferclient", true + case 2453: + return "madge-ltd", true + case 2454: + return "indx-dds", true + case 2455: + return "wago-io-system", true + case 2456: + return "altav-remmgt", true + case 2457: + return "rapido-ip", true + case 2458: + return "griffin", true + case 2459: + return "xrpl", true + case 2460: + return "ms-theater", true + case 2461: + return "qadmifoper", true + case 2462: + return "qadmifevent", true + case 2463: + return "lsi-raid-mgmt", true + case 2464: + return "direcpc-si", true + case 2465: + return "lbm", true + case 2466: + return "lbf", true + case 2467: + return "high-criteria", true + case 2468: + return "qip-msgd", true + case 2469: + return "mti-tcs-comm", true + case 2470: + return "taskman-port", true + case 2471: + return "seaodbc", true + case 2472: + return "c3", true + case 2473: + return "aker-cdp", true + case 2474: + return "vitalanalysis", true + case 2475: + return "ace-server", true + case 2476: + return "ace-svr-prop", true + case 2477: + return "ssm-cvs", true + case 2478: + return "ssm-cssps", true + case 2479: + return "ssm-els", true + case 2480: + return "powerexchange", true + case 2481: + return "giop", true + case 2482: + return "giop-ssl", true + case 2483: + return "ttc", true + case 2484: + return "ttc-ssl", true + case 2485: + return "netobjects1", true + case 2486: + return "netobjects2", true + case 2487: + return "pns", true + case 2488: + return "moy-corp", true + case 2489: + return "tsilb", true + case 2490: + return "qip-qdhcp", true + case 2491: + return "conclave-cpp", true + case 2492: + return "groove", true + case 2493: + return "talarian-mqs", true + case 2494: + return "bmc-ar", true + case 2495: + return "fast-rem-serv", true + case 2496: + return "dirgis", true + case 2497: + return "quaddb", true + case 2498: + return "odn-castraq", true + case 2499: + return "unicontrol", true + case 2500: + return "rtsserv", true + case 2501: + return "rtsclient", true + case 2502: + return "kentrox-prot", true + case 2503: + return "nms-dpnss", true + case 2504: + return "wlbs", true + case 2505: + return "ppcontrol", true + case 2506: + return "jbroker", true + case 2507: + return "spock", true + case 2508: + return "jdatastore", true + case 2509: + return "fjmpss", true + case 2510: + return "fjappmgrbulk", true + case 2511: + return "metastorm", true + case 2512: + return "citrixima", true + case 2513: + return "citrixadmin", true + case 2514: + return "facsys-ntp", true + case 2515: + return "facsys-router", true + case 2516: + return "maincontrol", true + case 2517: + return "call-sig-trans", true + case 2518: + return "willy", true + case 2519: + return "globmsgsvc", true + case 2520: + return "pvsw", true + case 2521: + return "adaptecmgr", true + case 2522: + return "windb", true + case 2523: + return "qke-llc-v3", true + case 2524: + return "optiwave-lm", true + case 2525: + return "ms-v-worlds", true + case 2526: + return "ema-sent-lm", true + case 2527: + return "iqserver", true + case 2528: + return "ncr-ccl", true + case 2529: + return "utsftp", true + case 2530: + return "vrcommerce", true + case 2531: + return "ito-e-gui", true + case 2532: + return "ovtopmd", true + case 2533: + return "snifferserver", true + case 2534: + return "combox-web-acc", true + case 2535: + return "madcap", true + case 2536: + return "btpp2audctr1", true + case 2537: + return "upgrade", true + case 2538: + return "vnwk-prapi", true + case 2539: + return "vsiadmin", true + case 2540: + return "lonworks", true + case 2541: + return "lonworks2", true + case 2542: + return "udrawgraph", true + case 2543: + return "reftek", true + case 2544: + return "novell-zen", true + case 2545: + return "sis-emt", true + case 2546: + return "vytalvaultbrtp", true + case 2547: + return "vytalvaultvsmp", true + case 2548: + return "vytalvaultpipe", true + case 2549: + return "ipass", true + case 2550: + return "ads", true + case 2551: + return "isg-uda-server", true + case 2552: + return "call-logging", true + case 2553: + return "efidiningport", true + case 2554: + return "vcnet-link-v10", true + case 2555: + return "compaq-wcp", true + case 2556: + return "nicetec-nmsvc", true + case 2557: + return "nicetec-mgmt", true + case 2558: + return "pclemultimedia", true + case 2559: + return "lstp", true + case 2560: + return "labrat", true + case 2561: + return "mosaixcc", true + case 2562: + return "delibo", true + case 2563: + return "cti-redwood", true + case 2564: + return "hp-3000-telnet", true + case 2565: + return "coord-svr", true + case 2566: + return "pcs-pcw", true + case 2567: + return "clp", true + case 2568: + return "spamtrap", true + case 2569: + return "sonuscallsig", true + case 2570: + return "hs-port", true + case 2571: + return "cecsvc", true + case 2572: + return "ibp", true + case 2573: + return "trustestablish", true + case 2574: + return "blockade-bpsp", true + case 2575: + return "hl7", true + case 2576: + return "tclprodebugger", true + case 2577: + return "scipticslsrvr", true + case 2578: + return "rvs-isdn-dcp", true + case 2579: + return "mpfoncl", true + case 2580: + return "tributary", true + case 2581: + return "argis-te", true + case 2582: + return "argis-ds", true + case 2583: + return "mon", true + case 2584: + return "cyaserv", true + case 2585: + return "netx-server", true + case 2586: + return "netx-agent", true + case 2587: + return "masc", true + case 2588: + return "privilege", true + case 2589: + return "quartus-tcl", true + case 2590: + return "idotdist", true + case 2591: + return "maytagshuffle", true + case 2592: + return "netrek", true + case 2593: + return "mns-mail", true + case 2594: + return "dts", true + case 2595: + return "worldfusion1", true + case 2596: + return "worldfusion2", true + case 2597: + return "homesteadglory", true + case 2598: + return "citriximaclient", true + case 2599: + return "snapd", true + case 2600: + return "hpstgmgr", true + case 2601: + return "discp-client", true + case 2602: + return "discp-server", true + case 2603: + return "servicemeter", true + case 2604: + return "nsc-ccs", true + case 2605: + return "nsc-posa", true + case 2606: + return "netmon", true + case 2607: + return "connection", true + case 2608: + return "wag-service", true + case 2609: + return "system-monitor", true + case 2610: + return "versa-tek", true + case 2611: + return "lionhead", true + case 2612: + return "qpasa-agent", true + case 2613: + return "smntubootstrap", true + case 2614: + return "neveroffline", true + case 2615: + return "firepower", true + case 2616: + return "appswitch-emp", true + case 2617: + return "cmadmin", true + case 2618: + return "priority-e-com", true + case 2619: + return "bruce", true + case 2620: + return "lpsrecommender", true + case 2621: + return "miles-apart", true + case 2622: + return "metricadbc", true + case 2623: + return "lmdp", true + case 2624: + return "aria", true + case 2625: + return "blwnkl-port", true + case 2626: + return "gbjd816", true + case 2627: + return "moshebeeri", true + case 2628: + return "dict", true + case 2629: + return "sitaraserver", true + case 2630: + return "sitaramgmt", true + case 2631: + return "sitaradir", true + case 2632: + return "irdg-post", true + case 2633: + return "interintelli", true + case 2634: + return "pk-electronics", true + case 2635: + return "backburner", true + case 2636: + return "solve", true + case 2637: + return "imdocsvc", true + case 2638: + return "sybaseanywhere", true + case 2639: + return "aminet", true + case 2640: + return "ami-control", true + case 2641: + return "hdl-srv", true + case 2642: + return "tragic", true + case 2643: + return "gte-samp", true + case 2644: + return "travsoft-ipx-t", true + case 2645: + return "novell-ipx-cmd", true + case 2646: + return "and-lm", true + case 2647: + return "syncserver", true + case 2648: + return "upsnotifyprot", true + case 2649: + return "vpsipport", true + case 2650: + return "eristwoguns", true + case 2651: + return "ebinsite", true + case 2652: + return "interpathpanel", true + case 2653: + return "sonus", true + case 2654: + return "corel-vncadmin", true + case 2655: + return "unglue", true + case 2656: + return "kana", true + case 2657: + return "sns-dispatcher", true + case 2658: + return "sns-admin", true + case 2659: + return "sns-query", true + case 2660: + return "gcmonitor", true + case 2661: + return "olhost", true + case 2662: + return "bintec-capi", true + case 2663: + return "bintec-tapi", true + case 2664: + return "patrol-mq-gm", true + case 2665: + return "patrol-mq-nm", true + case 2666: + return "extensis", true + case 2667: + return "alarm-clock-s", true + case 2668: + return "alarm-clock-c", true + case 2669: + return "toad", true + case 2670: + return "tve-announce", true + case 2671: + return "newlixreg", true + case 2672: + return "nhserver", true + case 2673: + return "firstcall42", true + case 2674: + return "ewnn", true + case 2675: + return "ttc-etap", true + case 2676: + return "simslink", true + case 2677: + return "gadgetgate1way", true + case 2678: + return "gadgetgate2way", true + case 2679: + return "syncserverssl", true + case 2680: + return "pxc-sapxom", true + case 2681: + return "mpnjsomb", true + case 2683: + return "ncdloadbalance", true + case 2684: + return "mpnjsosv", true + case 2685: + return "mpnjsocl", true + case 2686: + return "mpnjsomg", true + case 2687: + return "pq-lic-mgmt", true + case 2688: + return "md-cg-http", true + case 2689: + return "fastlynx", true + case 2690: + return "hp-nnm-data", true + case 2691: + return "itinternet", true + case 2692: + return "admins-lms", true + case 2694: + return "pwrsevent", true + case 2695: + return "vspread", true + case 2696: + return "unifyadmin", true + case 2697: + return "oce-snmp-trap", true + case 2698: + return "mck-ivpip", true + case 2699: + return "csoft-plusclnt", true + case 2700: + return "tqdata", true + case 2701: + return "sms-rcinfo", true + case 2702: + return "sms-xfer", true + case 2703: + return "sms-chat", true + case 2704: + return "sms-remctrl", true + case 2705: + return "sds-admin", true + case 2706: + return "ncdmirroring", true + case 2707: + return "emcsymapiport", true + case 2708: + return "banyan-net", true + case 2709: + return "supermon", true + case 2710: + return "sso-service", true + case 2711: + return "sso-control", true + case 2712: + return "aocp", true + case 2713: + return "raventbs", true + case 2714: + return "raventdm", true + case 2715: + return "hpstgmgr2", true + case 2716: + return "inova-ip-disco", true + case 2717: + return "pn-requester", true + case 2718: + return "pn-requester2", true + case 2719: + return "scan-change", true + case 2720: + return "wkars", true + case 2721: + return "smart-diagnose", true + case 2722: + return "proactivesrvr", true + case 2723: + return "watchdog-nt", true + case 2724: + return "qotps", true + case 2725: + return "msolap-ptp2", true + case 2726: + return "tams", true + case 2727: + return "mgcp-callagent", true + case 2728: + return "sqdr", true + case 2729: + return "tcim-control", true + case 2730: + return "nec-raidplus", true + case 2731: + return "fyre-messanger", true + case 2732: + return "g5m", true + case 2733: + return "signet-ctf", true + case 2734: + return "ccs-software", true + case 2735: + return "netiq-mc", true + case 2736: + return "radwiz-nms-srv", true + case 2737: + return "srp-feedback", true + case 2738: + return "ndl-tcp-ois-gw", true + case 2739: + return "tn-timing", true + case 2740: + return "alarm", true + case 2741: + return "tsb", true + case 2742: + return "tsb2", true + case 2743: + return "murx", true + case 2744: + return "honyaku", true + case 2745: + return "urbisnet", true + case 2746: + return "cpudpencap", true + case 2747: + return "fjippol-swrly", true + case 2748: + return "fjippol-polsvr", true + case 2749: + return "fjippol-cnsl", true + case 2750: + return "fjippol-port1", true + case 2751: + return "fjippol-port2", true + case 2752: + return "rsisysaccess", true + case 2753: + return "de-spot", true + case 2754: + return "apollo-cc", true + case 2755: + return "expresspay", true + case 2756: + return "simplement-tie", true + case 2757: + return "cnrp", true + case 2758: + return "apollo-status", true + case 2759: + return "apollo-gms", true + case 2760: + return "sabams", true + case 2761: + return "dicom-iscl", true + case 2762: + return "dicom-tls", true + case 2763: + return "desktop-dna", true + case 2764: + return "data-insurance", true + case 2765: + return "qip-audup", true + case 2766: + return "compaq-scp", true + case 2767: + return "uadtc", true + case 2768: + return "uacs", true + case 2769: + return "exce", true + case 2770: + return "veronica", true + case 2771: + return "vergencecm", true + case 2772: + return "auris", true + case 2773: + return "rbakcup1", true + case 2774: + return "rbakcup2", true + case 2775: + return "smpp", true + case 2776: + return "ridgeway1", true + case 2777: + return "ridgeway2", true + case 2778: + return "gwen-sonya", true + case 2779: + return "lbc-sync", true + case 2780: + return "lbc-control", true + case 2781: + return "whosells", true + case 2782: + return "everydayrc", true + case 2783: + return "aises", true + case 2784: + return "www-dev", true + case 2785: + return "aic-np", true + case 2786: + return "aic-oncrpc", true + case 2787: + return "piccolo", true + case 2788: + return "fryeserv", true + case 2789: + return "media-agent", true + case 2790: + return "plgproxy", true + case 2791: + return "mtport-regist", true + case 2792: + return "f5-globalsite", true + case 2793: + return "initlsmsad", true + case 2795: + return "livestats", true + case 2796: + return "ac-tech", true + case 2797: + return "esp-encap", true + case 2798: + return "tmesis-upshot", true + case 2799: + return "icon-discover", true + case 2800: + return "acc-raid", true + case 2801: + return "igcp", true + case 2802: + return "veritas-tcp1", true + case 2803: + return "btprjctrl", true + case 2804: + return "dvr-esm", true + case 2805: + return "wta-wsp-s", true + case 2806: + return "cspuni", true + case 2807: + return "cspmulti", true + case 2808: + return "j-lan-p", true + case 2809: + return "corbaloc", true + case 2810: + return "netsteward", true + case 2811: + return "gsiftp", true + case 2812: + return "atmtcp", true + case 2813: + return "llm-pass", true + case 2814: + return "llm-csv", true + case 2815: + return "lbc-measure", true + case 2816: + return "lbc-watchdog", true + case 2817: + return "nmsigport", true + case 2818: + return "rmlnk", true + case 2819: + return "fc-faultnotify", true + case 2820: + return "univision", true + case 2821: + return "vrts-at-port", true + case 2822: + return "ka0wuc", true + case 2823: + return "cqg-netlan", true + case 2824: + return "cqg-netlan-1", true + case 2826: + return "slc-systemlog", true + case 2827: + return "slc-ctrlrloops", true + case 2828: + return "itm-lm", true + case 2829: + return "silkp1", true + case 2830: + return "silkp2", true + case 2831: + return "silkp3", true + case 2832: + return "silkp4", true + case 2833: + return "glishd", true + case 2834: + return "evtp", true + case 2835: + return "evtp-data", true + case 2836: + return "catalyst", true + case 2837: + return "repliweb", true + case 2838: + return "starbot", true + case 2839: + return "nmsigport", true + case 2840: + return "l3-exprt", true + case 2841: + return "l3-ranger", true + case 2842: + return "l3-hawk", true + case 2843: + return "pdnet", true + case 2844: + return "bpcp-poll", true + case 2845: + return "bpcp-trap", true + case 2846: + return "aimpp-hello", true + case 2847: + return "aimpp-port-req", true + case 2848: + return "amt-blc-port", true + case 2849: + return "fxp", true + case 2850: + return "metaconsole", true + case 2851: + return "webemshttp", true + case 2852: + return "bears-01", true + case 2853: + return "ispipes", true + case 2854: + return "infomover", true + case 2855: + return "msrp", true + case 2856: + return "cesdinv", true + case 2857: + return "simctlp", true + case 2858: + return "ecnp", true + case 2859: + return "activememory", true + case 2860: + return "dialpad-voice1", true + case 2861: + return "dialpad-voice2", true + case 2862: + return "ttg-protocol", true + case 2863: + return "sonardata", true + case 2864: + return "astronova-main", true + case 2865: + return "pit-vpn", true + case 2866: + return "iwlistener", true + case 2867: + return "esps-portal", true + case 2868: + return "npep-messaging", true + case 2869: + return "icslap", true + case 2870: + return "daishi", true + case 2871: + return "msi-selectplay", true + case 2872: + return "radix", true + case 2873: + return "psrt", true + case 2874: + return "dxmessagebase1", true + case 2875: + return "dxmessagebase2", true + case 2876: + return "sps-tunnel", true + case 2877: + return "bluelance", true + case 2878: + return "aap", true + case 2879: + return "ucentric-ds", true + case 2880: + return "synapse", true + case 2881: + return "ndsp", true + case 2882: + return "ndtp", true + case 2883: + return "ndnp", true + case 2884: + return "flashmsg", true + case 2885: + return "topflow", true + case 2886: + return "responselogic", true + case 2887: + return "aironetddp", true + case 2888: + return "spcsdlobby", true + case 2889: + return "rsom", true + case 2890: + return "cspclmulti", true + case 2891: + return "cinegrfx-elmd", true + case 2892: + return "snifferdata", true + case 2893: + return "vseconnector", true + case 2894: + return "abacus-remote", true + case 2895: + return "natuslink", true + case 2896: + return "ecovisiong6-1", true + case 2897: + return "citrix-rtmp", true + case 2898: + return "appliance-cfg", true + case 2899: + return "powergemplus", true + case 2900: + return "quicksuite", true + case 2901: + return "allstorcns", true + case 2902: + return "netaspi", true + case 2903: + return "suitcase", true + case 2904: + return "m2ua", true + case 2905: + return "m3ua", true + case 2906: + return "caller9", true + case 2907: + return "webmethods-b2b", true + case 2908: + return "mao", true + case 2909: + return "funk-dialout", true + case 2910: + return "tdaccess", true + case 2911: + return "blockade", true + case 2912: + return "epicon", true + case 2913: + return "boosterware", true + case 2914: + return "gamelobby", true + case 2915: + return "tksocket", true + case 2916: + return "elvin-server", true + case 2917: + return "elvin-client", true + case 2918: + return "kastenchasepad", true + case 2919: + return "roboer", true + case 2920: + return "roboeda", true + case 2921: + return "cesdcdman", true + case 2922: + return "cesdcdtrn", true + case 2923: + return "wta-wsp-wtp-s", true + case 2924: + return "precise-vip", true + case 2926: + return "mobile-file-dl", true + case 2927: + return "unimobilectrl", true + case 2928: + return "redstone-cpss", true + case 2929: + return "amx-webadmin", true + case 2930: + return "amx-weblinx", true + case 2931: + return "circle-x", true + case 2932: + return "incp", true + case 2933: + return "4-tieropmgw", true + case 2934: + return "4-tieropmcli", true + case 2935: + return "qtp", true + case 2936: + return "otpatch", true + case 2937: + return "pnaconsult-lm", true + case 2938: + return "sm-pas-1", true + case 2939: + return "sm-pas-2", true + case 2940: + return "sm-pas-3", true + case 2941: + return "sm-pas-4", true + case 2942: + return "sm-pas-5", true + case 2943: + return "ttnrepository", true + case 2944: + return "megaco-h248", true + case 2945: + return "h248-binary", true + case 2946: + return "fjsvmpor", true + case 2947: + return "gpsd", true + case 2948: + return "wap-push", true + case 2949: + return "wap-pushsecure", true + case 2950: + return "esip", true + case 2951: + return "ottp", true + case 2952: + return "mpfwsas", true + case 2953: + return "ovalarmsrv", true + case 2954: + return "ovalarmsrv-cmd", true + case 2955: + return "csnotify", true + case 2956: + return "ovrimosdbman", true + case 2957: + return "jmact5", true + case 2958: + return "jmact6", true + case 2959: + return "rmopagt", true + case 2960: + return "dfoxserver", true + case 2961: + return "boldsoft-lm", true + case 2962: + return "iph-policy-cli", true + case 2963: + return "iph-policy-adm", true + case 2964: + return "bullant-srap", true + case 2965: + return "bullant-rap", true + case 2966: + return "idp-infotrieve", true + case 2967: + return "ssc-agent", true + case 2968: + return "enpp", true + case 2969: + return "essp", true + case 2970: + return "index-net", true + case 2971: + return "netclip", true + case 2972: + return "pmsm-webrctl", true + case 2973: + return "svnetworks", true + case 2974: + return "signal", true + case 2975: + return "fjmpcm", true + case 2976: + return "cns-srv-port", true + case 2977: + return "ttc-etap-ns", true + case 2978: + return "ttc-etap-ds", true + case 2979: + return "h263-video", true + case 2980: + return "wimd", true + case 2981: + return "mylxamport", true + case 2982: + return "iwb-whiteboard", true + case 2983: + return "netplan", true + case 2984: + return "hpidsadmin", true + case 2985: + return "hpidsagent", true + case 2986: + return "stonefalls", true + case 2987: + return "identify", true + case 2988: + return "hippad", true + case 2989: + return "zarkov", true + case 2990: + return "boscap", true + case 2991: + return "wkstn-mon", true + case 2992: + return "avenyo", true + case 2993: + return "veritas-vis1", true + case 2994: + return "veritas-vis2", true + case 2995: + return "idrs", true + case 2996: + return "vsixml", true + case 2997: + return "rebol", true + case 2998: + return "realsecure", true + case 2999: + return "remoteware-un", true + case 3000: + return "hbci", true + case 3001: + return "origo-native", true + case 3002: + return "exlm-agent", true + case 3003: + return "cgms", true + case 3004: + return "csoftragent", true + case 3005: + return "geniuslm", true + case 3006: + return "ii-admin", true + case 3007: + return "lotusmtap", true + case 3008: + return "midnight-tech", true + case 3009: + return "pxc-ntfy", true + case 3010: + return "gw", true + case 3011: + return "trusted-web", true + case 3012: + return "twsdss", true + case 3013: + return "gilatskysurfer", true + case 3014: + return "broker-service", true + case 3015: + return "nati-dstp", true + case 3016: + return "notify-srvr", true + case 3017: + return "event-listener", true + case 3018: + return "srvc-registry", true + case 3019: + return "resource-mgr", true + case 3020: + return "cifs", true + case 3021: + return "agriserver", true + case 3022: + return "csregagent", true + case 3023: + return "magicnotes", true + case 3024: + return "nds-sso", true + case 3025: + return "arepa-raft", true + case 3026: + return "agri-gateway", true + case 3027: + return "LiebDevMgmt-C", true + case 3028: + return "LiebDevMgmt-DM", true + case 3029: + return "LiebDevMgmt-A", true + case 3030: + return "arepa-cas", true + case 3031: + return "eppc", true + case 3032: + return "redwood-chat", true + case 3033: + return "pdb", true + case 3034: + return "osmosis-aeea", true + case 3035: + return "fjsv-gssagt", true + case 3036: + return "hagel-dump", true + case 3037: + return "hp-san-mgmt", true + case 3038: + return "santak-ups", true + case 3039: + return "cogitate", true + case 3040: + return "tomato-springs", true + case 3041: + return "di-traceware", true + case 3042: + return "journee", true + case 3043: + return "brp", true + case 3044: + return "epp", true + case 3045: + return "responsenet", true + case 3046: + return "di-ase", true + case 3047: + return "hlserver", true + case 3048: + return "pctrader", true + case 3049: + return "nsws", true + case 3050: + return "gds-db", true + case 3051: + return "galaxy-server", true + case 3052: + return "apc-3052", true + case 3053: + return "dsom-server", true + case 3054: + return "amt-cnf-prot", true + case 3055: + return "policyserver", true + case 3056: + return "cdl-server", true + case 3057: + return "goahead-fldup", true + case 3058: + return "videobeans", true + case 3059: + return "qsoft", true + case 3060: + return "interserver", true + case 3061: + return "cautcpd", true + case 3062: + return "ncacn-ip-tcp", true + case 3063: + return "ncadg-ip-udp", true + case 3064: + return "rprt", true + case 3065: + return "slinterbase", true + case 3066: + return "netattachsdmp", true + case 3067: + return "fjhpjp", true + case 3068: + return "ls3bcast", true + case 3069: + return "ls3", true + case 3070: + return "mgxswitch", true + case 3071: + return "xplat-replicate", true + case 3072: + return "csd-monitor", true + case 3073: + return "vcrp", true + case 3074: + return "xbox", true + case 3075: + return "orbix-locator", true + case 3076: + return "orbix-config", true + case 3077: + return "orbix-loc-ssl", true + case 3078: + return "orbix-cfg-ssl", true + case 3079: + return "lv-frontpanel", true + case 3080: + return "stm-pproc", true + case 3081: + return "tl1-lv", true + case 3082: + return "tl1-raw", true + case 3083: + return "tl1-telnet", true + case 3084: + return "itm-mccs", true + case 3085: + return "pcihreq", true + case 3086: + return "jdl-dbkitchen", true + case 3087: + return "asoki-sma", true + case 3088: + return "xdtp", true + case 3089: + return "ptk-alink", true + case 3090: + return "stss", true + case 3091: + return "1ci-smcs", true + case 3093: + return "rapidmq-center", true + case 3094: + return "rapidmq-reg", true + case 3095: + return "panasas", true + case 3096: + return "ndl-aps", true + case 3098: + return "umm-port", true + case 3099: + return "chmd", true + case 3100: + return "opcon-xps", true + case 3101: + return "hp-pxpib", true + case 3102: + return "slslavemon", true + case 3103: + return "autocuesmi", true + case 3104: + return "autocuelog", true + case 3105: + return "cardbox", true + case 3106: + return "cardbox-http", true + case 3107: + return "business", true + case 3108: + return "geolocate", true + case 3109: + return "personnel", true + case 3110: + return "sim-control", true + case 3111: + return "wsynch", true + case 3112: + return "ksysguard", true + case 3113: + return "cs-auth-svr", true + case 3114: + return "ccmad", true + case 3115: + return "mctet-master", true + case 3116: + return "mctet-gateway", true + case 3117: + return "mctet-jserv", true + case 3118: + return "pkagent", true + case 3119: + return "d2000kernel", true + case 3120: + return "d2000webserver", true + case 3121: + return "pcmk-remote", true + case 3122: + return "vtr-emulator", true + case 3123: + return "edix", true + case 3124: + return "beacon-port", true + case 3125: + return "a13-an", true + case 3127: + return "ctx-bridge", true + case 3128: + return "ndl-aas", true + case 3129: + return "netport-id", true + case 3130: + return "icpv2", true + case 3131: + return "netbookmark", true + case 3132: + return "ms-rule-engine", true + case 3133: + return "prism-deploy", true + case 3134: + return "ecp", true + case 3135: + return "peerbook-port", true + case 3136: + return "grubd", true + case 3137: + return "rtnt-1", true + case 3138: + return "rtnt-2", true + case 3139: + return "incognitorv", true + case 3140: + return "ariliamulti", true + case 3141: + return "vmodem", true + case 3142: + return "rdc-wh-eos", true + case 3143: + return "seaview", true + case 3144: + return "tarantella", true + case 3145: + return "csi-lfap", true + case 3146: + return "bears-02", true + case 3147: + return "rfio", true + case 3148: + return "nm-game-admin", true + case 3149: + return "nm-game-server", true + case 3150: + return "nm-asses-admin", true + case 3151: + return "nm-assessor", true + case 3152: + return "feitianrockey", true + case 3153: + return "s8-client-port", true + case 3154: + return "ccmrmi", true + case 3155: + return "jpegmpeg", true + case 3156: + return "indura", true + case 3157: + return "e3consultants", true + case 3158: + return "stvp", true + case 3159: + return "navegaweb-port", true + case 3160: + return "tip-app-server", true + case 3161: + return "doc1lm", true + case 3162: + return "sflm", true + case 3163: + return "res-sap", true + case 3164: + return "imprs", true + case 3165: + return "newgenpay", true + case 3166: + return "sossecollector", true + case 3167: + return "nowcontact", true + case 3168: + return "poweronnud", true + case 3169: + return "serverview-as", true + case 3170: + return "serverview-asn", true + case 3171: + return "serverview-gf", true + case 3172: + return "serverview-rm", true + case 3173: + return "serverview-icc", true + case 3174: + return "armi-server", true + case 3175: + return "t1-e1-over-ip", true + case 3176: + return "ars-master", true + case 3177: + return "phonex-port", true + case 3178: + return "radclientport", true + case 3179: + return "h2gf-w-2m", true + case 3180: + return "mc-brk-srv", true + case 3181: + return "bmcpatrolagent", true + case 3182: + return "bmcpatrolrnvu", true + case 3183: + return "cops-tls", true + case 3184: + return "apogeex-port", true + case 3185: + return "smpppd", true + case 3186: + return "iiw-port", true + case 3187: + return "odi-port", true + case 3188: + return "brcm-comm-port", true + case 3189: + return "pcle-infex", true + case 3190: + return "csvr-proxy", true + case 3191: + return "csvr-sslproxy", true + case 3192: + return "firemonrcc", true + case 3193: + return "spandataport", true + case 3194: + return "magbind", true + case 3195: + return "ncu-1", true + case 3196: + return "ncu-2", true + case 3197: + return "embrace-dp-s", true + case 3198: + return "embrace-dp-c", true + case 3199: + return "dmod-workspace", true + case 3200: + return "tick-port", true + case 3201: + return "cpq-tasksmart", true + case 3202: + return "intraintra", true + case 3203: + return "netwatcher-mon", true + case 3204: + return "netwatcher-db", true + case 3205: + return "isns", true + case 3206: + return "ironmail", true + case 3207: + return "vx-auth-port", true + case 3208: + return "pfu-prcallback", true + case 3209: + return "netwkpathengine", true + case 3210: + return "flamenco-proxy", true + case 3211: + return "avsecuremgmt", true + case 3212: + return "surveyinst", true + case 3213: + return "neon24x7", true + case 3214: + return "jmq-daemon-1", true + case 3215: + return "jmq-daemon-2", true + case 3216: + return "ferrari-foam", true + case 3217: + return "unite", true + case 3218: + return "smartpackets", true + case 3219: + return "wms-messenger", true + case 3220: + return "xnm-ssl", true + case 3221: + return "xnm-clear-text", true + case 3222: + return "glbp", true + case 3223: + return "digivote", true + case 3224: + return "aes-discovery", true + case 3225: + return "fcip-port", true + case 3226: + return "isi-irp", true + case 3227: + return "dwnmshttp", true + case 3228: + return "dwmsgserver", true + case 3229: + return "global-cd-port", true + case 3230: + return "sftdst-port", true + case 3231: + return "vidigo", true + case 3232: + return "mdtp", true + case 3233: + return "whisker", true + case 3234: + return "alchemy", true + case 3235: + return "mdap-port", true + case 3236: + return "apparenet-ts", true + case 3237: + return "apparenet-tps", true + case 3238: + return "apparenet-as", true + case 3239: + return "apparenet-ui", true + case 3240: + return "triomotion", true + case 3241: + return "sysorb", true + case 3242: + return "sdp-id-port", true + case 3243: + return "timelot", true + case 3244: + return "onesaf", true + case 3245: + return "vieo-fe", true + case 3246: + return "dvt-system", true + case 3247: + return "dvt-data", true + case 3248: + return "procos-lm", true + case 3249: + return "ssp", true + case 3250: + return "hicp", true + case 3251: + return "sysscanner", true + case 3252: + return "dhe", true + case 3253: + return "pda-data", true + case 3254: + return "pda-sys", true + case 3255: + return "semaphore", true + case 3256: + return "cpqrpm-agent", true + case 3257: + return "cpqrpm-server", true + case 3258: + return "ivecon-port", true + case 3259: + return "epncdp2", true + case 3260: + return "iscsi-target", true + case 3261: + return "winshadow", true + case 3262: + return "necp", true + case 3263: + return "ecolor-imager", true + case 3264: + return "ccmail", true + case 3265: + return "altav-tunnel", true + case 3266: + return "ns-cfg-server", true + case 3267: + return "ibm-dial-out", true + case 3268: + return "msft-gc", true + case 3269: + return "msft-gc-ssl", true + case 3270: + return "verismart", true + case 3271: + return "csoft-prev", true + case 3272: + return "user-manager", true + case 3273: + return "sxmp", true + case 3274: + return "ordinox-server", true + case 3275: + return "samd", true + case 3276: + return "maxim-asics", true + case 3277: + return "awg-proxy", true + case 3278: + return "lkcmserver", true + case 3279: + return "admind", true + case 3280: + return "vs-server", true + case 3281: + return "sysopt", true + case 3282: + return "datusorb", true + case 3283: + return "Apple Remote Desktop (Net Assistant)", true + case 3284: + return "4talk", true + case 3285: + return "plato", true + case 3286: + return "e-net", true + case 3287: + return "directvdata", true + case 3288: + return "cops", true + case 3289: + return "enpc", true + case 3290: + return "caps-lm", true + case 3291: + return "sah-lm", true + case 3292: + return "cart-o-rama", true + case 3293: + return "fg-fps", true + case 3294: + return "fg-gip", true + case 3295: + return "dyniplookup", true + case 3296: + return "rib-slm", true + case 3297: + return "cytel-lm", true + case 3298: + return "deskview", true + case 3299: + return "pdrncs", true + case 3300: + return "ceph", true + case 3301: + return "tarantool", true + case 3302: + return "mcs-fastmail", true + case 3303: + return "opsession-clnt", true + case 3304: + return "opsession-srvr", true + case 3305: + return "odette-ftp", true + case 3306: + return "mysql", true + case 3307: + return "opsession-prxy", true + case 3308: + return "tns-server", true + case 3309: + return "tns-adv", true + case 3310: + return "dyna-access", true + case 3311: + return "mcns-tel-ret", true + case 3312: + return "appman-server", true + case 3313: + return "uorb", true + case 3314: + return "uohost", true + case 3315: + return "cdid", true + case 3316: + return "aicc-cmi", true + case 3317: + return "vsaiport", true + case 3318: + return "ssrip", true + case 3319: + return "sdt-lmd", true + case 3320: + return "officelink2000", true + case 3321: + return "vnsstr", true + case 3326: + return "sftu", true + case 3327: + return "bbars", true + case 3328: + return "egptlm", true + case 3329: + return "hp-device-disc", true + case 3330: + return "mcs-calypsoicf", true + case 3331: + return "mcs-messaging", true + case 3332: + return "mcs-mailsvr", true + case 3333: + return "dec-notes", true + case 3334: + return "directv-web", true + case 3335: + return "directv-soft", true + case 3336: + return "directv-tick", true + case 3337: + return "directv-catlg", true + case 3338: + return "anet-b", true + case 3339: + return "anet-l", true + case 3340: + return "anet-m", true + case 3341: + return "anet-h", true + case 3342: + return "webtie", true + case 3343: + return "ms-cluster-net", true + case 3344: + return "bnt-manager", true + case 3345: + return "influence", true + case 3346: + return "trnsprntproxy", true + case 3347: + return "phoenix-rpc", true + case 3348: + return "pangolin-laser", true + case 3349: + return "chevinservices", true + case 3350: + return "findviatv", true + case 3351: + return "btrieve", true + case 3352: + return "ssql", true + case 3353: + return "fatpipe", true + case 3354: + return "suitjd", true + case 3355: + return "ordinox-dbase", true + case 3356: + return "upnotifyps", true + case 3357: + return "adtech-test", true + case 3358: + return "mpsysrmsvr", true + case 3359: + return "wg-netforce", true + case 3360: + return "kv-server", true + case 3361: + return "kv-agent", true + case 3362: + return "dj-ilm", true + case 3363: + return "nati-vi-server", true + case 3364: + return "creativeserver", true + case 3365: + return "contentserver", true + case 3366: + return "creativepartnr", true + case 3372: + return "tip2", true + case 3373: + return "lavenir-lm", true + case 3374: + return "cluster-disc", true + case 3375: + return "vsnm-agent", true + case 3376: + return "cdbroker", true + case 3377: + return "cogsys-lm", true + case 3378: + return "wsicopy", true + case 3379: + return "socorfs", true + case 3380: + return "sns-channels", true + case 3381: + return "geneous", true + case 3382: + return "fujitsu-neat", true + case 3383: + return "esp-lm", true + case 3384: + return "hp-clic", true + case 3385: + return "qnxnetman", true + case 3386: + return "gprs-data", true + case 3387: + return "backroomnet", true + case 3388: + return "cbserver", true + case 3389: + return "ms-wbt-server", true + case 3390: + return "dsc", true + case 3391: + return "savant", true + case 3392: + return "efi-lm", true + case 3393: + return "d2k-tapestry1", true + case 3394: + return "d2k-tapestry2", true + case 3395: + return "dyna-lm", true + case 3396: + return "printer-agent", true + case 3397: + return "cloanto-lm", true + case 3398: + return "mercantile", true + case 3399: + return "csms", true + case 3400: + return "csms2", true + case 3401: + return "filecast", true + case 3402: + return "fxaengine-net", true + case 3405: + return "nokia-ann-ch1", true + case 3406: + return "nokia-ann-ch2", true + case 3407: + return "ldap-admin", true + case 3408: + return "BESApi", true + case 3409: + return "networklens", true + case 3410: + return "networklenss", true + case 3411: + return "biolink-auth", true + case 3412: + return "xmlblaster", true + case 3413: + return "svnet", true + case 3414: + return "wip-port", true + case 3415: + return "bcinameservice", true + case 3416: + return "commandport", true + case 3417: + return "csvr", true + case 3418: + return "rnmap", true + case 3419: + return "softaudit", true + case 3420: + return "ifcp-port", true + case 3421: + return "bmap", true + case 3422: + return "rusb-sys-port", true + case 3423: + return "xtrm", true + case 3424: + return "xtrms", true + case 3425: + return "agps-port", true + case 3426: + return "arkivio", true + case 3427: + return "websphere-snmp", true + case 3428: + return "twcss", true + case 3429: + return "gcsp", true + case 3430: + return "ssdispatch", true + case 3431: + return "ndl-als", true + case 3432: + return "osdcp", true + case 3433: + return "opnet-smp", true + case 3434: + return "opencm", true + case 3435: + return "pacom", true + case 3436: + return "gc-config", true + case 3437: + return "autocueds", true + case 3438: + return "spiral-admin", true + case 3439: + return "hri-port", true + case 3440: + return "ans-console", true + case 3441: + return "connect-client", true + case 3442: + return "connect-server", true + case 3443: + return "ov-nnm-websrv", true + case 3444: + return "denali-server", true + case 3445: + return "monp", true + case 3446: + return "3comfaxrpc", true + case 3447: + return "directnet", true + case 3448: + return "dnc-port", true + case 3449: + return "hotu-chat", true + case 3450: + return "castorproxy", true + case 3451: + return "asam", true + case 3452: + return "sabp-signal", true + case 3453: + return "pscupd", true + case 3454: + return "mira", true + case 3455: + return "prsvp", true + case 3456: + return "vat", true + case 3457: + return "vat-control", true + case 3458: + return "d3winosfi", true + case 3459: + return "integral", true + case 3460: + return "edm-manager", true + case 3461: + return "edm-stager", true + case 3462: + return "edm-std-notify", true + case 3463: + return "edm-adm-notify", true + case 3464: + return "edm-mgr-sync", true + case 3465: + return "edm-mgr-cntrl", true + case 3466: + return "workflow", true + case 3467: + return "rcst", true + case 3468: + return "ttcmremotectrl", true + case 3469: + return "pluribus", true + case 3470: + return "jt400", true + case 3471: + return "jt400-ssl", true + case 3472: + return "jaugsremotec-1", true + case 3473: + return "jaugsremotec-2", true + case 3474: + return "ttntspauto", true + case 3475: + return "genisar-port", true + case 3476: + return "nppmp", true + case 3477: + return "ecomm", true + case 3478: + return "stun", true + case 3479: + return "twrpc", true + case 3480: + return "plethora", true + case 3481: + return "cleanerliverc", true + case 3482: + return "vulture", true + case 3483: + return "slim-devices", true + case 3484: + return "gbs-stp", true + case 3485: + return "celatalk", true + case 3486: + return "ifsf-hb-port", true + case 3487: + return "ltctcp", true + case 3488: + return "fs-rh-srv", true + case 3489: + return "dtp-dia", true + case 3490: + return "colubris", true + case 3491: + return "swr-port", true + case 3492: + return "tvdumtray-port", true + case 3493: + return "nut", true + case 3494: + return "ibm3494", true + case 3495: + return "seclayer-tcp", true + case 3496: + return "seclayer-tls", true + case 3497: + return "ipether232port", true + case 3498: + return "dashpas-port", true + case 3499: + return "sccip-media", true + case 3500: + return "rtmp-port", true + case 3501: + return "isoft-p2p", true + case 3502: + return "avinstalldisc", true + case 3503: + return "lsp-ping", true + case 3504: + return "ironstorm", true + case 3505: + return "ccmcomm", true + case 3506: + return "apc-3506", true + case 3507: + return "nesh-broker", true + case 3508: + return "interactionweb", true + case 3509: + return "vt-ssl", true + case 3510: + return "xss-port", true + case 3511: + return "webmail-2", true + case 3512: + return "aztec", true + case 3513: + return "arcpd", true + case 3514: + return "must-p2p", true + case 3515: + return "must-backplane", true + case 3516: + return "smartcard-port", true + case 3517: + return "802-11-iapp", true + case 3518: + return "artifact-msg", true + case 3519: + return "nvmsgd", true + case 3520: + return "galileolog", true + case 3521: + return "mc3ss", true + case 3522: + return "nssocketport", true + case 3523: + return "odeumservlink", true + case 3524: + return "ecmport", true + case 3525: + return "eisport", true + case 3526: + return "starquiz-port", true + case 3527: + return "beserver-msg-q", true + case 3528: + return "jboss-iiop", true + case 3529: + return "jboss-iiop-ssl", true + case 3530: + return "gf", true + case 3531: + return "joltid", true + case 3532: + return "raven-rmp", true + case 3533: + return "raven-rdp", true + case 3534: + return "urld-port", true + case 3535: + return "ms-la", true + case 3536: + return "snac", true + case 3537: + return "ni-visa-remote", true + case 3538: + return "ibm-diradm", true + case 3539: + return "ibm-diradm-ssl", true + case 3540: + return "pnrp-port", true + case 3541: + return "voispeed-port", true + case 3542: + return "hacl-monitor", true + case 3543: + return "qftest-lookup", true + case 3544: + return "teredo", true + case 3545: + return "camac", true + case 3547: + return "symantec-sim", true + case 3548: + return "interworld", true + case 3549: + return "tellumat-nms", true + case 3550: + return "ssmpp", true + case 3551: + return "apcupsd", true + case 3552: + return "taserver", true + case 3553: + return "rbr-discovery", true + case 3554: + return "questnotify", true + case 3555: + return "razor", true + case 3556: + return "sky-transport", true + case 3557: + return "personalos-001", true + case 3558: + return "mcp-port", true + case 3559: + return "cctv-port", true + case 3560: + return "iniserve-port", true + case 3561: + return "bmc-onekey", true + case 3562: + return "sdbproxy", true + case 3563: + return "watcomdebug", true + case 3564: + return "esimport", true + case 3565: + return "m2pa", true + case 3566: + return "quest-data-hub", true + case 3567: + return "dof-eps", true + case 3568: + return "dof-tunnel-sec", true + case 3569: + return "mbg-ctrl", true + case 3570: + return "mccwebsvr-port", true + case 3571: + return "megardsvr-port", true + case 3572: + return "megaregsvrport", true + case 3573: + return "tag-ups-1", true + case 3574: + return "dmaf-server", true + case 3575: + return "ccm-port", true + case 3576: + return "cmc-port", true + case 3577: + return "config-port", true + case 3578: + return "data-port", true + case 3579: + return "ttat3lb", true + case 3580: + return "nati-svrloc", true + case 3581: + return "kfxaclicensing", true + case 3582: + return "press", true + case 3583: + return "canex-watch", true + case 3584: + return "u-dbap", true + case 3585: + return "emprise-lls", true + case 3586: + return "emprise-lsc", true + case 3587: + return "p2pgroup", true + case 3588: + return "sentinel", true + case 3589: + return "isomair", true + case 3590: + return "wv-csp-sms", true + case 3591: + return "gtrack-server", true + case 3592: + return "gtrack-ne", true + case 3593: + return "bpmd", true + case 3594: + return "mediaspace", true + case 3595: + return "shareapp", true + case 3596: + return "iw-mmogame", true + case 3597: + return "a14", true + case 3598: + return "a15", true + case 3599: + return "quasar-server", true + case 3600: + return "trap-daemon", true + case 3601: + return "visinet-gui", true + case 3602: + return "infiniswitchcl", true + case 3603: + return "int-rcv-cntrl", true + case 3604: + return "bmc-jmx-port", true + case 3605: + return "comcam-io", true + case 3606: + return "splitlock", true + case 3607: + return "precise-i3", true + case 3608: + return "trendchip-dcp", true + case 3609: + return "cpdi-pidas-cm", true + case 3610: + return "echonet", true + case 3611: + return "six-degrees", true + case 3612: + return "dataprotector", true + case 3613: + return "alaris-disc", true + case 3614: + return "sigma-port", true + case 3615: + return "start-network", true + case 3616: + return "cd3o-protocol", true + case 3617: + return "sharp-server", true + case 3618: + return "aairnet-1", true + case 3619: + return "aairnet-2", true + case 3620: + return "ep-pcp", true + case 3621: + return "ep-nsp", true + case 3622: + return "ff-lr-port", true + case 3623: + return "haipe-discover", true + case 3624: + return "dist-upgrade", true + case 3625: + return "volley", true + case 3626: + return "bvcdaemon-port", true + case 3627: + return "jamserverport", true + case 3628: + return "ept-machine", true + case 3629: + return "escvpnet", true + case 3630: + return "cs-remote-db", true + case 3631: + return "cs-services", true + case 3632: + return "distcc", true + case 3633: + return "wacp", true + case 3634: + return "hlibmgr", true + case 3635: + return "sdo", true + case 3636: + return "servistaitsm", true + case 3637: + return "scservp", true + case 3638: + return "ehp-backup", true + case 3639: + return "xap-ha", true + case 3640: + return "netplay-port1", true + case 3641: + return "netplay-port2", true + case 3642: + return "juxml-port", true + case 3643: + return "audiojuggler", true + case 3644: + return "ssowatch", true + case 3645: + return "cyc", true + case 3646: + return "xss-srv-port", true + case 3647: + return "splitlock-gw", true + case 3648: + return "fjcp", true + case 3649: + return "nmmp", true + case 3650: + return "prismiq-plugin", true + case 3651: + return "xrpc-registry", true + case 3652: + return "vxcrnbuport", true + case 3653: + return "tsp", true + case 3654: + return "vaprtm", true + case 3655: + return "abatemgr", true + case 3656: + return "abatjss", true + case 3657: + return "immedianet-bcn", true + case 3658: + return "ps-ams", true + case 3659: + return "apple-sasl", true + case 3660: + return "can-nds-ssl", true + case 3661: + return "can-ferret-ssl", true + case 3662: + return "pserver", true + case 3663: + return "dtp", true + case 3664: + return "ups-engine", true + case 3665: + return "ent-engine", true + case 3666: + return "eserver-pap", true + case 3667: + return "infoexch", true + case 3668: + return "dell-rm-port", true + case 3669: + return "casanswmgmt", true + case 3670: + return "smile", true + case 3671: + return "efcp", true + case 3672: + return "lispworks-orb", true + case 3673: + return "mediavault-gui", true + case 3674: + return "wininstall-ipc", true + case 3675: + return "calltrax", true + case 3676: + return "va-pacbase", true + case 3677: + return "roverlog", true + case 3678: + return "ipr-dglt", true + case 3679: + return "Escale (Newton Dock)", true + case 3680: + return "npds-tracker", true + case 3681: + return "bts-x73", true + case 3682: + return "cas-mapi", true + case 3683: + return "bmc-ea", true + case 3684: + return "faxstfx-port", true + case 3685: + return "dsx-agent", true + case 3686: + return "tnmpv2", true + case 3687: + return "simple-push", true + case 3688: + return "simple-push-s", true + case 3689: + return "daap", true + case 3690: + return "svn", true + case 3691: + return "magaya-network", true + case 3692: + return "intelsync", true + case 3693: + return "easl", true + case 3695: + return "bmc-data-coll", true + case 3696: + return "telnetcpcd", true + case 3697: + return "nw-license", true + case 3698: + return "sagectlpanel", true + case 3699: + return "kpn-icw", true + case 3700: + return "lrs-paging", true + case 3701: + return "netcelera", true + case 3702: + return "ws-discovery", true + case 3703: + return "adobeserver-3", true + case 3704: + return "adobeserver-4", true + case 3705: + return "adobeserver-5", true + case 3706: + return "rt-event", true + case 3707: + return "rt-event-s", true + case 3708: + return "sun-as-iiops", true + case 3709: + return "ca-idms", true + case 3710: + return "portgate-auth", true + case 3711: + return "edb-server2", true + case 3712: + return "sentinel-ent", true + case 3713: + return "tftps", true + case 3714: + return "delos-dms", true + case 3715: + return "anoto-rendezv", true + case 3716: + return "wv-csp-sms-cir", true + case 3717: + return "wv-csp-udp-cir", true + case 3718: + return "opus-services", true + case 3719: + return "itelserverport", true + case 3720: + return "ufastro-instr", true + case 3721: + return "xsync", true + case 3722: + return "xserveraid", true + case 3723: + return "sychrond", true + case 3724: + return "blizwow", true + case 3725: + return "na-er-tip", true + case 3726: + return "array-manager", true + case 3727: + return "e-mdu", true + case 3728: + return "e-woa", true + case 3729: + return "fksp-audit", true + case 3730: + return "client-ctrl", true + case 3731: + return "smap", true + case 3732: + return "m-wnn", true + case 3733: + return "multip-msg", true + case 3734: + return "synel-data", true + case 3735: + return "pwdis", true + case 3736: + return "rs-rmi", true + case 3737: + return "xpanel", true + case 3738: + return "versatalk", true + case 3739: + return "launchbird-lm", true + case 3740: + return "heartbeat", true + case 3741: + return "wysdma", true + case 3742: + return "cst-port", true + case 3743: + return "ipcs-command", true + case 3744: + return "sasg", true + case 3745: + return "gw-call-port", true + case 3746: + return "linktest", true + case 3747: + return "linktest-s", true + case 3748: + return "webdata", true + case 3749: + return "cimtrak", true + case 3750: + return "cbos-ip-port", true + case 3751: + return "gprs-cube", true + case 3752: + return "vipremoteagent", true + case 3753: + return "nattyserver", true + case 3754: + return "timestenbroker", true + case 3755: + return "sas-remote-hlp", true + case 3756: + return "canon-capt", true + case 3757: + return "grf-port", true + case 3758: + return "apw-registry", true + case 3759: + return "exapt-lmgr", true + case 3760: + return "adtempusclient", true + case 3761: + return "gsakmp", true + case 3762: + return "gbs-smp", true + case 3763: + return "xo-wave", true + case 3764: + return "mni-prot-rout", true + case 3765: + return "rtraceroute", true + case 3766: + return "sitewatch-s", true + case 3767: + return "listmgr-port", true + case 3768: + return "rblcheckd", true + case 3769: + return "haipe-otnk", true + case 3770: + return "cindycollab", true + case 3771: + return "paging-port", true + case 3772: + return "ctp", true + case 3773: + return "ctdhercules", true + case 3774: + return "zicom", true + case 3775: + return "ispmmgr", true + case 3776: + return "dvcprov-port", true + case 3777: + return "jibe-eb", true + case 3778: + return "c-h-it-port", true + case 3779: + return "cognima", true + case 3780: + return "nnp", true + case 3781: + return "abcvoice-port", true + case 3782: + return "iso-tp0s", true + case 3783: + return "bim-pem", true + case 3784: + return "bfd-control", true + case 3785: + return "bfd-echo", true + case 3786: + return "upstriggervsw", true + case 3787: + return "fintrx", true + case 3788: + return "isrp-port", true + case 3789: + return "remotedeploy", true + case 3790: + return "quickbooksrds", true + case 3791: + return "tvnetworkvideo", true + case 3792: + return "sitewatch", true + case 3793: + return "dcsoftware", true + case 3794: + return "jaus", true + case 3795: + return "myblast", true + case 3796: + return "spw-dialer", true + case 3797: + return "idps", true + case 3798: + return "minilock", true + case 3799: + return "radius-dynauth", true + case 3800: + return "pwgpsi", true + case 3801: + return "ibm-mgr", true + case 3802: + return "vhd", true + case 3803: + return "soniqsync", true + case 3804: + return "iqnet-port", true + case 3805: + return "tcpdataserver", true + case 3806: + return "wsmlb", true + case 3807: + return "spugna", true + case 3808: + return "sun-as-iiops-ca", true + case 3809: + return "apocd", true + case 3810: + return "wlanauth", true + case 3811: + return "amp", true + case 3812: + return "neto-wol-server", true + case 3813: + return "rap-ip", true + case 3814: + return "neto-dcs", true + case 3815: + return "lansurveyorxml", true + case 3816: + return "sunlps-http", true + case 3817: + return "tapeware", true + case 3818: + return "crinis-hb", true + case 3819: + return "epl-slp", true + case 3820: + return "scp", true + case 3821: + return "pmcp", true + case 3822: + return "acp-discovery", true + case 3823: + return "acp-conduit", true + case 3824: + return "acp-policy", true + case 3825: + return "ffserver", true + case 3826: + return "warmux", true + case 3827: + return "netmpi", true + case 3828: + return "neteh", true + case 3829: + return "neteh-ext", true + case 3830: + return "cernsysmgmtagt", true + case 3831: + return "dvapps", true + case 3832: + return "xxnetserver", true + case 3833: + return "aipn-auth", true + case 3834: + return "spectardata", true + case 3835: + return "spectardb", true + case 3836: + return "markem-dcp", true + case 3837: + return "mkm-discovery", true + case 3838: + return "sos", true + case 3839: + return "amx-rms", true + case 3840: + return "flirtmitmir", true + case 3841: + return "shiprush-db-svr", true + case 3842: + return "nhci", true + case 3843: + return "quest-agent", true + case 3844: + return "rnm", true + case 3845: + return "v-one-spp", true + case 3846: + return "an-pcp", true + case 3847: + return "msfw-control", true + case 3848: + return "item", true + case 3849: + return "spw-dnspreload", true + case 3850: + return "qtms-bootstrap", true + case 3851: + return "spectraport", true + case 3852: + return "sse-app-config", true + case 3853: + return "sscan", true + case 3854: + return "stryker-com", true + case 3855: + return "opentrac", true + case 3856: + return "informer", true + case 3857: + return "trap-port", true + case 3858: + return "trap-port-mom", true + case 3859: + return "nav-port", true + case 3860: + return "sasp", true + case 3861: + return "winshadow-hd", true + case 3862: + return "giga-pocket", true + case 3863: + return "asap-tcp", true + case 3864: + return "asap-tcp-tls", true + case 3865: + return "xpl", true + case 3866: + return "dzdaemon", true + case 3867: + return "dzoglserver", true + case 3868: + return "diameter", true + case 3869: + return "ovsam-mgmt", true + case 3870: + return "ovsam-d-agent", true + case 3871: + return "avocent-adsap", true + case 3872: + return "oem-agent", true + case 3873: + return "fagordnc", true + case 3874: + return "sixxsconfig", true + case 3875: + return "pnbscada", true + case 3876: + return "dl-agent", true + case 3877: + return "xmpcr-interface", true + case 3878: + return "fotogcad", true + case 3879: + return "appss-lm", true + case 3880: + return "igrs", true + case 3881: + return "idac", true + case 3882: + return "msdts1", true + case 3883: + return "vrpn", true + case 3884: + return "softrack-meter", true + case 3885: + return "topflow-ssl", true + case 3886: + return "nei-management", true + case 3887: + return "ciphire-data", true + case 3888: + return "ciphire-serv", true + case 3889: + return "dandv-tester", true + case 3890: + return "ndsconnect", true + case 3891: + return "rtc-pm-port", true + case 3892: + return "pcc-image-port", true + case 3893: + return "cgi-starapi", true + case 3894: + return "syam-agent", true + case 3895: + return "syam-smc", true + case 3896: + return "sdo-tls", true + case 3897: + return "sdo-ssh", true + case 3898: + return "senip", true + case 3899: + return "itv-control", true + case 3900: + return "udt-os", true + case 3901: + return "nimsh", true + case 3902: + return "nimaux", true + case 3903: + return "charsetmgr", true + case 3904: + return "omnilink-port", true + case 3905: + return "mupdate", true + case 3906: + return "topovista-data", true + case 3907: + return "imoguia-port", true + case 3908: + return "hppronetman", true + case 3909: + return "surfcontrolcpa", true + case 3910: + return "prnrequest", true + case 3911: + return "prnstatus", true + case 3912: + return "gbmt-stars", true + case 3913: + return "listcrt-port", true + case 3914: + return "listcrt-port-2", true + case 3915: + return "agcat", true + case 3916: + return "wysdmc", true + case 3917: + return "aftmux", true + case 3918: + return "pktcablemmcops", true + case 3919: + return "hyperip", true + case 3920: + return "exasoftport1", true + case 3921: + return "herodotus-net", true + case 3922: + return "sor-update", true + case 3923: + return "symb-sb-port", true + case 3924: + return "mpl-gprs-port", true + case 3925: + return "zmp", true + case 3926: + return "winport", true + case 3927: + return "natdataservice", true + case 3928: + return "netboot-pxe", true + case 3929: + return "smauth-port", true + case 3930: + return "syam-webserver", true + case 3931: + return "msr-plugin-port", true + case 3932: + return "dyn-site", true + case 3933: + return "plbserve-port", true + case 3934: + return "sunfm-port", true + case 3935: + return "sdp-portmapper", true + case 3936: + return "mailprox", true + case 3937: + return "dvbservdsc", true + case 3938: + return "dbcontrol-agent", true + case 3939: + return "aamp", true + case 3940: + return "xecp-node", true + case 3941: + return "homeportal-web", true + case 3942: + return "srdp", true + case 3943: + return "tig", true + case 3944: + return "sops", true + case 3945: + return "emcads", true + case 3946: + return "backupedge", true + case 3947: + return "ccp", true + case 3948: + return "apdap", true + case 3949: + return "drip", true + case 3950: + return "namemunge", true + case 3951: + return "pwgippfax", true + case 3952: + return "i3-sessionmgr", true + case 3953: + return "xmlink-connect", true + case 3954: + return "adrep", true + case 3955: + return "p2pcommunity", true + case 3956: + return "gvcp", true + case 3957: + return "mqe-broker", true + case 3958: + return "mqe-agent", true + case 3959: + return "treehopper", true + case 3960: + return "bess", true + case 3961: + return "proaxess", true + case 3962: + return "sbi-agent", true + case 3963: + return "thrp", true + case 3964: + return "sasggprs", true + case 3965: + return "ati-ip-to-ncpe", true + case 3966: + return "bflckmgr", true + case 3967: + return "ppsms", true + case 3968: + return "ianywhere-dbns", true + case 3969: + return "landmarks", true + case 3970: + return "lanrevagent", true + case 3971: + return "lanrevserver", true + case 3972: + return "iconp", true + case 3973: + return "progistics", true + case 3974: + return "xk22", true + case 3975: + return "airshot", true + case 3976: + return "opswagent", true + case 3977: + return "opswmanager", true + case 3978: + return "secure-cfg-svr", true + case 3979: + return "smwan", true + case 3981: + return "starfish", true + case 3982: + return "eis", true + case 3983: + return "eisp", true + case 3984: + return "mapper-nodemgr", true + case 3985: + return "mapper-mapethd", true + case 3986: + return "mapper-ws-ethd", true + case 3987: + return "centerline", true + case 3988: + return "dcs-config", true + case 3989: + return "bv-queryengine", true + case 3990: + return "bv-is", true + case 3991: + return "bv-smcsrv", true + case 3992: + return "bv-ds", true + case 3993: + return "bv-agent", true + case 3995: + return "iss-mgmt-ssl", true + case 3996: + return "abcsoftware", true + case 3997: + return "agentsease-db", true + case 3998: + return "dnx", true + case 3999: + return "nvcnet", true + case 4000: + return "terabase", true + case 4001: + return "newoak", true + case 4002: + return "pxc-spvr-ft", true + case 4003: + return "pxc-splr-ft", true + case 4004: + return "pxc-roid", true + case 4005: + return "pxc-pin", true + case 4006: + return "pxc-spvr", true + case 4007: + return "pxc-splr", true + case 4008: + return "netcheque", true + case 4009: + return "chimera-hwm", true + case 4010: + return "samsung-unidex", true + case 4011: + return "altserviceboot", true + case 4012: + return "pda-gate", true + case 4013: + return "acl-manager", true + case 4014: + return "taiclock", true + case 4015: + return "talarian-mcast1", true + case 4016: + return "talarian-mcast2", true + case 4017: + return "talarian-mcast3", true + case 4018: + return "talarian-mcast4", true + case 4019: + return "talarian-mcast5", true + case 4020: + return "trap", true + case 4021: + return "nexus-portal", true + case 4022: + return "dnox", true + case 4023: + return "esnm-zoning", true + case 4024: + return "tnp1-port", true + case 4025: + return "partimage", true + case 4026: + return "as-debug", true + case 4027: + return "bxp", true + case 4028: + return "dtserver-port", true + case 4029: + return "ip-qsig", true + case 4030: + return "jdmn-port", true + case 4031: + return "suucp", true + case 4032: + return "vrts-auth-port", true + case 4033: + return "sanavigator", true + case 4034: + return "ubxd", true + case 4035: + return "wap-push-http", true + case 4036: + return "wap-push-https", true + case 4037: + return "ravehd", true + case 4038: + return "fazzt-ptp", true + case 4039: + return "fazzt-admin", true + case 4040: + return "yo-main", true + case 4041: + return "houston", true + case 4042: + return "ldxp", true + case 4043: + return "nirp", true + case 4044: + return "ltp", true + case 4045: + return "npp", true + case 4046: + return "acp-proto", true + case 4047: + return "ctp-state", true + case 4049: + return "wafs", true + case 4050: + return "cisco-wafs", true + case 4051: + return "cppdp", true + case 4052: + return "interact", true + case 4053: + return "ccu-comm-1", true + case 4054: + return "ccu-comm-2", true + case 4055: + return "ccu-comm-3", true + case 4056: + return "lms", true + case 4057: + return "wfm", true + case 4058: + return "kingfisher", true + case 4059: + return "dlms-cosem", true + case 4060: + return "dsmeter-iatc", true + case 4061: + return "ice-location", true + case 4062: + return "ice-slocation", true + case 4063: + return "ice-router", true + case 4064: + return "ice-srouter", true + case 4065: + return "avanti-cdp", true + case 4066: + return "pmas", true + case 4067: + return "idp", true + case 4068: + return "ipfltbcst", true + case 4069: + return "minger", true + case 4070: + return "tripe", true + case 4071: + return "aibkup", true + case 4072: + return "zieto-sock", true + case 4073: + return "iRAPP", true + case 4074: + return "cequint-cityid", true + case 4075: + return "perimlan", true + case 4076: + return "seraph", true + case 4078: + return "cssp", true + case 4079: + return "santools", true + case 4080: + return "lorica-in", true + case 4081: + return "lorica-in-sec", true + case 4082: + return "lorica-out", true + case 4083: + return "lorica-out-sec", true + case 4085: + return "ezmessagesrv", true + case 4087: + return "applusservice", true + case 4088: + return "npsp", true + case 4089: + return "opencore", true + case 4090: + return "omasgport", true + case 4091: + return "ewinstaller", true + case 4092: + return "ewdgs", true + case 4093: + return "pvxpluscs", true + case 4094: + return "sysrqd", true + case 4095: + return "xtgui", true + case 4096: + return "bre", true + case 4097: + return "patrolview", true + case 4098: + return "drmsfsd", true + case 4099: + return "dpcp", true + case 4100: + return "igo-incognito", true + case 4101: + return "brlp-0", true + case 4102: + return "brlp-1", true + case 4103: + return "brlp-2", true + case 4104: + return "brlp-3", true + case 4105: + return "shofar", true + case 4106: + return "synchronite", true + case 4107: + return "j-ac", true + case 4108: + return "accel", true + case 4109: + return "izm", true + case 4110: + return "g2tag", true + case 4111: + return "xgrid", true + case 4112: + return "apple-vpns-rp", true + case 4113: + return "aipn-reg", true + case 4114: + return "jomamqmonitor", true + case 4115: + return "cds", true + case 4116: + return "smartcard-tls", true + case 4117: + return "hillrserv", true + case 4118: + return "netscript", true + case 4119: + return "assuria-slm", true + case 4120: + return "minirem", true + case 4121: + return "e-builder", true + case 4122: + return "fprams", true + case 4123: + return "z-wave", true + case 4124: + return "tigv2", true + case 4125: + return "opsview-envoy", true + case 4126: + return "ddrepl", true + case 4127: + return "unikeypro", true + case 4128: + return "nufw", true + case 4129: + return "nuauth", true + case 4130: + return "fronet", true + case 4131: + return "stars", true + case 4132: + return "nuts-dem", true + case 4133: + return "nuts-bootp", true + case 4134: + return "nifty-hmi", true + case 4135: + return "cl-db-attach", true + case 4136: + return "cl-db-request", true + case 4137: + return "cl-db-remote", true + case 4138: + return "nettest", true + case 4139: + return "thrtx", true + case 4140: + return "cedros-fds", true + case 4141: + return "oirtgsvc", true + case 4142: + return "oidocsvc", true + case 4143: + return "oidsr", true + case 4145: + return "vvr-control", true + case 4146: + return "tgcconnect", true + case 4147: + return "vrxpservman", true + case 4148: + return "hhb-handheld", true + case 4149: + return "agslb", true + case 4150: + return "PowerAlert-nsa", true + case 4151: + return "menandmice-noh", true + case 4152: + return "idig-mux", true + case 4153: + return "mbl-battd", true + case 4154: + return "atlinks", true + case 4155: + return "bzr", true + case 4156: + return "stat-results", true + case 4157: + return "stat-scanner", true + case 4158: + return "stat-cc", true + case 4159: + return "nss", true + case 4160: + return "jini-discovery", true + case 4161: + return "omscontact", true + case 4162: + return "omstopology", true + case 4163: + return "silverpeakpeer", true + case 4164: + return "silverpeakcomm", true + case 4165: + return "altcp", true + case 4166: + return "joost", true + case 4167: + return "ddgn", true + case 4168: + return "pslicser", true + case 4169: + return "iadt", true + case 4170: + return "d-cinema-csp", true + case 4171: + return "ml-svnet", true + case 4172: + return "pcoip", true + case 4174: + return "smcluster", true + case 4175: + return "bccp", true + case 4176: + return "tl-ipcproxy", true + case 4177: + return "wello", true + case 4178: + return "storman", true + case 4179: + return "MaxumSP", true + case 4180: + return "httpx", true + case 4181: + return "macbak", true + case 4182: + return "pcptcpservice", true + case 4183: + return "cyborgnet", true + case 4184: + return "universe-suite", true + case 4185: + return "wcpp", true + case 4186: + return "boxbackupstore", true + case 4187: + return "csc-proxy", true + case 4188: + return "vatata", true + case 4189: + return "pcep", true + case 4190: + return "sieve", true + case 4192: + return "azeti", true + case 4193: + return "pvxplusio", true + case 4194: + return "spdm", true + case 4195: + return "aws-wsp", true + case 4197: + return "hctl", true + case 4199: + return "eims-admin", true + case 4300: + return "corelccam", true + case 4301: + return "d-data", true + case 4302: + return "d-data-control", true + case 4303: + return "srcp", true + case 4304: + return "owserver", true + case 4305: + return "batman", true + case 4306: + return "pinghgl", true + case 4307: + return "trueconf", true + case 4308: + return "compx-lockview", true + case 4309: + return "dserver", true + case 4310: + return "mirrtex", true + case 4311: + return "p6ssmc", true + case 4312: + return "pscl-mgt", true + case 4313: + return "perrla", true + case 4314: + return "choiceview-agt", true + case 4316: + return "choiceview-clt", true + case 4317: + return "opentelemetry", true + case 4319: + return "fox-skytale", true + case 4320: + return "fdt-rcatp", true + case 4321: + return "rwhois", true + case 4322: + return "trim-event", true + case 4323: + return "trim-ice", true + case 4325: + return "geognosisadmin", true + case 4326: + return "geognosis", true + case 4327: + return "jaxer-web", true + case 4328: + return "jaxer-manager", true + case 4329: + return "publiqare-sync", true + case 4330: + return "dey-sapi", true + case 4331: + return "ktickets-rest", true + case 4332: + return "getty-focus", true + case 4333: + return "ahsp", true + case 4334: + return "netconf-ch-ssh", true + case 4335: + return "netconf-ch-tls", true + case 4336: + return "restconf-ch-tls", true + case 4340: + return "gaia", true + case 4343: + return "unicall", true + case 4344: + return "vinainstall", true + case 4345: + return "m4-network-as", true + case 4346: + return "elanlm", true + case 4347: + return "lansurveyor", true + case 4348: + return "itose", true + case 4349: + return "fsportmap", true + case 4350: + return "net-device", true + case 4351: + return "plcy-net-svcs", true + case 4352: + return "pjlink", true + case 4353: + return "f5-iquery", true + case 4354: + return "qsnet-trans", true + case 4355: + return "qsnet-workst", true + case 4356: + return "qsnet-assist", true + case 4357: + return "qsnet-cond", true + case 4358: + return "qsnet-nucl", true + case 4359: + return "omabcastltkm", true + case 4360: + return "matrix-vnet", true + case 4368: + return "wxbrief", true + case 4369: + return "epmd", true + case 4370: + return "elpro-tunnel", true + case 4371: + return "l2c-control", true + case 4372: + return "l2c-data", true + case 4373: + return "remctl", true + case 4374: + return "psi-ptt", true + case 4375: + return "tolteces", true + case 4376: + return "bip", true + case 4377: + return "cp-spxsvr", true + case 4378: + return "cp-spxdpy", true + case 4379: + return "ctdb", true + case 4389: + return "xandros-cms", true + case 4390: + return "wiegand", true + case 4391: + return "apwi-imserver", true + case 4392: + return "apwi-rxserver", true + case 4393: + return "apwi-rxspooler", true + case 4395: + return "omnivisionesx", true + case 4396: + return "fly", true + case 4400: + return "ds-srv", true + case 4401: + return "ds-srvr", true + case 4402: + return "ds-clnt", true + case 4403: + return "ds-user", true + case 4404: + return "ds-admin", true + case 4405: + return "ds-mail", true + case 4406: + return "ds-slp", true + case 4407: + return "nacagent", true + case 4408: + return "slscc", true + case 4409: + return "netcabinet-com", true + case 4410: + return "itwo-server", true + case 4411: + return "found", true + case 4413: + return "avi-nms", true + case 4414: + return "updog", true + case 4415: + return "brcd-vr-req", true + case 4416: + return "pjj-player", true + case 4417: + return "workflowdir", true + case 4419: + return "cbp", true + case 4420: + return "nvme", true + case 4421: + return "scaleft", true + case 4422: + return "tsepisp", true + case 4423: + return "thingkit", true + case 4425: + return "netrockey6", true + case 4426: + return "beacon-port-2", true + case 4427: + return "drizzle", true + case 4428: + return "omviserver", true + case 4429: + return "omviagent", true + case 4430: + return "rsqlserver", true + case 4431: + return "wspipe", true + case 4432: + return "l-acoustics", true + case 4433: + return "vop", true + case 4442: + return "saris", true + case 4443: + return "pharos", true + case 4444: + return "krb524", true + case 4445: + return "upnotifyp", true + case 4446: + return "n1-fwp", true + case 4447: + return "n1-rmgmt", true + case 4448: + return "asc-slmd", true + case 4449: + return "privatewire", true + case 4450: + return "camp", true + case 4451: + return "ctisystemmsg", true + case 4452: + return "ctiprogramload", true + case 4453: + return "nssalertmgr", true + case 4454: + return "nssagentmgr", true + case 4455: + return "prchat-user", true + case 4456: + return "prchat-server", true + case 4457: + return "prRegister", true + case 4458: + return "mcp", true + case 4460: + return "ntske", true + case 4484: + return "hpssmgmt", true + case 4485: + return "assyst-dr", true + case 4486: + return "icms", true + case 4487: + return "prex-tcp", true + case 4488: + return "awacs-ice", true + case 4500: + return "ipsec-nat-t", true + case 4535: + return "ehs", true + case 4536: + return "ehs-ssl", true + case 4537: + return "wssauthsvc", true + case 4538: + return "swx-gate", true + case 4545: + return "worldscores", true + case 4546: + return "sf-lm", true + case 4547: + return "lanner-lm", true + case 4548: + return "synchromesh", true + case 4549: + return "aegate", true + case 4550: + return "gds-adppiw-db", true + case 4551: + return "ieee-mih", true + case 4552: + return "menandmice-mon", true + case 4553: + return "icshostsvc", true + case 4554: + return "msfrs", true + case 4555: + return "rsip", true + case 4556: + return "dtn-bundle", true + case 4559: + return "hylafax", true + case 4563: + return "amahi-anywhere", true + case 4566: + return "kwtc", true + case 4567: + return "tram", true + case 4568: + return "bmc-reporting", true + case 4569: + return "iax", true + case 4570: + return "deploymentmap", true + case 4573: + return "cardifftec-back", true + case 4590: + return "rid", true + case 4591: + return "l3t-at-an", true + case 4593: + return "ipt-anri-anri", true + case 4594: + return "ias-session", true + case 4595: + return "ias-paging", true + case 4596: + return "ias-neighbor", true + case 4597: + return "a21-an-1xbs", true + case 4598: + return "a16-an-an", true + case 4599: + return "a17-an-an", true + case 4600: + return "piranha1", true + case 4601: + return "piranha2", true + case 4602: + return "mtsserver", true + case 4603: + return "menandmice-upg", true + case 4604: + return "irp", true + case 4605: + return "sixchat", true + case 4606: + return "sixid", true + case 4646: + return "dots-signal", true + case 4658: + return "playsta2-app", true + case 4659: + return "playsta2-lob", true + case 4660: + return "smaclmgr", true + case 4661: + return "kar2ouche", true + case 4662: + return "oms", true + case 4663: + return "noteit", true + case 4664: + return "ems", true + case 4665: + return "contclientms", true + case 4666: + return "eportcomm", true + case 4667: + return "mmacomm", true + case 4668: + return "mmaeds", true + case 4669: + return "eportcommdata", true + case 4670: + return "light", true + case 4671: + return "acter", true + case 4672: + return "rfa", true + case 4673: + return "cxws", true + case 4674: + return "appiq-mgmt", true + case 4675: + return "dhct-status", true + case 4676: + return "dhct-alerts", true + case 4677: + return "bcs", true + case 4678: + return "traversal", true + case 4679: + return "mgesupervision", true + case 4680: + return "mgemanagement", true + case 4681: + return "parliant", true + case 4682: + return "finisar", true + case 4683: + return "spike", true + case 4684: + return "rfid-rp1", true + case 4685: + return "autopac", true + case 4686: + return "msp-os", true + case 4687: + return "nst", true + case 4688: + return "mobile-p2p", true + case 4689: + return "altovacentral", true + case 4690: + return "prelude", true + case 4691: + return "mtn", true + case 4692: + return "conspiracy", true + case 4700: + return "netxms-agent", true + case 4701: + return "netxms-mgmt", true + case 4702: + return "netxms-sync", true + case 4703: + return "npqes-test", true + case 4704: + return "assuria-ins", true + case 4711: + return "trinity-dist", true + case 4725: + return "truckstar", true + case 4727: + return "fcis", true + case 4728: + return "capmux", true + case 4730: + return "gearman", true + case 4731: + return "remcap", true + case 4733: + return "resorcs", true + case 4737: + return "ipdr-sp", true + case 4738: + return "solera-lpn", true + case 4739: + return "ipfix", true + case 4740: + return "ipfixs", true + case 4741: + return "lumimgrd", true + case 4742: + return "sicct", true + case 4743: + return "openhpid", true + case 4744: + return "ifsp", true + case 4745: + return "fmp", true + case 4749: + return "profilemac", true + case 4750: + return "ssad", true + case 4751: + return "spocp", true + case 4752: + return "snap", true + case 4753: + return "simon", true + case 4756: + return "RDCenter", true + case 4774: + return "converge", true + case 4784: + return "bfd-multi-ctl", true + case 4786: + return "smart-install", true + case 4787: + return "sia-ctrl-plane", true + case 4788: + return "xmcp", true + case 4792: + return "unified-bus", true + case 4800: + return "iims", true + case 4801: + return "iwec", true + case 4802: + return "ilss", true + case 4803: + return "notateit", true + case 4827: + return "htcp", true + case 4837: + return "varadero-0", true + case 4838: + return "varadero-1", true + case 4839: + return "varadero-2", true + case 4840: + return "opcua-tcp", true + case 4841: + return "quosa", true + case 4842: + return "gw-asv", true + case 4843: + return "opcua-tls", true + case 4844: + return "gw-log", true + case 4845: + return "wcr-remlib", true + case 4846: + return "contamac-icm", true + case 4847: + return "wfc", true + case 4848: + return "appserv-http", true + case 4849: + return "appserv-https", true + case 4850: + return "sun-as-nodeagt", true + case 4851: + return "derby-repli", true + case 4867: + return "unify-debug", true + case 4868: + return "phrelay", true + case 4869: + return "phrelaydbg", true + case 4870: + return "cc-tracking", true + case 4871: + return "wired", true + case 4876: + return "tritium-can", true + case 4877: + return "lmcs", true + case 4879: + return "wsdl-event", true + case 4880: + return "hislip", true + case 4883: + return "wmlserver", true + case 4884: + return "hivestor", true + case 4885: + return "abbs", true + case 4888: + return "xcap-portal", true + case 4889: + return "xcap-control", true + case 4894: + return "lyskom", true + case 4899: + return "radmin-port", true + case 4900: + return "hfcs", true + case 4901: + return "flr-agent", true + case 4902: + return "magiccontrol", true + case 4912: + return "lutap", true + case 4913: + return "lutcp", true + case 4914: + return "bones", true + case 4915: + return "frcs", true + case 4940: + return "eq-office-4940", true + case 4941: + return "eq-office-4941", true + case 4942: + return "eq-office-4942", true + case 4949: + return "munin", true + case 4950: + return "sybasesrvmon", true + case 4951: + return "pwgwims", true + case 4952: + return "sagxtsds", true + case 4953: + return "dbsyncarbiter", true + case 4969: + return "ccss-qmm", true + case 4970: + return "ccss-qsm", true + case 4971: + return "burp", true + case 4984: + return "webyast", true + case 4985: + return "gerhcs", true + case 4986: + return "mrip", true + case 4987: + return "smar-se-port1", true + case 4988: + return "smar-se-port2", true + case 4989: + return "parallel", true + case 4990: + return "busycal", true + case 4991: + return "vrt", true + case 4999: + return "hfcs-manager", true + case 5000: + return "commplex-main", true + case 5001: + return "commplex-link", true + case 5002: + return "rfe", true + case 5003: + return "fmpro-internal", true + case 5004: + return "avt-profile-1", true + case 5005: + return "avt-profile-2", true + case 5006: + return "wsm-server", true + case 5007: + return "wsm-server-ssl", true + case 5008: + return "synapsis-edge", true + case 5009: + return "winfs", true + case 5010: + return "telelpathstart", true + case 5011: + return "telelpathattack", true + case 5012: + return "nsp", true + case 5013: + return "fmpro-v6", true + case 5015: + return "fmwp", true + case 5020: + return "zenginkyo-1", true + case 5021: + return "zenginkyo-2", true + case 5022: + return "mice", true + case 5023: + return "htuilsrv", true + case 5024: + return "scpi-telnet", true + case 5025: + return "scpi-raw", true + case 5026: + return "strexec-d", true + case 5027: + return "strexec-s", true + case 5028: + return "qvr", true + case 5029: + return "infobright", true + case 5032: + return "signacert-agent", true + case 5033: + return "jtnetd-server", true + case 5034: + return "jtnetd-status", true + case 5042: + return "asnaacceler8db", true + case 5043: + return "swxadmin", true + case 5044: + return "lxi-evntsvc", true + case 5045: + return "osp", true + case 5048: + return "texai", true + case 5049: + return "ivocalize", true + case 5050: + return "mmcc", true + case 5051: + return "ita-agent", true + case 5052: + return "ita-manager", true + case 5053: + return "rlm", true + case 5054: + return "rlm-admin", true + case 5055: + return "unot", true + case 5056: + return "intecom-ps1", true + case 5057: + return "intecom-ps2", true + case 5059: + return "sds", true + case 5060: + return "sip", true + case 5061: + return "sips", true + case 5062: + return "na-localise", true + case 5063: + return "csrpc", true + case 5064: + return "ca-1", true + case 5065: + return "ca-2", true + case 5066: + return "stanag-5066", true + case 5067: + return "authentx", true + case 5068: + return "bitforestsrv", true + case 5069: + return "i-net-2000-npr", true + case 5070: + return "vtsas", true + case 5071: + return "powerschool", true + case 5072: + return "ayiya", true + case 5073: + return "tag-pm", true + case 5074: + return "alesquery", true + case 5075: + return "pvaccess", true + case 5080: + return "onscreen", true + case 5081: + return "sdl-ets", true + case 5082: + return "qcp", true + case 5083: + return "qfp", true + case 5084: + return "llrp", true + case 5085: + return "encrypted-llrp", true + case 5086: + return "aprigo-cs", true + case 5087: + return "biotic", true + case 5093: + return "sentinel-lm", true + case 5094: + return "hart-ip", true + case 5099: + return "sentlm-srv2srv", true + case 5100: + return "socalia", true + case 5101: + return "talarian-tcp", true + case 5102: + return "oms-nonsecure", true + case 5103: + return "actifio-c2c", true + case 5106: + return "actifioudsagent", true + case 5107: + return "actifioreplic", true + case 5111: + return "taep-as-svc", true + case 5112: + return "pm-cmdsvr", true + case 5114: + return "ev-services", true + case 5115: + return "autobuild", true + case 5117: + return "gradecam", true + case 5120: + return "barracuda-bbs", true + case 5133: + return "nbt-pc", true + case 5134: + return "ppactivation", true + case 5135: + return "erp-scale", true + case 5137: + return "ctsd", true + case 5145: + return "rmonitor-secure", true + case 5146: + return "social-alarm", true + case 5150: + return "atmp", true + case 5151: + return "esri-sde", true + case 5152: + return "sde-discovery", true + case 5154: + return "bzflag", true + case 5155: + return "asctrl-agent", true + case 5156: + return "rugameonline", true + case 5157: + return "mediat", true + case 5161: + return "snmpssh", true + case 5162: + return "snmpssh-trap", true + case 5163: + return "sbackup", true + case 5164: + return "vpa", true + case 5165: + return "ife-icorp", true + case 5166: + return "winpcs", true + case 5167: + return "scte104", true + case 5168: + return "scte30", true + case 5172: + return "pcoip-mgmt", true + case 5190: + return "aol", true + case 5191: + return "aol-1", true + case 5192: + return "aol-2", true + case 5193: + return "aol-3", true + case 5194: + return "cpscomm", true + case 5195: + return "ampl-lic", true + case 5196: + return "ampl-tableproxy", true + case 5197: + return "tunstall-lwp", true + case 5200: + return "targus-getdata", true + case 5201: + return "targus-getdata1", true + case 5202: + return "targus-getdata2", true + case 5203: + return "targus-getdata3", true + case 5209: + return "nomad", true + case 5215: + return "noteza", true + case 5221: + return "3exmp", true + case 5222: + return "xmpp-client", true + case 5223: + return "hpvirtgrp", true + case 5224: + return "hpvirtctrl", true + case 5225: + return "hp-server", true + case 5226: + return "hp-status", true + case 5227: + return "perfd", true + case 5228: + return "hpvroom", true + case 5229: + return "jaxflow", true + case 5230: + return "jaxflow-data", true + case 5231: + return "crusecontrol", true + case 5232: + return "csedaemon", true + case 5233: + return "enfs", true + case 5234: + return "eenet", true + case 5235: + return "galaxy-network", true + case 5236: + return "padl2sim", true + case 5237: + return "mnet-discovery", true + case 5242: + return "attune", true + case 5243: + return "xycstatus", true + case 5245: + return "downtools", true + case 5248: + return "caacws", true + case 5249: + return "caaclang2", true + case 5250: + return "soagateway", true + case 5251: + return "caevms", true + case 5252: + return "movaz-ssc", true + case 5253: + return "kpdp", true + case 5254: + return "logcabin", true + case 5264: + return "3com-njack-1", true + case 5265: + return "3com-njack-2", true + case 5269: + return "xmpp-server", true + case 5270: + return "cartographerxmp", true + case 5271: + return "cuelink", true + case 5272: + return "pk", true + case 5280: + return "xmpp-bosh", true + case 5281: + return "undo-lm", true + case 5282: + return "transmit-port", true + case 5298: + return "presence", true + case 5299: + return "nlg-data", true + case 5300: + return "hacl-hb", true + case 5301: + return "hacl-gs", true + case 5302: + return "hacl-cfg", true + case 5303: + return "hacl-probe", true + case 5304: + return "hacl-local", true + case 5305: + return "hacl-test", true + case 5306: + return "sun-mc-grp", true + case 5307: + return "sco-aip", true + case 5308: + return "cfengine", true + case 5309: + return "jprinter", true + case 5310: + return "outlaws", true + case 5312: + return "permabit-cs", true + case 5313: + return "rrdp", true + case 5314: + return "opalis-rbt-ipc", true + case 5315: + return "hacl-poll", true + case 5316: + return "hpbladems", true + case 5317: + return "hpdevms", true + case 5318: + return "pkix-cmc", true + case 5320: + return "bsfserver-zn", true + case 5321: + return "bsfsvr-zn-ssl", true + case 5343: + return "kfserver", true + case 5344: + return "xkotodrcp", true + case 5349: + return "stuns", true + case 5352: + return "dns-llq", true + case 5353: + return "mdns", true + case 5354: + return "mdnsresponder", true + case 5355: + return "llmnr", true + case 5356: + return "ms-smlbiz", true + case 5357: + return "wsdapi", true + case 5358: + return "wsdapi-s", true + case 5359: + return "ms-alerter", true + case 5360: + return "ms-sideshow", true + case 5361: + return "ms-s-sideshow", true + case 5362: + return "serverwsd2", true + case 5363: + return "net-projection", true + case 5397: + return "stresstester", true + case 5398: + return "elektron-admin", true + case 5399: + return "securitychase", true + case 5400: + return "excerpt", true + case 5401: + return "excerpts", true + case 5402: + return "mftp", true + case 5403: + return "hpoms-ci-lstn", true + case 5404: + return "hpoms-dps-lstn", true + case 5405: + return "netsupport", true + case 5406: + return "systemics-sox", true + case 5407: + return "foresyte-clear", true + case 5408: + return "foresyte-sec", true + case 5409: + return "salient-dtasrv", true + case 5410: + return "salient-usrmgr", true + case 5411: + return "actnet", true + case 5412: + return "continuus", true + case 5413: + return "wwiotalk", true + case 5414: + return "statusd", true + case 5415: + return "ns-server", true + case 5416: + return "sns-gateway", true + case 5417: + return "sns-agent", true + case 5418: + return "mcntp", true + case 5419: + return "dj-ice", true + case 5420: + return "cylink-c", true + case 5421: + return "netsupport2", true + case 5422: + return "salient-mux", true + case 5423: + return "virtualuser", true + case 5424: + return "beyond-remote", true + case 5425: + return "br-channel", true + case 5426: + return "devbasic", true + case 5427: + return "sco-peer-tta", true + case 5428: + return "telaconsole", true + case 5429: + return "base", true + case 5430: + return "radec-corp", true + case 5431: + return "park-agent", true + case 5432: + return "postgresql", true + case 5433: + return "pyrrho", true + case 5434: + return "sgi-arrayd", true + case 5435: + return "sceanics", true + case 5443: + return "spss", true + case 5445: + return "smbdirect", true + case 5450: + return "tiepie", true + case 5453: + return "surebox", true + case 5454: + return "apc-5454", true + case 5455: + return "apc-5455", true + case 5456: + return "apc-5456", true + case 5461: + return "silkmeter", true + case 5462: + return "ttl-publisher", true + case 5463: + return "ttlpriceproxy", true + case 5464: + return "quailnet", true + case 5465: + return "netops-broker", true + case 5470: + return "apsolab-col", true + case 5471: + return "apsolab-cols", true + case 5472: + return "apsolab-tag", true + case 5473: + return "apsolab-tags", true + case 5475: + return "apsolab-data", true + case 5500: + return "fcp-addr-srvr1", true + case 5501: + return "fcp-addr-srvr2", true + case 5502: + return "fcp-srvr-inst1", true + case 5503: + return "fcp-srvr-inst2", true + case 5504: + return "fcp-cics-gw1", true + case 5505: + return "checkoutdb", true + case 5506: + return "amc", true + case 5507: + return "psl-management", true + case 5540: + return "matter", true + case 5550: + return "cbus", true + case 5553: + return "sgi-eventmond", true + case 5554: + return "sgi-esphttp", true + case 5555: + return "personal-agent", true + case 5556: + return "freeciv", true + case 5557: + return "farenet", true + case 5565: + return "dp-bura", true + case 5566: + return "westec-connect", true + case 5567: + return "dof-dps-mc-sec", true + case 5568: + return "sdt", true + case 5569: + return "rdmnet-ctrl", true + case 5573: + return "sdmmp", true + case 5574: + return "lsi-bobcat", true + case 5575: + return "ora-oap", true + case 5579: + return "fdtracks", true + case 5580: + return "tmosms0", true + case 5581: + return "tmosms1", true + case 5582: + return "fac-restore", true + case 5583: + return "tmo-icon-sync", true + case 5584: + return "bis-web", true + case 5585: + return "bis-sync", true + case 5586: + return "att-mt-sms", true + case 5597: + return "ininmessaging", true + case 5598: + return "mctfeed", true + case 5599: + return "esinstall", true + case 5600: + return "esmmanager", true + case 5601: + return "esmagent", true + case 5602: + return "a1-msc", true + case 5603: + return "a1-bs", true + case 5604: + return "a3-sdunode", true + case 5605: + return "a4-sdunode", true + case 5618: + return "efr", true + case 5627: + return "ninaf", true + case 5628: + return "htrust", true + case 5629: + return "symantec-sfdb", true + case 5630: + return "precise-comm", true + case 5631: + return "pcanywheredata", true + case 5632: + return "pcanywherestat", true + case 5633: + return "beorl", true + case 5634: + return "xprtld", true + case 5635: + return "sfmsso", true + case 5636: + return "sfm-db-server", true + case 5637: + return "cssc", true + case 5638: + return "flcrs", true + case 5639: + return "ics", true + case 5646: + return "vfmobile", true + case 5666: + return "nrpe", true + case 5670: + return "filemq", true + case 5671: + return "amqps", true + case 5672: + return "amqp", true + case 5673: + return "jms", true + case 5674: + return "hyperscsi-port", true + case 5675: + return "v5ua", true + case 5676: + return "raadmin", true + case 5677: + return "questdb2-lnchr", true + case 5678: + return "rrac", true + case 5679: + return "dccm", true + case 5680: + return "auriga-router", true + case 5681: + return "ncxcp", true + case 5683: + return "coap", true + case 5684: + return "coaps", true + case 5688: + return "ggz", true + case 5689: + return "qmvideo", true + case 5693: + return "rbsystem", true + case 5696: + return "kmip", true + case 5700: + return "supportassist", true + case 5705: + return "storageos", true + case 5713: + return "proshareaudio", true + case 5714: + return "prosharevideo", true + case 5715: + return "prosharedata", true + case 5716: + return "prosharerequest", true + case 5717: + return "prosharenotify", true + case 5718: + return "dpm", true + case 5719: + return "dpm-agent", true + case 5720: + return "ms-licensing", true + case 5721: + return "dtpt", true + case 5722: + return "msdfsr", true + case 5723: + return "omhs", true + case 5724: + return "omsdk", true + case 5725: + return "ms-ilm", true + case 5726: + return "ms-ilm-sts", true + case 5727: + return "asgenf", true + case 5728: + return "io-dist-data", true + case 5729: + return "openmail", true + case 5730: + return "unieng", true + case 5741: + return "ida-discover1", true + case 5742: + return "ida-discover2", true + case 5743: + return "watchdoc-pod", true + case 5744: + return "watchdoc", true + case 5745: + return "fcopy-server", true + case 5746: + return "fcopys-server", true + case 5747: + return "tunatic", true + case 5748: + return "tunalyzer", true + case 5750: + return "rscd", true + case 5755: + return "openmailg", true + case 5757: + return "x500ms", true + case 5766: + return "openmailns", true + case 5767: + return "s-openmail", true + case 5768: + return "openmailpxy", true + case 5769: + return "spramsca", true + case 5770: + return "spramsd", true + case 5771: + return "netagent", true + case 5777: + return "starfield-io", true + case 5780: + return "vts-rpc", true + case 5781: + return "3par-evts", true + case 5782: + return "3par-mgmt", true + case 5783: + return "3par-mgmt-ssl", true + case 5785: + return "3par-rcopy", true + case 5793: + return "xtreamx", true + case 5798: + return "enlabel-dpl", true + case 5813: + return "icmpd", true + case 5814: + return "spt-automation", true + case 5820: + return "autopassdaemon", true + case 5841: + return "shiprush-d-ch", true + case 5842: + return "reversion", true + case 5859: + return "wherehoo", true + case 5863: + return "ppsuitemsg", true + case 5868: + return "diameters", true + case 5883: + return "jute", true + case 5900: + return "rfb", true + case 5903: + return "ff-ice", true + case 5904: + return "ag-swim", true + case 5905: + return "asmgcs", true + case 5906: + return "rpas-c2", true + case 5907: + return "dsd", true + case 5908: + return "ipsma", true + case 5909: + return "agma", true + case 5910: + return "ats-atn", true + case 5911: + return "ats-acars", true + case 5912: + return "ais-met", true + case 5913: + return "aoc-acars", true + case 5963: + return "indy", true + case 5968: + return "mppolicy-v5", true + case 5969: + return "mppolicy-mgr", true + case 5984: + return "couchdb", true + case 5985: + return "wsman", true + case 5986: + return "wsmans", true + case 5987: + return "wbem-rmi", true + case 5988: + return "wbem-http", true + case 5989: + return "wbem-https", true + case 5990: + return "wbem-exp-https", true + case 5991: + return "nuxsl", true + case 5992: + return "consul-insight", true + case 5993: + return "cim-rs", true + case 5994: + return "rms-agent", true + case 5999: + return "cvsup", true + case 6064: + return "ndl-ahp-svc", true + case 6065: + return "winpharaoh", true + case 6066: + return "ewctsp", true + case 6068: + return "gsmp-ancp", true + case 6069: + return "trip", true + case 6070: + return "messageasap", true + case 6071: + return "ssdtp", true + case 6072: + return "diagnose-proc", true + case 6073: + return "directplay8", true + case 6074: + return "max", true + case 6075: + return "dpm-acm", true + case 6076: + return "msft-dpm-cert", true + case 6077: + return "iconstructsrv", true + case 6084: + return "reload-config", true + case 6085: + return "konspire2b", true + case 6086: + return "pdtp", true + case 6087: + return "ldss", true + case 6088: + return "doglms", true + case 6099: + return "raxa-mgmt", true + case 6100: + return "synchronet-db", true + case 6101: + return "synchronet-rtc", true + case 6102: + return "synchronet-upd", true + case 6103: + return "rets", true + case 6104: + return "dbdb", true + case 6105: + return "primaserver", true + case 6106: + return "mpsserver", true + case 6107: + return "etc-control", true + case 6108: + return "sercomm-scadmin", true + case 6109: + return "globecast-id", true + case 6110: + return "softcm", true + case 6111: + return "spc", true + case 6112: + return "dtspcd", true + case 6113: + return "dayliteserver", true + case 6114: + return "wrspice", true + case 6115: + return "xic", true + case 6116: + return "xtlserv", true + case 6117: + return "daylitetouch", true + case 6121: + return "spdy", true + case 6122: + return "bex-webadmin", true + case 6123: + return "backup-express", true + case 6124: + return "pnbs", true + case 6130: + return "damewaremobgtwy", true + case 6133: + return "nbt-wol", true + case 6140: + return "pulsonixnls", true + case 6141: + return "meta-corp", true + case 6142: + return "aspentec-lm", true + case 6143: + return "watershed-lm", true + case 6144: + return "statsci1-lm", true + case 6145: + return "statsci2-lm", true + case 6146: + return "lonewolf-lm", true + case 6147: + return "montage-lm", true + case 6148: + return "ricardo-lm", true + case 6149: + return "tal-pod", true + case 6159: + return "efb-aci", true + case 6160: + return "ecmp", true + case 6161: + return "patrol-ism", true + case 6162: + return "patrol-coll", true + case 6163: + return "pscribe", true + case 6200: + return "lm-x", true + case 6209: + return "qmtps", true + case 6222: + return "radmind", true + case 6241: + return "jeol-nsdtp-1", true + case 6242: + return "jeol-nsdtp-2", true + case 6243: + return "jeol-nsdtp-3", true + case 6244: + return "jeol-nsdtp-4", true + case 6251: + return "tl1-raw-ssl", true + case 6252: + return "tl1-ssh", true + case 6253: + return "crip", true + case 6267: + return "gld", true + case 6268: + return "grid", true + case 6269: + return "grid-alt", true + case 6300: + return "bmc-grx", true + case 6301: + return "bmc-ctd-ldap", true + case 6306: + return "ufmp", true + case 6315: + return "scup", true + case 6316: + return "abb-escp", true + case 6317: + return "nav-data-cmd", true + case 6320: + return "repsvc", true + case 6321: + return "emp-server1", true + case 6322: + return "emp-server2", true + case 6324: + return "hrd-ncs", true + case 6325: + return "dt-mgmtsvc", true + case 6326: + return "dt-vra", true + case 6343: + return "sflow", true + case 6344: + return "streletz", true + case 6346: + return "gnutella-svc", true + case 6347: + return "gnutella-rtr", true + case 6350: + return "adap", true + case 6355: + return "pmcs", true + case 6360: + return "metaedit-mu", true + case 6370: + return "metaedit-se", true + case 6379: + return "redis", true + case 6382: + return "metatude-mds", true + case 6389: + return "clariion-evr01", true + case 6390: + return "metaedit-ws", true + case 6417: + return "faxcomservice", true + case 6418: + return "syserverremote", true + case 6419: + return "svdrp", true + case 6420: + return "nim-vdrshell", true + case 6421: + return "nim-wan", true + case 6432: + return "pgbouncer", true + case 6440: + return "heliosd", true + case 6442: + return "tarp", true + case 6443: + return "sun-sr-https", true + case 6444: + return "sge-qmaster", true + case 6445: + return "sge-execd", true + case 6446: + return "mysql-proxy", true + case 6455: + return "skip-cert-recv", true + case 6456: + return "skip-cert-send", true + case 6464: + return "ieee11073-20701", true + case 6471: + return "lvision-lm", true + case 6480: + return "sun-sr-http", true + case 6481: + return "servicetags", true + case 6482: + return "ldoms-mgmt", true + case 6483: + return "SunVTS-RMI", true + case 6484: + return "sun-sr-jms", true + case 6485: + return "sun-sr-iiop", true + case 6486: + return "sun-sr-iiops", true + case 6487: + return "sun-sr-iiop-aut", true + case 6488: + return "sun-sr-jmx", true + case 6489: + return "sun-sr-admin", true + case 6500: + return "boks", true + case 6501: + return "boks-servc", true + case 6502: + return "boks-servm", true + case 6503: + return "boks-clntd", true + case 6505: + return "badm-priv", true + case 6506: + return "badm-pub", true + case 6507: + return "bdir-priv", true + case 6508: + return "bdir-pub", true + case 6509: + return "mgcs-mfp-port", true + case 6510: + return "mcer-port", true + case 6513: + return "netconf-tls", true + case 6514: + return "syslog-tls", true + case 6515: + return "elipse-rec", true + case 6543: + return "lds-distrib", true + case 6544: + return "lds-dump", true + case 6547: + return "apc-6547", true + case 6548: + return "apc-6548", true + case 6549: + return "apc-6549", true + case 6550: + return "fg-sysupdate", true + case 6551: + return "sum", true + case 6556: + return "checkmk-agent", true + case 6558: + return "xdsxdm", true + case 6566: + return "sane-port", true + case 6568: + return "canit-store", true + case 6579: + return "affiliate", true + case 6580: + return "parsec-master", true + case 6581: + return "parsec-peer", true + case 6582: + return "parsec-game", true + case 6583: + return "joaJewelSuite", true + case 6600: + return "mshvlm", true + case 6601: + return "mstmg-sstp", true + case 6602: + return "wsscomfrmwk", true + case 6619: + return "odette-ftps", true + case 6620: + return "kftp-data", true + case 6621: + return "kftp", true + case 6622: + return "mcftp", true + case 6623: + return "ktelnet", true + case 6624: + return "datascaler-db", true + case 6625: + return "datascaler-ctl", true + case 6626: + return "wago-service", true + case 6627: + return "nexgen", true + case 6628: + return "afesc-mc", true + case 6629: + return "nexgen-aux", true + case 6632: + return "mxodbc-connect", true + case 6640: + return "ovsdb", true + case 6653: + return "openflow", true + case 6655: + return "pcs-sf-ui-man", true + case 6656: + return "emgmsg", true + case 6670: + return "vocaltec-gold", true + case 6671: + return "p4p-portal", true + case 6672: + return "vision-server", true + case 6673: + return "vision-elmd", true + case 6678: + return "vfbp", true + case 6679: + return "osaut", true + case 6687: + return "clever-ctrace", true + case 6688: + return "clever-tcpip", true + case 6689: + return "tsa", true + case 6690: + return "cleverdetect", true + case 6697: + return "ircs-u", true + case 6701: + return "kti-icad-srvr", true + case 6702: + return "e-design-net", true + case 6703: + return "e-design-web", true + case 6714: + return "ibprotocol", true + case 6715: + return "fibotrader-com", true + case 6716: + return "princity-agent", true + case 6767: + return "bmc-perf-agent", true + case 6768: + return "bmc-perf-mgrd", true + case 6769: + return "adi-gxp-srvprt", true + case 6770: + return "plysrv-http", true + case 6771: + return "plysrv-https", true + case 6777: + return "ntz-tracker", true + case 6778: + return "ntz-p2p-storage", true + case 6785: + return "dgpf-exchg", true + case 6786: + return "smc-jmx", true + case 6787: + return "smc-admin", true + case 6788: + return "smc-http", true + case 6789: + return "radg", true + case 6790: + return "hnmp", true + case 6791: + return "hnm", true + case 6801: + return "acnet", true + case 6817: + return "pentbox-sim", true + case 6831: + return "ambit-lm", true + case 6841: + return "netmo-default", true + case 6842: + return "netmo-http", true + case 6850: + return "iccrushmore", true + case 6868: + return "acctopus-cc", true + case 6888: + return "muse", true + case 6900: + return "rtimeviewer", true + case 6901: + return "jetstream", true + case 6924: + return "split-ping", true + case 6935: + return "ethoscan", true + case 6936: + return "xsmsvc", true + case 6946: + return "bioserver", true + case 6951: + return "otlp", true + case 6961: + return "jmact3", true + case 6962: + return "jmevt2", true + case 6963: + return "swismgr1", true + case 6964: + return "swismgr2", true + case 6965: + return "swistrap", true + case 6966: + return "swispol", true + case 6969: + return "acmsoda", true + case 6970: + return "conductor", true + case 6997: + return "MobilitySrv", true + case 6998: + return "iatp-highpri", true + case 6999: + return "iatp-normalpri", true + case 7000: + return "afs3-fileserver", true + case 7001: + return "afs3-callback", true + case 7002: + return "afs3-prserver", true + case 7003: + return "afs3-vlserver", true + case 7004: + return "afs3-kaserver", true + case 7005: + return "afs3-volser", true + case 7006: + return "afs3-errors", true + case 7007: + return "afs3-bos", true + case 7008: + return "afs3-update", true + case 7009: + return "afs3-rmtsys", true + case 7010: + return "ups-onlinet", true + case 7011: + return "talon-disc", true + case 7012: + return "talon-engine", true + case 7013: + return "microtalon-dis", true + case 7014: + return "microtalon-com", true + case 7015: + return "talon-webserver", true + case 7016: + return "spg", true + case 7017: + return "grasp", true + case 7018: + return "fisa-svc", true + case 7019: + return "doceri-ctl", true + case 7020: + return "dpserve", true + case 7021: + return "dpserveadmin", true + case 7022: + return "ctdp", true + case 7023: + return "ct2nmcs", true + case 7024: + return "vmsvc", true + case 7025: + return "vmsvc-2", true + case 7026: + return "loreji-panel", true + case 7030: + return "op-probe", true + case 7031: + return "iposplanet", true + case 7070: + return "arcp", true + case 7071: + return "iwg1", true + case 7072: + return "iba-cfg", true + case 7073: + return "martalk", true + case 7080: + return "empowerid", true + case 7099: + return "lazy-ptop", true + case 7100: + return "font-service", true + case 7101: + return "elcn", true + case 7117: + return "rothaga", true + case 7121: + return "virprot-lm", true + case 7123: + return "snif", true + case 7128: + return "scenidm", true + case 7129: + return "scenccs", true + case 7161: + return "cabsm-comm", true + case 7162: + return "caistoragemgr", true + case 7163: + return "cacsambroker", true + case 7164: + return "fsr", true + case 7165: + return "doc-server", true + case 7166: + return "aruba-server", true + case 7167: + return "casrmagent", true + case 7168: + return "cnckadserver", true + case 7169: + return "ccag-pib", true + case 7170: + return "nsrp", true + case 7171: + return "drm-production", true + case 7172: + return "metalbend", true + case 7173: + return "zsecure", true + case 7174: + return "clutild", true + case 7200: + return "fodms", true + case 7201: + return "dlip", true + case 7202: + return "pon-ictp", true + case 7215: + return "PS-Server", true + case 7216: + return "PS-Capture-Pro", true + case 7227: + return "ramp", true + case 7228: + return "citrixupp", true + case 7229: + return "citrixuppg", true + case 7234: + return "asa-gateways", true + case 7236: + return "display", true + case 7237: + return "pads", true + case 7244: + return "frc-hicp", true + case 7262: + return "cnap", true + case 7272: + return "watchme-7272", true + case 7273: + return "oma-rlp", true + case 7274: + return "oma-rlp-s", true + case 7275: + return "oma-ulp", true + case 7276: + return "oma-ilp", true + case 7277: + return "oma-ilp-s", true + case 7278: + return "oma-dcdocbs", true + case 7279: + return "ctxlic", true + case 7280: + return "itactionserver1", true + case 7281: + return "itactionserver2", true + case 7282: + return "mzca-action", true + case 7283: + return "genstat", true + case 7365: + return "lcm-server", true + case 7391: + return "mindfilesys", true + case 7392: + return "mrssrendezvous", true + case 7393: + return "nfoldman", true + case 7394: + return "fse", true + case 7395: + return "winqedit", true + case 7397: + return "hexarc", true + case 7400: + return "rtps-discovery", true + case 7401: + return "rtps-dd-ut", true + case 7402: + return "rtps-dd-mt", true + case 7410: + return "ionixnetmon", true + case 7411: + return "daqstream", true + case 7421: + return "mtportmon", true + case 7426: + return "pmdmgr", true + case 7427: + return "oveadmgr", true + case 7428: + return "ovladmgr", true + case 7429: + return "opi-sock", true + case 7430: + return "xmpv7", true + case 7431: + return "pmd", true + case 7437: + return "faximum", true + case 7443: + return "oracleas-https", true + case 7471: + return "sttunnel", true + case 7473: + return "rise", true + case 7474: + return "neo4j", true + case 7478: + return "openit", true + case 7491: + return "telops-lmd", true + case 7500: + return "silhouette", true + case 7501: + return "ovbus", true + case 7508: + return "adcp", true + case 7509: + return "acplt", true + case 7510: + return "ovhpas", true + case 7511: + return "pafec-lm", true + case 7542: + return "saratoga", true + case 7543: + return "atul", true + case 7544: + return "nta-ds", true + case 7545: + return "nta-us", true + case 7546: + return "cfs", true + case 7547: + return "cwmp", true + case 7548: + return "tidp", true + case 7549: + return "nls-tl", true + case 7551: + return "controlone-con", true + case 7560: + return "sncp", true + case 7563: + return "cfw", true + case 7566: + return "vsi-omega", true + case 7569: + return "dell-eql-asm", true + case 7570: + return "aries-kfinder", true + case 7574: + return "coherence", true + case 7588: + return "sun-lm", true + case 7606: + return "mipi-debug", true + case 7624: + return "indi", true + case 7626: + return "simco", true + case 7627: + return "soap-http", true + case 7628: + return "zen-pawn", true + case 7629: + return "xdas", true + case 7630: + return "hawk", true + case 7631: + return "tesla-sys-msg", true + case 7633: + return "pmdfmgt", true + case 7648: + return "cuseeme", true + case 7663: + return "rome", true + case 7672: + return "imqstomp", true + case 7673: + return "imqstomps", true + case 7674: + return "imqtunnels", true + case 7675: + return "imqtunnel", true + case 7676: + return "imqbrokerd", true + case 7677: + return "sun-user-https", true + case 7680: + return "ms-do", true + case 7683: + return "dmt", true + case 7687: + return "bolt", true + case 7689: + return "collaber", true + case 7690: + return "sovd", true + case 7697: + return "klio", true + case 7700: + return "em7-secom", true + case 7707: + return "sync-em7", true + case 7708: + return "scinet", true + case 7720: + return "medimageportal", true + case 7724: + return "nsdeepfreezectl", true + case 7725: + return "nitrogen", true + case 7726: + return "freezexservice", true + case 7727: + return "trident-data", true + case 7728: + return "osvr", true + case 7734: + return "smip", true + case 7738: + return "aiagent", true + case 7741: + return "scriptview", true + case 7742: + return "msss", true + case 7743: + return "sstp-1", true + case 7744: + return "raqmon-pdu", true + case 7747: + return "prgp", true + case 7775: + return "inetfs", true + case 7777: + return "cbt", true + case 7778: + return "interwise", true + case 7779: + return "vstat", true + case 7781: + return "accu-lmgr", true + case 7786: + return "minivend", true + case 7787: + return "popup-reminders", true + case 7789: + return "office-tools", true + case 7794: + return "q3ade", true + case 7797: + return "pnet-conn", true + case 7798: + return "pnet-enc", true + case 7799: + return "altbsdp", true + case 7800: + return "asr", true + case 7801: + return "ssp-client", true + case 7810: + return "rbt-wanopt", true + case 7845: + return "apc-7845", true + case 7846: + return "apc-7846", true + case 7847: + return "csoauth", true + case 7869: + return "mobileanalyzer", true + case 7870: + return "rbt-smc", true + case 7871: + return "mdm", true + case 7878: + return "owms", true + case 7880: + return "pss", true + case 7887: + return "ubroker", true + case 7900: + return "mevent", true + case 7901: + return "tnos-sp", true + case 7902: + return "tnos-dp", true + case 7903: + return "tnos-dps", true + case 7913: + return "qo-secure", true + case 7932: + return "t2-drm", true + case 7933: + return "t2-brm", true + case 7962: + return "generalsync", true + case 7967: + return "supercell", true + case 7979: + return "micromuse-ncps", true + case 7980: + return "quest-vista", true + case 7981: + return "sossd-collect", true + case 7982: + return "sossd-agent", true + case 7997: + return "pushns", true + case 7999: + return "irdmi2", true + case 8000: + return "irdmi", true + case 8001: + return "vcom-tunnel", true + case 8002: + return "teradataordbms", true + case 8003: + return "mcreport", true + case 8004: + return "p2pevolvenet", true + case 8005: + return "mxi", true + case 8006: + return "wpl-analytics", true + case 8007: + return "warppipe", true + case 8008: + return "http-alt", true + case 8009: + return "nvme-disc", true + case 8015: + return "cfg-cloud", true + case 8016: + return "ads-s", true + case 8019: + return "qbdb", true + case 8020: + return "intu-ec-svcdisc", true + case 8021: + return "intu-ec-client", true + case 8022: + return "oa-system", true + case 8023: + return "arca-api", true + case 8025: + return "ca-audit-da", true + case 8026: + return "ca-audit-ds", true + case 8027: + return "papachi-p2p-srv", true + case 8032: + return "pro-ed", true + case 8033: + return "mindprint", true + case 8034: + return "vantronix-mgmt", true + case 8040: + return "ampify", true + case 8041: + return "enguity-xccetp", true + case 8042: + return "fs-agent", true + case 8043: + return "fs-server", true + case 8044: + return "fs-mgmt", true + case 8051: + return "rocrail", true + case 8052: + return "senomix01", true + case 8053: + return "senomix02", true + case 8054: + return "senomix03", true + case 8055: + return "senomix04", true + case 8056: + return "senomix05", true + case 8057: + return "senomix06", true + case 8058: + return "senomix07", true + case 8059: + return "senomix08", true + case 8066: + return "toad-bi-appsrvr", true + case 8067: + return "infi-async", true + case 8070: + return "ucs-isc", true + case 8074: + return "gadugadu", true + case 8077: + return "mles", true + case 8080: + return "http-alt", true + case 8081: + return "sunproxyadmin", true + case 8082: + return "us-cli", true + case 8083: + return "us-srv", true + case 8084: + return "websnp", true + case 8086: + return "d-s-n", true + case 8087: + return "simplifymedia", true + case 8088: + return "radan-http", true + case 8090: + return "opsmessaging", true + case 8091: + return "jamlink", true + case 8097: + return "sac", true + case 8100: + return "xprint-server", true + case 8101: + return "ldoms-migr", true + case 8102: + return "kz-migr", true + case 8115: + return "mtl8000-matrix", true + case 8116: + return "cp-cluster", true + case 8117: + return "purityrpc", true + case 8118: + return "privoxy", true + case 8121: + return "apollo-data", true + case 8122: + return "apollo-admin", true + case 8128: + return "paycash-online", true + case 8129: + return "paycash-wbp", true + case 8130: + return "indigo-vrmi", true + case 8131: + return "indigo-vbcp", true + case 8132: + return "dbabble", true + case 8140: + return "puppet", true + case 8148: + return "isdd", true + case 8153: + return "quantastor", true + case 8160: + return "patrol", true + case 8161: + return "patrol-snmp", true + case 8162: + return "lpar2rrd", true + case 8181: + return "intermapper", true + case 8182: + return "vmware-fdm", true + case 8183: + return "proremote", true + case 8184: + return "itach", true + case 8190: + return "gcp-rphy", true + case 8191: + return "limnerpressure", true + case 8192: + return "spytechphone", true + case 8194: + return "blp1", true + case 8195: + return "blp2", true + case 8199: + return "vvr-data", true + case 8200: + return "trivnet1", true + case 8201: + return "trivnet2", true + case 8204: + return "lm-perfworks", true + case 8205: + return "lm-instmgr", true + case 8206: + return "lm-dta", true + case 8207: + return "lm-sserver", true + case 8208: + return "lm-webwatcher", true + case 8230: + return "rexecj", true + case 8243: + return "synapse-nhttps", true + case 8270: + return "robot-remote", true + case 8276: + return "ms-mcc", true + case 8280: + return "synapse-nhttp", true + case 8282: + return "libelle", true + case 8292: + return "blp3", true + case 8293: + return "hiperscan-id", true + case 8294: + return "blp4", true + case 8300: + return "tmi", true + case 8301: + return "amberon", true + case 8313: + return "hub-open-net", true + case 8320: + return "tnp-discover", true + case 8321: + return "tnp", true + case 8322: + return "garmin-marine", true + case 8351: + return "server-find", true + case 8376: + return "cruise-enum", true + case 8377: + return "cruise-swroute", true + case 8378: + return "cruise-config", true + case 8379: + return "cruise-diags", true + case 8380: + return "cruise-update", true + case 8383: + return "m2mservices", true + case 8400: + return "cvd", true + case 8401: + return "sabarsd", true + case 8402: + return "abarsd", true + case 8403: + return "admind", true + case 8404: + return "svcloud", true + case 8405: + return "svbackup", true + case 8415: + return "dlpx-sp", true + case 8416: + return "espeech", true + case 8417: + return "espeech-rtp", true + case 8423: + return "aritts", true + case 8432: + return "pgbackrest", true + case 8442: + return "cybro-a-bus", true + case 8443: + return "pcsync-https", true + case 8444: + return "pcsync-http", true + case 8445: + return "copy", true + case 8450: + return "npmp", true + case 8457: + return "nexentamv", true + case 8470: + return "cisco-avp", true + case 8471: + return "pim-port", true + case 8472: + return "otv", true + case 8473: + return "vp2p", true + case 8474: + return "noteshare", true + case 8500: + return "fmtp", true + case 8501: + return "cmtp-mgt", true + case 8502: + return "ftnmtp", true + case 8554: + return "rtsp-alt", true + case 8555: + return "d-fence", true + case 8567: + return "dof-tunnel", true + case 8600: + return "asterix", true + case 8610: + return "canon-mfnp", true + case 8611: + return "canon-bjnp1", true + case 8612: + return "canon-bjnp2", true + case 8613: + return "canon-bjnp3", true + case 8614: + return "canon-bjnp4", true + case 8615: + return "imink", true + case 8665: + return "monetra", true + case 8666: + return "monetra-admin", true + case 8675: + return "msi-cps-rm", true + case 8686: + return "sun-as-jmxrmi", true + case 8688: + return "openremote-ctrl", true + case 8699: + return "vnyx", true + case 8710: + return "semi-grpc", true + case 8711: + return "nvc", true + case 8733: + return "ibus", true + case 8750: + return "dey-keyneg", true + case 8763: + return "mc-appserver", true + case 8764: + return "openqueue", true + case 8765: + return "ultraseek-http", true + case 8766: + return "amcs", true + case 8767: + return "core-of-source", true + case 8768: + return "sandpolis", true + case 8769: + return "oktaauthenticat", true + case 8770: + return "dpap", true + case 8778: + return "uec", true + case 8786: + return "msgclnt", true + case 8787: + return "msgsrvr", true + case 8793: + return "acd-pm", true + case 8800: + return "sunwebadmin", true + case 8804: + return "truecm", true + case 8873: + return "dxspider", true + case 8880: + return "cddbp-alt", true + case 8881: + return "galaxy4d", true + case 8883: + return "secure-mqtt", true + case 8888: + return "ddi-tcp-1", true + case 8889: + return "ddi-tcp-2", true + case 8890: + return "ddi-tcp-3", true + case 8891: + return "ddi-tcp-4", true + case 8892: + return "ddi-tcp-5", true + case 8893: + return "ddi-tcp-6", true + case 8894: + return "ddi-tcp-7", true + case 8899: + return "ospf-lite", true + case 8900: + return "jmb-cds1", true + case 8901: + return "jmb-cds2", true + case 8908: + return "dpp", true + case 8910: + return "manyone-http", true + case 8911: + return "manyone-xml", true + case 8912: + return "wcbackup", true + case 8913: + return "dragonfly", true + case 8937: + return "twds", true + case 8953: + return "ub-dns-control", true + case 8954: + return "cumulus-admin", true + case 8980: + return "nod-provider", true + case 8989: + return "sunwebadmins", true + case 8990: + return "http-wmap", true + case 8991: + return "https-wmap", true + case 8997: + return "oracle-ms-ens", true + case 8998: + return "canto-roboflow", true + case 8999: + return "bctp", true + case 9000: + return "cslistener", true + case 9001: + return "etlservicemgr", true + case 9002: + return "dynamid", true + case 9005: + return "golem", true + case 9008: + return "ogs-server", true + case 9009: + return "pichat", true + case 9010: + return "sdr", true + case 9020: + return "tambora", true + case 9021: + return "panagolin-ident", true + case 9022: + return "paragent", true + case 9023: + return "swa-1", true + case 9024: + return "swa-2", true + case 9025: + return "swa-3", true + case 9026: + return "swa-4", true + case 9050: + return "versiera", true + case 9051: + return "fio-cmgmt", true + case 9060: + return "CardWeb-IO", true + case 9080: + return "glrpc", true + case 9083: + return "emc-pp-mgmtsvc", true + case 9084: + return "aurora", true + case 9085: + return "ibm-rsyscon", true + case 9086: + return "net2display", true + case 9087: + return "classic", true + case 9088: + return "sqlexec", true + case 9089: + return "sqlexec-ssl", true + case 9090: + return "websm", true + case 9091: + return "xmltec-xmlmail", true + case 9092: + return "XmlIpcRegSvc", true + case 9093: + return "copycat", true + case 9100: + return "hp-pdl-datastr", true + case 9101: + return "bacula-dir", true + case 9102: + return "bacula-fd", true + case 9103: + return "bacula-sd", true + case 9104: + return "peerwire", true + case 9105: + return "xadmin", true + case 9106: + return "astergate", true + case 9107: + return "astergatefax", true + case 9111: + return "hexxorecore", true + case 9119: + return "mxit", true + case 9122: + return "grcmp", true + case 9123: + return "grcp", true + case 9131: + return "dddp", true + case 9160: + return "apani1", true + case 9161: + return "apani2", true + case 9162: + return "apani3", true + case 9163: + return "apani4", true + case 9164: + return "apani5", true + case 9191: + return "sun-as-jpda", true + case 9200: + return "wap-wsp", true + case 9201: + return "wap-wsp-wtp", true + case 9202: + return "wap-wsp-s", true + case 9203: + return "wap-wsp-wtp-s", true + case 9204: + return "wap-vcard", true + case 9205: + return "wap-vcal", true + case 9206: + return "wap-vcard-s", true + case 9207: + return "wap-vcal-s", true + case 9208: + return "rjcdb-vcards", true + case 9209: + return "almobile-system", true + case 9210: + return "oma-mlp", true + case 9211: + return "oma-mlp-s", true + case 9212: + return "serverviewdbms", true + case 9213: + return "serverstart", true + case 9214: + return "ipdcesgbs", true + case 9215: + return "insis", true + case 9216: + return "acme", true + case 9217: + return "fsc-port", true + case 9222: + return "teamcoherence", true + case 9255: + return "mon", true + case 9278: + return "pegasus", true + case 9279: + return "pegasus-ctl", true + case 9280: + return "pgps", true + case 9281: + return "swtp-port1", true + case 9282: + return "swtp-port2", true + case 9283: + return "callwaveiam", true + case 9284: + return "visd", true + case 9285: + return "n2h2server", true + case 9287: + return "cumulus", true + case 9292: + return "armtechdaemon", true + case 9293: + return "storview", true + case 9294: + return "armcenterhttp", true + case 9295: + return "armcenterhttps", true + case 9300: + return "vrace", true + case 9306: + return "sphinxql", true + case 9310: + return "sapms", true + case 9312: + return "sphinxapi", true + case 9318: + return "secure-ts", true + case 9321: + return "guibase", true + case 9339: + return "gnmi-gnoi", true + case 9340: + return "gribi", true + case 9343: + return "mpidcmgr", true + case 9344: + return "mphlpdmc", true + case 9345: + return "rancher", true + case 9346: + return "ctechlicensing", true + case 9374: + return "fjdmimgr", true + case 9380: + return "boxp", true + case 9387: + return "d2dconfig", true + case 9388: + return "d2ddatatrans", true + case 9389: + return "adws", true + case 9390: + return "otp", true + case 9396: + return "fjinvmgr", true + case 9397: + return "mpidcagt", true + case 9400: + return "sec-t4net-srv", true + case 9401: + return "sec-t4net-clt", true + case 9402: + return "sec-pc2fax-srv", true + case 9418: + return "git", true + case 9443: + return "tungsten-https", true + case 9444: + return "wso2esb-console", true + case 9445: + return "mindarray-ca", true + case 9450: + return "sntlkeyssrvr", true + case 9500: + return "ismserver", true + case 9535: + return "mngsuite", true + case 9536: + return "laes-bf", true + case 9555: + return "trispen-sra", true + case 9559: + return "p4runtime", true + case 9592: + return "ldgateway", true + case 9593: + return "cba8", true + case 9594: + return "msgsys", true + case 9595: + return "pds", true + case 9596: + return "mercury-disc", true + case 9597: + return "pd-admin", true + case 9598: + return "vscp", true + case 9599: + return "robix", true + case 9600: + return "micromuse-ncpw", true + case 9612: + return "streamcomm-ds", true + case 9614: + return "iadt-tls", true + case 9616: + return "erunbook-agent", true + case 9617: + return "erunbook-server", true + case 9618: + return "condor", true + case 9628: + return "odbcpathway", true + case 9629: + return "uniport", true + case 9630: + return "peoctlr", true + case 9631: + return "peocoll", true + case 9640: + return "pqsflows", true + case 9666: + return "zoomcp", true + case 9667: + return "xmms2", true + case 9668: + return "tec5-sdctp", true + case 9694: + return "client-wakeup", true + case 9695: + return "ccnx", true + case 9700: + return "board-roar", true + case 9747: + return "l5nas-parchan", true + case 9750: + return "board-voip", true + case 9753: + return "rasadv", true + case 9762: + return "tungsten-http", true + case 9800: + return "davsrc", true + case 9801: + return "sstp-2", true + case 9802: + return "davsrcs", true + case 9875: + return "sapv1", true + case 9876: + return "sd", true + case 9877: + return "x510", true + case 9888: + return "cyborg-systems", true + case 9889: + return "gt-proxy", true + case 9898: + return "monkeycom", true + case 9900: + return "iua", true + case 9909: + return "domaintime", true + case 9911: + return "sype-transport", true + case 9925: + return "xybrid-cloud", true + case 9950: + return "apc-9950", true + case 9951: + return "apc-9951", true + case 9952: + return "apc-9952", true + case 9953: + return "acis", true + case 9954: + return "hinp", true + case 9955: + return "alljoyn-stm", true + case 9966: + return "odnsp", true + case 9978: + return "xybrid-rt", true + case 9979: + return "visweather", true + case 9981: + return "pumpkindb", true + case 9987: + return "dsm-scm-target", true + case 9988: + return "nsesrvr", true + case 9990: + return "osm-appsrvr", true + case 9991: + return "osm-oev", true + case 9992: + return "palace-1", true + case 9993: + return "palace-2", true + case 9994: + return "palace-3", true + case 9995: + return "palace-4", true + case 9996: + return "palace-5", true + case 9997: + return "palace-6", true + case 9998: + return "distinct32", true + case 9999: + return "distinct", true + case 10000: + return "ndmp", true + case 10001: + return "scp-config", true + case 10002: + return "documentum", true + case 10003: + return "documentum-s", true + case 10004: + return "emcrmirccd", true + case 10005: + return "emcrmird", true + case 10006: + return "netapp-sync", true + case 10007: + return "mvs-capacity", true + case 10008: + return "octopus", true + case 10009: + return "swdtp-sv", true + case 10010: + return "rxapi", true + case 10020: + return "abb-hw", true + case 10050: + return "zabbix-agent", true + case 10051: + return "zabbix-trapper", true + case 10055: + return "qptlmd", true + case 10080: + return "amanda", true + case 10081: + return "famdc", true + case 10100: + return "itap-ddtp", true + case 10101: + return "ezmeeting-2", true + case 10102: + return "ezproxy-2", true + case 10103: + return "ezrelay", true + case 10104: + return "swdtp", true + case 10107: + return "bctp-server", true + case 10110: + return "nmea-0183", true + case 10113: + return "netiq-endpoint", true + case 10114: + return "netiq-qcheck", true + case 10115: + return "netiq-endpt", true + case 10116: + return "netiq-voipa", true + case 10117: + return "iqrm", true + case 10125: + return "cimple", true + case 10128: + return "bmc-perf-sd", true + case 10129: + return "bmc-gms", true + case 10160: + return "qb-db-server", true + case 10161: + return "snmptls", true + case 10162: + return "snmptls-trap", true + case 10200: + return "trisoap", true + case 10201: + return "rsms", true + case 10252: + return "apollo-relay", true + case 10260: + return "axis-wimp-port", true + case 10261: + return "tile-ml", true + case 10288: + return "blocks", true + case 10321: + return "cosir", true + case 10443: + return "cirrossp", true + case 10540: + return "MOS-lower", true + case 10541: + return "MOS-upper", true + case 10542: + return "MOS-aux", true + case 10543: + return "MOS-soap", true + case 10544: + return "MOS-soap-opt", true + case 10548: + return "serverdocs", true + case 10631: + return "printopia", true + case 10800: + return "gap", true + case 10805: + return "lpdg", true + case 10809: + return "nbd", true + case 10860: + return "helix", true + case 10880: + return "bveapi", true + case 10933: + return "octopustentacle", true + case 10990: + return "rmiaux", true + case 11000: + return "irisa", true + case 11001: + return "metasys", true + case 11095: + return "weave", true + case 11103: + return "origo-sync", true + case 11104: + return "netapp-icmgmt", true + case 11105: + return "netapp-icdata", true + case 11106: + return "sgi-lk", true + case 11109: + return "sgi-dmfmgr", true + case 11110: + return "sgi-soap", true + case 11111: + return "vce", true + case 11112: + return "dicom", true + case 11161: + return "suncacao-snmp", true + case 11162: + return "suncacao-jmxmp", true + case 11163: + return "suncacao-rmi", true + case 11164: + return "suncacao-csa", true + case 11165: + return "suncacao-websvc", true + case 11172: + return "oemcacao-jmxmp", true + case 11173: + return "t5-straton", true + case 11174: + return "oemcacao-rmi", true + case 11175: + return "oemcacao-websvc", true + case 11201: + return "smsqp", true + case 11202: + return "dcsl-backup", true + case 11208: + return "wifree", true + case 11211: + return "memcache", true + case 11235: + return "xcompute", true + case 11319: + return "imip", true + case 11320: + return "imip-channels", true + case 11321: + return "arena-server", true + case 11367: + return "atm-uhas", true + case 11371: + return "hkp", true + case 11489: + return "asgcypresstcps", true + case 11600: + return "tempest-port", true + case 11623: + return "emc-xsw-dconfig", true + case 11720: + return "h323callsigalt", true + case 11723: + return "emc-xsw-dcache", true + case 11751: + return "intrepid-ssl", true + case 11796: + return "lanschool", true + case 11876: + return "xoraya", true + case 11967: + return "sysinfo-sp", true + case 11971: + return "tibsd", true + case 12000: + return "entextxid", true + case 12001: + return "entextnetwk", true + case 12002: + return "entexthigh", true + case 12003: + return "entextmed", true + case 12004: + return "entextlow", true + case 12005: + return "dbisamserver1", true + case 12006: + return "dbisamserver2", true + case 12007: + return "accuracer", true + case 12008: + return "accuracer-dbms", true + case 12010: + return "edbsrvr", true + case 12012: + return "vipera", true + case 12013: + return "vipera-ssl", true + case 12109: + return "rets-ssl", true + case 12121: + return "nupaper-ss", true + case 12168: + return "cawas", true + case 12172: + return "hivep", true + case 12300: + return "linogridengine", true + case 12302: + return "rads", true + case 12321: + return "warehouse-sss", true + case 12322: + return "warehouse", true + case 12345: + return "italk", true + case 12546: + return "carb-repl-ctrl", true + case 12753: + return "tsaf", true + case 12865: + return "netperf", true + case 13160: + return "i-zipqd", true + case 13216: + return "bcslogc", true + case 13217: + return "rs-pias", true + case 13218: + return "emc-vcas-tcp", true + case 13223: + return "powwow-client", true + case 13224: + return "powwow-server", true + case 13400: + return "doip-data", true + case 13720: + return "bprd", true + case 13721: + return "bpdbm", true + case 13722: + return "bpjava-msvc", true + case 13724: + return "vnetd", true + case 13782: + return "bpcd", true + case 13783: + return "vopied", true + case 13785: + return "nbdb", true + case 13786: + return "nomdb", true + case 13818: + return "dsmcc-config", true + case 13819: + return "dsmcc-session", true + case 13820: + return "dsmcc-passthru", true + case 13821: + return "dsmcc-download", true + case 13822: + return "dsmcc-ccp", true + case 13823: + return "bmdss", true + case 13832: + return "a-trust-rpc", true + case 13894: + return "ucontrol", true + case 13929: + return "dta-systems", true + case 13930: + return "medevolve", true + case 14000: + return "scotty-ft", true + case 14001: + return "sua", true + case 14033: + return "sage-best-com1", true + case 14034: + return "sage-best-com2", true + case 14141: + return "vcs-app", true + case 14142: + return "icpp", true + case 14143: + return "icpps", true + case 14145: + return "gcm-app", true + case 14149: + return "vrts-tdd", true + case 14150: + return "vcscmd", true + case 14154: + return "vad", true + case 14250: + return "cps", true + case 14414: + return "ca-web-update", true + case 14500: + return "xpra", true + case 14936: + return "hde-lcesrvr-1", true + case 14937: + return "hde-lcesrvr-2", true + case 15000: + return "hydap", true + case 15002: + return "onep-tls", true + case 15345: + return "xpilot", true + case 15363: + return "3link", true + case 15555: + return "cisco-snat", true + case 15660: + return "bex-xr", true + case 15740: + return "ptp", true + case 15999: + return "programmar", true + case 16000: + return "fmsas", true + case 16001: + return "fmsascon", true + case 16002: + return "gsms", true + case 16020: + return "jwpc", true + case 16021: + return "jwpc-bin", true + case 16161: + return "sun-sea-port", true + case 16162: + return "solaris-audit", true + case 16309: + return "etb4j", true + case 16310: + return "pduncs", true + case 16311: + return "pdefmns", true + case 16360: + return "netserialext1", true + case 16361: + return "netserialext2", true + case 16367: + return "netserialext3", true + case 16368: + return "netserialext4", true + case 16384: + return "connected", true + case 16385: + return "rdgs", true + case 16619: + return "xoms", true + case 16665: + return "axon-tunnel", true + case 16789: + return "cadsisvr", true + case 16900: + return "newbay-snc-mc", true + case 16950: + return "sgcip", true + case 16991: + return "intel-rci-mp", true + case 16992: + return "amt-soap-http", true + case 16993: + return "amt-soap-https", true + case 16994: + return "amt-redir-tcp", true + case 16995: + return "amt-redir-tls", true + case 17007: + return "isode-dua", true + case 17010: + return "ncpu", true + case 17184: + return "vestasdlp", true + case 17185: + return "soundsvirtual", true + case 17219: + return "chipper", true + case 17220: + return "avtp", true + case 17221: + return "avdecc", true + case 17223: + return "isa100-gci", true + case 17225: + return "trdp-md", true + case 17234: + return "integrius-stp", true + case 17235: + return "ssh-mgmt", true + case 17500: + return "db-lsp", true + case 17555: + return "ailith", true + case 17729: + return "ea", true + case 17754: + return "zep", true + case 17755: + return "zigbee-ip", true + case 17756: + return "zigbee-ips", true + case 17777: + return "sw-orion", true + case 18000: + return "biimenu", true + case 18104: + return "radpdf", true + case 18136: + return "racf", true + case 18181: + return "opsec-cvp", true + case 18182: + return "opsec-ufp", true + case 18183: + return "opsec-sam", true + case 18184: + return "opsec-lea", true + case 18185: + return "opsec-omi", true + case 18186: + return "ohsc", true + case 18187: + return "opsec-ela", true + case 18241: + return "checkpoint-rtm", true + case 18242: + return "iclid", true + case 18243: + return "clusterxl", true + case 18262: + return "gv-pf", true + case 18463: + return "ac-cluster", true + case 18634: + return "rds-ib", true + case 18635: + return "rds-ip", true + case 18668: + return "vdmmesh", true + case 18769: + return "ique", true + case 18881: + return "infotos", true + case 18888: + return "apc-necmp", true + case 19000: + return "igrid", true + case 19007: + return "scintilla", true + case 19020: + return "j-link", true + case 19191: + return "opsec-uaa", true + case 19194: + return "ua-secureagent", true + case 19220: + return "cora", true + case 19283: + return "keysrvr", true + case 19315: + return "keyshadow", true + case 19398: + return "mtrgtrans", true + case 19410: + return "hp-sco", true + case 19411: + return "hp-sca", true + case 19412: + return "hp-sessmon", true + case 19539: + return "fxuptp", true + case 19540: + return "sxuptp", true + case 19541: + return "jcp", true + case 19790: + return "faircom-db", true + case 19998: + return "iec-104-sec", true + case 19999: + return "dnp-sec", true + case 20000: + return "dnp", true + case 20001: + return "microsan", true + case 20002: + return "commtact-http", true + case 20003: + return "commtact-https", true + case 20005: + return "openwebnet", true + case 20013: + return "ss-idi", true + case 20014: + return "opendeploy", true + case 20034: + return "nburn-id", true + case 20046: + return "tmophl7mts", true + case 20048: + return "mountd", true + case 20049: + return "nfsrdma", true + case 20057: + return "avesterra", true + case 20167: + return "tolfab", true + case 20202: + return "ipdtp-port", true + case 20222: + return "ipulse-ics", true + case 20480: + return "emwavemsg", true + case 20670: + return "track", true + case 20810: + return "crtech-nlm", true + case 20999: + return "athand-mmp", true + case 21000: + return "irtrans", true + case 21010: + return "notezilla-lan", true + case 21212: + return "trinket-agent", true + case 21213: + return "cohesity-agent", true + case 21221: + return "aigairserver", true + case 21553: + return "rdm-tfs", true + case 21554: + return "dfserver", true + case 21590: + return "vofr-gateway", true + case 21800: + return "tvpm", true + case 21801: + return "sal", true + case 21845: + return "webphone", true + case 21846: + return "netspeak-is", true + case 21847: + return "netspeak-cs", true + case 21848: + return "netspeak-acd", true + case 21849: + return "netspeak-cps", true + case 22000: + return "snapenetio", true + case 22001: + return "optocontrol", true + case 22002: + return "optohost002", true + case 22003: + return "optohost003", true + case 22004: + return "optohost004", true + case 22005: + return "optohost004", true + case 22125: + return "dcap", true + case 22128: + return "gsidcap", true + case 22222: + return "easyengine", true + case 22273: + return "wnn6", true + case 22305: + return "cis", true + case 22333: + return "showcockpit-net", true + case 22335: + return "shrewd-control", true + case 22343: + return "cis-secure", true + case 22347: + return "wibukey", true + case 22350: + return "codemeter", true + case 22351: + return "codemeter-cmwan", true + case 22537: + return "caldsoft-backup", true + case 22555: + return "vocaltec-wconf", true + case 22763: + return "talikaserver", true + case 22800: + return "aws-brf", true + case 22951: + return "brf-gw", true + case 23000: + return "inovaport1", true + case 23001: + return "inovaport2", true + case 23002: + return "inovaport3", true + case 23003: + return "inovaport4", true + case 23004: + return "inovaport5", true + case 23005: + return "inovaport6", true + case 23053: + return "gntp", true + case 23294: + return "5afe-dir", true + case 23333: + return "elxmgmt", true + case 23400: + return "novar-dbase", true + case 23401: + return "novar-alarm", true + case 23402: + return "novar-global", true + case 23456: + return "aequus", true + case 23457: + return "aequus-alt", true + case 23546: + return "areaguard-neo", true + case 24000: + return "med-ltp", true + case 24001: + return "med-fsp-rx", true + case 24002: + return "med-fsp-tx", true + case 24003: + return "med-supp", true + case 24004: + return "med-ovw", true + case 24005: + return "med-ci", true + case 24006: + return "med-net-svc", true + case 24242: + return "filesphere", true + case 24249: + return "vista-4gl", true + case 24321: + return "ild", true + case 24323: + return "vrmg-ip", true + case 24386: + return "intel-rci", true + case 24465: + return "tonidods", true + case 24554: + return "binkp", true + case 24577: + return "bilobit", true + case 24666: + return "sdtvwcam", true + case 24676: + return "canditv", true + case 24677: + return "flashfiler", true + case 24678: + return "proactivate", true + case 24680: + return "tcc-http", true + case 24754: + return "cslg", true + case 24922: + return "find", true + case 25000: + return "icl-twobase1", true + case 25001: + return "icl-twobase2", true + case 25002: + return "icl-twobase3", true + case 25003: + return "icl-twobase4", true + case 25004: + return "icl-twobase5", true + case 25005: + return "icl-twobase6", true + case 25006: + return "icl-twobase7", true + case 25007: + return "icl-twobase8", true + case 25008: + return "icl-twobase9", true + case 25009: + return "icl-twobase10", true + case 25576: + return "sauterdongle", true + case 25604: + return "idtp", true + case 25793: + return "vocaltec-hos", true + case 25900: + return "tasp-net", true + case 25901: + return "niobserver", true + case 25902: + return "nilinkanalyst", true + case 25903: + return "niprobe", true + case 26000: + return "quake", true + case 26133: + return "scscp", true + case 26208: + return "wnn6-ds", true + case 26257: + return "cockroach", true + case 26260: + return "ezproxy", true + case 26261: + return "ezmeeting", true + case 26262: + return "k3software-svr", true + case 26263: + return "k3software-cli", true + case 26486: + return "exoline-tcp", true + case 26487: + return "exoconfig", true + case 26489: + return "exonet", true + case 27010: + return "flex-lmadmin", true + case 27017: + return "mongodb", true + case 27345: + return "imagepump", true + case 27442: + return "jesmsjc", true + case 27504: + return "kopek-httphead", true + case 27782: + return "ars-vista", true + case 27876: + return "astrolink", true + case 27999: + return "tw-auth-key", true + case 28000: + return "nxlmd", true + case 28001: + return "pqsp", true + case 28010: + return "gruber-cashreg", true + case 28080: + return "thor-engine", true + case 28200: + return "voxelstorm", true + case 28240: + return "siemensgsm", true + case 28589: + return "bosswave", true + case 29000: + return "saltd-licensing", true + case 29167: + return "otmp", true + case 29999: + return "bingbang", true + case 30000: + return "ndmps", true + case 30001: + return "pago-services1", true + case 30002: + return "pago-services2", true + case 30003: + return "amicon-fpsu-ra", true + case 30100: + return "rwp", true + case 30260: + return "kingdomsonline", true + case 30400: + return "gs-realtime", true + case 30999: + return "ovobs", true + case 31016: + return "ka-sddp", true + case 31020: + return "autotrac-acp", true + case 31337: + return "eldim", true + case 31400: + return "pace-licensed", true + case 31416: + return "xqosd", true + case 31457: + return "tetrinet", true + case 31620: + return "lm-mon", true + case 31685: + return "dsx-monitor", true + case 31765: + return "gamesmith-port", true + case 31948: + return "iceedcp-tx", true + case 31949: + return "iceedcp-rx", true + case 32034: + return "iracinghelper", true + case 32249: + return "t1distproc60", true + case 32400: + return "plex", true + case 32483: + return "apm-link", true + case 32635: + return "sec-ntb-clnt", true + case 32636: + return "DMExpress", true + case 32767: + return "filenet-powsrm", true + case 32768: + return "filenet-tms", true + case 32769: + return "filenet-rpc", true + case 32770: + return "filenet-nch", true + case 32771: + return "filenet-rmi", true + case 32772: + return "filenet-pa", true + case 32773: + return "filenet-cm", true + case 32774: + return "filenet-re", true + case 32775: + return "filenet-pch", true + case 32776: + return "filenet-peior", true + case 32777: + return "filenet-obrok", true + case 32801: + return "mlsn", true + case 32811: + return "retp", true + case 32896: + return "idmgratm", true + case 33000: + return "wg-endpt-comms", true + case 33060: + return "mysqlx", true + case 33123: + return "aurora-balaena", true + case 33331: + return "diamondport", true + case 33333: + return "dgi-serv", true + case 33334: + return "speedtrace", true + case 33434: + return "traceroute", true + case 33656: + return "snip-slave", true + case 33890: + return "digilent-adept", true + case 34249: + return "turbonote-2", true + case 34378: + return "p-net-local", true + case 34379: + return "p-net-remote", true + case 34567: + return "dhanalakshmi", true + case 34962: + return "profinet-rt", true + case 34963: + return "profinet-rtm", true + case 34964: + return "profinet-cm", true + case 34980: + return "ethercat", true + case 35000: + return "heathview", true + case 35001: + return "rt-viewer", true + case 35002: + return "rt-sound", true + case 35003: + return "rt-devicemapper", true + case 35004: + return "rt-classmanager", true + case 35005: + return "rt-labtracker", true + case 35006: + return "rt-helper", true + case 35100: + return "axio-disc", true + case 35354: + return "kitim", true + case 35355: + return "altova-lm", true + case 35356: + return "guttersnex", true + case 35357: + return "openstack-id", true + case 36001: + return "allpeers", true + case 36524: + return "febooti-aw", true + case 36602: + return "observium-agent", true + case 36700: + return "mapx", true + case 36865: + return "kastenxpipe", true + case 37475: + return "neckar", true + case 37483: + return "gdrive-sync", true + case 37601: + return "eftp", true + case 37654: + return "unisys-eportal", true + case 38000: + return "ivs-database", true + case 38001: + return "ivs-insertion", true + case 38002: + return "cresco-control", true + case 38201: + return "galaxy7-data", true + case 38202: + return "fairview", true + case 38203: + return "agpolicy", true + case 38638: + return "psqlmws", true + case 38800: + return "sruth", true + case 38865: + return "secrmmsafecopya", true + case 39063: + return "vroa", true + case 39681: + return "turbonote-1", true + case 40000: + return "safetynetp", true + case 40404: + return "sptx", true + case 40841: + return "cscp", true + case 40842: + return "csccredir", true + case 40843: + return "csccfirewall", true + case 41111: + return "fs-qos", true + case 41121: + return "tentacle", true + case 41230: + return "z-wave-s", true + case 41794: + return "crestron-cip", true + case 41795: + return "crestron-ctp", true + case 41796: + return "crestron-cips", true + case 41797: + return "crestron-ctps", true + case 42508: + return "candp", true + case 42509: + return "candrp", true + case 42510: + return "caerpc", true + case 42999: + return "curiosity", true + case 43000: + return "recvr-rc", true + case 43188: + return "reachout", true + case 43189: + return "ndm-agent-port", true + case 43190: + return "ip-provision", true + case 43191: + return "noit-transport", true + case 43210: + return "shaperai", true + case 43439: + return "eq3-update", true + case 43440: + return "ew-mgmt", true + case 43441: + return "ciscocsdb", true + case 44123: + return "z-wave-tunnel", true + case 44321: + return "pmcd", true + case 44322: + return "pmcdproxy", true + case 44323: + return "pmwebapi", true + case 44444: + return "cognex-dataman", true + case 44445: + return "acronis-backup", true + case 44553: + return "rbr-debug", true + case 44818: + return "EtherNet-IP-2", true + case 44900: + return "m3da", true + case 45000: + return "asmp", true + case 45001: + return "asmps", true + case 45002: + return "rs-status", true + case 45045: + return "synctest", true + case 45054: + return "invision-ag", true + case 45514: + return "cloudcheck", true + case 45678: + return "eba", true + case 45824: + return "dai-shell", true + case 45825: + return "qdb2service", true + case 45966: + return "ssr-servermgr", true + case 46336: + return "inedo", true + case 46998: + return "spremotetablet", true + case 46999: + return "mediabox", true + case 47000: + return "mbus", true + case 47001: + return "winrm", true + case 47557: + return "dbbrowse", true + case 47624: + return "directplaysrvr", true + case 47806: + return "ap", true + case 47808: + return "bacnet", true + case 48000: + return "nimcontroller", true + case 48001: + return "nimspooler", true + case 48002: + return "nimhub", true + case 48003: + return "nimgtw", true + case 48004: + return "nimbusdb", true + case 48005: + return "nimbusdbctrl", true + case 48048: + return "juka", true + case 48049: + return "3gpp-cbsp", true + case 48050: + return "weandsf", true + case 48128: + return "isnetserv", true + case 48129: + return "blp5", true + case 48556: + return "com-bardac-dw", true + case 48619: + return "iqobject", true + case 48653: + return "robotraconteur", true + case 49000: + return "matahari", true + case 49001: + return "nusrp", true + case 49150: + return "inspider", true + + } + + return "", false +} + +// UDPPortNames contains the port names for all UDP ports. +func UDPPortNames(port UDPPort) (string, bool) { + switch port { + case 1: + return "tcpmux", true + case 2: + return "compressnet", true + case 3: + return "compressnet", true + case 5: + return "rje", true + case 7: + return "echo", true + case 9: + return "discard", true + case 11: + return "systat", true + case 13: + return "daytime", true + case 17: + return "qotd", true + case 18: + return "msp", true + case 19: + return "chargen", true + case 20: + return "ftp-data", true + case 21: + return "ftp", true + case 22: + return "ssh", true + case 23: + return "telnet", true + case 25: + return "smtp", true + case 27: + return "nsw-fe", true + case 29: + return "msg-icp", true + case 31: + return "msg-auth", true + case 33: + return "dsp", true + case 37: + return "time", true + case 38: + return "rap", true + case 39: + return "rlp", true + case 41: + return "graphics", true + case 42: + return "name", true + case 43: + return "nicname", true + case 44: + return "mpm-flags", true + case 45: + return "mpm", true + case 46: + return "mpm-snd", true + case 48: + return "auditd", true + case 49: + return "tacacs", true + case 50: + return "re-mail-ck", true + case 52: + return "xns-time", true + case 53: + return "domain", true + case 54: + return "xns-ch", true + case 55: + return "isi-gl", true + case 56: + return "xns-auth", true + case 58: + return "xns-mail", true + case 62: + return "acas", true + case 63: + return "whoispp", true + case 64: + return "covia", true + case 65: + return "tacacs-ds", true + case 66: + return "sql-net", true + case 67: + return "bootps", true + case 68: + return "bootpc", true + case 69: + return "tftp", true + case 70: + return "gopher", true + case 71: + return "netrjs-1", true + case 72: + return "netrjs-2", true + case 73: + return "netrjs-3", true + case 74: + return "netrjs-4", true + case 76: + return "deos", true + case 78: + return "vettcp", true + case 79: + return "finger", true + case 80: + return "http", true + case 82: + return "xfer", true + case 83: + return "mit-ml-dev", true + case 84: + return "ctf", true + case 85: + return "mit-ml-dev", true + case 86: + return "mfcobol", true + case 88: + return "kerberos", true + case 89: + return "su-mit-tg", true + case 90: + return "dnsix", true + case 91: + return "mit-dov", true + case 92: + return "npp", true + case 93: + return "dcp", true + case 94: + return "objcall", true + case 95: + return "supdup", true + case 96: + return "dixie", true + case 97: + return "swift-rvf", true + case 98: + return "tacnews", true + case 99: + return "metagram", true + case 101: + return "hostname", true + case 102: + return "iso-tsap", true + case 103: + return "gppitnp", true + case 104: + return "acr-nema", true + case 105: + return "cso", true + case 106: + return "3com-tsmux", true + case 107: + return "rtelnet", true + case 108: + return "snagas", true + case 109: + return "pop2", true + case 110: + return "pop3", true + case 111: + return "sunrpc", true + case 112: + return "mcidas", true + case 113: + return "auth", true + case 115: + return "sftp", true + case 116: + return "ansanotify", true + case 117: + return "uucp-path", true + case 118: + return "sqlserv", true + case 119: + return "nntp", true + case 120: + return "cfdptkt", true + case 121: + return "erpc", true + case 122: + return "smakynet", true + case 123: + return "ntp", true + case 124: + return "ansatrader", true + case 125: + return "locus-map", true + case 126: + return "nxedit", true + case 127: + return "locus-con", true + case 128: + return "gss-xlicen", true + case 129: + return "pwdgen", true + case 130: + return "cisco-fna", true + case 131: + return "cisco-tna", true + case 132: + return "cisco-sys", true + case 133: + return "statsrv", true + case 134: + return "ingres-net", true + case 135: + return "epmap", true + case 136: + return "profile", true + case 137: + return "netbios-ns", true + case 138: + return "netbios-dgm", true + case 139: + return "netbios-ssn", true + case 140: + return "emfis-data", true + case 141: + return "emfis-cntl", true + case 142: + return "bl-idm", true + case 144: + return "uma", true + case 145: + return "uaac", true + case 146: + return "iso-tp0", true + case 147: + return "iso-ip", true + case 148: + return "jargon", true + case 149: + return "aed-512", true + case 150: + return "sql-net", true + case 151: + return "hems", true + case 152: + return "bftp", true + case 153: + return "sgmp", true + case 154: + return "netsc-prod", true + case 155: + return "netsc-dev", true + case 156: + return "sqlsrv", true + case 157: + return "knet-cmp", true + case 158: + return "pcmail-srv", true + case 159: + return "nss-routing", true + case 160: + return "sgmp-traps", true + case 161: + return "snmp", true + case 162: + return "snmptrap", true + case 163: + return "cmip-man", true + case 164: + return "cmip-agent", true + case 165: + return "xns-courier", true + case 166: + return "s-net", true + case 167: + return "namp", true + case 168: + return "rsvd", true + case 169: + return "send", true + case 170: + return "print-srv", true + case 171: + return "multiplex", true + case 172: + return "cl-1", true + case 173: + return "xyplex-mux", true + case 174: + return "mailq", true + case 175: + return "vmnet", true + case 176: + return "genrad-mux", true + case 177: + return "xdmcp", true + case 178: + return "nextstep", true + case 179: + return "bgp", true + case 180: + return "ris", true + case 181: + return "unify", true + case 182: + return "audit", true + case 183: + return "ocbinder", true + case 184: + return "ocserver", true + case 185: + return "remote-kis", true + case 186: + return "kis", true + case 187: + return "aci", true + case 188: + return "mumps", true + case 189: + return "qft", true + case 190: + return "gacp", true + case 191: + return "prospero", true + case 192: + return "osu-nms", true + case 193: + return "srmp", true + case 194: + return "irc", true + case 195: + return "dn6-nlm-aud", true + case 196: + return "dn6-smm-red", true + case 197: + return "dls", true + case 198: + return "dls-mon", true + case 199: + return "smux", true + case 200: + return "src", true + case 201: + return "at-rtmp", true + case 202: + return "at-nbp", true + case 203: + return "at-3", true + case 204: + return "at-echo", true + case 205: + return "at-5", true + case 206: + return "at-zis", true + case 207: + return "at-7", true + case 208: + return "at-8", true + case 209: + return "qmtp", true + case 210: + return "z39-50", true + case 211: + return "914c-g", true + case 212: + return "anet", true + case 213: + return "ipx", true + case 214: + return "vmpwscs", true + case 215: + return "softpc", true + case 216: + return "CAIlic", true + case 217: + return "dbase", true + case 218: + return "mpp", true + case 219: + return "uarps", true + case 220: + return "imap3", true + case 221: + return "fln-spx", true + case 222: + return "rsh-spx", true + case 223: + return "cdc", true + case 224: + return "masqdialer", true + case 242: + return "direct", true + case 243: + return "sur-meas", true + case 244: + return "inbusiness", true + case 245: + return "link", true + case 246: + return "dsp3270", true + case 247: + return "subntbcst-tftp", true + case 248: + return "bhfhs", true + case 256: + return "rap", true + case 257: + return "set", true + case 259: + return "esro-gen", true + case 260: + return "openport", true + case 261: + return "nsiiops", true + case 262: + return "arcisdms", true + case 263: + return "hdap", true + case 264: + return "bgmp", true + case 265: + return "x-bone-ctl", true + case 266: + return "sst", true + case 267: + return "td-service", true + case 268: + return "td-replica", true + case 269: + return "manet", true + case 270: + return "gist", true + case 280: + return "http-mgmt", true + case 281: + return "personal-link", true + case 282: + return "cableport-ax", true + case 283: + return "rescap", true + case 284: + return "corerjd", true + case 286: + return "fxp", true + case 287: + return "k-block", true + case 308: + return "novastorbakcup", true + case 309: + return "entrusttime", true + case 310: + return "bhmds", true + case 311: + return "asip-webadmin", true + case 312: + return "vslmp", true + case 313: + return "magenta-logic", true + case 314: + return "opalis-robot", true + case 315: + return "dpsi", true + case 316: + return "decauth", true + case 317: + return "zannet", true + case 318: + return "pkix-timestamp", true + case 319: + return "ptp-event", true + case 320: + return "ptp-general", true + case 321: + return "pip", true + case 322: + return "rtsps", true + case 333: + return "texar", true + case 344: + return "pdap", true + case 345: + return "pawserv", true + case 346: + return "zserv", true + case 347: + return "fatserv", true + case 348: + return "csi-sgwp", true + case 349: + return "mftp", true + case 350: + return "matip-type-a", true + case 351: + return "matip-type-b", true + case 352: + return "dtag-ste-sb", true + case 353: + return "ndsauth", true + case 354: + return "bh611", true + case 355: + return "datex-asn", true + case 356: + return "cloanto-net-1", true + case 357: + return "bhevent", true + case 358: + return "shrinkwrap", true + case 359: + return "nsrmp", true + case 360: + return "scoi2odialog", true + case 361: + return "semantix", true + case 362: + return "srssend", true + case 363: + return "rsvp-tunnel", true + case 364: + return "aurora-cmgr", true + case 365: + return "dtk", true + case 366: + return "odmr", true + case 367: + return "mortgageware", true + case 368: + return "qbikgdp", true + case 369: + return "rpc2portmap", true + case 370: + return "codaauth2", true + case 371: + return "clearcase", true + case 372: + return "ulistproc", true + case 373: + return "legent-1", true + case 374: + return "legent-2", true + case 375: + return "hassle", true + case 376: + return "nip", true + case 377: + return "tnETOS", true + case 378: + return "dsETOS", true + case 379: + return "is99c", true + case 380: + return "is99s", true + case 381: + return "hp-collector", true + case 382: + return "hp-managed-node", true + case 383: + return "hp-alarm-mgr", true + case 384: + return "arns", true + case 385: + return "ibm-app", true + case 386: + return "asa", true + case 387: + return "aurp", true + case 388: + return "unidata-ldm", true + case 389: + return "ldap", true + case 390: + return "uis", true + case 391: + return "synotics-relay", true + case 392: + return "synotics-broker", true + case 393: + return "meta5", true + case 394: + return "embl-ndt", true + case 395: + return "netcp", true + case 396: + return "netware-ip", true + case 397: + return "mptn", true + case 398: + return "kryptolan", true + case 399: + return "iso-tsap-c2", true + case 400: + return "osb-sd", true + case 401: + return "ups", true + case 402: + return "genie", true + case 403: + return "decap", true + case 404: + return "nced", true + case 405: + return "ncld", true + case 406: + return "imsp", true + case 407: + return "timbuktu", true + case 408: + return "prm-sm", true + case 409: + return "prm-nm", true + case 410: + return "decladebug", true + case 411: + return "rmt", true + case 412: + return "synoptics-trap", true + case 413: + return "smsp", true + case 414: + return "infoseek", true + case 415: + return "bnet", true + case 416: + return "silverplatter", true + case 417: + return "onmux", true + case 418: + return "hyper-g", true + case 419: + return "ariel1", true + case 420: + return "smpte", true + case 421: + return "ariel2", true + case 422: + return "ariel3", true + case 423: + return "opc-job-start", true + case 424: + return "opc-job-track", true + case 425: + return "icad-el", true + case 426: + return "smartsdp", true + case 427: + return "svrloc", true + case 428: + return "ocs-cmu", true + case 429: + return "ocs-amu", true + case 430: + return "utmpsd", true + case 431: + return "utmpcd", true + case 432: + return "iasd", true + case 433: + return "nnsp", true + case 434: + return "mobileip-agent", true + case 435: + return "mobilip-mn", true + case 436: + return "dna-cml", true + case 437: + return "comscm", true + case 438: + return "dsfgw", true + case 439: + return "dasp", true + case 440: + return "sgcp", true + case 441: + return "decvms-sysmgt", true + case 442: + return "cvc-hostd", true + case 443: + return "https", true + case 444: + return "snpp", true + case 445: + return "microsoft-ds", true + case 446: + return "ddm-rdb", true + case 447: + return "ddm-dfm", true + case 448: + return "ddm-ssl", true + case 449: + return "as-servermap", true + case 450: + return "tserver", true + case 451: + return "sfs-smp-net", true + case 452: + return "sfs-config", true + case 453: + return "creativeserver", true + case 454: + return "contentserver", true + case 455: + return "creativepartnr", true + case 456: + return "macon-udp", true + case 457: + return "scohelp", true + case 458: + return "appleqtc", true + case 459: + return "ampr-rcmd", true + case 460: + return "skronk", true + case 461: + return "datasurfsrv", true + case 462: + return "datasurfsrvsec", true + case 463: + return "alpes", true + case 464: + return "kpasswd", true + case 465: + return "igmpv3lite", true + case 466: + return "digital-vrc", true + case 467: + return "mylex-mapd", true + case 468: + return "photuris", true + case 469: + return "rcp", true + case 470: + return "scx-proxy", true + case 471: + return "mondex", true + case 472: + return "ljk-login", true + case 473: + return "hybrid-pop", true + case 474: + return "tn-tl-w2", true + case 475: + return "tcpnethaspsrv", true + case 476: + return "tn-tl-fd1", true + case 477: + return "ss7ns", true + case 478: + return "spsc", true + case 479: + return "iafserver", true + case 480: + return "iafdbase", true + case 481: + return "ph", true + case 482: + return "bgs-nsi", true + case 483: + return "ulpnet", true + case 484: + return "integra-sme", true + case 485: + return "powerburst", true + case 486: + return "avian", true + case 487: + return "saft", true + case 488: + return "gss-http", true + case 489: + return "nest-protocol", true + case 490: + return "micom-pfs", true + case 491: + return "go-login", true + case 492: + return "ticf-1", true + case 493: + return "ticf-2", true + case 494: + return "pov-ray", true + case 495: + return "intecourier", true + case 496: + return "pim-rp-disc", true + case 497: + return "retrospect", true + case 498: + return "siam", true + case 499: + return "iso-ill", true + case 500: + return "isakmp", true + case 501: + return "stmf", true + case 502: + return "mbap", true + case 503: + return "intrinsa", true + case 504: + return "citadel", true + case 505: + return "mailbox-lm", true + case 506: + return "ohimsrv", true + case 507: + return "crs", true + case 508: + return "xvttp", true + case 509: + return "snare", true + case 510: + return "fcp", true + case 511: + return "passgo", true + case 512: + return "comsat", true + case 513: + return "who", true + case 514: + return "syslog", true + case 515: + return "printer", true + case 516: + return "videotex", true + case 517: + return "talk", true + case 518: + return "ntalk", true + case 519: + return "utime", true + case 520: + return "router", true + case 521: + return "ripng", true + case 522: + return "ulp", true + case 523: + return "ibm-db2", true + case 524: + return "ncp", true + case 525: + return "timed", true + case 526: + return "tempo", true + case 527: + return "stx", true + case 528: + return "custix", true + case 529: + return "irc-serv", true + case 530: + return "courier", true + case 531: + return "conference", true + case 532: + return "netnews", true + case 533: + return "netwall", true + case 534: + return "windream", true + case 535: + return "iiop", true + case 536: + return "opalis-rdv", true + case 537: + return "nmsp", true + case 538: + return "gdomap", true + case 539: + return "apertus-ldp", true + case 540: + return "uucp", true + case 541: + return "uucp-rlogin", true + case 542: + return "commerce", true + case 543: + return "klogin", true + case 544: + return "kshell", true + case 545: + return "appleqtcsrvr", true + case 546: + return "dhcpv6-client", true + case 547: + return "dhcpv6-server", true + case 548: + return "afpovertcp", true + case 549: + return "idfp", true + case 550: + return "new-rwho", true + case 551: + return "cybercash", true + case 552: + return "devshr-nts", true + case 553: + return "pirp", true + case 554: + return "rtsp", true + case 555: + return "dsf", true + case 556: + return "remotefs", true + case 557: + return "openvms-sysipc", true + case 558: + return "sdnskmp", true + case 559: + return "teedtap", true + case 560: + return "rmonitor", true + case 561: + return "monitor", true + case 562: + return "chshell", true + case 563: + return "nntps", true + case 564: + return "9pfs", true + case 565: + return "whoami", true + case 566: + return "streettalk", true + case 567: + return "banyan-rpc", true + case 568: + return "ms-shuttle", true + case 569: + return "ms-rome", true + case 570: + return "meter", true + case 571: + return "meter", true + case 572: + return "sonar", true + case 573: + return "banyan-vip", true + case 574: + return "ftp-agent", true + case 575: + return "vemmi", true + case 576: + return "ipcd", true + case 577: + return "vnas", true + case 578: + return "ipdd", true + case 579: + return "decbsrv", true + case 580: + return "sntp-heartbeat", true + case 581: + return "bdp", true + case 582: + return "scc-security", true + case 583: + return "philips-vc", true + case 584: + return "keyserver", true + case 586: + return "password-chg", true + case 587: + return "submission", true + case 588: + return "cal", true + case 589: + return "eyelink", true + case 590: + return "tns-cml", true + case 591: + return "http-alt", true + case 592: + return "eudora-set", true + case 593: + return "http-rpc-epmap", true + case 594: + return "tpip", true + case 595: + return "cab-protocol", true + case 596: + return "smsd", true + case 597: + return "ptcnameservice", true + case 598: + return "sco-websrvrmg3", true + case 599: + return "acp", true + case 600: + return "ipcserver", true + case 601: + return "syslog-conn", true + case 602: + return "xmlrpc-beep", true + case 603: + return "idxp", true + case 604: + return "tunnel", true + case 605: + return "soap-beep", true + case 606: + return "urm", true + case 607: + return "nqs", true + case 608: + return "sift-uft", true + case 609: + return "npmp-trap", true + case 610: + return "npmp-local", true + case 611: + return "npmp-gui", true + case 612: + return "hmmp-ind", true + case 613: + return "hmmp-op", true + case 614: + return "sshell", true + case 615: + return "sco-inetmgr", true + case 616: + return "sco-sysmgr", true + case 617: + return "sco-dtmgr", true + case 618: + return "dei-icda", true + case 619: + return "compaq-evm", true + case 620: + return "sco-websrvrmgr", true + case 621: + return "escp-ip", true + case 622: + return "collaborator", true + case 623: + return "asf-rmcp", true + case 624: + return "cryptoadmin", true + case 625: + return "dec-dlm", true + case 626: + return "asia", true + case 627: + return "passgo-tivoli", true + case 628: + return "qmqp", true + case 629: + return "3com-amp3", true + case 630: + return "rda", true + case 631: + return "ipp", true + case 632: + return "bmpp", true + case 633: + return "servstat", true + case 634: + return "ginad", true + case 635: + return "rlzdbase", true + case 636: + return "ldaps", true + case 637: + return "lanserver", true + case 638: + return "mcns-sec", true + case 639: + return "msdp", true + case 640: + return "entrust-sps", true + case 641: + return "repcmd", true + case 642: + return "esro-emsdp", true + case 643: + return "sanity", true + case 644: + return "dwr", true + case 645: + return "pssc", true + case 646: + return "ldp", true + case 647: + return "dhcp-failover", true + case 648: + return "rrp", true + case 649: + return "cadview-3d", true + case 650: + return "obex", true + case 651: + return "ieee-mms", true + case 652: + return "hello-port", true + case 653: + return "repscmd", true + case 654: + return "aodv", true + case 655: + return "tinc", true + case 656: + return "spmp", true + case 657: + return "rmc", true + case 658: + return "tenfold", true + case 660: + return "mac-srvr-admin", true + case 661: + return "hap", true + case 662: + return "pftp", true + case 663: + return "purenoise", true + case 664: + return "asf-secure-rmcp", true + case 665: + return "sun-dr", true + case 666: + return "mdqs", true + case 667: + return "disclose", true + case 668: + return "mecomm", true + case 669: + return "meregister", true + case 670: + return "vacdsm-sws", true + case 671: + return "vacdsm-app", true + case 672: + return "vpps-qua", true + case 673: + return "cimplex", true + case 674: + return "acap", true + case 675: + return "dctp", true + case 676: + return "vpps-via", true + case 677: + return "vpp", true + case 678: + return "ggf-ncp", true + case 679: + return "mrm", true + case 680: + return "entrust-aaas", true + case 681: + return "entrust-aams", true + case 682: + return "xfr", true + case 683: + return "corba-iiop", true + case 684: + return "corba-iiop-ssl", true + case 685: + return "mdc-portmapper", true + case 686: + return "hcp-wismar", true + case 687: + return "asipregistry", true + case 688: + return "realm-rusd", true + case 689: + return "nmap", true + case 690: + return "vatp", true + case 691: + return "msexch-routing", true + case 692: + return "hyperwave-isp", true + case 693: + return "connendp", true + case 694: + return "ha-cluster", true + case 695: + return "ieee-mms-ssl", true + case 696: + return "rushd", true + case 697: + return "uuidgen", true + case 698: + return "olsr", true + case 699: + return "accessnetwork", true + case 700: + return "epp", true + case 701: + return "lmp", true + case 702: + return "iris-beep", true + case 704: + return "elcsd", true + case 705: + return "agentx", true + case 706: + return "silc", true + case 707: + return "borland-dsj", true + case 709: + return "entrust-kmsh", true + case 710: + return "entrust-ash", true + case 711: + return "cisco-tdp", true + case 712: + return "tbrpf", true + case 713: + return "iris-xpc", true + case 714: + return "iris-xpcs", true + case 715: + return "iris-lwz", true + case 716: + return "pana", true + case 729: + return "netviewdm1", true + case 730: + return "netviewdm2", true + case 731: + return "netviewdm3", true + case 741: + return "netgw", true + case 742: + return "netrcs", true + case 744: + return "flexlm", true + case 747: + return "fujitsu-dev", true + case 748: + return "ris-cm", true + case 749: + return "kerberos-adm", true + case 750: + return "loadav", true + case 751: + return "pump", true + case 752: + return "qrh", true + case 753: + return "rrh", true + case 754: + return "tell", true + case 758: + return "nlogin", true + case 759: + return "con", true + case 760: + return "ns", true + case 761: + return "rxe", true + case 762: + return "quotad", true + case 763: + return "cycleserv", true + case 764: + return "omserv", true + case 765: + return "webster", true + case 767: + return "phonebook", true + case 769: + return "vid", true + case 770: + return "cadlock", true + case 771: + return "rtip", true + case 772: + return "cycleserv2", true + case 773: + return "notify", true + case 774: + return "acmaint-dbd", true + case 775: + return "acmaint-transd", true + case 776: + return "wpages", true + case 777: + return "multiling-http", true + case 780: + return "wpgs", true + case 800: + return "mdbs-daemon", true + case 801: + return "device", true + case 802: + return "mbap-s", true + case 810: + return "fcp-udp", true + case 828: + return "itm-mcell-s", true + case 829: + return "pkix-3-ca-ra", true + case 830: + return "netconf-ssh", true + case 831: + return "netconf-beep", true + case 832: + return "netconfsoaphttp", true + case 833: + return "netconfsoapbeep", true + case 847: + return "dhcp-failover2", true + case 848: + return "gdoi", true + case 853: + return "domain-s", true + case 854: + return "dlep", true + case 860: + return "iscsi", true + case 861: + return "owamp-test", true + case 862: + return "twamp-test", true + case 873: + return "rsync", true + case 886: + return "iclcnet-locate", true + case 887: + return "iclcnet-svinfo", true + case 888: + return "accessbuilder", true + case 900: + return "omginitialrefs", true + case 901: + return "smpnameres", true + case 902: + return "ideafarm-door", true + case 903: + return "ideafarm-panic", true + case 910: + return "kink", true + case 911: + return "xact-backup", true + case 912: + return "apex-mesh", true + case 913: + return "apex-edge", true + case 914: + return "rift-lies", true + case 915: + return "rift-ties", true + case 989: + return "ftps-data", true + case 990: + return "ftps", true + case 991: + return "nas", true + case 992: + return "telnets", true + case 995: + return "pop3s", true + case 996: + return "vsinet", true + case 997: + return "maitrd", true + case 998: + return "puparp", true + case 999: + return "applix", true + case 1000: + return "cadlock2", true + case 1010: + return "surf", true + case 1021: + return "exp1", true + case 1022: + return "exp2", true + case 1025: + return "blackjack", true + case 1026: + return "cap", true + case 1027: + return "6a44", true + case 1029: + return "solid-mux", true + case 1033: + return "netinfo-local", true + case 1034: + return "activesync", true + case 1035: + return "mxxrlogin", true + case 1036: + return "nsstp", true + case 1037: + return "ams", true + case 1038: + return "mtqp", true + case 1039: + return "sbl", true + case 1040: + return "netarx", true + case 1041: + return "danf-ak2", true + case 1042: + return "afrog", true + case 1043: + return "boinc-client", true + case 1044: + return "dcutility", true + case 1045: + return "fpitp", true + case 1046: + return "wfremotertm", true + case 1047: + return "neod1", true + case 1048: + return "neod2", true + case 1049: + return "td-postman", true + case 1050: + return "cma", true + case 1051: + return "optima-vnet", true + case 1052: + return "ddt", true + case 1053: + return "remote-as", true + case 1054: + return "brvread", true + case 1055: + return "ansyslmd", true + case 1056: + return "vfo", true + case 1057: + return "startron", true + case 1058: + return "nim", true + case 1059: + return "nimreg", true + case 1060: + return "polestar", true + case 1061: + return "kiosk", true + case 1062: + return "veracity", true + case 1063: + return "kyoceranetdev", true + case 1064: + return "jstel", true + case 1065: + return "syscomlan", true + case 1066: + return "fpo-fns", true + case 1067: + return "instl-boots", true + case 1068: + return "instl-bootc", true + case 1069: + return "cognex-insight", true + case 1070: + return "gmrupdateserv", true + case 1071: + return "bsquare-voip", true + case 1072: + return "cardax", true + case 1073: + return "bridgecontrol", true + case 1074: + return "warmspotMgmt", true + case 1075: + return "rdrmshc", true + case 1076: + return "dab-sti-c", true + case 1077: + return "imgames", true + case 1078: + return "avocent-proxy", true + case 1079: + return "asprovatalk", true + case 1080: + return "socks", true + case 1081: + return "pvuniwien", true + case 1082: + return "amt-esd-prot", true + case 1083: + return "ansoft-lm-1", true + case 1084: + return "ansoft-lm-2", true + case 1085: + return "webobjects", true + case 1086: + return "cplscrambler-lg", true + case 1087: + return "cplscrambler-in", true + case 1088: + return "cplscrambler-al", true + case 1089: + return "ff-annunc", true + case 1090: + return "ff-fms", true + case 1091: + return "ff-sm", true + case 1092: + return "obrpd", true + case 1093: + return "proofd", true + case 1094: + return "rootd", true + case 1095: + return "nicelink", true + case 1096: + return "cnrprotocol", true + case 1097: + return "sunclustermgr", true + case 1098: + return "rmiactivation", true + case 1099: + return "rmiregistry", true + case 1100: + return "mctp", true + case 1101: + return "pt2-discover", true + case 1102: + return "adobeserver-1", true + case 1103: + return "adobeserver-2", true + case 1104: + return "xrl", true + case 1105: + return "ftranhc", true + case 1106: + return "isoipsigport-1", true + case 1107: + return "isoipsigport-2", true + case 1108: + return "ratio-adp", true + case 1110: + return "nfsd-keepalive", true + case 1111: + return "lmsocialserver", true + case 1112: + return "icp", true + case 1113: + return "ltp-deepspace", true + case 1114: + return "mini-sql", true + case 1115: + return "ardus-trns", true + case 1116: + return "ardus-cntl", true + case 1117: + return "ardus-mtrns", true + case 1118: + return "sacred", true + case 1119: + return "bnetgame", true + case 1120: + return "bnetfile", true + case 1121: + return "rmpp", true + case 1122: + return "availant-mgr", true + case 1123: + return "murray", true + case 1124: + return "hpvmmcontrol", true + case 1125: + return "hpvmmagent", true + case 1126: + return "hpvmmdata", true + case 1127: + return "kwdb-commn", true + case 1128: + return "saphostctrl", true + case 1129: + return "saphostctrls", true + case 1130: + return "casp", true + case 1131: + return "caspssl", true + case 1132: + return "kvm-via-ip", true + case 1133: + return "dfn", true + case 1134: + return "aplx", true + case 1135: + return "omnivision", true + case 1136: + return "hhb-gateway", true + case 1137: + return "trim", true + case 1138: + return "encrypted-admin", true + case 1139: + return "evm", true + case 1140: + return "autonoc", true + case 1141: + return "mxomss", true + case 1142: + return "edtools", true + case 1143: + return "imyx", true + case 1144: + return "fuscript", true + case 1145: + return "x9-icue", true + case 1146: + return "audit-transfer", true + case 1147: + return "capioverlan", true + case 1148: + return "elfiq-repl", true + case 1149: + return "bvtsonar", true + case 1150: + return "blaze", true + case 1151: + return "unizensus", true + case 1152: + return "winpoplanmess", true + case 1153: + return "c1222-acse", true + case 1154: + return "resacommunity", true + case 1155: + return "nfa", true + case 1156: + return "iascontrol-oms", true + case 1157: + return "iascontrol", true + case 1158: + return "dbcontrol-oms", true + case 1159: + return "oracle-oms", true + case 1160: + return "olsv", true + case 1161: + return "health-polling", true + case 1162: + return "health-trap", true + case 1163: + return "sddp", true + case 1164: + return "qsm-proxy", true + case 1165: + return "qsm-gui", true + case 1166: + return "qsm-remote", true + case 1167: + return "cisco-ipsla", true + case 1168: + return "vchat", true + case 1169: + return "tripwire", true + case 1170: + return "atc-lm", true + case 1171: + return "atc-appserver", true + case 1172: + return "dnap", true + case 1173: + return "d-cinema-rrp", true + case 1174: + return "fnet-remote-ui", true + case 1175: + return "dossier", true + case 1176: + return "indigo-server", true + case 1177: + return "dkmessenger", true + case 1178: + return "sgi-storman", true + case 1179: + return "b2n", true + case 1180: + return "mc-client", true + case 1181: + return "3comnetman", true + case 1182: + return "accelenet-data", true + case 1183: + return "llsurfup-http", true + case 1184: + return "llsurfup-https", true + case 1185: + return "catchpole", true + case 1186: + return "mysql-cluster", true + case 1187: + return "alias", true + case 1188: + return "hp-webadmin", true + case 1189: + return "unet", true + case 1190: + return "commlinx-avl", true + case 1191: + return "gpfs", true + case 1192: + return "caids-sensor", true + case 1193: + return "fiveacross", true + case 1194: + return "openvpn", true + case 1195: + return "rsf-1", true + case 1196: + return "netmagic", true + case 1197: + return "carrius-rshell", true + case 1198: + return "cajo-discovery", true + case 1199: + return "dmidi", true + case 1200: + return "scol", true + case 1201: + return "nucleus-sand", true + case 1202: + return "caiccipc", true + case 1203: + return "ssslic-mgr", true + case 1204: + return "ssslog-mgr", true + case 1205: + return "accord-mgc", true + case 1206: + return "anthony-data", true + case 1207: + return "metasage", true + case 1208: + return "seagull-ais", true + case 1209: + return "ipcd3", true + case 1210: + return "eoss", true + case 1211: + return "groove-dpp", true + case 1212: + return "lupa", true + case 1213: + return "mpc-lifenet", true + case 1214: + return "kazaa", true + case 1215: + return "scanstat-1", true + case 1216: + return "etebac5", true + case 1217: + return "hpss-ndapi", true + case 1218: + return "aeroflight-ads", true + case 1219: + return "aeroflight-ret", true + case 1220: + return "qt-serveradmin", true + case 1221: + return "sweetware-apps", true + case 1222: + return "nerv", true + case 1223: + return "tgp", true + case 1224: + return "vpnz", true + case 1225: + return "slinkysearch", true + case 1226: + return "stgxfws", true + case 1227: + return "dns2go", true + case 1228: + return "florence", true + case 1229: + return "zented", true + case 1230: + return "periscope", true + case 1231: + return "menandmice-lpm", true + case 1232: + return "first-defense", true + case 1233: + return "univ-appserver", true + case 1234: + return "search-agent", true + case 1235: + return "mosaicsyssvc1", true + case 1236: + return "bvcontrol", true + case 1237: + return "tsdos390", true + case 1238: + return "hacl-qs", true + case 1239: + return "nmsd", true + case 1240: + return "instantia", true + case 1241: + return "nessus", true + case 1242: + return "nmasoverip", true + case 1243: + return "serialgateway", true + case 1244: + return "isbconference1", true + case 1245: + return "isbconference2", true + case 1246: + return "payrouter", true + case 1247: + return "visionpyramid", true + case 1248: + return "hermes", true + case 1249: + return "mesavistaco", true + case 1250: + return "swldy-sias", true + case 1251: + return "servergraph", true + case 1252: + return "bspne-pcc", true + case 1253: + return "q55-pcc", true + case 1254: + return "de-noc", true + case 1255: + return "de-cache-query", true + case 1256: + return "de-server", true + case 1257: + return "shockwave2", true + case 1258: + return "opennl", true + case 1259: + return "opennl-voice", true + case 1260: + return "ibm-ssd", true + case 1261: + return "mpshrsv", true + case 1262: + return "qnts-orb", true + case 1263: + return "dka", true + case 1264: + return "prat", true + case 1265: + return "dssiapi", true + case 1266: + return "dellpwrappks", true + case 1267: + return "epc", true + case 1268: + return "propel-msgsys", true + case 1269: + return "watilapp", true + case 1270: + return "opsmgr", true + case 1271: + return "excw", true + case 1272: + return "cspmlockmgr", true + case 1273: + return "emc-gateway", true + case 1274: + return "t1distproc", true + case 1275: + return "ivcollector", true + case 1277: + return "miva-mqs", true + case 1278: + return "dellwebadmin-1", true + case 1279: + return "dellwebadmin-2", true + case 1280: + return "pictrography", true + case 1281: + return "healthd", true + case 1282: + return "emperion", true + case 1283: + return "productinfo", true + case 1284: + return "iee-qfx", true + case 1285: + return "neoiface", true + case 1286: + return "netuitive", true + case 1287: + return "routematch", true + case 1288: + return "navbuddy", true + case 1289: + return "jwalkserver", true + case 1290: + return "winjaserver", true + case 1291: + return "seagulllms", true + case 1292: + return "dsdn", true + case 1293: + return "pkt-krb-ipsec", true + case 1294: + return "cmmdriver", true + case 1295: + return "ehtp", true + case 1296: + return "dproxy", true + case 1297: + return "sdproxy", true + case 1298: + return "lpcp", true + case 1299: + return "hp-sci", true + case 1300: + return "h323hostcallsc", true + case 1303: + return "sftsrv", true + case 1304: + return "boomerang", true + case 1305: + return "pe-mike", true + case 1306: + return "re-conn-proto", true + case 1307: + return "pacmand", true + case 1308: + return "odsi", true + case 1309: + return "jtag-server", true + case 1310: + return "husky", true + case 1311: + return "rxmon", true + case 1312: + return "sti-envision", true + case 1313: + return "bmc-patroldb", true + case 1314: + return "pdps", true + case 1315: + return "els", true + case 1316: + return "exbit-escp", true + case 1317: + return "vrts-ipcserver", true + case 1318: + return "krb5gatekeeper", true + case 1319: + return "amx-icsp", true + case 1320: + return "amx-axbnet", true + case 1321: + return "pip", true + case 1322: + return "novation", true + case 1323: + return "brcd", true + case 1324: + return "delta-mcp", true + case 1325: + return "dx-instrument", true + case 1326: + return "wimsic", true + case 1327: + return "ultrex", true + case 1328: + return "ewall", true + case 1329: + return "netdb-export", true + case 1330: + return "streetperfect", true + case 1331: + return "intersan", true + case 1332: + return "pcia-rxp-b", true + case 1333: + return "passwrd-policy", true + case 1334: + return "writesrv", true + case 1335: + return "digital-notary", true + case 1336: + return "ischat", true + case 1337: + return "menandmice-dns", true + case 1338: + return "wmc-log-svc", true + case 1339: + return "kjtsiteserver", true + case 1340: + return "naap", true + case 1341: + return "qubes", true + case 1342: + return "esbroker", true + case 1343: + return "re101", true + case 1344: + return "icap", true + case 1345: + return "vpjp", true + case 1346: + return "alta-ana-lm", true + case 1347: + return "bbn-mmc", true + case 1348: + return "bbn-mmx", true + case 1349: + return "sbook", true + case 1350: + return "editbench", true + case 1351: + return "equationbuilder", true + case 1352: + return "lotusnote", true + case 1353: + return "relief", true + case 1354: + return "XSIP-network", true + case 1355: + return "intuitive-edge", true + case 1356: + return "cuillamartin", true + case 1357: + return "pegboard", true + case 1358: + return "connlcli", true + case 1359: + return "ftsrv", true + case 1360: + return "mimer", true + case 1361: + return "linx", true + case 1362: + return "timeflies", true + case 1363: + return "ndm-requester", true + case 1364: + return "ndm-server", true + case 1365: + return "adapt-sna", true + case 1366: + return "netware-csp", true + case 1367: + return "dcs", true + case 1368: + return "screencast", true + case 1369: + return "gv-us", true + case 1370: + return "us-gv", true + case 1371: + return "fc-cli", true + case 1372: + return "fc-ser", true + case 1373: + return "chromagrafx", true + case 1374: + return "molly", true + case 1375: + return "bytex", true + case 1376: + return "ibm-pps", true + case 1377: + return "cichlid", true + case 1378: + return "elan", true + case 1379: + return "dbreporter", true + case 1380: + return "telesis-licman", true + case 1381: + return "apple-licman", true + case 1382: + return "udt-os", true + case 1383: + return "gwha", true + case 1384: + return "os-licman", true + case 1385: + return "atex-elmd", true + case 1386: + return "checksum", true + case 1387: + return "cadsi-lm", true + case 1388: + return "objective-dbc", true + case 1389: + return "iclpv-dm", true + case 1390: + return "iclpv-sc", true + case 1391: + return "iclpv-sas", true + case 1392: + return "iclpv-pm", true + case 1393: + return "iclpv-nls", true + case 1394: + return "iclpv-nlc", true + case 1395: + return "iclpv-wsm", true + case 1396: + return "dvl-activemail", true + case 1397: + return "audio-activmail", true + case 1398: + return "video-activmail", true + case 1399: + return "cadkey-licman", true + case 1400: + return "cadkey-tablet", true + case 1401: + return "goldleaf-licman", true + case 1402: + return "prm-sm-np", true + case 1403: + return "prm-nm-np", true + case 1404: + return "igi-lm", true + case 1405: + return "ibm-res", true + case 1406: + return "netlabs-lm", true + case 1408: + return "sophia-lm", true + case 1409: + return "here-lm", true + case 1410: + return "hiq", true + case 1411: + return "af", true + case 1412: + return "innosys", true + case 1413: + return "innosys-acl", true + case 1414: + return "ibm-mqseries", true + case 1415: + return "dbstar", true + case 1416: + return "novell-lu6-2", true + case 1417: + return "timbuktu-srv1", true + case 1418: + return "timbuktu-srv2", true + case 1419: + return "timbuktu-srv3", true + case 1420: + return "timbuktu-srv4", true + case 1421: + return "gandalf-lm", true + case 1422: + return "autodesk-lm", true + case 1423: + return "essbase", true + case 1424: + return "hybrid", true + case 1425: + return "zion-lm", true + case 1426: + return "sais", true + case 1427: + return "mloadd", true + case 1428: + return "informatik-lm", true + case 1429: + return "nms", true + case 1430: + return "tpdu", true + case 1431: + return "rgtp", true + case 1432: + return "blueberry-lm", true + case 1433: + return "ms-sql-s", true + case 1434: + return "ms-sql-m", true + case 1435: + return "ibm-cics", true + case 1436: + return "saism", true + case 1437: + return "tabula", true + case 1438: + return "eicon-server", true + case 1439: + return "eicon-x25", true + case 1440: + return "eicon-slp", true + case 1441: + return "cadis-1", true + case 1442: + return "cadis-2", true + case 1443: + return "ies-lm", true + case 1444: + return "marcam-lm", true + case 1445: + return "proxima-lm", true + case 1446: + return "ora-lm", true + case 1447: + return "apri-lm", true + case 1448: + return "oc-lm", true + case 1449: + return "peport", true + case 1450: + return "dwf", true + case 1451: + return "infoman", true + case 1452: + return "gtegsc-lm", true + case 1453: + return "genie-lm", true + case 1454: + return "interhdl-elmd", true + case 1455: + return "esl-lm", true + case 1456: + return "dca", true + case 1457: + return "valisys-lm", true + case 1458: + return "nrcabq-lm", true + case 1459: + return "proshare1", true + case 1460: + return "proshare2", true + case 1461: + return "ibm-wrless-lan", true + case 1462: + return "world-lm", true + case 1463: + return "nucleus", true + case 1464: + return "msl-lmd", true + case 1465: + return "pipes", true + case 1466: + return "oceansoft-lm", true + case 1467: + return "csdmbase", true + case 1468: + return "csdm", true + case 1469: + return "aal-lm", true + case 1470: + return "uaiact", true + case 1471: + return "csdmbase", true + case 1472: + return "csdm", true + case 1473: + return "openmath", true + case 1474: + return "telefinder", true + case 1475: + return "taligent-lm", true + case 1476: + return "clvm-cfg", true + case 1477: + return "ms-sna-server", true + case 1478: + return "ms-sna-base", true + case 1479: + return "dberegister", true + case 1480: + return "pacerforum", true + case 1481: + return "airs", true + case 1482: + return "miteksys-lm", true + case 1483: + return "afs", true + case 1484: + return "confluent", true + case 1485: + return "lansource", true + case 1486: + return "nms-topo-serv", true + case 1487: + return "localinfosrvr", true + case 1488: + return "docstor", true + case 1489: + return "dmdocbroker", true + case 1490: + return "insitu-conf", true + case 1492: + return "stone-design-1", true + case 1493: + return "netmap-lm", true + case 1494: + return "ica", true + case 1495: + return "cvc", true + case 1496: + return "liberty-lm", true + case 1497: + return "rfx-lm", true + case 1498: + return "sybase-sqlany", true + case 1499: + return "fhc", true + case 1500: + return "vlsi-lm", true + case 1501: + return "saiscm", true + case 1502: + return "shivadiscovery", true + case 1503: + return "imtc-mcs", true + case 1504: + return "evb-elm", true + case 1505: + return "funkproxy", true + case 1506: + return "utcd", true + case 1507: + return "symplex", true + case 1508: + return "diagmond", true + case 1509: + return "robcad-lm", true + case 1510: + return "mvx-lm", true + case 1511: + return "3l-l1", true + case 1512: + return "wins", true + case 1513: + return "fujitsu-dtc", true + case 1514: + return "fujitsu-dtcns", true + case 1515: + return "ifor-protocol", true + case 1516: + return "vpad", true + case 1517: + return "vpac", true + case 1518: + return "vpvd", true + case 1519: + return "vpvc", true + case 1520: + return "atm-zip-office", true + case 1521: + return "ncube-lm", true + case 1522: + return "ricardo-lm", true + case 1523: + return "cichild-lm", true + case 1524: + return "ingreslock", true + case 1525: + return "orasrv", true + case 1526: + return "pdap-np", true + case 1527: + return "tlisrv", true + case 1528: + return "norp", true + case 1529: + return "coauthor", true + case 1530: + return "rap-service", true + case 1531: + return "rap-listen", true + case 1532: + return "miroconnect", true + case 1533: + return "virtual-places", true + case 1534: + return "micromuse-lm", true + case 1535: + return "ampr-info", true + case 1536: + return "ampr-inter", true + case 1537: + return "sdsc-lm", true + case 1538: + return "3ds-lm", true + case 1539: + return "intellistor-lm", true + case 1540: + return "rds", true + case 1541: + return "rds2", true + case 1542: + return "gridgen-elmd", true + case 1543: + return "simba-cs", true + case 1544: + return "aspeclmd", true + case 1545: + return "vistium-share", true + case 1546: + return "abbaccuray", true + case 1547: + return "laplink", true + case 1548: + return "axon-lm", true + case 1549: + return "shivasound", true + case 1550: + return "3m-image-lm", true + case 1551: + return "hecmtl-db", true + case 1552: + return "pciarray", true + case 1553: + return "sna-cs", true + case 1554: + return "caci-lm", true + case 1555: + return "livelan", true + case 1556: + return "veritas-pbx", true + case 1557: + return "arbortext-lm", true + case 1558: + return "xingmpeg", true + case 1559: + return "web2host", true + case 1560: + return "asci-val", true + case 1561: + return "facilityview", true + case 1562: + return "pconnectmgr", true + case 1563: + return "cadabra-lm", true + case 1564: + return "pay-per-view", true + case 1565: + return "winddlb", true + case 1566: + return "corelvideo", true + case 1567: + return "jlicelmd", true + case 1568: + return "tsspmap", true + case 1569: + return "ets", true + case 1570: + return "orbixd", true + case 1571: + return "rdb-dbs-disp", true + case 1572: + return "chip-lm", true + case 1573: + return "itscomm-ns", true + case 1574: + return "mvel-lm", true + case 1575: + return "oraclenames", true + case 1576: + return "moldflow-lm", true + case 1577: + return "hypercube-lm", true + case 1578: + return "jacobus-lm", true + case 1579: + return "ioc-sea-lm", true + case 1580: + return "tn-tl-r2", true + case 1581: + return "mil-2045-47001", true + case 1582: + return "msims", true + case 1583: + return "simbaexpress", true + case 1584: + return "tn-tl-fd2", true + case 1585: + return "intv", true + case 1586: + return "ibm-abtact", true + case 1587: + return "pra-elmd", true + case 1588: + return "triquest-lm", true + case 1589: + return "vqp", true + case 1590: + return "gemini-lm", true + case 1591: + return "ncpm-pm", true + case 1592: + return "commonspace", true + case 1593: + return "mainsoft-lm", true + case 1594: + return "sixtrak", true + case 1595: + return "radio", true + case 1596: + return "radio-bc", true + case 1597: + return "orbplus-iiop", true + case 1598: + return "picknfs", true + case 1599: + return "simbaservices", true + case 1600: + return "issd", true + case 1601: + return "aas", true + case 1602: + return "inspect", true + case 1603: + return "picodbc", true + case 1604: + return "icabrowser", true + case 1605: + return "slp", true + case 1606: + return "slm-api", true + case 1607: + return "stt", true + case 1608: + return "smart-lm", true + case 1609: + return "isysg-lm", true + case 1610: + return "taurus-wh", true + case 1611: + return "ill", true + case 1612: + return "netbill-trans", true + case 1613: + return "netbill-keyrep", true + case 1614: + return "netbill-cred", true + case 1615: + return "netbill-auth", true + case 1616: + return "netbill-prod", true + case 1617: + return "nimrod-agent", true + case 1618: + return "skytelnet", true + case 1619: + return "xs-openstorage", true + case 1620: + return "faxportwinport", true + case 1621: + return "softdataphone", true + case 1622: + return "ontime", true + case 1623: + return "jaleosnd", true + case 1624: + return "udp-sr-port", true + case 1625: + return "svs-omagent", true + case 1626: + return "shockwave", true + case 1627: + return "t128-gateway", true + case 1628: + return "lontalk-norm", true + case 1629: + return "lontalk-urgnt", true + case 1630: + return "oraclenet8cman", true + case 1631: + return "visitview", true + case 1632: + return "pammratc", true + case 1633: + return "pammrpc", true + case 1634: + return "loaprobe", true + case 1635: + return "edb-server1", true + case 1636: + return "isdc", true + case 1637: + return "islc", true + case 1638: + return "ismc", true + case 1639: + return "cert-initiator", true + case 1640: + return "cert-responder", true + case 1641: + return "invision", true + case 1642: + return "isis-am", true + case 1643: + return "isis-ambc", true + case 1644: + return "saiseh", true + case 1645: + return "sightline", true + case 1646: + return "sa-msg-port", true + case 1647: + return "rsap", true + case 1648: + return "concurrent-lm", true + case 1649: + return "kermit", true + case 1650: + return "nkd", true + case 1651: + return "shiva-confsrvr", true + case 1652: + return "xnmp", true + case 1653: + return "alphatech-lm", true + case 1654: + return "stargatealerts", true + case 1655: + return "dec-mbadmin", true + case 1656: + return "dec-mbadmin-h", true + case 1657: + return "fujitsu-mmpdc", true + case 1658: + return "sixnetudr", true + case 1659: + return "sg-lm", true + case 1660: + return "skip-mc-gikreq", true + case 1661: + return "netview-aix-1", true + case 1662: + return "netview-aix-2", true + case 1663: + return "netview-aix-3", true + case 1664: + return "netview-aix-4", true + case 1665: + return "netview-aix-5", true + case 1666: + return "netview-aix-6", true + case 1667: + return "netview-aix-7", true + case 1668: + return "netview-aix-8", true + case 1669: + return "netview-aix-9", true + case 1670: + return "netview-aix-10", true + case 1671: + return "netview-aix-11", true + case 1672: + return "netview-aix-12", true + case 1673: + return "proshare-mc-1", true + case 1674: + return "proshare-mc-2", true + case 1675: + return "pdp", true + case 1676: + return "netcomm2", true + case 1677: + return "groupwise", true + case 1678: + return "prolink", true + case 1679: + return "darcorp-lm", true + case 1680: + return "microcom-sbp", true + case 1681: + return "sd-elmd", true + case 1682: + return "lanyon-lantern", true + case 1683: + return "ncpm-hip", true + case 1684: + return "snaresecure", true + case 1685: + return "n2nremote", true + case 1686: + return "cvmon", true + case 1687: + return "nsjtp-ctrl", true + case 1688: + return "nsjtp-data", true + case 1689: + return "firefox", true + case 1690: + return "ng-umds", true + case 1691: + return "empire-empuma", true + case 1692: + return "sstsys-lm", true + case 1693: + return "rrirtr", true + case 1694: + return "rrimwm", true + case 1695: + return "rrilwm", true + case 1696: + return "rrifmm", true + case 1697: + return "rrisat", true + case 1698: + return "rsvp-encap-1", true + case 1699: + return "rsvp-encap-2", true + case 1700: + return "mps-raft", true + case 1701: + return "l2f", true + case 1702: + return "deskshare", true + case 1703: + return "hb-engine", true + case 1704: + return "bcs-broker", true + case 1705: + return "slingshot", true + case 1706: + return "jetform", true + case 1707: + return "vdmplay", true + case 1708: + return "gat-lmd", true + case 1709: + return "centra", true + case 1710: + return "impera", true + case 1711: + return "pptconference", true + case 1712: + return "registrar", true + case 1713: + return "conferencetalk", true + case 1714: + return "sesi-lm", true + case 1715: + return "houdini-lm", true + case 1716: + return "xmsg", true + case 1717: + return "fj-hdnet", true + case 1718: + return "h323gatedisc", true + case 1719: + return "h323gatestat", true + case 1720: + return "h323hostcall", true + case 1721: + return "caicci", true + case 1722: + return "hks-lm", true + case 1723: + return "pptp", true + case 1724: + return "csbphonemaster", true + case 1725: + return "iden-ralp", true + case 1726: + return "iberiagames", true + case 1727: + return "winddx", true + case 1728: + return "telindus", true + case 1729: + return "citynl", true + case 1730: + return "roketz", true + case 1731: + return "msiccp", true + case 1732: + return "proxim", true + case 1733: + return "siipat", true + case 1734: + return "cambertx-lm", true + case 1735: + return "privatechat", true + case 1736: + return "street-stream", true + case 1737: + return "ultimad", true + case 1738: + return "gamegen1", true + case 1739: + return "webaccess", true + case 1740: + return "encore", true + case 1741: + return "cisco-net-mgmt", true + case 1742: + return "3Com-nsd", true + case 1743: + return "cinegrfx-lm", true + case 1744: + return "ncpm-ft", true + case 1745: + return "remote-winsock", true + case 1746: + return "ftrapid-1", true + case 1747: + return "ftrapid-2", true + case 1748: + return "oracle-em1", true + case 1749: + return "aspen-services", true + case 1750: + return "sslp", true + case 1751: + return "swiftnet", true + case 1752: + return "lofr-lm", true + case 1754: + return "oracle-em2", true + case 1755: + return "ms-streaming", true + case 1756: + return "capfast-lmd", true + case 1757: + return "cnhrp", true + case 1758: + return "tftp-mcast", true + case 1759: + return "spss-lm", true + case 1760: + return "www-ldap-gw", true + case 1761: + return "cft-0", true + case 1762: + return "cft-1", true + case 1763: + return "cft-2", true + case 1764: + return "cft-3", true + case 1765: + return "cft-4", true + case 1766: + return "cft-5", true + case 1767: + return "cft-6", true + case 1768: + return "cft-7", true + case 1769: + return "bmc-net-adm", true + case 1770: + return "bmc-net-svc", true + case 1771: + return "vaultbase", true + case 1772: + return "essweb-gw", true + case 1773: + return "kmscontrol", true + case 1774: + return "global-dtserv", true + case 1776: + return "femis", true + case 1777: + return "powerguardian", true + case 1778: + return "prodigy-intrnet", true + case 1779: + return "pharmasoft", true + case 1780: + return "dpkeyserv", true + case 1781: + return "answersoft-lm", true + case 1782: + return "hp-hcip", true + case 1784: + return "finle-lm", true + case 1785: + return "windlm", true + case 1786: + return "funk-logger", true + case 1787: + return "funk-license", true + case 1788: + return "psmond", true + case 1789: + return "hello", true + case 1790: + return "nmsp", true + case 1791: + return "ea1", true + case 1792: + return "ibm-dt-2", true + case 1793: + return "rsc-robot", true + case 1794: + return "cera-bcm", true + case 1795: + return "dpi-proxy", true + case 1796: + return "vocaltec-admin", true + case 1797: + return "uma", true + case 1798: + return "etp", true + case 1799: + return "netrisk", true + case 1800: + return "ansys-lm", true + case 1801: + return "msmq", true + case 1802: + return "concomp1", true + case 1803: + return "hp-hcip-gwy", true + case 1804: + return "enl", true + case 1805: + return "enl-name", true + case 1806: + return "musiconline", true + case 1807: + return "fhsp", true + case 1808: + return "oracle-vp2", true + case 1809: + return "oracle-vp1", true + case 1810: + return "jerand-lm", true + case 1811: + return "scientia-sdb", true + case 1812: + return "radius", true + case 1813: + return "radius-acct", true + case 1814: + return "tdp-suite", true + case 1815: + return "mmpft", true + case 1816: + return "harp", true + case 1817: + return "rkb-oscs", true + case 1818: + return "etftp", true + case 1819: + return "plato-lm", true + case 1820: + return "mcagent", true + case 1821: + return "donnyworld", true + case 1822: + return "es-elmd", true + case 1823: + return "unisys-lm", true + case 1824: + return "metrics-pas", true + case 1825: + return "direcpc-video", true + case 1826: + return "ardt", true + case 1827: + return "asi", true + case 1828: + return "itm-mcell-u", true + case 1829: + return "optika-emedia", true + case 1830: + return "net8-cman", true + case 1831: + return "myrtle", true + case 1832: + return "tht-treasure", true + case 1833: + return "udpradio", true + case 1834: + return "ardusuni", true + case 1835: + return "ardusmul", true + case 1836: + return "ste-smsc", true + case 1837: + return "csoft1", true + case 1838: + return "talnet", true + case 1839: + return "netopia-vo1", true + case 1840: + return "netopia-vo2", true + case 1841: + return "netopia-vo3", true + case 1842: + return "netopia-vo4", true + case 1843: + return "netopia-vo5", true + case 1844: + return "direcpc-dll", true + case 1845: + return "altalink", true + case 1846: + return "tunstall-pnc", true + case 1847: + return "slp-notify", true + case 1848: + return "fjdocdist", true + case 1849: + return "alpha-sms", true + case 1850: + return "gsi", true + case 1851: + return "ctcd", true + case 1852: + return "virtual-time", true + case 1853: + return "vids-avtp", true + case 1854: + return "buddy-draw", true + case 1855: + return "fiorano-rtrsvc", true + case 1856: + return "fiorano-msgsvc", true + case 1857: + return "datacaptor", true + case 1858: + return "privateark", true + case 1859: + return "gammafetchsvr", true + case 1860: + return "sunscalar-svc", true + case 1861: + return "lecroy-vicp", true + case 1862: + return "mysql-cm-agent", true + case 1863: + return "msnp", true + case 1864: + return "paradym-31port", true + case 1865: + return "entp", true + case 1866: + return "swrmi", true + case 1867: + return "udrive", true + case 1868: + return "viziblebrowser", true + case 1869: + return "transact", true + case 1870: + return "sunscalar-dns", true + case 1871: + return "canocentral0", true + case 1872: + return "canocentral1", true + case 1873: + return "fjmpjps", true + case 1874: + return "fjswapsnp", true + case 1875: + return "westell-stats", true + case 1876: + return "ewcappsrv", true + case 1877: + return "hp-webqosdb", true + case 1878: + return "drmsmc", true + case 1879: + return "nettgain-nms", true + case 1880: + return "vsat-control", true + case 1881: + return "ibm-mqseries2", true + case 1882: + return "ecsqdmn", true + case 1883: + return "mqtt", true + case 1884: + return "idmaps", true + case 1885: + return "vrtstrapserver", true + case 1886: + return "leoip", true + case 1887: + return "filex-lport", true + case 1888: + return "ncconfig", true + case 1889: + return "unify-adapter", true + case 1890: + return "wilkenlistener", true + case 1891: + return "childkey-notif", true + case 1892: + return "childkey-ctrl", true + case 1893: + return "elad", true + case 1894: + return "o2server-port", true + case 1896: + return "b-novative-ls", true + case 1897: + return "metaagent", true + case 1898: + return "cymtec-port", true + case 1899: + return "mc2studios", true + case 1900: + return "ssdp", true + case 1901: + return "fjicl-tep-a", true + case 1902: + return "fjicl-tep-b", true + case 1903: + return "linkname", true + case 1904: + return "fjicl-tep-c", true + case 1905: + return "sugp", true + case 1906: + return "tpmd", true + case 1907: + return "intrastar", true + case 1908: + return "dawn", true + case 1909: + return "global-wlink", true + case 1910: + return "ultrabac", true + case 1911: + return "mtp", true + case 1912: + return "rhp-iibp", true + case 1913: + return "armadp", true + case 1914: + return "elm-momentum", true + case 1915: + return "facelink", true + case 1916: + return "persona", true + case 1917: + return "noagent", true + case 1918: + return "can-nds", true + case 1919: + return "can-dch", true + case 1920: + return "can-ferret", true + case 1921: + return "noadmin", true + case 1922: + return "tapestry", true + case 1923: + return "spice", true + case 1924: + return "xiip", true + case 1925: + return "discovery-port", true + case 1926: + return "egs", true + case 1927: + return "videte-cipc", true + case 1928: + return "emsd-port", true + case 1929: + return "bandwiz-system", true + case 1930: + return "driveappserver", true + case 1931: + return "amdsched", true + case 1932: + return "ctt-broker", true + case 1933: + return "xmapi", true + case 1934: + return "xaapi", true + case 1935: + return "macromedia-fcs", true + case 1936: + return "jetcmeserver", true + case 1937: + return "jwserver", true + case 1938: + return "jwclient", true + case 1939: + return "jvserver", true + case 1940: + return "jvclient", true + case 1941: + return "dic-aida", true + case 1942: + return "res", true + case 1943: + return "beeyond-media", true + case 1944: + return "close-combat", true + case 1945: + return "dialogic-elmd", true + case 1946: + return "tekpls", true + case 1947: + return "sentinelsrm", true + case 1948: + return "eye2eye", true + case 1949: + return "ismaeasdaqlive", true + case 1950: + return "ismaeasdaqtest", true + case 1951: + return "bcs-lmserver", true + case 1952: + return "mpnjsc", true + case 1953: + return "rapidbase", true + case 1954: + return "abr-api", true + case 1955: + return "abr-secure", true + case 1956: + return "vrtl-vmf-ds", true + case 1957: + return "unix-status", true + case 1958: + return "dxadmind", true + case 1959: + return "simp-all", true + case 1960: + return "nasmanager", true + case 1961: + return "bts-appserver", true + case 1962: + return "biap-mp", true + case 1963: + return "webmachine", true + case 1964: + return "solid-e-engine", true + case 1965: + return "tivoli-npm", true + case 1966: + return "slush", true + case 1967: + return "sns-quote", true + case 1968: + return "lipsinc", true + case 1969: + return "lipsinc1", true + case 1970: + return "netop-rc", true + case 1971: + return "netop-school", true + case 1972: + return "intersys-cache", true + case 1973: + return "dlsrap", true + case 1974: + return "drp", true + case 1975: + return "tcoflashagent", true + case 1976: + return "tcoregagent", true + case 1977: + return "tcoaddressbook", true + case 1978: + return "unisql", true + case 1979: + return "unisql-java", true + case 1980: + return "pearldoc-xact", true + case 1981: + return "p2pq", true + case 1982: + return "estamp", true + case 1983: + return "lhtp", true + case 1984: + return "bb", true + case 1985: + return "hsrp", true + case 1986: + return "licensedaemon", true + case 1987: + return "tr-rsrb-p1", true + case 1988: + return "tr-rsrb-p2", true + case 1989: + return "tr-rsrb-p3", true + case 1990: + return "stun-p1", true + case 1991: + return "stun-p2", true + case 1992: + return "stun-p3", true + case 1993: + return "snmp-tcp-port", true + case 1994: + return "stun-port", true + case 1995: + return "perf-port", true + case 1996: + return "tr-rsrb-port", true + case 1997: + return "gdp-port", true + case 1998: + return "x25-svc-port", true + case 1999: + return "tcp-id-port", true + case 2000: + return "cisco-sccp", true + case 2001: + return "wizard", true + case 2002: + return "globe", true + case 2003: + return "brutus", true + case 2004: + return "emce", true + case 2005: + return "oracle", true + case 2006: + return "raid-cd", true + case 2007: + return "raid-am", true + case 2008: + return "terminaldb", true + case 2009: + return "whosockami", true + case 2010: + return "pipe-server", true + case 2011: + return "servserv", true + case 2012: + return "raid-ac", true + case 2013: + return "raid-cd", true + case 2014: + return "raid-sf", true + case 2015: + return "raid-cs", true + case 2016: + return "bootserver", true + case 2017: + return "bootclient", true + case 2018: + return "rellpack", true + case 2019: + return "about", true + case 2020: + return "xinupageserver", true + case 2021: + return "xinuexpansion1", true + case 2022: + return "xinuexpansion2", true + case 2023: + return "xinuexpansion3", true + case 2024: + return "xinuexpansion4", true + case 2025: + return "xribs", true + case 2026: + return "scrabble", true + case 2027: + return "shadowserver", true + case 2028: + return "submitserver", true + case 2029: + return "hsrpv6", true + case 2030: + return "device2", true + case 2031: + return "mobrien-chat", true + case 2032: + return "blackboard", true + case 2033: + return "glogger", true + case 2034: + return "scoremgr", true + case 2035: + return "imsldoc", true + case 2036: + return "e-dpnet", true + case 2037: + return "applus", true + case 2038: + return "objectmanager", true + case 2039: + return "prizma", true + case 2040: + return "lam", true + case 2041: + return "interbase", true + case 2042: + return "isis", true + case 2043: + return "isis-bcast", true + case 2044: + return "rimsl", true + case 2045: + return "cdfunc", true + case 2046: + return "sdfunc", true + case 2047: + return "dls", true + case 2048: + return "dls-monitor", true + case 2049: + return "shilp", true + case 2050: + return "av-emb-config", true + case 2051: + return "epnsdp", true + case 2052: + return "clearvisn", true + case 2053: + return "lot105-ds-upd", true + case 2054: + return "weblogin", true + case 2055: + return "iop", true + case 2056: + return "omnisky", true + case 2057: + return "rich-cp", true + case 2058: + return "newwavesearch", true + case 2059: + return "bmc-messaging", true + case 2060: + return "teleniumdaemon", true + case 2061: + return "netmount", true + case 2062: + return "icg-swp", true + case 2063: + return "icg-bridge", true + case 2064: + return "icg-iprelay", true + case 2065: + return "dlsrpn", true + case 2066: + return "aura", true + case 2067: + return "dlswpn", true + case 2068: + return "avauthsrvprtcl", true + case 2069: + return "event-port", true + case 2070: + return "ah-esp-encap", true + case 2071: + return "acp-port", true + case 2072: + return "msync", true + case 2073: + return "gxs-data-port", true + case 2074: + return "vrtl-vmf-sa", true + case 2075: + return "newlixengine", true + case 2076: + return "newlixconfig", true + case 2077: + return "tsrmagt", true + case 2078: + return "tpcsrvr", true + case 2079: + return "idware-router", true + case 2080: + return "autodesk-nlm", true + case 2081: + return "kme-trap-port", true + case 2082: + return "infowave", true + case 2083: + return "radsec", true + case 2084: + return "sunclustergeo", true + case 2085: + return "ada-cip", true + case 2086: + return "gnunet", true + case 2087: + return "eli", true + case 2088: + return "ip-blf", true + case 2089: + return "sep", true + case 2090: + return "lrp", true + case 2091: + return "prp", true + case 2092: + return "descent3", true + case 2093: + return "nbx-cc", true + case 2094: + return "nbx-au", true + case 2095: + return "nbx-ser", true + case 2096: + return "nbx-dir", true + case 2097: + return "jetformpreview", true + case 2098: + return "dialog-port", true + case 2099: + return "h2250-annex-g", true + case 2100: + return "amiganetfs", true + case 2101: + return "rtcm-sc104", true + case 2102: + return "zephyr-srv", true + case 2103: + return "zephyr-clt", true + case 2104: + return "zephyr-hm", true + case 2105: + return "minipay", true + case 2106: + return "mzap", true + case 2107: + return "bintec-admin", true + case 2108: + return "comcam", true + case 2109: + return "ergolight", true + case 2110: + return "umsp", true + case 2111: + return "dsatp", true + case 2112: + return "idonix-metanet", true + case 2113: + return "hsl-storm", true + case 2114: + return "ariascribe", true + case 2115: + return "kdm", true + case 2116: + return "ccowcmr", true + case 2117: + return "mentaclient", true + case 2118: + return "mentaserver", true + case 2119: + return "gsigatekeeper", true + case 2120: + return "qencp", true + case 2121: + return "scientia-ssdb", true + case 2122: + return "caupc-remote", true + case 2123: + return "gtp-control", true + case 2124: + return "elatelink", true + case 2125: + return "lockstep", true + case 2126: + return "pktcable-cops", true + case 2127: + return "index-pc-wb", true + case 2128: + return "net-steward", true + case 2129: + return "cs-live", true + case 2130: + return "xds", true + case 2131: + return "avantageb2b", true + case 2132: + return "solera-epmap", true + case 2133: + return "zymed-zpp", true + case 2134: + return "avenue", true + case 2135: + return "gris", true + case 2136: + return "appworxsrv", true + case 2137: + return "connect", true + case 2138: + return "unbind-cluster", true + case 2139: + return "ias-auth", true + case 2140: + return "ias-reg", true + case 2141: + return "ias-admind", true + case 2142: + return "tdmoip", true + case 2143: + return "lv-jc", true + case 2144: + return "lv-ffx", true + case 2145: + return "lv-pici", true + case 2146: + return "lv-not", true + case 2147: + return "lv-auth", true + case 2148: + return "veritas-ucl", true + case 2149: + return "acptsys", true + case 2150: + return "dynamic3d", true + case 2151: + return "docent", true + case 2152: + return "gtp-user", true + case 2153: + return "ctlptc", true + case 2154: + return "stdptc", true + case 2155: + return "brdptc", true + case 2156: + return "trp", true + case 2157: + return "xnds", true + case 2158: + return "touchnetplus", true + case 2159: + return "gdbremote", true + case 2160: + return "apc-2160", true + case 2161: + return "apc-2161", true + case 2162: + return "navisphere", true + case 2163: + return "navisphere-sec", true + case 2164: + return "ddns-v3", true + case 2165: + return "x-bone-api", true + case 2166: + return "iwserver", true + case 2167: + return "raw-serial", true + case 2168: + return "easy-soft-mux", true + case 2169: + return "brain", true + case 2170: + return "eyetv", true + case 2171: + return "msfw-storage", true + case 2172: + return "msfw-s-storage", true + case 2173: + return "msfw-replica", true + case 2174: + return "msfw-array", true + case 2175: + return "airsync", true + case 2176: + return "rapi", true + case 2177: + return "qwave", true + case 2178: + return "bitspeer", true + case 2179: + return "vmrdp", true + case 2180: + return "mc-gt-srv", true + case 2181: + return "eforward", true + case 2182: + return "cgn-stat", true + case 2183: + return "cgn-config", true + case 2184: + return "nvd", true + case 2185: + return "onbase-dds", true + case 2186: + return "gtaua", true + case 2187: + return "ssmd", true + case 2190: + return "tivoconnect", true + case 2191: + return "tvbus", true + case 2192: + return "asdis", true + case 2193: + return "drwcs", true + case 2197: + return "mnp-exchange", true + case 2198: + return "onehome-remote", true + case 2199: + return "onehome-help", true + case 2201: + return "ats", true + case 2202: + return "imtc-map", true + case 2203: + return "b2-runtime", true + case 2204: + return "b2-license", true + case 2205: + return "jps", true + case 2206: + return "hpocbus", true + case 2207: + return "hpssd", true + case 2208: + return "hpiod", true + case 2209: + return "rimf-ps", true + case 2210: + return "noaaport", true + case 2211: + return "emwin", true + case 2212: + return "leecoposserver", true + case 2213: + return "kali", true + case 2214: + return "rpi", true + case 2215: + return "ipcore", true + case 2216: + return "vtu-comms", true + case 2217: + return "gotodevice", true + case 2218: + return "bounzza", true + case 2219: + return "netiq-ncap", true + case 2220: + return "netiq", true + case 2221: + return "ethernet-ip-s", true + case 2222: + return "EtherNet-IP-1", true + case 2223: + return "rockwell-csp2", true + case 2224: + return "efi-mg", true + case 2226: + return "di-drm", true + case 2227: + return "di-msg", true + case 2228: + return "ehome-ms", true + case 2229: + return "datalens", true + case 2230: + return "queueadm", true + case 2231: + return "wimaxasncp", true + case 2232: + return "ivs-video", true + case 2233: + return "infocrypt", true + case 2234: + return "directplay", true + case 2235: + return "sercomm-wlink", true + case 2236: + return "nani", true + case 2237: + return "optech-port1-lm", true + case 2238: + return "aviva-sna", true + case 2239: + return "imagequery", true + case 2240: + return "recipe", true + case 2241: + return "ivsd", true + case 2242: + return "foliocorp", true + case 2243: + return "magicom", true + case 2244: + return "nmsserver", true + case 2245: + return "hao", true + case 2246: + return "pc-mta-addrmap", true + case 2247: + return "antidotemgrsvr", true + case 2248: + return "ums", true + case 2249: + return "rfmp", true + case 2250: + return "remote-collab", true + case 2251: + return "dif-port", true + case 2252: + return "njenet-ssl", true + case 2253: + return "dtv-chan-req", true + case 2254: + return "seispoc", true + case 2255: + return "vrtp", true + case 2256: + return "pcc-mfp", true + case 2257: + return "simple-tx-rx", true + case 2258: + return "rcts", true + case 2259: + return "bid-serv", true + case 2260: + return "apc-2260", true + case 2261: + return "comotionmaster", true + case 2262: + return "comotionback", true + case 2263: + return "ecwcfg", true + case 2264: + return "apx500api-1", true + case 2265: + return "apx500api-2", true + case 2266: + return "mfserver", true + case 2267: + return "ontobroker", true + case 2268: + return "amt", true + case 2269: + return "mikey", true + case 2270: + return "starschool", true + case 2271: + return "mmcals", true + case 2272: + return "mmcal", true + case 2273: + return "mysql-im", true + case 2274: + return "pcttunnell", true + case 2275: + return "ibridge-data", true + case 2276: + return "ibridge-mgmt", true + case 2277: + return "bluectrlproxy", true + case 2278: + return "s3db", true + case 2279: + return "xmquery", true + case 2280: + return "lnvpoller", true + case 2281: + return "lnvconsole", true + case 2282: + return "lnvalarm", true + case 2283: + return "lnvstatus", true + case 2284: + return "lnvmaps", true + case 2285: + return "lnvmailmon", true + case 2286: + return "nas-metering", true + case 2287: + return "dna", true + case 2288: + return "netml", true + case 2289: + return "dict-lookup", true + case 2290: + return "sonus-logging", true + case 2291: + return "eapsp", true + case 2292: + return "mib-streaming", true + case 2293: + return "npdbgmngr", true + case 2294: + return "konshus-lm", true + case 2295: + return "advant-lm", true + case 2296: + return "theta-lm", true + case 2297: + return "d2k-datamover1", true + case 2298: + return "d2k-datamover2", true + case 2299: + return "pc-telecommute", true + case 2300: + return "cvmmon", true + case 2301: + return "cpq-wbem", true + case 2302: + return "binderysupport", true + case 2303: + return "proxy-gateway", true + case 2304: + return "attachmate-uts", true + case 2305: + return "mt-scaleserver", true + case 2306: + return "tappi-boxnet", true + case 2307: + return "pehelp", true + case 2308: + return "sdhelp", true + case 2309: + return "sdserver", true + case 2310: + return "sdclient", true + case 2311: + return "messageservice", true + case 2312: + return "wanscaler", true + case 2313: + return "iapp", true + case 2314: + return "cr-websystems", true + case 2315: + return "precise-sft", true + case 2316: + return "sent-lm", true + case 2317: + return "attachmate-g32", true + case 2318: + return "cadencecontrol", true + case 2319: + return "infolibria", true + case 2320: + return "siebel-ns", true + case 2321: + return "rdlap", true + case 2322: + return "ofsd", true + case 2323: + return "3d-nfsd", true + case 2324: + return "cosmocall", true + case 2325: + return "ansysli", true + case 2326: + return "idcp", true + case 2327: + return "xingcsm", true + case 2328: + return "netrix-sftm", true + case 2329: + return "nvd", true + case 2330: + return "tscchat", true + case 2331: + return "agentview", true + case 2332: + return "rcc-host", true + case 2333: + return "snapp", true + case 2334: + return "ace-client", true + case 2335: + return "ace-proxy", true + case 2336: + return "appleugcontrol", true + case 2337: + return "ideesrv", true + case 2338: + return "norton-lambert", true + case 2339: + return "3com-webview", true + case 2340: + return "wrs-registry", true + case 2341: + return "xiostatus", true + case 2342: + return "manage-exec", true + case 2343: + return "nati-logos", true + case 2344: + return "fcmsys", true + case 2345: + return "dbm", true + case 2346: + return "redstorm-join", true + case 2347: + return "redstorm-find", true + case 2348: + return "redstorm-info", true + case 2349: + return "redstorm-diag", true + case 2350: + return "psbserver", true + case 2351: + return "psrserver", true + case 2352: + return "pslserver", true + case 2353: + return "pspserver", true + case 2354: + return "psprserver", true + case 2355: + return "psdbserver", true + case 2356: + return "gxtelmd", true + case 2357: + return "unihub-server", true + case 2358: + return "futrix", true + case 2359: + return "flukeserver", true + case 2360: + return "nexstorindltd", true + case 2361: + return "tl1", true + case 2362: + return "digiman", true + case 2363: + return "mediacntrlnfsd", true + case 2364: + return "oi-2000", true + case 2365: + return "dbref", true + case 2366: + return "qip-login", true + case 2367: + return "service-ctrl", true + case 2368: + return "opentable", true + case 2369: + return "bif-p2p", true + case 2370: + return "l3-hbmon", true + case 2372: + return "lanmessenger", true + case 2378: + return "dali", true + case 2381: + return "compaq-https", true + case 2382: + return "ms-olap3", true + case 2383: + return "ms-olap4", true + case 2384: + return "sd-capacity", true + case 2385: + return "sd-data", true + case 2386: + return "virtualtape", true + case 2387: + return "vsamredirector", true + case 2388: + return "mynahautostart", true + case 2389: + return "ovsessionmgr", true + case 2390: + return "rsmtp", true + case 2391: + return "3com-net-mgmt", true + case 2392: + return "tacticalauth", true + case 2393: + return "ms-olap1", true + case 2394: + return "ms-olap2", true + case 2395: + return "lan900-remote", true + case 2396: + return "wusage", true + case 2397: + return "ncl", true + case 2398: + return "orbiter", true + case 2399: + return "fmpro-fdal", true + case 2400: + return "opequus-server", true + case 2401: + return "cvspserver", true + case 2402: + return "taskmaster2000", true + case 2403: + return "taskmaster2000", true + case 2404: + return "iec-104", true + case 2405: + return "trc-netpoll", true + case 2406: + return "jediserver", true + case 2407: + return "orion", true + case 2409: + return "sns-protocol", true + case 2410: + return "vrts-registry", true + case 2411: + return "netwave-ap-mgmt", true + case 2412: + return "cdn", true + case 2413: + return "orion-rmi-reg", true + case 2414: + return "beeyond", true + case 2415: + return "codima-rtp", true + case 2416: + return "rmtserver", true + case 2417: + return "composit-server", true + case 2418: + return "cas", true + case 2419: + return "attachmate-s2s", true + case 2420: + return "dslremote-mgmt", true + case 2421: + return "g-talk", true + case 2422: + return "crmsbits", true + case 2423: + return "rnrp", true + case 2424: + return "kofax-svr", true + case 2425: + return "fjitsuappmgr", true + case 2426: + return "vcmp", true + case 2427: + return "mgcp-gateway", true + case 2428: + return "ott", true + case 2429: + return "ft-role", true + case 2430: + return "venus", true + case 2431: + return "venus-se", true + case 2432: + return "codasrv", true + case 2433: + return "codasrv-se", true + case 2434: + return "pxc-epmap", true + case 2435: + return "optilogic", true + case 2436: + return "topx", true + case 2437: + return "unicontrol", true + case 2438: + return "msp", true + case 2439: + return "sybasedbsynch", true + case 2440: + return "spearway", true + case 2441: + return "pvsw-inet", true + case 2442: + return "netangel", true + case 2443: + return "powerclientcsf", true + case 2444: + return "btpp2sectrans", true + case 2445: + return "dtn1", true + case 2446: + return "bues-service", true + case 2447: + return "ovwdb", true + case 2448: + return "hpppssvr", true + case 2449: + return "ratl", true + case 2450: + return "netadmin", true + case 2451: + return "netchat", true + case 2452: + return "snifferclient", true + case 2453: + return "madge-ltd", true + case 2454: + return "indx-dds", true + case 2455: + return "wago-io-system", true + case 2456: + return "altav-remmgt", true + case 2457: + return "rapido-ip", true + case 2458: + return "griffin", true + case 2459: + return "xrpl", true + case 2460: + return "ms-theater", true + case 2461: + return "qadmifoper", true + case 2462: + return "qadmifevent", true + case 2463: + return "lsi-raid-mgmt", true + case 2464: + return "direcpc-si", true + case 2465: + return "lbm", true + case 2466: + return "lbf", true + case 2467: + return "high-criteria", true + case 2468: + return "qip-msgd", true + case 2469: + return "mti-tcs-comm", true + case 2470: + return "taskman-port", true + case 2471: + return "seaodbc", true + case 2472: + return "c3", true + case 2473: + return "aker-cdp", true + case 2474: + return "vitalanalysis", true + case 2475: + return "ace-server", true + case 2476: + return "ace-svr-prop", true + case 2477: + return "ssm-cvs", true + case 2478: + return "ssm-cssps", true + case 2479: + return "ssm-els", true + case 2480: + return "powerexchange", true + case 2481: + return "giop", true + case 2482: + return "giop-ssl", true + case 2483: + return "ttc", true + case 2484: + return "ttc-ssl", true + case 2485: + return "netobjects1", true + case 2486: + return "netobjects2", true + case 2487: + return "pns", true + case 2488: + return "moy-corp", true + case 2489: + return "tsilb", true + case 2490: + return "qip-qdhcp", true + case 2491: + return "conclave-cpp", true + case 2492: + return "groove", true + case 2493: + return "talarian-mqs", true + case 2494: + return "bmc-ar", true + case 2495: + return "fast-rem-serv", true + case 2496: + return "dirgis", true + case 2497: + return "quaddb", true + case 2498: + return "odn-castraq", true + case 2499: + return "unicontrol", true + case 2500: + return "rtsserv", true + case 2501: + return "rtsclient", true + case 2502: + return "kentrox-prot", true + case 2503: + return "nms-dpnss", true + case 2504: + return "wlbs", true + case 2505: + return "ppcontrol", true + case 2506: + return "jbroker", true + case 2507: + return "spock", true + case 2508: + return "jdatastore", true + case 2509: + return "fjmpss", true + case 2510: + return "fjappmgrbulk", true + case 2511: + return "metastorm", true + case 2512: + return "citrixima", true + case 2513: + return "citrixadmin", true + case 2514: + return "facsys-ntp", true + case 2515: + return "facsys-router", true + case 2516: + return "maincontrol", true + case 2517: + return "call-sig-trans", true + case 2518: + return "willy", true + case 2519: + return "globmsgsvc", true + case 2520: + return "pvsw", true + case 2521: + return "adaptecmgr", true + case 2522: + return "windb", true + case 2523: + return "qke-llc-v3", true + case 2524: + return "optiwave-lm", true + case 2525: + return "ms-v-worlds", true + case 2526: + return "ema-sent-lm", true + case 2527: + return "iqserver", true + case 2528: + return "ncr-ccl", true + case 2529: + return "utsftp", true + case 2530: + return "vrcommerce", true + case 2531: + return "ito-e-gui", true + case 2532: + return "ovtopmd", true + case 2533: + return "snifferserver", true + case 2534: + return "combox-web-acc", true + case 2535: + return "madcap", true + case 2536: + return "btpp2audctr1", true + case 2537: + return "upgrade", true + case 2538: + return "vnwk-prapi", true + case 2539: + return "vsiadmin", true + case 2540: + return "lonworks", true + case 2541: + return "lonworks2", true + case 2542: + return "udrawgraph", true + case 2543: + return "reftek", true + case 2544: + return "novell-zen", true + case 2545: + return "sis-emt", true + case 2546: + return "vytalvaultbrtp", true + case 2547: + return "vytalvaultvsmp", true + case 2548: + return "vytalvaultpipe", true + case 2549: + return "ipass", true + case 2550: + return "ads", true + case 2551: + return "isg-uda-server", true + case 2552: + return "call-logging", true + case 2553: + return "efidiningport", true + case 2554: + return "vcnet-link-v10", true + case 2555: + return "compaq-wcp", true + case 2556: + return "nicetec-nmsvc", true + case 2557: + return "nicetec-mgmt", true + case 2558: + return "pclemultimedia", true + case 2559: + return "lstp", true + case 2560: + return "labrat", true + case 2561: + return "mosaixcc", true + case 2562: + return "delibo", true + case 2563: + return "cti-redwood", true + case 2564: + return "hp-3000-telnet", true + case 2565: + return "coord-svr", true + case 2566: + return "pcs-pcw", true + case 2567: + return "clp", true + case 2568: + return "spamtrap", true + case 2569: + return "sonuscallsig", true + case 2570: + return "hs-port", true + case 2571: + return "cecsvc", true + case 2572: + return "ibp", true + case 2573: + return "trustestablish", true + case 2574: + return "blockade-bpsp", true + case 2575: + return "hl7", true + case 2576: + return "tclprodebugger", true + case 2577: + return "scipticslsrvr", true + case 2578: + return "rvs-isdn-dcp", true + case 2579: + return "mpfoncl", true + case 2580: + return "tributary", true + case 2581: + return "argis-te", true + case 2582: + return "argis-ds", true + case 2583: + return "mon", true + case 2584: + return "cyaserv", true + case 2585: + return "netx-server", true + case 2586: + return "netx-agent", true + case 2587: + return "masc", true + case 2588: + return "privilege", true + case 2589: + return "quartus-tcl", true + case 2590: + return "idotdist", true + case 2591: + return "maytagshuffle", true + case 2592: + return "netrek", true + case 2593: + return "mns-mail", true + case 2594: + return "dts", true + case 2595: + return "worldfusion1", true + case 2596: + return "worldfusion2", true + case 2597: + return "homesteadglory", true + case 2598: + return "citriximaclient", true + case 2599: + return "snapd", true + case 2600: + return "hpstgmgr", true + case 2601: + return "discp-client", true + case 2602: + return "discp-server", true + case 2603: + return "servicemeter", true + case 2604: + return "nsc-ccs", true + case 2605: + return "nsc-posa", true + case 2606: + return "netmon", true + case 2607: + return "connection", true + case 2608: + return "wag-service", true + case 2609: + return "system-monitor", true + case 2610: + return "versa-tek", true + case 2611: + return "lionhead", true + case 2612: + return "qpasa-agent", true + case 2613: + return "smntubootstrap", true + case 2614: + return "neveroffline", true + case 2615: + return "firepower", true + case 2616: + return "appswitch-emp", true + case 2617: + return "cmadmin", true + case 2618: + return "priority-e-com", true + case 2619: + return "bruce", true + case 2620: + return "lpsrecommender", true + case 2621: + return "miles-apart", true + case 2622: + return "metricadbc", true + case 2623: + return "lmdp", true + case 2624: + return "aria", true + case 2625: + return "blwnkl-port", true + case 2626: + return "gbjd816", true + case 2627: + return "moshebeeri", true + case 2628: + return "dict", true + case 2629: + return "sitaraserver", true + case 2630: + return "sitaramgmt", true + case 2631: + return "sitaradir", true + case 2632: + return "irdg-post", true + case 2633: + return "interintelli", true + case 2634: + return "pk-electronics", true + case 2635: + return "backburner", true + case 2636: + return "solve", true + case 2637: + return "imdocsvc", true + case 2638: + return "sybaseanywhere", true + case 2639: + return "aminet", true + case 2640: + return "ami-control", true + case 2641: + return "hdl-srv", true + case 2642: + return "tragic", true + case 2643: + return "gte-samp", true + case 2644: + return "travsoft-ipx-t", true + case 2645: + return "novell-ipx-cmd", true + case 2646: + return "and-lm", true + case 2647: + return "syncserver", true + case 2648: + return "upsnotifyprot", true + case 2649: + return "vpsipport", true + case 2650: + return "eristwoguns", true + case 2651: + return "ebinsite", true + case 2652: + return "interpathpanel", true + case 2653: + return "sonus", true + case 2654: + return "corel-vncadmin", true + case 2655: + return "unglue", true + case 2656: + return "kana", true + case 2657: + return "sns-dispatcher", true + case 2658: + return "sns-admin", true + case 2659: + return "sns-query", true + case 2660: + return "gcmonitor", true + case 2661: + return "olhost", true + case 2662: + return "bintec-capi", true + case 2663: + return "bintec-tapi", true + case 2664: + return "patrol-mq-gm", true + case 2665: + return "patrol-mq-nm", true + case 2666: + return "extensis", true + case 2667: + return "alarm-clock-s", true + case 2668: + return "alarm-clock-c", true + case 2669: + return "toad", true + case 2670: + return "tve-announce", true + case 2671: + return "newlixreg", true + case 2672: + return "nhserver", true + case 2673: + return "firstcall42", true + case 2674: + return "ewnn", true + case 2675: + return "ttc-etap", true + case 2676: + return "simslink", true + case 2677: + return "gadgetgate1way", true + case 2678: + return "gadgetgate2way", true + case 2679: + return "syncserverssl", true + case 2680: + return "pxc-sapxom", true + case 2681: + return "mpnjsomb", true + case 2683: + return "ncdloadbalance", true + case 2684: + return "mpnjsosv", true + case 2685: + return "mpnjsocl", true + case 2686: + return "mpnjsomg", true + case 2687: + return "pq-lic-mgmt", true + case 2688: + return "md-cg-http", true + case 2689: + return "fastlynx", true + case 2690: + return "hp-nnm-data", true + case 2691: + return "itinternet", true + case 2692: + return "admins-lms", true + case 2694: + return "pwrsevent", true + case 2695: + return "vspread", true + case 2696: + return "unifyadmin", true + case 2697: + return "oce-snmp-trap", true + case 2698: + return "mck-ivpip", true + case 2699: + return "csoft-plusclnt", true + case 2700: + return "tqdata", true + case 2701: + return "sms-rcinfo", true + case 2702: + return "sms-xfer", true + case 2703: + return "sms-chat", true + case 2704: + return "sms-remctrl", true + case 2705: + return "sds-admin", true + case 2706: + return "ncdmirroring", true + case 2707: + return "emcsymapiport", true + case 2708: + return "banyan-net", true + case 2709: + return "supermon", true + case 2710: + return "sso-service", true + case 2711: + return "sso-control", true + case 2712: + return "aocp", true + case 2713: + return "raventbs", true + case 2714: + return "raventdm", true + case 2715: + return "hpstgmgr2", true + case 2716: + return "inova-ip-disco", true + case 2717: + return "pn-requester", true + case 2718: + return "pn-requester2", true + case 2719: + return "scan-change", true + case 2720: + return "wkars", true + case 2721: + return "smart-diagnose", true + case 2722: + return "proactivesrvr", true + case 2723: + return "watchdog-nt", true + case 2724: + return "qotps", true + case 2725: + return "msolap-ptp2", true + case 2726: + return "tams", true + case 2727: + return "mgcp-callagent", true + case 2728: + return "sqdr", true + case 2729: + return "tcim-control", true + case 2730: + return "nec-raidplus", true + case 2731: + return "fyre-messanger", true + case 2732: + return "g5m", true + case 2733: + return "signet-ctf", true + case 2734: + return "ccs-software", true + case 2735: + return "netiq-mc", true + case 2736: + return "radwiz-nms-srv", true + case 2737: + return "srp-feedback", true + case 2738: + return "ndl-tcp-ois-gw", true + case 2739: + return "tn-timing", true + case 2740: + return "alarm", true + case 2741: + return "tsb", true + case 2742: + return "tsb2", true + case 2743: + return "murx", true + case 2744: + return "honyaku", true + case 2745: + return "urbisnet", true + case 2746: + return "cpudpencap", true + case 2747: + return "fjippol-swrly", true + case 2748: + return "fjippol-polsvr", true + case 2749: + return "fjippol-cnsl", true + case 2750: + return "fjippol-port1", true + case 2751: + return "fjippol-port2", true + case 2752: + return "rsisysaccess", true + case 2753: + return "de-spot", true + case 2754: + return "apollo-cc", true + case 2755: + return "expresspay", true + case 2756: + return "simplement-tie", true + case 2757: + return "cnrp", true + case 2758: + return "apollo-status", true + case 2759: + return "apollo-gms", true + case 2760: + return "sabams", true + case 2761: + return "dicom-iscl", true + case 2762: + return "dicom-tls", true + case 2763: + return "desktop-dna", true + case 2764: + return "data-insurance", true + case 2765: + return "qip-audup", true + case 2766: + return "compaq-scp", true + case 2767: + return "uadtc", true + case 2768: + return "uacs", true + case 2769: + return "exce", true + case 2770: + return "veronica", true + case 2771: + return "vergencecm", true + case 2772: + return "auris", true + case 2773: + return "rbakcup1", true + case 2774: + return "rbakcup2", true + case 2775: + return "smpp", true + case 2776: + return "ridgeway1", true + case 2777: + return "ridgeway2", true + case 2778: + return "gwen-sonya", true + case 2779: + return "lbc-sync", true + case 2780: + return "lbc-control", true + case 2781: + return "whosells", true + case 2782: + return "everydayrc", true + case 2783: + return "aises", true + case 2784: + return "www-dev", true + case 2785: + return "aic-np", true + case 2786: + return "aic-oncrpc", true + case 2787: + return "piccolo", true + case 2788: + return "fryeserv", true + case 2789: + return "media-agent", true + case 2790: + return "plgproxy", true + case 2791: + return "mtport-regist", true + case 2792: + return "f5-globalsite", true + case 2793: + return "initlsmsad", true + case 2795: + return "livestats", true + case 2796: + return "ac-tech", true + case 2797: + return "esp-encap", true + case 2798: + return "tmesis-upshot", true + case 2799: + return "icon-discover", true + case 2800: + return "acc-raid", true + case 2801: + return "igcp", true + case 2802: + return "veritas-udp1", true + case 2803: + return "btprjctrl", true + case 2804: + return "dvr-esm", true + case 2805: + return "wta-wsp-s", true + case 2806: + return "cspuni", true + case 2807: + return "cspmulti", true + case 2808: + return "j-lan-p", true + case 2809: + return "corbaloc", true + case 2810: + return "netsteward", true + case 2811: + return "gsiftp", true + case 2812: + return "atmtcp", true + case 2813: + return "llm-pass", true + case 2814: + return "llm-csv", true + case 2815: + return "lbc-measure", true + case 2816: + return "lbc-watchdog", true + case 2817: + return "nmsigport", true + case 2818: + return "rmlnk", true + case 2819: + return "fc-faultnotify", true + case 2820: + return "univision", true + case 2821: + return "vrts-at-port", true + case 2822: + return "ka0wuc", true + case 2823: + return "cqg-netlan", true + case 2824: + return "cqg-netlan-1", true + case 2826: + return "slc-systemlog", true + case 2827: + return "slc-ctrlrloops", true + case 2828: + return "itm-lm", true + case 2829: + return "silkp1", true + case 2830: + return "silkp2", true + case 2831: + return "silkp3", true + case 2832: + return "silkp4", true + case 2833: + return "glishd", true + case 2834: + return "evtp", true + case 2835: + return "evtp-data", true + case 2836: + return "catalyst", true + case 2837: + return "repliweb", true + case 2838: + return "starbot", true + case 2839: + return "nmsigport", true + case 2840: + return "l3-exprt", true + case 2841: + return "l3-ranger", true + case 2842: + return "l3-hawk", true + case 2843: + return "pdnet", true + case 2844: + return "bpcp-poll", true + case 2845: + return "bpcp-trap", true + case 2846: + return "aimpp-hello", true + case 2847: + return "aimpp-port-req", true + case 2848: + return "amt-blc-port", true + case 2849: + return "fxp", true + case 2850: + return "metaconsole", true + case 2851: + return "webemshttp", true + case 2852: + return "bears-01", true + case 2853: + return "ispipes", true + case 2854: + return "infomover", true + case 2856: + return "cesdinv", true + case 2857: + return "simctlp", true + case 2858: + return "ecnp", true + case 2859: + return "activememory", true + case 2860: + return "dialpad-voice1", true + case 2861: + return "dialpad-voice2", true + case 2862: + return "ttg-protocol", true + case 2863: + return "sonardata", true + case 2864: + return "astronova-main", true + case 2865: + return "pit-vpn", true + case 2866: + return "iwlistener", true + case 2867: + return "esps-portal", true + case 2868: + return "npep-messaging", true + case 2869: + return "icslap", true + case 2870: + return "daishi", true + case 2871: + return "msi-selectplay", true + case 2872: + return "radix", true + case 2873: + return "psrt", true + case 2874: + return "dxmessagebase1", true + case 2875: + return "dxmessagebase2", true + case 2876: + return "sps-tunnel", true + case 2877: + return "bluelance", true + case 2878: + return "aap", true + case 2879: + return "ucentric-ds", true + case 2880: + return "synapse", true + case 2881: + return "ndsp", true + case 2882: + return "ndtp", true + case 2883: + return "ndnp", true + case 2884: + return "flashmsg", true + case 2885: + return "topflow", true + case 2886: + return "responselogic", true + case 2887: + return "aironetddp", true + case 2888: + return "spcsdlobby", true + case 2889: + return "rsom", true + case 2890: + return "cspclmulti", true + case 2891: + return "cinegrfx-elmd", true + case 2892: + return "snifferdata", true + case 2893: + return "vseconnector", true + case 2894: + return "abacus-remote", true + case 2895: + return "natuslink", true + case 2896: + return "ecovisiong6-1", true + case 2897: + return "citrix-rtmp", true + case 2898: + return "appliance-cfg", true + case 2899: + return "powergemplus", true + case 2900: + return "quicksuite", true + case 2901: + return "allstorcns", true + case 2902: + return "netaspi", true + case 2903: + return "suitcase", true + case 2904: + return "m2ua", true + case 2906: + return "caller9", true + case 2907: + return "webmethods-b2b", true + case 2908: + return "mao", true + case 2909: + return "funk-dialout", true + case 2910: + return "tdaccess", true + case 2911: + return "blockade", true + case 2912: + return "epicon", true + case 2913: + return "boosterware", true + case 2914: + return "gamelobby", true + case 2915: + return "tksocket", true + case 2916: + return "elvin-server", true + case 2917: + return "elvin-client", true + case 2918: + return "kastenchasepad", true + case 2919: + return "roboer", true + case 2920: + return "roboeda", true + case 2921: + return "cesdcdman", true + case 2922: + return "cesdcdtrn", true + case 2923: + return "wta-wsp-wtp-s", true + case 2924: + return "precise-vip", true + case 2926: + return "mobile-file-dl", true + case 2927: + return "unimobilectrl", true + case 2928: + return "redstone-cpss", true + case 2929: + return "amx-webadmin", true + case 2930: + return "amx-weblinx", true + case 2931: + return "circle-x", true + case 2932: + return "incp", true + case 2933: + return "4-tieropmgw", true + case 2934: + return "4-tieropmcli", true + case 2935: + return "qtp", true + case 2936: + return "otpatch", true + case 2937: + return "pnaconsult-lm", true + case 2938: + return "sm-pas-1", true + case 2939: + return "sm-pas-2", true + case 2940: + return "sm-pas-3", true + case 2941: + return "sm-pas-4", true + case 2942: + return "sm-pas-5", true + case 2943: + return "ttnrepository", true + case 2944: + return "megaco-h248", true + case 2945: + return "h248-binary", true + case 2946: + return "fjsvmpor", true + case 2947: + return "gpsd", true + case 2948: + return "wap-push", true + case 2949: + return "wap-pushsecure", true + case 2950: + return "esip", true + case 2951: + return "ottp", true + case 2952: + return "mpfwsas", true + case 2953: + return "ovalarmsrv", true + case 2954: + return "ovalarmsrv-cmd", true + case 2955: + return "csnotify", true + case 2956: + return "ovrimosdbman", true + case 2957: + return "jmact5", true + case 2958: + return "jmact6", true + case 2959: + return "rmopagt", true + case 2960: + return "dfoxserver", true + case 2961: + return "boldsoft-lm", true + case 2962: + return "iph-policy-cli", true + case 2963: + return "iph-policy-adm", true + case 2964: + return "bullant-srap", true + case 2965: + return "bullant-rap", true + case 2966: + return "idp-infotrieve", true + case 2967: + return "ssc-agent", true + case 2968: + return "enpp", true + case 2969: + return "essp", true + case 2970: + return "index-net", true + case 2971: + return "netclip", true + case 2972: + return "pmsm-webrctl", true + case 2973: + return "svnetworks", true + case 2974: + return "signal", true + case 2975: + return "fjmpcm", true + case 2976: + return "cns-srv-port", true + case 2977: + return "ttc-etap-ns", true + case 2978: + return "ttc-etap-ds", true + case 2979: + return "h263-video", true + case 2980: + return "wimd", true + case 2981: + return "mylxamport", true + case 2982: + return "iwb-whiteboard", true + case 2983: + return "netplan", true + case 2984: + return "hpidsadmin", true + case 2985: + return "hpidsagent", true + case 2986: + return "stonefalls", true + case 2987: + return "identify", true + case 2988: + return "hippad", true + case 2989: + return "zarkov", true + case 2990: + return "boscap", true + case 2991: + return "wkstn-mon", true + case 2992: + return "avenyo", true + case 2993: + return "veritas-vis1", true + case 2994: + return "veritas-vis2", true + case 2995: + return "idrs", true + case 2996: + return "vsixml", true + case 2997: + return "rebol", true + case 2998: + return "realsecure", true + case 2999: + return "remoteware-un", true + case 3000: + return "hbci", true + case 3002: + return "exlm-agent", true + case 3003: + return "cgms", true + case 3004: + return "csoftragent", true + case 3005: + return "geniuslm", true + case 3006: + return "ii-admin", true + case 3007: + return "lotusmtap", true + case 3008: + return "midnight-tech", true + case 3009: + return "pxc-ntfy", true + case 3010: + return "ping-pong", true + case 3011: + return "trusted-web", true + case 3012: + return "twsdss", true + case 3013: + return "gilatskysurfer", true + case 3014: + return "broker-service", true + case 3015: + return "nati-dstp", true + case 3016: + return "notify-srvr", true + case 3017: + return "event-listener", true + case 3018: + return "srvc-registry", true + case 3019: + return "resource-mgr", true + case 3020: + return "cifs", true + case 3021: + return "agriserver", true + case 3022: + return "csregagent", true + case 3023: + return "magicnotes", true + case 3024: + return "nds-sso", true + case 3025: + return "arepa-raft", true + case 3026: + return "agri-gateway", true + case 3027: + return "LiebDevMgmt-C", true + case 3028: + return "LiebDevMgmt-DM", true + case 3029: + return "LiebDevMgmt-A", true + case 3030: + return "arepa-cas", true + case 3031: + return "eppc", true + case 3032: + return "redwood-chat", true + case 3033: + return "pdb", true + case 3034: + return "osmosis-aeea", true + case 3035: + return "fjsv-gssagt", true + case 3036: + return "hagel-dump", true + case 3037: + return "hp-san-mgmt", true + case 3038: + return "santak-ups", true + case 3039: + return "cogitate", true + case 3040: + return "tomato-springs", true + case 3041: + return "di-traceware", true + case 3042: + return "journee", true + case 3043: + return "brp", true + case 3044: + return "epp", true + case 3045: + return "responsenet", true + case 3046: + return "di-ase", true + case 3047: + return "hlserver", true + case 3048: + return "pctrader", true + case 3049: + return "nsws", true + case 3050: + return "gds-db", true + case 3051: + return "galaxy-server", true + case 3052: + return "apc-3052", true + case 3053: + return "dsom-server", true + case 3054: + return "amt-cnf-prot", true + case 3055: + return "policyserver", true + case 3056: + return "cdl-server", true + case 3057: + return "goahead-fldup", true + case 3058: + return "videobeans", true + case 3059: + return "qsoft", true + case 3060: + return "interserver", true + case 3061: + return "cautcpd", true + case 3062: + return "ncacn-ip-tcp", true + case 3063: + return "ncadg-ip-udp", true + case 3064: + return "rprt", true + case 3065: + return "slinterbase", true + case 3066: + return "netattachsdmp", true + case 3067: + return "fjhpjp", true + case 3068: + return "ls3bcast", true + case 3069: + return "ls3", true + case 3070: + return "mgxswitch", true + case 3072: + return "csd-monitor", true + case 3073: + return "vcrp", true + case 3074: + return "xbox", true + case 3075: + return "orbix-locator", true + case 3076: + return "orbix-config", true + case 3077: + return "orbix-loc-ssl", true + case 3078: + return "orbix-cfg-ssl", true + case 3079: + return "lv-frontpanel", true + case 3080: + return "stm-pproc", true + case 3081: + return "tl1-lv", true + case 3082: + return "tl1-raw", true + case 3083: + return "tl1-telnet", true + case 3084: + return "itm-mccs", true + case 3085: + return "pcihreq", true + case 3086: + return "jdl-dbkitchen", true + case 3087: + return "asoki-sma", true + case 3088: + return "xdtp", true + case 3089: + return "ptk-alink", true + case 3090: + return "stss", true + case 3091: + return "1ci-smcs", true + case 3093: + return "rapidmq-center", true + case 3094: + return "rapidmq-reg", true + case 3095: + return "panasas", true + case 3096: + return "ndl-aps", true + case 3098: + return "umm-port", true + case 3099: + return "chmd", true + case 3100: + return "opcon-xps", true + case 3101: + return "hp-pxpib", true + case 3102: + return "slslavemon", true + case 3103: + return "autocuesmi", true + case 3104: + return "autocuetime", true + case 3105: + return "cardbox", true + case 3106: + return "cardbox-http", true + case 3107: + return "business", true + case 3108: + return "geolocate", true + case 3109: + return "personnel", true + case 3110: + return "sim-control", true + case 3111: + return "wsynch", true + case 3112: + return "ksysguard", true + case 3113: + return "cs-auth-svr", true + case 3114: + return "ccmad", true + case 3115: + return "mctet-master", true + case 3116: + return "mctet-gateway", true + case 3117: + return "mctet-jserv", true + case 3118: + return "pkagent", true + case 3119: + return "d2000kernel", true + case 3120: + return "d2000webserver", true + case 3122: + return "vtr-emulator", true + case 3123: + return "edix", true + case 3124: + return "beacon-port", true + case 3125: + return "a13-an", true + case 3127: + return "ctx-bridge", true + case 3128: + return "ndl-aas", true + case 3129: + return "netport-id", true + case 3130: + return "icpv2", true + case 3131: + return "netbookmark", true + case 3132: + return "ms-rule-engine", true + case 3133: + return "prism-deploy", true + case 3134: + return "ecp", true + case 3135: + return "peerbook-port", true + case 3136: + return "grubd", true + case 3137: + return "rtnt-1", true + case 3138: + return "rtnt-2", true + case 3139: + return "incognitorv", true + case 3140: + return "ariliamulti", true + case 3141: + return "vmodem", true + case 3142: + return "rdc-wh-eos", true + case 3143: + return "seaview", true + case 3144: + return "tarantella", true + case 3145: + return "csi-lfap", true + case 3146: + return "bears-02", true + case 3147: + return "rfio", true + case 3148: + return "nm-game-admin", true + case 3149: + return "nm-game-server", true + case 3150: + return "nm-asses-admin", true + case 3151: + return "nm-assessor", true + case 3152: + return "feitianrockey", true + case 3153: + return "s8-client-port", true + case 3154: + return "ccmrmi", true + case 3155: + return "jpegmpeg", true + case 3156: + return "indura", true + case 3157: + return "e3consultants", true + case 3158: + return "stvp", true + case 3159: + return "navegaweb-port", true + case 3160: + return "tip-app-server", true + case 3161: + return "doc1lm", true + case 3162: + return "sflm", true + case 3163: + return "res-sap", true + case 3164: + return "imprs", true + case 3165: + return "newgenpay", true + case 3166: + return "sossecollector", true + case 3167: + return "nowcontact", true + case 3168: + return "poweronnud", true + case 3169: + return "serverview-as", true + case 3170: + return "serverview-asn", true + case 3171: + return "serverview-gf", true + case 3172: + return "serverview-rm", true + case 3173: + return "serverview-icc", true + case 3174: + return "armi-server", true + case 3175: + return "t1-e1-over-ip", true + case 3176: + return "ars-master", true + case 3177: + return "phonex-port", true + case 3178: + return "radclientport", true + case 3179: + return "h2gf-w-2m", true + case 3180: + return "mc-brk-srv", true + case 3181: + return "bmcpatrolagent", true + case 3182: + return "bmcpatrolrnvu", true + case 3183: + return "cops-tls", true + case 3184: + return "apogeex-port", true + case 3185: + return "smpppd", true + case 3186: + return "iiw-port", true + case 3187: + return "odi-port", true + case 3188: + return "brcm-comm-port", true + case 3189: + return "pcle-infex", true + case 3190: + return "csvr-proxy", true + case 3191: + return "csvr-sslproxy", true + case 3192: + return "firemonrcc", true + case 3193: + return "spandataport", true + case 3194: + return "magbind", true + case 3195: + return "ncu-1", true + case 3196: + return "ncu-2", true + case 3197: + return "embrace-dp-s", true + case 3198: + return "embrace-dp-c", true + case 3199: + return "dmod-workspace", true + case 3200: + return "tick-port", true + case 3201: + return "cpq-tasksmart", true + case 3202: + return "intraintra", true + case 3203: + return "netwatcher-mon", true + case 3204: + return "netwatcher-db", true + case 3205: + return "isns", true + case 3206: + return "ironmail", true + case 3207: + return "vx-auth-port", true + case 3208: + return "pfu-prcallback", true + case 3209: + return "netwkpathengine", true + case 3210: + return "flamenco-proxy", true + case 3211: + return "avsecuremgmt", true + case 3212: + return "surveyinst", true + case 3213: + return "neon24x7", true + case 3214: + return "jmq-daemon-1", true + case 3215: + return "jmq-daemon-2", true + case 3216: + return "ferrari-foam", true + case 3217: + return "unite", true + case 3218: + return "smartpackets", true + case 3219: + return "wms-messenger", true + case 3220: + return "xnm-ssl", true + case 3221: + return "xnm-clear-text", true + case 3222: + return "glbp", true + case 3223: + return "digivote", true + case 3224: + return "aes-discovery", true + case 3225: + return "fcip-port", true + case 3226: + return "isi-irp", true + case 3227: + return "dwnmshttp", true + case 3228: + return "dwmsgserver", true + case 3229: + return "global-cd-port", true + case 3230: + return "sftdst-port", true + case 3231: + return "vidigo", true + case 3232: + return "mdtp", true + case 3233: + return "whisker", true + case 3234: + return "alchemy", true + case 3235: + return "mdap-port", true + case 3236: + return "apparenet-ts", true + case 3237: + return "apparenet-tps", true + case 3238: + return "apparenet-as", true + case 3239: + return "apparenet-ui", true + case 3240: + return "triomotion", true + case 3241: + return "sysorb", true + case 3242: + return "sdp-id-port", true + case 3243: + return "timelot", true + case 3244: + return "onesaf", true + case 3245: + return "vieo-fe", true + case 3246: + return "dvt-system", true + case 3247: + return "dvt-data", true + case 3248: + return "procos-lm", true + case 3249: + return "ssp", true + case 3250: + return "hicp", true + case 3251: + return "sysscanner", true + case 3252: + return "dhe", true + case 3253: + return "pda-data", true + case 3254: + return "pda-sys", true + case 3255: + return "semaphore", true + case 3256: + return "cpqrpm-agent", true + case 3257: + return "cpqrpm-server", true + case 3258: + return "ivecon-port", true + case 3259: + return "epncdp2", true + case 3260: + return "iscsi-target", true + case 3261: + return "winshadow", true + case 3262: + return "necp", true + case 3263: + return "ecolor-imager", true + case 3264: + return "ccmail", true + case 3265: + return "altav-tunnel", true + case 3266: + return "ns-cfg-server", true + case 3267: + return "ibm-dial-out", true + case 3268: + return "msft-gc", true + case 3269: + return "msft-gc-ssl", true + case 3270: + return "verismart", true + case 3271: + return "csoft-prev", true + case 3272: + return "user-manager", true + case 3273: + return "sxmp", true + case 3274: + return "ordinox-server", true + case 3275: + return "samd", true + case 3276: + return "maxim-asics", true + case 3277: + return "awg-proxy", true + case 3278: + return "lkcmserver", true + case 3279: + return "admind", true + case 3280: + return "vs-server", true + case 3281: + return "sysopt", true + case 3282: + return "datusorb", true + case 3283: + return "Apple Remote Desktop (Net Assistant)", true + case 3284: + return "4talk", true + case 3285: + return "plato", true + case 3286: + return "e-net", true + case 3287: + return "directvdata", true + case 3288: + return "cops", true + case 3289: + return "enpc", true + case 3290: + return "caps-lm", true + case 3291: + return "sah-lm", true + case 3292: + return "cart-o-rama", true + case 3293: + return "fg-fps", true + case 3294: + return "fg-gip", true + case 3295: + return "dyniplookup", true + case 3296: + return "rib-slm", true + case 3297: + return "cytel-lm", true + case 3298: + return "deskview", true + case 3299: + return "pdrncs", true + case 3301: + return "tarantool", true + case 3302: + return "mcs-fastmail", true + case 3303: + return "opsession-clnt", true + case 3304: + return "opsession-srvr", true + case 3305: + return "odette-ftp", true + case 3306: + return "mysql", true + case 3307: + return "opsession-prxy", true + case 3308: + return "tns-server", true + case 3309: + return "tns-adv", true + case 3310: + return "dyna-access", true + case 3311: + return "mcns-tel-ret", true + case 3312: + return "appman-server", true + case 3313: + return "uorb", true + case 3314: + return "uohost", true + case 3315: + return "cdid", true + case 3316: + return "aicc-cmi", true + case 3317: + return "vsaiport", true + case 3318: + return "ssrip", true + case 3319: + return "sdt-lmd", true + case 3320: + return "officelink2000", true + case 3321: + return "vnsstr", true + case 3326: + return "sftu", true + case 3327: + return "bbars", true + case 3328: + return "egptlm", true + case 3329: + return "hp-device-disc", true + case 3330: + return "mcs-calypsoicf", true + case 3331: + return "mcs-messaging", true + case 3332: + return "mcs-mailsvr", true + case 3333: + return "dec-notes", true + case 3334: + return "directv-web", true + case 3335: + return "directv-soft", true + case 3336: + return "directv-tick", true + case 3337: + return "directv-catlg", true + case 3338: + return "anet-b", true + case 3339: + return "anet-l", true + case 3340: + return "anet-m", true + case 3341: + return "anet-h", true + case 3342: + return "webtie", true + case 3343: + return "ms-cluster-net", true + case 3344: + return "bnt-manager", true + case 3345: + return "influence", true + case 3346: + return "trnsprntproxy", true + case 3347: + return "phoenix-rpc", true + case 3348: + return "pangolin-laser", true + case 3349: + return "chevinservices", true + case 3350: + return "findviatv", true + case 3351: + return "btrieve", true + case 3352: + return "ssql", true + case 3353: + return "fatpipe", true + case 3354: + return "suitjd", true + case 3355: + return "ordinox-dbase", true + case 3356: + return "upnotifyps", true + case 3357: + return "adtech-test", true + case 3358: + return "mpsysrmsvr", true + case 3359: + return "wg-netforce", true + case 3360: + return "kv-server", true + case 3361: + return "kv-agent", true + case 3362: + return "dj-ilm", true + case 3363: + return "nati-vi-server", true + case 3364: + return "creativeserver", true + case 3365: + return "contentserver", true + case 3366: + return "creativepartnr", true + case 3372: + return "tip2", true + case 3373: + return "lavenir-lm", true + case 3374: + return "cluster-disc", true + case 3375: + return "vsnm-agent", true + case 3376: + return "cdbroker", true + case 3377: + return "cogsys-lm", true + case 3378: + return "wsicopy", true + case 3379: + return "socorfs", true + case 3380: + return "sns-channels", true + case 3381: + return "geneous", true + case 3382: + return "fujitsu-neat", true + case 3383: + return "esp-lm", true + case 3384: + return "hp-clic", true + case 3385: + return "qnxnetman", true + case 3386: + return "gprs-sig", true + case 3387: + return "backroomnet", true + case 3388: + return "cbserver", true + case 3389: + return "ms-wbt-server", true + case 3390: + return "dsc", true + case 3391: + return "savant", true + case 3392: + return "efi-lm", true + case 3393: + return "d2k-tapestry1", true + case 3394: + return "d2k-tapestry2", true + case 3395: + return "dyna-lm", true + case 3396: + return "printer-agent", true + case 3397: + return "cloanto-lm", true + case 3398: + return "mercantile", true + case 3399: + return "csms", true + case 3400: + return "csms2", true + case 3401: + return "filecast", true + case 3402: + return "fxaengine-net", true + case 3405: + return "nokia-ann-ch1", true + case 3406: + return "nokia-ann-ch2", true + case 3407: + return "ldap-admin", true + case 3408: + return "BESApi", true + case 3409: + return "networklens", true + case 3410: + return "networklenss", true + case 3411: + return "biolink-auth", true + case 3412: + return "xmlblaster", true + case 3413: + return "svnet", true + case 3414: + return "wip-port", true + case 3415: + return "bcinameservice", true + case 3416: + return "commandport", true + case 3417: + return "csvr", true + case 3418: + return "rnmap", true + case 3419: + return "softaudit", true + case 3420: + return "ifcp-port", true + case 3421: + return "bmap", true + case 3422: + return "rusb-sys-port", true + case 3423: + return "xtrm", true + case 3424: + return "xtrms", true + case 3425: + return "agps-port", true + case 3426: + return "arkivio", true + case 3427: + return "websphere-snmp", true + case 3428: + return "twcss", true + case 3429: + return "gcsp", true + case 3430: + return "ssdispatch", true + case 3431: + return "ndl-als", true + case 3432: + return "osdcp", true + case 3433: + return "opnet-smp", true + case 3434: + return "opencm", true + case 3435: + return "pacom", true + case 3436: + return "gc-config", true + case 3437: + return "autocueds", true + case 3438: + return "spiral-admin", true + case 3439: + return "hri-port", true + case 3440: + return "ans-console", true + case 3441: + return "connect-client", true + case 3442: + return "connect-server", true + case 3443: + return "ov-nnm-websrv", true + case 3444: + return "denali-server", true + case 3445: + return "monp", true + case 3446: + return "3comfaxrpc", true + case 3447: + return "directnet", true + case 3448: + return "dnc-port", true + case 3449: + return "hotu-chat", true + case 3450: + return "castorproxy", true + case 3451: + return "asam", true + case 3452: + return "sabp-signal", true + case 3453: + return "pscupd", true + case 3454: + return "mira", true + case 3455: + return "prsvp", true + case 3456: + return "vat", true + case 3457: + return "vat-control", true + case 3458: + return "d3winosfi", true + case 3459: + return "integral", true + case 3460: + return "edm-manager", true + case 3461: + return "edm-stager", true + case 3462: + return "edm-std-notify", true + case 3463: + return "edm-adm-notify", true + case 3464: + return "edm-mgr-sync", true + case 3465: + return "edm-mgr-cntrl", true + case 3466: + return "workflow", true + case 3467: + return "rcst", true + case 3468: + return "ttcmremotectrl", true + case 3469: + return "pluribus", true + case 3470: + return "jt400", true + case 3471: + return "jt400-ssl", true + case 3472: + return "jaugsremotec-1", true + case 3473: + return "jaugsremotec-2", true + case 3474: + return "ttntspauto", true + case 3475: + return "genisar-port", true + case 3476: + return "nppmp", true + case 3477: + return "ecomm", true + case 3478: + return "stun", true + case 3479: + return "twrpc", true + case 3480: + return "plethora", true + case 3481: + return "cleanerliverc", true + case 3482: + return "vulture", true + case 3483: + return "slim-devices", true + case 3484: + return "gbs-stp", true + case 3485: + return "celatalk", true + case 3486: + return "ifsf-hb-port", true + case 3487: + return "ltcudp", true + case 3488: + return "fs-rh-srv", true + case 3489: + return "dtp-dia", true + case 3490: + return "colubris", true + case 3491: + return "swr-port", true + case 3492: + return "tvdumtray-port", true + case 3493: + return "nut", true + case 3494: + return "ibm3494", true + case 3495: + return "seclayer-tcp", true + case 3496: + return "seclayer-tls", true + case 3497: + return "ipether232port", true + case 3498: + return "dashpas-port", true + case 3499: + return "sccip-media", true + case 3500: + return "rtmp-port", true + case 3501: + return "isoft-p2p", true + case 3502: + return "avinstalldisc", true + case 3503: + return "lsp-ping", true + case 3504: + return "ironstorm", true + case 3505: + return "ccmcomm", true + case 3506: + return "apc-3506", true + case 3507: + return "nesh-broker", true + case 3508: + return "interactionweb", true + case 3509: + return "vt-ssl", true + case 3510: + return "xss-port", true + case 3511: + return "webmail-2", true + case 3512: + return "aztec", true + case 3513: + return "arcpd", true + case 3514: + return "must-p2p", true + case 3515: + return "must-backplane", true + case 3516: + return "smartcard-port", true + case 3517: + return "802-11-iapp", true + case 3518: + return "artifact-msg", true + case 3519: + return "galileo", true + case 3520: + return "galileolog", true + case 3521: + return "mc3ss", true + case 3522: + return "nssocketport", true + case 3523: + return "odeumservlink", true + case 3524: + return "ecmport", true + case 3525: + return "eisport", true + case 3526: + return "starquiz-port", true + case 3527: + return "beserver-msg-q", true + case 3528: + return "jboss-iiop", true + case 3529: + return "jboss-iiop-ssl", true + case 3530: + return "gf", true + case 3531: + return "joltid", true + case 3532: + return "raven-rmp", true + case 3533: + return "raven-rdp", true + case 3534: + return "urld-port", true + case 3535: + return "ms-la", true + case 3536: + return "snac", true + case 3537: + return "ni-visa-remote", true + case 3538: + return "ibm-diradm", true + case 3539: + return "ibm-diradm-ssl", true + case 3540: + return "pnrp-port", true + case 3541: + return "voispeed-port", true + case 3542: + return "hacl-monitor", true + case 3543: + return "qftest-lookup", true + case 3544: + return "teredo", true + case 3545: + return "camac", true + case 3547: + return "symantec-sim", true + case 3548: + return "interworld", true + case 3549: + return "tellumat-nms", true + case 3550: + return "ssmpp", true + case 3551: + return "apcupsd", true + case 3552: + return "taserver", true + case 3553: + return "rbr-discovery", true + case 3554: + return "questnotify", true + case 3555: + return "razor", true + case 3556: + return "sky-transport", true + case 3557: + return "personalos-001", true + case 3558: + return "mcp-port", true + case 3559: + return "cctv-port", true + case 3560: + return "iniserve-port", true + case 3561: + return "bmc-onekey", true + case 3562: + return "sdbproxy", true + case 3563: + return "watcomdebug", true + case 3564: + return "esimport", true + case 3567: + return "dof-eps", true + case 3568: + return "dof-tunnel-sec", true + case 3569: + return "mbg-ctrl", true + case 3570: + return "mccwebsvr-port", true + case 3571: + return "megardsvr-port", true + case 3572: + return "megaregsvrport", true + case 3573: + return "tag-ups-1", true + case 3574: + return "dmaf-caster", true + case 3575: + return "ccm-port", true + case 3576: + return "cmc-port", true + case 3577: + return "config-port", true + case 3578: + return "data-port", true + case 3579: + return "ttat3lb", true + case 3580: + return "nati-svrloc", true + case 3581: + return "kfxaclicensing", true + case 3582: + return "press", true + case 3583: + return "canex-watch", true + case 3584: + return "u-dbap", true + case 3585: + return "emprise-lls", true + case 3586: + return "emprise-lsc", true + case 3587: + return "p2pgroup", true + case 3588: + return "sentinel", true + case 3589: + return "isomair", true + case 3590: + return "wv-csp-sms", true + case 3591: + return "gtrack-server", true + case 3592: + return "gtrack-ne", true + case 3593: + return "bpmd", true + case 3594: + return "mediaspace", true + case 3595: + return "shareapp", true + case 3596: + return "iw-mmogame", true + case 3597: + return "a14", true + case 3598: + return "a15", true + case 3599: + return "quasar-server", true + case 3600: + return "trap-daemon", true + case 3601: + return "visinet-gui", true + case 3602: + return "infiniswitchcl", true + case 3603: + return "int-rcv-cntrl", true + case 3604: + return "bmc-jmx-port", true + case 3605: + return "comcam-io", true + case 3606: + return "splitlock", true + case 3607: + return "precise-i3", true + case 3608: + return "trendchip-dcp", true + case 3609: + return "cpdi-pidas-cm", true + case 3610: + return "echonet", true + case 3611: + return "six-degrees", true + case 3612: + return "dataprotector", true + case 3613: + return "alaris-disc", true + case 3614: + return "sigma-port", true + case 3615: + return "start-network", true + case 3616: + return "cd3o-protocol", true + case 3617: + return "sharp-server", true + case 3618: + return "aairnet-1", true + case 3619: + return "aairnet-2", true + case 3620: + return "ep-pcp", true + case 3621: + return "ep-nsp", true + case 3622: + return "ff-lr-port", true + case 3623: + return "haipe-discover", true + case 3624: + return "dist-upgrade", true + case 3625: + return "volley", true + case 3626: + return "bvcdaemon-port", true + case 3627: + return "jamserverport", true + case 3628: + return "ept-machine", true + case 3629: + return "escvpnet", true + case 3630: + return "cs-remote-db", true + case 3631: + return "cs-services", true + case 3632: + return "distcc", true + case 3633: + return "wacp", true + case 3634: + return "hlibmgr", true + case 3635: + return "sdo", true + case 3636: + return "servistaitsm", true + case 3637: + return "scservp", true + case 3638: + return "ehp-backup", true + case 3639: + return "xap-ha", true + case 3640: + return "netplay-port1", true + case 3641: + return "netplay-port2", true + case 3642: + return "juxml-port", true + case 3643: + return "audiojuggler", true + case 3644: + return "ssowatch", true + case 3645: + return "cyc", true + case 3646: + return "xss-srv-port", true + case 3647: + return "splitlock-gw", true + case 3648: + return "fjcp", true + case 3649: + return "nmmp", true + case 3650: + return "prismiq-plugin", true + case 3651: + return "xrpc-registry", true + case 3652: + return "vxcrnbuport", true + case 3653: + return "tsp", true + case 3654: + return "vaprtm", true + case 3655: + return "abatemgr", true + case 3656: + return "abatjss", true + case 3657: + return "immedianet-bcn", true + case 3658: + return "ps-ams", true + case 3659: + return "apple-sasl", true + case 3660: + return "can-nds-ssl", true + case 3661: + return "can-ferret-ssl", true + case 3662: + return "pserver", true + case 3663: + return "dtp", true + case 3664: + return "ups-engine", true + case 3665: + return "ent-engine", true + case 3666: + return "eserver-pap", true + case 3667: + return "infoexch", true + case 3668: + return "dell-rm-port", true + case 3669: + return "casanswmgmt", true + case 3670: + return "smile", true + case 3671: + return "efcp", true + case 3672: + return "lispworks-orb", true + case 3673: + return "mediavault-gui", true + case 3674: + return "wininstall-ipc", true + case 3675: + return "calltrax", true + case 3676: + return "va-pacbase", true + case 3677: + return "roverlog", true + case 3678: + return "ipr-dglt", true + case 3679: + return "Escale (Newton Dock)", true + case 3680: + return "npds-tracker", true + case 3681: + return "bts-x73", true + case 3682: + return "cas-mapi", true + case 3683: + return "bmc-ea", true + case 3684: + return "faxstfx-port", true + case 3685: + return "dsx-agent", true + case 3686: + return "tnmpv2", true + case 3687: + return "simple-push", true + case 3688: + return "simple-push-s", true + case 3689: + return "daap", true + case 3690: + return "svn", true + case 3691: + return "magaya-network", true + case 3692: + return "intelsync", true + case 3695: + return "bmc-data-coll", true + case 3696: + return "telnetcpcd", true + case 3697: + return "nw-license", true + case 3698: + return "sagectlpanel", true + case 3699: + return "kpn-icw", true + case 3700: + return "lrs-paging", true + case 3701: + return "netcelera", true + case 3702: + return "ws-discovery", true + case 3703: + return "adobeserver-3", true + case 3704: + return "adobeserver-4", true + case 3705: + return "adobeserver-5", true + case 3706: + return "rt-event", true + case 3707: + return "rt-event-s", true + case 3708: + return "sun-as-iiops", true + case 3709: + return "ca-idms", true + case 3710: + return "portgate-auth", true + case 3711: + return "edb-server2", true + case 3712: + return "sentinel-ent", true + case 3713: + return "tftps", true + case 3714: + return "delos-dms", true + case 3715: + return "anoto-rendezv", true + case 3716: + return "wv-csp-sms-cir", true + case 3717: + return "wv-csp-udp-cir", true + case 3718: + return "opus-services", true + case 3719: + return "itelserverport", true + case 3720: + return "ufastro-instr", true + case 3721: + return "xsync", true + case 3722: + return "xserveraid", true + case 3723: + return "sychrond", true + case 3724: + return "blizwow", true + case 3725: + return "na-er-tip", true + case 3726: + return "array-manager", true + case 3727: + return "e-mdu", true + case 3728: + return "e-woa", true + case 3729: + return "fksp-audit", true + case 3730: + return "client-ctrl", true + case 3731: + return "smap", true + case 3732: + return "m-wnn", true + case 3733: + return "multip-msg", true + case 3734: + return "synel-data", true + case 3735: + return "pwdis", true + case 3736: + return "rs-rmi", true + case 3738: + return "versatalk", true + case 3739: + return "launchbird-lm", true + case 3740: + return "heartbeat", true + case 3741: + return "wysdma", true + case 3742: + return "cst-port", true + case 3743: + return "ipcs-command", true + case 3744: + return "sasg", true + case 3745: + return "gw-call-port", true + case 3746: + return "linktest", true + case 3747: + return "linktest-s", true + case 3748: + return "webdata", true + case 3749: + return "cimtrak", true + case 3750: + return "cbos-ip-port", true + case 3751: + return "gprs-cube", true + case 3752: + return "vipremoteagent", true + case 3753: + return "nattyserver", true + case 3754: + return "timestenbroker", true + case 3755: + return "sas-remote-hlp", true + case 3756: + return "canon-capt", true + case 3757: + return "grf-port", true + case 3758: + return "apw-registry", true + case 3759: + return "exapt-lmgr", true + case 3760: + return "adtempusclient", true + case 3761: + return "gsakmp", true + case 3762: + return "gbs-smp", true + case 3763: + return "xo-wave", true + case 3764: + return "mni-prot-rout", true + case 3765: + return "rtraceroute", true + case 3767: + return "listmgr-port", true + case 3768: + return "rblcheckd", true + case 3769: + return "haipe-otnk", true + case 3770: + return "cindycollab", true + case 3771: + return "paging-port", true + case 3772: + return "ctp", true + case 3773: + return "ctdhercules", true + case 3774: + return "zicom", true + case 3775: + return "ispmmgr", true + case 3776: + return "dvcprov-port", true + case 3777: + return "jibe-eb", true + case 3778: + return "c-h-it-port", true + case 3779: + return "cognima", true + case 3780: + return "nnp", true + case 3781: + return "abcvoice-port", true + case 3782: + return "iso-tp0s", true + case 3783: + return "bim-pem", true + case 3784: + return "bfd-control", true + case 3785: + return "bfd-echo", true + case 3786: + return "upstriggervsw", true + case 3787: + return "fintrx", true + case 3788: + return "isrp-port", true + case 3789: + return "remotedeploy", true + case 3790: + return "quickbooksrds", true + case 3791: + return "tvnetworkvideo", true + case 3792: + return "sitewatch", true + case 3793: + return "dcsoftware", true + case 3794: + return "jaus", true + case 3795: + return "myblast", true + case 3796: + return "spw-dialer", true + case 3797: + return "idps", true + case 3798: + return "minilock", true + case 3799: + return "radius-dynauth", true + case 3800: + return "pwgpsi", true + case 3801: + return "ibm-mgr", true + case 3802: + return "vhd", true + case 3803: + return "soniqsync", true + case 3804: + return "iqnet-port", true + case 3805: + return "tcpdataserver", true + case 3806: + return "wsmlb", true + case 3807: + return "spugna", true + case 3808: + return "sun-as-iiops-ca", true + case 3809: + return "apocd", true + case 3810: + return "wlanauth", true + case 3811: + return "amp", true + case 3812: + return "neto-wol-server", true + case 3813: + return "rap-ip", true + case 3814: + return "neto-dcs", true + case 3815: + return "lansurveyorxml", true + case 3816: + return "sunlps-http", true + case 3817: + return "tapeware", true + case 3818: + return "crinis-hb", true + case 3819: + return "epl-slp", true + case 3820: + return "scp", true + case 3821: + return "pmcp", true + case 3822: + return "acp-discovery", true + case 3823: + return "acp-conduit", true + case 3824: + return "acp-policy", true + case 3825: + return "ffserver", true + case 3826: + return "warmux", true + case 3827: + return "netmpi", true + case 3828: + return "neteh", true + case 3829: + return "neteh-ext", true + case 3830: + return "cernsysmgmtagt", true + case 3831: + return "dvapps", true + case 3832: + return "xxnetserver", true + case 3833: + return "aipn-auth", true + case 3834: + return "spectardata", true + case 3835: + return "spectardb", true + case 3836: + return "markem-dcp", true + case 3837: + return "mkm-discovery", true + case 3838: + return "sos", true + case 3839: + return "amx-rms", true + case 3840: + return "flirtmitmir", true + case 3842: + return "nhci", true + case 3843: + return "quest-agent", true + case 3844: + return "rnm", true + case 3845: + return "v-one-spp", true + case 3846: + return "an-pcp", true + case 3847: + return "msfw-control", true + case 3848: + return "item", true + case 3849: + return "spw-dnspreload", true + case 3850: + return "qtms-bootstrap", true + case 3851: + return "spectraport", true + case 3852: + return "sse-app-config", true + case 3853: + return "sscan", true + case 3854: + return "stryker-com", true + case 3855: + return "opentrac", true + case 3856: + return "informer", true + case 3857: + return "trap-port", true + case 3858: + return "trap-port-mom", true + case 3859: + return "nav-port", true + case 3860: + return "sasp", true + case 3861: + return "winshadow-hd", true + case 3862: + return "giga-pocket", true + case 3863: + return "asap-udp", true + case 3865: + return "xpl", true + case 3866: + return "dzdaemon", true + case 3867: + return "dzoglserver", true + case 3869: + return "ovsam-mgmt", true + case 3870: + return "ovsam-d-agent", true + case 3871: + return "avocent-adsap", true + case 3872: + return "oem-agent", true + case 3873: + return "fagordnc", true + case 3874: + return "sixxsconfig", true + case 3875: + return "pnbscada", true + case 3876: + return "dl-agent", true + case 3877: + return "xmpcr-interface", true + case 3878: + return "fotogcad", true + case 3879: + return "appss-lm", true + case 3880: + return "igrs", true + case 3881: + return "idac", true + case 3882: + return "msdts1", true + case 3883: + return "vrpn", true + case 3884: + return "softrack-meter", true + case 3885: + return "topflow-ssl", true + case 3886: + return "nei-management", true + case 3887: + return "ciphire-data", true + case 3888: + return "ciphire-serv", true + case 3889: + return "dandv-tester", true + case 3890: + return "ndsconnect", true + case 3891: + return "rtc-pm-port", true + case 3892: + return "pcc-image-port", true + case 3893: + return "cgi-starapi", true + case 3894: + return "syam-agent", true + case 3895: + return "syam-smc", true + case 3896: + return "sdo-tls", true + case 3897: + return "sdo-ssh", true + case 3898: + return "senip", true + case 3899: + return "itv-control", true + case 3900: + return "udt-os", true + case 3901: + return "nimsh", true + case 3902: + return "nimaux", true + case 3903: + return "charsetmgr", true + case 3904: + return "omnilink-port", true + case 3905: + return "mupdate", true + case 3906: + return "topovista-data", true + case 3907: + return "imoguia-port", true + case 3908: + return "hppronetman", true + case 3909: + return "surfcontrolcpa", true + case 3910: + return "prnrequest", true + case 3911: + return "prnstatus", true + case 3912: + return "gbmt-stars", true + case 3913: + return "listcrt-port", true + case 3914: + return "listcrt-port-2", true + case 3915: + return "agcat", true + case 3916: + return "wysdmc", true + case 3917: + return "aftmux", true + case 3918: + return "pktcablemmcops", true + case 3919: + return "hyperip", true + case 3920: + return "exasoftport1", true + case 3921: + return "herodotus-net", true + case 3922: + return "sor-update", true + case 3923: + return "symb-sb-port", true + case 3924: + return "mpl-gprs-port", true + case 3925: + return "zmp", true + case 3926: + return "winport", true + case 3927: + return "natdataservice", true + case 3928: + return "netboot-pxe", true + case 3929: + return "smauth-port", true + case 3930: + return "syam-webserver", true + case 3931: + return "msr-plugin-port", true + case 3932: + return "dyn-site", true + case 3933: + return "plbserve-port", true + case 3934: + return "sunfm-port", true + case 3935: + return "sdp-portmapper", true + case 3936: + return "mailprox", true + case 3937: + return "dvbservdsc", true + case 3938: + return "dbcontrol-agent", true + case 3939: + return "aamp", true + case 3940: + return "xecp-node", true + case 3941: + return "homeportal-web", true + case 3942: + return "srdp", true + case 3943: + return "tig", true + case 3944: + return "sops", true + case 3945: + return "emcads", true + case 3946: + return "backupedge", true + case 3947: + return "ccp", true + case 3948: + return "apdap", true + case 3949: + return "drip", true + case 3950: + return "namemunge", true + case 3951: + return "pwgippfax", true + case 3952: + return "i3-sessionmgr", true + case 3953: + return "xmlink-connect", true + case 3954: + return "adrep", true + case 3955: + return "p2pcommunity", true + case 3956: + return "gvcp", true + case 3957: + return "mqe-broker", true + case 3958: + return "mqe-agent", true + case 3959: + return "treehopper", true + case 3960: + return "bess", true + case 3961: + return "proaxess", true + case 3962: + return "sbi-agent", true + case 3963: + return "thrp", true + case 3964: + return "sasggprs", true + case 3965: + return "ati-ip-to-ncpe", true + case 3966: + return "bflckmgr", true + case 3967: + return "ppsms", true + case 3968: + return "ianywhere-dbns", true + case 3969: + return "landmarks", true + case 3970: + return "lanrevagent", true + case 3971: + return "lanrevserver", true + case 3972: + return "iconp", true + case 3973: + return "progistics", true + case 3974: + return "xk22", true + case 3975: + return "airshot", true + case 3976: + return "opswagent", true + case 3977: + return "opswmanager", true + case 3978: + return "secure-cfg-svr", true + case 3979: + return "smwan", true + case 3981: + return "starfish", true + case 3982: + return "eis", true + case 3983: + return "eisp", true + case 3984: + return "mapper-nodemgr", true + case 3985: + return "mapper-mapethd", true + case 3986: + return "mapper-ws-ethd", true + case 3987: + return "centerline", true + case 3988: + return "dcs-config", true + case 3989: + return "bv-queryengine", true + case 3990: + return "bv-is", true + case 3991: + return "bv-smcsrv", true + case 3992: + return "bv-ds", true + case 3993: + return "bv-agent", true + case 3995: + return "iss-mgmt-ssl", true + case 3996: + return "abcsoftware", true + case 3997: + return "agentsease-db", true + case 3998: + return "dnx", true + case 3999: + return "nvcnet", true + case 4000: + return "terabase", true + case 4001: + return "newoak", true + case 4002: + return "pxc-spvr-ft", true + case 4003: + return "pxc-splr-ft", true + case 4004: + return "pxc-roid", true + case 4005: + return "pxc-pin", true + case 4006: + return "pxc-spvr", true + case 4007: + return "pxc-splr", true + case 4008: + return "netcheque", true + case 4009: + return "chimera-hwm", true + case 4010: + return "samsung-unidex", true + case 4011: + return "altserviceboot", true + case 4012: + return "pda-gate", true + case 4013: + return "acl-manager", true + case 4014: + return "taiclock", true + case 4015: + return "talarian-mcast1", true + case 4016: + return "talarian-mcast2", true + case 4017: + return "talarian-mcast3", true + case 4018: + return "talarian-mcast4", true + case 4019: + return "talarian-mcast5", true + case 4020: + return "trap", true + case 4021: + return "nexus-portal", true + case 4022: + return "dnox", true + case 4023: + return "esnm-zoning", true + case 4024: + return "tnp1-port", true + case 4025: + return "partimage", true + case 4026: + return "as-debug", true + case 4027: + return "bxp", true + case 4028: + return "dtserver-port", true + case 4029: + return "ip-qsig", true + case 4030: + return "jdmn-port", true + case 4031: + return "suucp", true + case 4032: + return "vrts-auth-port", true + case 4033: + return "sanavigator", true + case 4034: + return "ubxd", true + case 4035: + return "wap-push-http", true + case 4036: + return "wap-push-https", true + case 4037: + return "ravehd", true + case 4038: + return "fazzt-ptp", true + case 4039: + return "fazzt-admin", true + case 4040: + return "yo-main", true + case 4041: + return "houston", true + case 4042: + return "ldxp", true + case 4043: + return "nirp", true + case 4044: + return "ltp", true + case 4045: + return "npp", true + case 4046: + return "acp-proto", true + case 4047: + return "ctp-state", true + case 4049: + return "wafs", true + case 4050: + return "cisco-wafs", true + case 4051: + return "cppdp", true + case 4052: + return "interact", true + case 4053: + return "ccu-comm-1", true + case 4054: + return "ccu-comm-2", true + case 4055: + return "ccu-comm-3", true + case 4056: + return "lms", true + case 4057: + return "wfm", true + case 4058: + return "kingfisher", true + case 4059: + return "dlms-cosem", true + case 4060: + return "dsmeter-iatc", true + case 4061: + return "ice-location", true + case 4062: + return "ice-slocation", true + case 4063: + return "ice-router", true + case 4064: + return "ice-srouter", true + case 4065: + return "avanti-cdp", true + case 4066: + return "pmas", true + case 4067: + return "idp", true + case 4068: + return "ipfltbcst", true + case 4069: + return "minger", true + case 4070: + return "tripe", true + case 4071: + return "aibkup", true + case 4072: + return "zieto-sock", true + case 4073: + return "iRAPP", true + case 4074: + return "cequint-cityid", true + case 4075: + return "perimlan", true + case 4076: + return "seraph", true + case 4077: + return "ascomalarm", true + case 4079: + return "santools", true + case 4080: + return "lorica-in", true + case 4081: + return "lorica-in-sec", true + case 4082: + return "lorica-out", true + case 4083: + return "lorica-out-sec", true + case 4084: + return "fortisphere-vm", true + case 4086: + return "ftsync", true + case 4089: + return "opencore", true + case 4090: + return "omasgport", true + case 4091: + return "ewinstaller", true + case 4092: + return "ewdgs", true + case 4093: + return "pvxpluscs", true + case 4094: + return "sysrqd", true + case 4095: + return "xtgui", true + case 4096: + return "bre", true + case 4097: + return "patrolview", true + case 4098: + return "drmsfsd", true + case 4099: + return "dpcp", true + case 4100: + return "igo-incognito", true + case 4101: + return "brlp-0", true + case 4102: + return "brlp-1", true + case 4103: + return "brlp-2", true + case 4104: + return "brlp-3", true + case 4105: + return "shofar", true + case 4106: + return "synchronite", true + case 4107: + return "j-ac", true + case 4108: + return "accel", true + case 4109: + return "izm", true + case 4110: + return "g2tag", true + case 4111: + return "xgrid", true + case 4112: + return "apple-vpns-rp", true + case 4113: + return "aipn-reg", true + case 4114: + return "jomamqmonitor", true + case 4115: + return "cds", true + case 4116: + return "smartcard-tls", true + case 4117: + return "hillrserv", true + case 4118: + return "netscript", true + case 4119: + return "assuria-slm", true + case 4121: + return "e-builder", true + case 4122: + return "fprams", true + case 4123: + return "z-wave", true + case 4124: + return "tigv2", true + case 4125: + return "opsview-envoy", true + case 4126: + return "ddrepl", true + case 4127: + return "unikeypro", true + case 4128: + return "nufw", true + case 4129: + return "nuauth", true + case 4130: + return "fronet", true + case 4131: + return "stars", true + case 4132: + return "nuts-dem", true + case 4133: + return "nuts-bootp", true + case 4134: + return "nifty-hmi", true + case 4135: + return "cl-db-attach", true + case 4136: + return "cl-db-request", true + case 4137: + return "cl-db-remote", true + case 4138: + return "nettest", true + case 4139: + return "thrtx", true + case 4140: + return "cedros-fds", true + case 4141: + return "oirtgsvc", true + case 4142: + return "oidocsvc", true + case 4143: + return "oidsr", true + case 4145: + return "vvr-control", true + case 4146: + return "tgcconnect", true + case 4147: + return "vrxpservman", true + case 4148: + return "hhb-handheld", true + case 4149: + return "agslb", true + case 4150: + return "PowerAlert-nsa", true + case 4151: + return "menandmice-noh", true + case 4152: + return "idig-mux", true + case 4153: + return "mbl-battd", true + case 4154: + return "atlinks", true + case 4155: + return "bzr", true + case 4156: + return "stat-results", true + case 4157: + return "stat-scanner", true + case 4158: + return "stat-cc", true + case 4159: + return "nss", true + case 4160: + return "jini-discovery", true + case 4161: + return "omscontact", true + case 4162: + return "omstopology", true + case 4163: + return "silverpeakpeer", true + case 4164: + return "silverpeakcomm", true + case 4165: + return "altcp", true + case 4166: + return "joost", true + case 4167: + return "ddgn", true + case 4168: + return "pslicser", true + case 4169: + return "iadt-disc", true + case 4172: + return "pcoip", true + case 4173: + return "mma-discovery", true + case 4174: + return "sm-disc", true + case 4177: + return "wello", true + case 4178: + return "storman", true + case 4179: + return "MaxumSP", true + case 4180: + return "httpx", true + case 4181: + return "macbak", true + case 4182: + return "pcptcpservice", true + case 4183: + return "cyborgnet", true + case 4184: + return "universe-suite", true + case 4185: + return "wcpp", true + case 4188: + return "vatata", true + case 4191: + return "dsmipv6", true + case 4192: + return "azeti-bd", true + case 4195: + return "aws-wsp", true + case 4197: + return "hctl", true + case 4199: + return "eims-admin", true + case 4300: + return "corelccam", true + case 4301: + return "d-data", true + case 4302: + return "d-data-control", true + case 4303: + return "srcp", true + case 4304: + return "owserver", true + case 4305: + return "batman", true + case 4306: + return "pinghgl", true + case 4307: + return "trueconf", true + case 4308: + return "compx-lockview", true + case 4309: + return "dserver", true + case 4310: + return "mirrtex", true + case 4319: + return "fox-skytale", true + case 4320: + return "fdt-rcatp", true + case 4321: + return "rwhois", true + case 4322: + return "trim-event", true + case 4323: + return "trim-ice", true + case 4325: + return "geognosisman", true + case 4326: + return "geognosis", true + case 4327: + return "jaxer-web", true + case 4328: + return "jaxer-manager", true + case 4333: + return "ahsp", true + case 4340: + return "gaia", true + case 4341: + return "lisp-data", true + case 4342: + return "lisp-control", true + case 4343: + return "unicall", true + case 4344: + return "vinainstall", true + case 4345: + return "m4-network-as", true + case 4346: + return "elanlm", true + case 4347: + return "lansurveyor", true + case 4348: + return "itose", true + case 4349: + return "fsportmap", true + case 4350: + return "net-device", true + case 4351: + return "plcy-net-svcs", true + case 4352: + return "pjlink", true + case 4353: + return "f5-iquery", true + case 4354: + return "qsnet-trans", true + case 4355: + return "qsnet-workst", true + case 4356: + return "qsnet-assist", true + case 4357: + return "qsnet-cond", true + case 4358: + return "qsnet-nucl", true + case 4359: + return "omabcastltkm", true + case 4361: + return "nacnl", true + case 4362: + return "afore-vdp-disc", true + case 4366: + return "shadowstream", true + case 4368: + return "wxbrief", true + case 4369: + return "epmd", true + case 4370: + return "elpro-tunnel", true + case 4371: + return "l2c-disc", true + case 4372: + return "l2c-data", true + case 4373: + return "remctl", true + case 4375: + return "tolteces", true + case 4376: + return "bip", true + case 4377: + return "cp-spxsvr", true + case 4378: + return "cp-spxdpy", true + case 4379: + return "ctdb", true + case 4389: + return "xandros-cms", true + case 4390: + return "wiegand", true + case 4394: + return "apwi-disc", true + case 4395: + return "omnivisionesx", true + case 4400: + return "ds-srv", true + case 4401: + return "ds-srvr", true + case 4402: + return "ds-clnt", true + case 4403: + return "ds-user", true + case 4404: + return "ds-admin", true + case 4405: + return "ds-mail", true + case 4406: + return "ds-slp", true + case 4412: + return "smallchat", true + case 4413: + return "avi-nms-disc", true + case 4416: + return "pjj-player-disc", true + case 4418: + return "axysbridge", true + case 4420: + return "nvme", true + case 4425: + return "netrockey6", true + case 4426: + return "beacon-port-2", true + case 4430: + return "rsqlserver", true + case 4432: + return "l-acoustics", true + case 4441: + return "netblox", true + case 4442: + return "saris", true + case 4443: + return "pharos", true + case 4444: + return "krb524", true + case 4445: + return "upnotifyp", true + case 4446: + return "n1-fwp", true + case 4447: + return "n1-rmgmt", true + case 4448: + return "asc-slmd", true + case 4449: + return "privatewire", true + case 4450: + return "camp", true + case 4451: + return "ctisystemmsg", true + case 4452: + return "ctiprogramload", true + case 4453: + return "nssalertmgr", true + case 4454: + return "nssagentmgr", true + case 4455: + return "prchat-user", true + case 4456: + return "prchat-server", true + case 4457: + return "prRegister", true + case 4458: + return "mcp", true + case 4484: + return "hpssmgmt", true + case 4486: + return "icms", true + case 4488: + return "awacs-ice", true + case 4500: + return "ipsec-nat-t", true + case 4534: + return "armagetronad", true + case 4535: + return "ehs", true + case 4536: + return "ehs-ssl", true + case 4537: + return "wssauthsvc", true + case 4538: + return "swx-gate", true + case 4545: + return "worldscores", true + case 4546: + return "sf-lm", true + case 4547: + return "lanner-lm", true + case 4548: + return "synchromesh", true + case 4549: + return "aegate", true + case 4550: + return "gds-adppiw-db", true + case 4551: + return "ieee-mih", true + case 4552: + return "menandmice-mon", true + case 4554: + return "msfrs", true + case 4555: + return "rsip", true + case 4556: + return "dtn-bundle", true + case 4557: + return "mtcevrunqss", true + case 4558: + return "mtcevrunqman", true + case 4559: + return "hylafax", true + case 4566: + return "kwtc", true + case 4567: + return "tram", true + case 4568: + return "bmc-reporting", true + case 4569: + return "iax", true + case 4591: + return "l3t-at-an", true + case 4592: + return "hrpd-ith-at-an", true + case 4593: + return "ipt-anri-anri", true + case 4594: + return "ias-session", true + case 4595: + return "ias-paging", true + case 4596: + return "ias-neighbor", true + case 4597: + return "a21-an-1xbs", true + case 4598: + return "a16-an-an", true + case 4599: + return "a17-an-an", true + case 4600: + return "piranha1", true + case 4601: + return "piranha2", true + case 4621: + return "ventoso", true + case 4646: + return "dots-signal", true + case 4658: + return "playsta2-app", true + case 4659: + return "playsta2-lob", true + case 4660: + return "smaclmgr", true + case 4661: + return "kar2ouche", true + case 4662: + return "oms", true + case 4663: + return "noteit", true + case 4664: + return "ems", true + case 4665: + return "contclientms", true + case 4666: + return "eportcomm", true + case 4667: + return "mmacomm", true + case 4668: + return "mmaeds", true + case 4669: + return "eportcommdata", true + case 4670: + return "light", true + case 4671: + return "acter", true + case 4672: + return "rfa", true + case 4673: + return "cxws", true + case 4674: + return "appiq-mgmt", true + case 4675: + return "dhct-status", true + case 4676: + return "dhct-alerts", true + case 4677: + return "bcs", true + case 4678: + return "traversal", true + case 4679: + return "mgesupervision", true + case 4680: + return "mgemanagement", true + case 4681: + return "parliant", true + case 4682: + return "finisar", true + case 4683: + return "spike", true + case 4684: + return "rfid-rp1", true + case 4685: + return "autopac", true + case 4686: + return "msp-os", true + case 4687: + return "nst", true + case 4688: + return "mobile-p2p", true + case 4689: + return "altovacentral", true + case 4690: + return "prelude", true + case 4691: + return "mtn", true + case 4692: + return "conspiracy", true + case 4700: + return "netxms-agent", true + case 4701: + return "netxms-mgmt", true + case 4702: + return "netxms-sync", true + case 4711: + return "trinity-dist", true + case 4725: + return "truckstar", true + case 4726: + return "a26-fap-fgw", true + case 4727: + return "fcis-disc", true + case 4728: + return "capmux", true + case 4729: + return "gsmtap", true + case 4730: + return "gearman", true + case 4732: + return "ohmtrigger", true + case 4737: + return "ipdr-sp", true + case 4738: + return "solera-lpn", true + case 4739: + return "ipfix", true + case 4740: + return "ipfixs", true + case 4741: + return "lumimgrd", true + case 4742: + return "sicct-sdp", true + case 4743: + return "openhpid", true + case 4744: + return "ifsp", true + case 4745: + return "fmp", true + case 4746: + return "intelliadm-disc", true + case 4747: + return "buschtrommel", true + case 4749: + return "profilemac", true + case 4750: + return "ssad", true + case 4751: + return "spocp", true + case 4752: + return "snap", true + case 4753: + return "simon-disc", true + case 4754: + return "gre-in-udp", true + case 4755: + return "gre-udp-dtls", true + case 4784: + return "bfd-multi-ctl", true + case 4785: + return "cncp", true + case 4789: + return "vxlan", true + case 4790: + return "vxlan-gpe", true + case 4791: + return "roce", true + case 4792: + return "unified-bus", true + case 4800: + return "iims", true + case 4801: + return "iwec", true + case 4802: + return "ilss", true + case 4803: + return "notateit-disc", true + case 4804: + return "aja-ntv4-disc", true + case 4827: + return "htcp", true + case 4837: + return "varadero-0", true + case 4838: + return "varadero-1", true + case 4839: + return "varadero-2", true + case 4840: + return "opcua-udp", true + case 4841: + return "quosa", true + case 4842: + return "gw-asv", true + case 4843: + return "opcua-tls", true + case 4844: + return "gw-log", true + case 4845: + return "wcr-remlib", true + case 4846: + return "contamac-icm", true + case 4847: + return "wfc", true + case 4848: + return "appserv-http", true + case 4849: + return "appserv-https", true + case 4850: + return "sun-as-nodeagt", true + case 4851: + return "derby-repli", true + case 4867: + return "unify-debug", true + case 4868: + return "phrelay", true + case 4869: + return "phrelaydbg", true + case 4870: + return "cc-tracking", true + case 4871: + return "wired", true + case 4876: + return "tritium-can", true + case 4877: + return "lmcs", true + case 4878: + return "inst-discovery", true + case 4881: + return "socp-t", true + case 4882: + return "socp-c", true + case 4884: + return "hivestor", true + case 4885: + return "abbs", true + case 4894: + return "lyskom", true + case 4899: + return "radmin-port", true + case 4900: + return "hfcs", true + case 4914: + return "bones", true + case 4936: + return "an-signaling", true + case 4937: + return "atsc-mh-ssc", true + case 4940: + return "eq-office-4940", true + case 4941: + return "eq-office-4941", true + case 4942: + return "eq-office-4942", true + case 4949: + return "munin", true + case 4950: + return "sybasesrvmon", true + case 4951: + return "pwgwims", true + case 4952: + return "sagxtsds", true + case 4969: + return "ccss-qmm", true + case 4970: + return "ccss-qsm", true + case 4980: + return "ctxs-vpp", true + case 4986: + return "mrip", true + case 4987: + return "smar-se-port1", true + case 4988: + return "smar-se-port2", true + case 4989: + return "parallel", true + case 4990: + return "busycal", true + case 4991: + return "vrt", true + case 4999: + return "hfcs-manager", true + case 5000: + return "commplex-main", true + case 5001: + return "commplex-link", true + case 5002: + return "rfe", true + case 5003: + return "fmpro-internal", true + case 5004: + return "avt-profile-1", true + case 5005: + return "avt-profile-2", true + case 5006: + return "wsm-server", true + case 5007: + return "wsm-server-ssl", true + case 5008: + return "synapsis-edge", true + case 5009: + return "winfs", true + case 5010: + return "telelpathstart", true + case 5011: + return "telelpathattack", true + case 5012: + return "nsp", true + case 5013: + return "fmpro-v6", true + case 5014: + return "onpsocket", true + case 5020: + return "zenginkyo-1", true + case 5021: + return "zenginkyo-2", true + case 5022: + return "mice", true + case 5023: + return "htuilsrv", true + case 5024: + return "scpi-telnet", true + case 5025: + return "scpi-raw", true + case 5026: + return "strexec-d", true + case 5027: + return "strexec-s", true + case 5029: + return "infobright", true + case 5031: + return "dmp", true + case 5042: + return "asnaacceler8db", true + case 5043: + return "swxadmin", true + case 5044: + return "lxi-evntsvc", true + case 5046: + return "vpm-udp", true + case 5047: + return "iscape", true + case 5049: + return "ivocalize", true + case 5050: + return "mmcc", true + case 5051: + return "ita-agent", true + case 5052: + return "ita-manager", true + case 5053: + return "rlm-disc", true + case 5055: + return "unot", true + case 5056: + return "intecom-ps1", true + case 5057: + return "intecom-ps2", true + case 5058: + return "locus-disc", true + case 5059: + return "sds", true + case 5060: + return "sip", true + case 5061: + return "sips", true + case 5062: + return "na-localise", true + case 5064: + return "ca-1", true + case 5065: + return "ca-2", true + case 5066: + return "stanag-5066", true + case 5067: + return "authentx", true + case 5069: + return "i-net-2000-npr", true + case 5070: + return "vtsas", true + case 5071: + return "powerschool", true + case 5072: + return "ayiya", true + case 5073: + return "tag-pm", true + case 5074: + return "alesquery", true + case 5078: + return "pixelpusher", true + case 5079: + return "cp-spxrpts", true + case 5080: + return "onscreen", true + case 5081: + return "sdl-ets", true + case 5082: + return "qcp", true + case 5083: + return "qfp", true + case 5084: + return "llrp", true + case 5085: + return "encrypted-llrp", true + case 5092: + return "magpie", true + case 5093: + return "sentinel-lm", true + case 5094: + return "hart-ip", true + case 5099: + return "sentlm-srv2srv", true + case 5100: + return "socalia", true + case 5101: + return "talarian-udp", true + case 5102: + return "oms-nonsecure", true + case 5104: + return "tinymessage", true + case 5105: + return "hughes-ap", true + case 5111: + return "taep-as-svc", true + case 5112: + return "pm-cmdsvr", true + case 5116: + return "emb-proj-cmd", true + case 5120: + return "barracuda-bbs", true + case 5133: + return "nbt-pc", true + case 5136: + return "minotaur-sa", true + case 5137: + return "ctsd", true + case 5145: + return "rmonitor-secure", true + case 5150: + return "atmp", true + case 5151: + return "esri-sde", true + case 5152: + return "sde-discovery", true + case 5154: + return "bzflag", true + case 5155: + return "asctrl-agent", true + case 5164: + return "vpa-disc", true + case 5165: + return "ife-icorp", true + case 5166: + return "winpcs", true + case 5167: + return "scte104", true + case 5168: + return "scte30", true + case 5190: + return "aol", true + case 5191: + return "aol-1", true + case 5192: + return "aol-2", true + case 5193: + return "aol-3", true + case 5200: + return "targus-getdata", true + case 5201: + return "targus-getdata1", true + case 5202: + return "targus-getdata2", true + case 5203: + return "targus-getdata3", true + case 5223: + return "hpvirtgrp", true + case 5224: + return "hpvirtctrl", true + case 5225: + return "hp-server", true + case 5226: + return "hp-status", true + case 5227: + return "perfd", true + case 5234: + return "eenet", true + case 5235: + return "galaxy-network", true + case 5236: + return "padl2sim", true + case 5237: + return "mnet-discovery", true + case 5245: + return "downtools-disc", true + case 5246: + return "capwap-control", true + case 5247: + return "capwap-data", true + case 5248: + return "caacws", true + case 5249: + return "caaclang2", true + case 5250: + return "soagateway", true + case 5251: + return "caevms", true + case 5252: + return "movaz-ssc", true + case 5264: + return "3com-njack-1", true + case 5265: + return "3com-njack-2", true + case 5270: + return "cartographerxmp", true + case 5271: + return "cuelink-disc", true + case 5272: + return "pk", true + case 5282: + return "transmit-port", true + case 5298: + return "presence", true + case 5299: + return "nlg-data", true + case 5300: + return "hacl-hb", true + case 5301: + return "hacl-gs", true + case 5302: + return "hacl-cfg", true + case 5303: + return "hacl-probe", true + case 5304: + return "hacl-local", true + case 5305: + return "hacl-test", true + case 5306: + return "sun-mc-grp", true + case 5307: + return "sco-aip", true + case 5308: + return "cfengine", true + case 5309: + return "jprinter", true + case 5310: + return "outlaws", true + case 5312: + return "permabit-cs", true + case 5313: + return "rrdp", true + case 5314: + return "opalis-rbt-ipc", true + case 5315: + return "hacl-poll", true + case 5343: + return "kfserver", true + case 5344: + return "xkotodrcp", true + case 5349: + return "stuns", true + case 5350: + return "pcp-multicast", true + case 5351: + return "pcp", true + case 5352: + return "dns-llq", true + case 5353: + return "mdns", true + case 5354: + return "mdnsresponder", true + case 5355: + return "llmnr", true + case 5356: + return "ms-smlbiz", true + case 5357: + return "wsdapi", true + case 5358: + return "wsdapi-s", true + case 5359: + return "ms-alerter", true + case 5360: + return "ms-sideshow", true + case 5361: + return "ms-s-sideshow", true + case 5362: + return "serverwsd2", true + case 5363: + return "net-projection", true + case 5364: + return "kdnet", true + case 5397: + return "stresstester", true + case 5398: + return "elektron-admin", true + case 5399: + return "securitychase", true + case 5400: + return "excerpt", true + case 5401: + return "excerpts", true + case 5402: + return "mftp", true + case 5403: + return "hpoms-ci-lstn", true + case 5404: + return "hpoms-dps-lstn", true + case 5405: + return "netsupport", true + case 5406: + return "systemics-sox", true + case 5407: + return "foresyte-clear", true + case 5408: + return "foresyte-sec", true + case 5409: + return "salient-dtasrv", true + case 5410: + return "salient-usrmgr", true + case 5411: + return "actnet", true + case 5412: + return "continuus", true + case 5413: + return "wwiotalk", true + case 5414: + return "statusd", true + case 5415: + return "ns-server", true + case 5416: + return "sns-gateway", true + case 5417: + return "sns-agent", true + case 5418: + return "mcntp", true + case 5419: + return "dj-ice", true + case 5420: + return "cylink-c", true + case 5421: + return "netsupport2", true + case 5422: + return "salient-mux", true + case 5423: + return "virtualuser", true + case 5424: + return "beyond-remote", true + case 5425: + return "br-channel", true + case 5426: + return "devbasic", true + case 5427: + return "sco-peer-tta", true + case 5428: + return "telaconsole", true + case 5429: + return "base", true + case 5430: + return "radec-corp", true + case 5431: + return "park-agent", true + case 5432: + return "postgresql", true + case 5433: + return "pyrrho", true + case 5434: + return "sgi-arrayd", true + case 5435: + return "sceanics", true + case 5436: + return "pmip6-cntl", true + case 5437: + return "pmip6-data", true + case 5443: + return "spss", true + case 5450: + return "tiepie-disc", true + case 5453: + return "surebox", true + case 5454: + return "apc-5454", true + case 5455: + return "apc-5455", true + case 5456: + return "apc-5456", true + case 5461: + return "silkmeter", true + case 5462: + return "ttl-publisher", true + case 5463: + return "ttlpriceproxy", true + case 5464: + return "quailnet", true + case 5465: + return "netops-broker", true + case 5474: + return "apsolab-rpc", true + case 5500: + return "fcp-addr-srvr1", true + case 5501: + return "fcp-addr-srvr2", true + case 5502: + return "fcp-srvr-inst1", true + case 5503: + return "fcp-srvr-inst2", true + case 5504: + return "fcp-cics-gw1", true + case 5505: + return "checkoutdb", true + case 5506: + return "amc", true + case 5540: + return "matter", true + case 5553: + return "sgi-eventmond", true + case 5554: + return "sgi-esphttp", true + case 5555: + return "personal-agent", true + case 5556: + return "freeciv", true + case 5567: + return "dof-dps-mc-sec", true + case 5568: + return "sdt", true + case 5569: + return "rdmnet-device", true + case 5573: + return "sdmmp", true + case 5580: + return "tmosms0", true + case 5581: + return "tmosms1", true + case 5582: + return "fac-restore", true + case 5583: + return "tmo-icon-sync", true + case 5584: + return "bis-web", true + case 5585: + return "bis-sync", true + case 5597: + return "ininmessaging", true + case 5598: + return "mctfeed", true + case 5599: + return "esinstall", true + case 5600: + return "esmmanager", true + case 5601: + return "esmagent", true + case 5602: + return "a1-msc", true + case 5603: + return "a1-bs", true + case 5604: + return "a3-sdunode", true + case 5605: + return "a4-sdunode", true + case 5627: + return "ninaf", true + case 5628: + return "htrust", true + case 5629: + return "symantec-sfdb", true + case 5630: + return "precise-comm", true + case 5631: + return "pcanywheredata", true + case 5632: + return "pcanywherestat", true + case 5633: + return "beorl", true + case 5634: + return "xprtld", true + case 5670: + return "zre-disc", true + case 5671: + return "amqps", true + case 5672: + return "amqp", true + case 5673: + return "jms", true + case 5674: + return "hyperscsi-port", true + case 5675: + return "v5ua", true + case 5676: + return "raadmin", true + case 5677: + return "questdb2-lnchr", true + case 5678: + return "rrac", true + case 5679: + return "dccm", true + case 5680: + return "auriga-router", true + case 5681: + return "ncxcp", true + case 5682: + return "brightcore", true + case 5683: + return "coap", true + case 5684: + return "coaps", true + case 5687: + return "gog-multiplayer", true + case 5688: + return "ggz", true + case 5689: + return "qmvideo", true + case 5713: + return "proshareaudio", true + case 5714: + return "prosharevideo", true + case 5715: + return "prosharedata", true + case 5716: + return "prosharerequest", true + case 5717: + return "prosharenotify", true + case 5718: + return "dpm", true + case 5719: + return "dpm-agent", true + case 5720: + return "ms-licensing", true + case 5721: + return "dtpt", true + case 5722: + return "msdfsr", true + case 5723: + return "omhs", true + case 5724: + return "omsdk", true + case 5728: + return "io-dist-group", true + case 5729: + return "openmail", true + case 5730: + return "unieng", true + case 5741: + return "ida-discover1", true + case 5742: + return "ida-discover2", true + case 5743: + return "watchdoc-pod", true + case 5744: + return "watchdoc", true + case 5745: + return "fcopy-server", true + case 5746: + return "fcopys-server", true + case 5747: + return "tunatic", true + case 5748: + return "tunalyzer", true + case 5750: + return "rscd", true + case 5755: + return "openmailg", true + case 5757: + return "x500ms", true + case 5766: + return "openmailns", true + case 5767: + return "s-openmail", true + case 5768: + return "openmailpxy", true + case 5769: + return "spramsca", true + case 5770: + return "spramsd", true + case 5771: + return "netagent", true + case 5777: + return "starfield-io", true + case 5781: + return "3par-evts", true + case 5782: + return "3par-mgmt", true + case 5783: + return "3par-mgmt-ssl", true + case 5784: + return "ibar", true + case 5785: + return "3par-rcopy", true + case 5786: + return "cisco-redu", true + case 5787: + return "waascluster", true + case 5793: + return "xtreamx", true + case 5794: + return "spdp", true + case 5813: + return "icmpd", true + case 5814: + return "spt-automation", true + case 5859: + return "wherehoo", true + case 5863: + return "ppsuitemsg", true + case 5900: + return "rfb", true + case 5903: + return "ff-ice", true + case 5904: + return "ag-swim", true + case 5905: + return "asmgcs", true + case 5906: + return "rpas-c2", true + case 5907: + return "dsd", true + case 5908: + return "ipsma", true + case 5909: + return "agma", true + case 5910: + return "ats-atn", true + case 5911: + return "ats-acars", true + case 5912: + return "ais-met", true + case 5913: + return "aoc-acars", true + case 5963: + return "indy", true + case 5968: + return "mppolicy-v5", true + case 5969: + return "mppolicy-mgr", true + case 5984: + return "couchdb", true + case 5985: + return "wsman", true + case 5986: + return "wsmans", true + case 5987: + return "wbem-rmi", true + case 5988: + return "wbem-http", true + case 5989: + return "wbem-https", true + case 5990: + return "wbem-exp-https", true + case 5991: + return "nuxsl", true + case 5992: + return "consul-insight", true + case 5999: + return "cvsup", true + case 6064: + return "ndl-ahp-svc", true + case 6065: + return "winpharaoh", true + case 6066: + return "ewctsp", true + case 6069: + return "trip", true + case 6070: + return "messageasap", true + case 6071: + return "ssdtp", true + case 6072: + return "diagnose-proc", true + case 6073: + return "directplay8", true + case 6074: + return "max", true + case 6080: + return "gue", true + case 6081: + return "geneve", true + case 6082: + return "p25cai", true + case 6083: + return "miami-bcast", true + case 6085: + return "konspire2b", true + case 6086: + return "pdtp", true + case 6087: + return "ldss", true + case 6088: + return "doglms-notify", true + case 6100: + return "synchronet-db", true + case 6101: + return "synchronet-rtc", true + case 6102: + return "synchronet-upd", true + case 6103: + return "rets", true + case 6104: + return "dbdb", true + case 6105: + return "primaserver", true + case 6106: + return "mpsserver", true + case 6107: + return "etc-control", true + case 6108: + return "sercomm-scadmin", true + case 6109: + return "globecast-id", true + case 6110: + return "softcm", true + case 6111: + return "spc", true + case 6112: + return "dtspcd", true + case 6118: + return "tipc", true + case 6122: + return "bex-webadmin", true + case 6123: + return "backup-express", true + case 6124: + return "pnbs", true + case 6133: + return "nbt-wol", true + case 6140: + return "pulsonixnls", true + case 6141: + return "meta-corp", true + case 6142: + return "aspentec-lm", true + case 6143: + return "watershed-lm", true + case 6144: + return "statsci1-lm", true + case 6145: + return "statsci2-lm", true + case 6146: + return "lonewolf-lm", true + case 6147: + return "montage-lm", true + case 6148: + return "ricardo-lm", true + case 6149: + return "tal-pod", true + case 6160: + return "ecmp-data", true + case 6161: + return "patrol-ism", true + case 6162: + return "patrol-coll", true + case 6163: + return "pscribe", true + case 6200: + return "lm-x", true + case 6201: + return "thermo-calc", true + case 6209: + return "qmtps", true + case 6222: + return "radmind", true + case 6241: + return "jeol-nsddp-1", true + case 6242: + return "jeol-nsddp-2", true + case 6243: + return "jeol-nsddp-3", true + case 6244: + return "jeol-nsddp-4", true + case 6251: + return "tl1-raw-ssl", true + case 6252: + return "tl1-ssh", true + case 6253: + return "crip", true + case 6268: + return "grid", true + case 6269: + return "grid-alt", true + case 6300: + return "bmc-grx", true + case 6301: + return "bmc-ctd-ldap", true + case 6306: + return "ufmp", true + case 6315: + return "scup-disc", true + case 6316: + return "abb-escp", true + case 6317: + return "nav-data", true + case 6320: + return "repsvc", true + case 6321: + return "emp-server1", true + case 6322: + return "emp-server2", true + case 6324: + return "hrd-ns-disc", true + case 6343: + return "sflow", true + case 6346: + return "gnutella-svc", true + case 6347: + return "gnutella-rtr", true + case 6350: + return "adap", true + case 6355: + return "pmcs", true + case 6360: + return "metaedit-mu", true + case 6363: + return "ndn", true + case 6370: + return "metaedit-se", true + case 6382: + return "metatude-mds", true + case 6389: + return "clariion-evr01", true + case 6390: + return "metaedit-ws", true + case 6417: + return "faxcomservice", true + case 6419: + return "svdrp-disc", true + case 6420: + return "nim-vdrshell", true + case 6421: + return "nim-wan", true + case 6443: + return "sun-sr-https", true + case 6444: + return "sge-qmaster", true + case 6445: + return "sge-execd", true + case 6446: + return "mysql-proxy", true + case 6455: + return "skip-cert-recv", true + case 6456: + return "skip-cert-send", true + case 6464: + return "ieee11073-20701", true + case 6471: + return "lvision-lm", true + case 6480: + return "sun-sr-http", true + case 6481: + return "servicetags", true + case 6482: + return "ldoms-mgmt", true + case 6483: + return "SunVTS-RMI", true + case 6484: + return "sun-sr-jms", true + case 6485: + return "sun-sr-iiop", true + case 6486: + return "sun-sr-iiops", true + case 6487: + return "sun-sr-iiop-aut", true + case 6488: + return "sun-sr-jmx", true + case 6489: + return "sun-sr-admin", true + case 6500: + return "boks", true + case 6501: + return "boks-servc", true + case 6502: + return "boks-servm", true + case 6503: + return "boks-clntd", true + case 6505: + return "badm-priv", true + case 6506: + return "badm-pub", true + case 6507: + return "bdir-priv", true + case 6508: + return "bdir-pub", true + case 6509: + return "mgcs-mfp-port", true + case 6510: + return "mcer-port", true + case 6511: + return "dccp-udp", true + case 6514: + return "syslog-tls", true + case 6515: + return "elipse-rec", true + case 6543: + return "lds-distrib", true + case 6544: + return "lds-dump", true + case 6547: + return "apc-6547", true + case 6548: + return "apc-6548", true + case 6549: + return "apc-6549", true + case 6550: + return "fg-sysupdate", true + case 6551: + return "sum", true + case 6558: + return "xdsxdm", true + case 6566: + return "sane-port", true + case 6568: + return "rp-reputation", true + case 6579: + return "affiliate", true + case 6580: + return "parsec-master", true + case 6581: + return "parsec-peer", true + case 6582: + return "parsec-game", true + case 6583: + return "joaJewelSuite", true + case 6619: + return "odette-ftps", true + case 6620: + return "kftp-data", true + case 6621: + return "kftp", true + case 6622: + return "mcftp", true + case 6623: + return "ktelnet", true + case 6626: + return "wago-service", true + case 6627: + return "nexgen", true + case 6628: + return "afesc-mc", true + case 6629: + return "nexgen-aux", true + case 6633: + return "cisco-vpath-tun", true + case 6634: + return "mpls-pm", true + case 6635: + return "mpls-udp", true + case 6636: + return "mpls-udp-dtls", true + case 6653: + return "openflow", true + case 6657: + return "palcom-disc", true + case 6670: + return "vocaltec-gold", true + case 6671: + return "p4p-portal", true + case 6672: + return "vision-server", true + case 6673: + return "vision-elmd", true + case 6678: + return "vfbp-disc", true + case 6679: + return "osaut", true + case 6689: + return "tsa", true + case 6696: + return "babel", true + case 6699: + return "babel-dtls", true + case 6701: + return "kti-icad-srvr", true + case 6702: + return "e-design-net", true + case 6703: + return "e-design-web", true + case 6714: + return "ibprotocol", true + case 6715: + return "fibotrader-com", true + case 6767: + return "bmc-perf-agent", true + case 6768: + return "bmc-perf-mgrd", true + case 6769: + return "adi-gxp-srvprt", true + case 6770: + return "plysrv-http", true + case 6771: + return "plysrv-https", true + case 6784: + return "bfd-lag", true + case 6785: + return "dgpf-exchg", true + case 6786: + return "smc-jmx", true + case 6787: + return "smc-admin", true + case 6788: + return "smc-http", true + case 6790: + return "hnmp", true + case 6791: + return "hnm", true + case 6801: + return "acnet", true + case 6831: + return "ambit-lm", true + case 6841: + return "netmo-default", true + case 6842: + return "netmo-http", true + case 6850: + return "iccrushmore", true + case 6868: + return "acctopus-st", true + case 6888: + return "muse", true + case 6924: + return "split-ping", true + case 6935: + return "ethoscan", true + case 6936: + return "xsmsvc", true + case 6946: + return "bioserver", true + case 6951: + return "otlp", true + case 6961: + return "jmact3", true + case 6962: + return "jmevt2", true + case 6963: + return "swismgr1", true + case 6964: + return "swismgr2", true + case 6965: + return "swistrap", true + case 6966: + return "swispol", true + case 6969: + return "acmsoda", true + case 6980: + return "qolyester", true + case 6997: + return "MobilitySrv", true + case 6998: + return "iatp-highpri", true + case 6999: + return "iatp-normalpri", true + case 7000: + return "afs3-fileserver", true + case 7001: + return "afs3-callback", true + case 7002: + return "afs3-prserver", true + case 7003: + return "afs3-vlserver", true + case 7004: + return "afs3-kaserver", true + case 7005: + return "afs3-volser", true + case 7006: + return "afs3-errors", true + case 7007: + return "afs3-bos", true + case 7008: + return "afs3-update", true + case 7009: + return "afs3-rmtsys", true + case 7010: + return "ups-onlinet", true + case 7011: + return "talon-disc", true + case 7012: + return "talon-engine", true + case 7013: + return "microtalon-dis", true + case 7014: + return "microtalon-com", true + case 7015: + return "talon-webserver", true + case 7016: + return "spg", true + case 7017: + return "grasp", true + case 7019: + return "doceri-view", true + case 7020: + return "dpserve", true + case 7021: + return "dpserveadmin", true + case 7022: + return "ctdp", true + case 7023: + return "ct2nmcs", true + case 7024: + return "vmsvc", true + case 7025: + return "vmsvc-2", true + case 7030: + return "op-probe", true + case 7040: + return "quest-disc", true + case 7070: + return "arcp", true + case 7071: + return "iwg1", true + case 7072: + return "iba-cfg-disc", true + case 7080: + return "empowerid", true + case 7088: + return "zixi-transport", true + case 7095: + return "jdp-disc", true + case 7099: + return "lazy-ptop", true + case 7100: + return "font-service", true + case 7101: + return "elcn", true + case 7107: + return "aes-x170", true + case 7121: + return "virprot-lm", true + case 7128: + return "scenidm", true + case 7129: + return "scenccs", true + case 7161: + return "cabsm-comm", true + case 7162: + return "caistoragemgr", true + case 7163: + return "cacsambroker", true + case 7164: + return "fsr", true + case 7165: + return "doc-server", true + case 7166: + return "aruba-server", true + case 7169: + return "ccag-pib", true + case 7170: + return "nsrp", true + case 7171: + return "drm-production", true + case 7174: + return "clutild", true + case 7181: + return "janus-disc", true + case 7200: + return "fodms", true + case 7201: + return "dlip", true + case 7227: + return "ramp", true + case 7235: + return "aspcoordination", true + case 7244: + return "frc-hicp-disc", true + case 7262: + return "cnap", true + case 7272: + return "watchme-7272", true + case 7273: + return "oma-rlp", true + case 7274: + return "oma-rlp-s", true + case 7275: + return "oma-ulp", true + case 7276: + return "oma-ilp", true + case 7277: + return "oma-ilp-s", true + case 7278: + return "oma-dcdocbs", true + case 7279: + return "ctxlic", true + case 7280: + return "itactionserver1", true + case 7281: + return "itactionserver2", true + case 7282: + return "mzca-alert", true + case 7365: + return "lcm-server", true + case 7391: + return "mindfilesys", true + case 7392: + return "mrssrendezvous", true + case 7393: + return "nfoldman", true + case 7394: + return "fse", true + case 7395: + return "winqedit", true + case 7397: + return "hexarc", true + case 7400: + return "rtps-discovery", true + case 7401: + return "rtps-dd-ut", true + case 7402: + return "rtps-dd-mt", true + case 7410: + return "ionixnetmon", true + case 7411: + return "daqstream", true + case 7420: + return "ipluminary", true + case 7421: + return "mtportmon", true + case 7426: + return "pmdmgr", true + case 7427: + return "oveadmgr", true + case 7428: + return "ovladmgr", true + case 7429: + return "opi-sock", true + case 7430: + return "xmpv7", true + case 7431: + return "pmd", true + case 7437: + return "faximum", true + case 7443: + return "oracleas-https", true + case 7473: + return "rise", true + case 7491: + return "telops-lmd", true + case 7500: + return "silhouette", true + case 7501: + return "ovbus", true + case 7510: + return "ovhpas", true + case 7511: + return "pafec-lm", true + case 7542: + return "saratoga", true + case 7543: + return "atul", true + case 7544: + return "nta-ds", true + case 7545: + return "nta-us", true + case 7546: + return "cfs", true + case 7547: + return "cwmp", true + case 7548: + return "tidp", true + case 7549: + return "nls-tl", true + case 7550: + return "cloudsignaling", true + case 7560: + return "sncp", true + case 7566: + return "vsi-omega", true + case 7570: + return "aries-kfinder", true + case 7574: + return "coherence-disc", true + case 7588: + return "sun-lm", true + case 7606: + return "mipi-debug", true + case 7624: + return "indi", true + case 7627: + return "soap-http", true + case 7628: + return "zen-pawn", true + case 7629: + return "xdas", true + case 7633: + return "pmdfmgt", true + case 7648: + return "cuseeme", true + case 7663: + return "rome", true + case 7674: + return "imqtunnels", true + case 7675: + return "imqtunnel", true + case 7676: + return "imqbrokerd", true + case 7677: + return "sun-user-https", true + case 7680: + return "ms-do", true + case 7689: + return "collaber", true + case 7697: + return "klio", true + case 7707: + return "sync-em7", true + case 7708: + return "scinet", true + case 7720: + return "medimageportal", true + case 7724: + return "nsdeepfreezectl", true + case 7725: + return "nitrogen", true + case 7726: + return "freezexservice", true + case 7727: + return "trident-data", true + case 7728: + return "osvr", true + case 7734: + return "smip", true + case 7738: + return "aiagent", true + case 7741: + return "scriptview", true + case 7743: + return "sstp-1", true + case 7744: + return "raqmon-pdu", true + case 7747: + return "prgp", true + case 7777: + return "cbt", true + case 7778: + return "interwise", true + case 7779: + return "vstat", true + case 7781: + return "accu-lmgr", true + case 7784: + return "s-bfd", true + case 7786: + return "minivend", true + case 7787: + return "popup-reminders", true + case 7789: + return "office-tools", true + case 7794: + return "q3ade", true + case 7797: + return "pnet-conn", true + case 7798: + return "pnet-enc", true + case 7799: + return "altbsdp", true + case 7800: + return "asr", true + case 7801: + return "ssp-client", true + case 7802: + return "vns-tp", true + case 7810: + return "rbt-wanopt", true + case 7845: + return "apc-7845", true + case 7846: + return "apc-7846", true + case 7872: + return "mipv6tls", true + case 7880: + return "pss", true + case 7887: + return "ubroker", true + case 7900: + return "mevent", true + case 7901: + return "tnos-sp", true + case 7902: + return "tnos-dp", true + case 7903: + return "tnos-dps", true + case 7913: + return "qo-secure", true + case 7932: + return "t2-drm", true + case 7933: + return "t2-brm", true + case 7962: + return "generalsync", true + case 7967: + return "supercell", true + case 7979: + return "micromuse-ncps", true + case 7980: + return "quest-vista", true + case 7982: + return "sossd-disc", true + case 7998: + return "usicontentpush", true + case 7999: + return "irdmi2", true + case 8000: + return "irdmi", true + case 8001: + return "vcom-tunnel", true + case 8002: + return "teradataordbms", true + case 8003: + return "mcreport", true + case 8005: + return "mxi", true + case 8006: + return "wpl-disc", true + case 8007: + return "warppipe", true + case 8008: + return "http-alt", true + case 8017: + return "cisco-cloudsec", true + case 8019: + return "qbdb", true + case 8020: + return "intu-ec-svcdisc", true + case 8021: + return "intu-ec-client", true + case 8022: + return "oa-system", true + case 8023: + return "arca-api", true + case 8025: + return "ca-audit-da", true + case 8026: + return "ca-audit-ds", true + case 8027: + return "papachi-p2p-srv", true + case 8032: + return "pro-ed", true + case 8033: + return "mindprint", true + case 8034: + return "vantronix-mgmt", true + case 8040: + return "ampify", true + case 8041: + return "enguity-xccetp", true + case 8052: + return "senomix01", true + case 8053: + return "senomix02", true + case 8054: + return "senomix03", true + case 8055: + return "senomix04", true + case 8056: + return "senomix05", true + case 8057: + return "senomix06", true + case 8058: + return "senomix07", true + case 8059: + return "senomix08", true + case 8060: + return "aero", true + case 8074: + return "gadugadu", true + case 8080: + return "http-alt", true + case 8081: + return "sunproxyadmin", true + case 8082: + return "us-cli", true + case 8083: + return "us-srv", true + case 8086: + return "d-s-n", true + case 8087: + return "simplifymedia", true + case 8088: + return "radan-http", true + case 8097: + return "sac", true + case 8100: + return "xprint-server", true + case 8111: + return "skynetflow", true + case 8115: + return "mtl8000-matrix", true + case 8116: + return "cp-cluster", true + case 8118: + return "privoxy", true + case 8121: + return "apollo-data", true + case 8122: + return "apollo-admin", true + case 8128: + return "paycash-online", true + case 8129: + return "paycash-wbp", true + case 8130: + return "indigo-vrmi", true + case 8131: + return "indigo-vbcp", true + case 8132: + return "dbabble", true + case 8148: + return "isdd", true + case 8149: + return "eor-game", true + case 8160: + return "patrol", true + case 8161: + return "patrol-snmp", true + case 8182: + return "vmware-fdm", true + case 8184: + return "itach", true + case 8192: + return "spytechphone", true + case 8194: + return "blp1", true + case 8195: + return "blp2", true + case 8199: + return "vvr-data", true + case 8200: + return "trivnet1", true + case 8201: + return "trivnet2", true + case 8202: + return "aesop", true + case 8204: + return "lm-perfworks", true + case 8205: + return "lm-instmgr", true + case 8206: + return "lm-dta", true + case 8207: + return "lm-sserver", true + case 8208: + return "lm-webwatcher", true + case 8211: + return "aruba-papi", true + case 8230: + return "rexecj", true + case 8231: + return "hncp-udp-port", true + case 8232: + return "hncp-dtls-port", true + case 8243: + return "synapse-nhttps", true + case 8266: + return "espeasy-p2p", true + case 8276: + return "ms-mcc", true + case 8280: + return "synapse-nhttp", true + case 8282: + return "libelle-disc", true + case 8292: + return "blp3", true + case 8294: + return "blp4", true + case 8300: + return "tmi", true + case 8301: + return "amberon", true + case 8320: + return "tnp-discover", true + case 8321: + return "tnp", true + case 8322: + return "garmin-marine", true + case 8351: + return "server-find", true + case 8376: + return "cruise-enum", true + case 8377: + return "cruise-swroute", true + case 8378: + return "cruise-config", true + case 8379: + return "cruise-diags", true + case 8380: + return "cruise-update", true + case 8383: + return "m2mservices", true + case 8384: + return "marathontp", true + case 8400: + return "cvd", true + case 8401: + return "sabarsd", true + case 8402: + return "abarsd", true + case 8403: + return "admind", true + case 8416: + return "espeech", true + case 8417: + return "espeech-rtp", true + case 8433: + return "aws-as2", true + case 8442: + return "cybro-a-bus", true + case 8443: + return "pcsync-https", true + case 8444: + return "pcsync-http", true + case 8445: + return "copy-disc", true + case 8450: + return "npmp", true + case 8472: + return "otv", true + case 8473: + return "vp2p", true + case 8474: + return "noteshare", true + case 8500: + return "fmtp", true + case 8501: + return "cmtp-av", true + case 8503: + return "lsp-self-ping", true + case 8554: + return "rtsp-alt", true + case 8555: + return "d-fence", true + case 8567: + return "dof-tunnel", true + case 8600: + return "asterix", true + case 8609: + return "canon-cpp-disc", true + case 8610: + return "canon-mfnp", true + case 8611: + return "canon-bjnp1", true + case 8612: + return "canon-bjnp2", true + case 8613: + return "canon-bjnp3", true + case 8614: + return "canon-bjnp4", true + case 8675: + return "msi-cps-rm-disc", true + case 8686: + return "sun-as-jmxrmi", true + case 8732: + return "dtp-net", true + case 8733: + return "ibus", true + case 8763: + return "mc-appserver", true + case 8764: + return "openqueue", true + case 8765: + return "ultraseek-http", true + case 8766: + return "amcs", true + case 8770: + return "dpap", true + case 8786: + return "msgclnt", true + case 8787: + return "msgsrvr", true + case 8793: + return "acd-pm", true + case 8800: + return "sunwebadmin", true + case 8804: + return "truecm", true + case 8805: + return "pfcp", true + case 8807: + return "hes-clip", true + case 8808: + return "ssports-bcast", true + case 8809: + return "3gpp-monp", true + case 8873: + return "dxspider", true + case 8880: + return "cddbp-alt", true + case 8883: + return "secure-mqtt", true + case 8888: + return "ddi-udp-1", true + case 8889: + return "ddi-udp-2", true + case 8890: + return "ddi-udp-3", true + case 8891: + return "ddi-udp-4", true + case 8892: + return "ddi-udp-5", true + case 8893: + return "ddi-udp-6", true + case 8894: + return "ddi-udp-7", true + case 8899: + return "ospf-lite", true + case 8900: + return "jmb-cds1", true + case 8901: + return "jmb-cds2", true + case 8910: + return "manyone-http", true + case 8911: + return "manyone-xml", true + case 8912: + return "wcbackup", true + case 8913: + return "dragonfly", true + case 8954: + return "cumulus-admin", true + case 8980: + return "nod-provider", true + case 8981: + return "nod-client", true + case 8989: + return "sunwebadmins", true + case 8990: + return "http-wmap", true + case 8991: + return "https-wmap", true + case 8999: + return "bctp", true + case 9000: + return "cslistener", true + case 9001: + return "etlservicemgr", true + case 9002: + return "dynamid", true + case 9007: + return "ogs-client", true + case 9009: + return "pichat", true + case 9011: + return "d-star", true + case 9020: + return "tambora", true + case 9021: + return "panagolin-ident", true + case 9022: + return "paragent", true + case 9023: + return "swa-1", true + case 9024: + return "swa-2", true + case 9025: + return "swa-3", true + case 9026: + return "swa-4", true + case 9060: + return "CardWeb-RT", true + case 9080: + return "glrpc", true + case 9081: + return "cisco-aqos", true + case 9084: + return "aurora", true + case 9085: + return "ibm-rsyscon", true + case 9086: + return "net2display", true + case 9087: + return "classic", true + case 9088: + return "sqlexec", true + case 9089: + return "sqlexec-ssl", true + case 9090: + return "websm", true + case 9091: + return "xmltec-xmlmail", true + case 9092: + return "XmlIpcRegSvc", true + case 9100: + return "hp-pdl-datastr", true + case 9101: + return "bacula-dir", true + case 9102: + return "bacula-fd", true + case 9103: + return "bacula-sd", true + case 9104: + return "peerwire", true + case 9105: + return "xadmin", true + case 9106: + return "astergate-disc", true + case 9111: + return "hexxorecore", true + case 9119: + return "mxit", true + case 9131: + return "dddp", true + case 9160: + return "apani1", true + case 9161: + return "apani2", true + case 9162: + return "apani3", true + case 9163: + return "apani4", true + case 9164: + return "apani5", true + case 9191: + return "sun-as-jpda", true + case 9200: + return "wap-wsp", true + case 9201: + return "wap-wsp-wtp", true + case 9202: + return "wap-wsp-s", true + case 9203: + return "wap-wsp-wtp-s", true + case 9204: + return "wap-vcard", true + case 9205: + return "wap-vcal", true + case 9206: + return "wap-vcard-s", true + case 9207: + return "wap-vcal-s", true + case 9208: + return "rjcdb-vcards", true + case 9209: + return "almobile-system", true + case 9210: + return "oma-mlp", true + case 9211: + return "oma-mlp-s", true + case 9212: + return "serverviewdbms", true + case 9213: + return "serverstart", true + case 9214: + return "ipdcesgbs", true + case 9215: + return "insis", true + case 9216: + return "acme", true + case 9217: + return "fsc-port", true + case 9222: + return "teamcoherence", true + case 9255: + return "mon", true + case 9277: + return "traingpsdata", true + case 9278: + return "pegasus", true + case 9279: + return "pegasus-ctl", true + case 9280: + return "pgps", true + case 9281: + return "swtp-port1", true + case 9282: + return "swtp-port2", true + case 9283: + return "callwaveiam", true + case 9284: + return "visd", true + case 9285: + return "n2h2server", true + case 9286: + return "n2receive", true + case 9287: + return "cumulus", true + case 9292: + return "armtechdaemon", true + case 9293: + return "storview", true + case 9294: + return "armcenterhttp", true + case 9295: + return "armcenterhttps", true + case 9300: + return "vrace", true + case 9318: + return "secure-ts", true + case 9321: + return "guibase", true + case 9343: + return "mpidcmgr", true + case 9344: + return "mphlpdmc", true + case 9346: + return "ctechlicensing", true + case 9374: + return "fjdmimgr", true + case 9380: + return "boxp", true + case 9396: + return "fjinvmgr", true + case 9397: + return "mpidcagt", true + case 9400: + return "sec-t4net-srv", true + case 9401: + return "sec-t4net-clt", true + case 9402: + return "sec-pc2fax-srv", true + case 9418: + return "git", true + case 9443: + return "tungsten-https", true + case 9444: + return "wso2esb-console", true + case 9450: + return "sntlkeyssrvr", true + case 9500: + return "ismserver", true + case 9522: + return "sma-spw", true + case 9535: + return "mngsuite", true + case 9536: + return "laes-bf", true + case 9555: + return "trispen-sra", true + case 9592: + return "ldgateway", true + case 9593: + return "cba8", true + case 9594: + return "msgsys", true + case 9595: + return "pds", true + case 9596: + return "mercury-disc", true + case 9597: + return "pd-admin", true + case 9598: + return "vscp", true + case 9599: + return "robix", true + case 9600: + return "micromuse-ncpw", true + case 9612: + return "streamcomm-ds", true + case 9618: + return "condor", true + case 9628: + return "odbcpathway", true + case 9629: + return "uniport", true + case 9632: + return "mc-comm", true + case 9667: + return "xmms2", true + case 9668: + return "tec5-sdctp", true + case 9694: + return "client-wakeup", true + case 9695: + return "ccnx", true + case 9700: + return "board-roar", true + case 9747: + return "l5nas-parchan", true + case 9750: + return "board-voip", true + case 9753: + return "rasadv", true + case 9762: + return "tungsten-http", true + case 9800: + return "davsrc", true + case 9801: + return "sstp-2", true + case 9802: + return "davsrcs", true + case 9875: + return "sapv1", true + case 9878: + return "kca-service", true + case 9888: + return "cyborg-systems", true + case 9889: + return "gt-proxy", true + case 9898: + return "monkeycom", true + case 9899: + return "sctp-tunneling", true + case 9900: + return "iua", true + case 9901: + return "enrp", true + case 9903: + return "multicast-ping", true + case 9909: + return "domaintime", true + case 9911: + return "sype-transport", true + case 9950: + return "apc-9950", true + case 9951: + return "apc-9951", true + case 9952: + return "apc-9952", true + case 9953: + return "acis", true + case 9955: + return "alljoyn-mcm", true + case 9956: + return "alljoyn", true + case 9966: + return "odnsp", true + case 9987: + return "dsm-scm-target", true + case 9990: + return "osm-appsrvr", true + case 9991: + return "osm-oev", true + case 9992: + return "palace-1", true + case 9993: + return "palace-2", true + case 9994: + return "palace-3", true + case 9995: + return "palace-4", true + case 9996: + return "palace-5", true + case 9997: + return "palace-6", true + case 9998: + return "distinct32", true + case 9999: + return "distinct", true + case 10000: + return "ndmp", true + case 10001: + return "scp-config", true + case 10002: + return "documentum", true + case 10003: + return "documentum-s", true + case 10007: + return "mvs-capacity", true + case 10008: + return "octopus", true + case 10009: + return "swdtp-sv", true + case 10023: + return "cefd-vmp", true + case 10050: + return "zabbix-agent", true + case 10051: + return "zabbix-trapper", true + case 10080: + return "amanda", true + case 10081: + return "famdc", true + case 10100: + return "itap-ddtp", true + case 10101: + return "ezmeeting-2", true + case 10102: + return "ezproxy-2", true + case 10103: + return "ezrelay", true + case 10104: + return "swdtp", true + case 10107: + return "bctp-server", true + case 10110: + return "nmea-0183", true + case 10111: + return "nmea-onenet", true + case 10113: + return "netiq-endpoint", true + case 10114: + return "netiq-qcheck", true + case 10115: + return "netiq-endpt", true + case 10116: + return "netiq-voipa", true + case 10117: + return "iqrm", true + case 10128: + return "bmc-perf-sd", true + case 10160: + return "qb-db-server", true + case 10161: + return "snmpdtls", true + case 10162: + return "snmpdtls-trap", true + case 10200: + return "trisoap", true + case 10201: + return "rscs", true + case 10252: + return "apollo-relay", true + case 10253: + return "eapol-relay", true + case 10260: + return "axis-wimp-port", true + case 10288: + return "blocks", true + case 10439: + return "bngsync", true + case 10500: + return "hip-nat-t", true + case 10540: + return "MOS-lower", true + case 10541: + return "MOS-upper", true + case 10542: + return "MOS-aux", true + case 10543: + return "MOS-soap", true + case 10544: + return "MOS-soap-opt", true + case 10800: + return "gap", true + case 10805: + return "lpdg", true + case 10810: + return "nmc-disc", true + case 10860: + return "helix", true + case 10880: + return "bveapi", true + case 10990: + return "rmiaux", true + case 11000: + return "irisa", true + case 11001: + return "metasys", true + case 11095: + return "weave", true + case 11106: + return "sgi-lk", true + case 11108: + return "myq-termlink", true + case 11111: + return "vce", true + case 11112: + return "dicom", true + case 11161: + return "suncacao-snmp", true + case 11162: + return "suncacao-jmxmp", true + case 11163: + return "suncacao-rmi", true + case 11164: + return "suncacao-csa", true + case 11165: + return "suncacao-websvc", true + case 11171: + return "snss", true + case 11201: + return "smsqp", true + case 11208: + return "wifree", true + case 11211: + return "memcache", true + case 11319: + return "imip", true + case 11320: + return "imip-channels", true + case 11321: + return "arena-server", true + case 11367: + return "atm-uhas", true + case 11371: + return "hkp", true + case 11430: + return "lsdp", true + case 11600: + return "tempest-port", true + case 11720: + return "h323callsigalt", true + case 11723: + return "emc-xsw-dcache", true + case 11751: + return "intrepid-ssl", true + case 11796: + return "lanschool-mpt", true + case 11876: + return "xoraya", true + case 11877: + return "x2e-disc", true + case 11967: + return "sysinfo-sp", true + case 12000: + return "entextxid", true + case 12001: + return "entextnetwk", true + case 12002: + return "entexthigh", true + case 12003: + return "entextmed", true + case 12004: + return "entextlow", true + case 12005: + return "dbisamserver1", true + case 12006: + return "dbisamserver2", true + case 12007: + return "accuracer", true + case 12008: + return "accuracer-dbms", true + case 12009: + return "ghvpn", true + case 12012: + return "vipera", true + case 12013: + return "vipera-ssl", true + case 12109: + return "rets-ssl", true + case 12121: + return "nupaper-ss", true + case 12168: + return "cawas", true + case 12172: + return "hivep", true + case 12300: + return "linogridengine", true + case 12321: + return "warehouse-sss", true + case 12322: + return "warehouse", true + case 12345: + return "italk", true + case 12753: + return "tsaf", true + case 13160: + return "i-zipqd", true + case 13216: + return "bcslogc", true + case 13217: + return "rs-pias", true + case 13218: + return "emc-vcas-udp", true + case 13223: + return "powwow-client", true + case 13224: + return "powwow-server", true + case 13400: + return "doip-disc", true + case 13720: + return "bprd", true + case 13721: + return "bpdbm", true + case 13722: + return "bpjava-msvc", true + case 13724: + return "vnetd", true + case 13782: + return "bpcd", true + case 13783: + return "vopied", true + case 13785: + return "nbdb", true + case 13786: + return "nomdb", true + case 13818: + return "dsmcc-config", true + case 13819: + return "dsmcc-session", true + case 13820: + return "dsmcc-passthru", true + case 13821: + return "dsmcc-download", true + case 13822: + return "dsmcc-ccp", true + case 13894: + return "ucontrol", true + case 13929: + return "dta-systems", true + case 14000: + return "scotty-ft", true + case 14001: + return "sua", true + case 14002: + return "scotty-disc", true + case 14033: + return "sage-best-com1", true + case 14034: + return "sage-best-com2", true + case 14141: + return "vcs-app", true + case 14142: + return "icpp", true + case 14145: + return "gcm-app", true + case 14149: + return "vrts-tdd", true + case 14154: + return "vad", true + case 14250: + return "cps", true + case 14414: + return "ca-web-update", true + case 14936: + return "hde-lcesrvr-1", true + case 14937: + return "hde-lcesrvr-2", true + case 15000: + return "hydap", true + case 15118: + return "v2g-secc", true + case 15345: + return "xpilot", true + case 15363: + return "3link", true + case 15555: + return "cisco-snat", true + case 15660: + return "bex-xr", true + case 15740: + return "ptp", true + case 15998: + return "2ping", true + case 16003: + return "alfin", true + case 16161: + return "sun-sea-port", true + case 16309: + return "etb4j", true + case 16310: + return "pduncs", true + case 16311: + return "pdefmns", true + case 16360: + return "netserialext1", true + case 16361: + return "netserialext2", true + case 16367: + return "netserialext3", true + case 16368: + return "netserialext4", true + case 16384: + return "connected", true + case 16666: + return "vtp", true + case 16900: + return "newbay-snc-mc", true + case 16950: + return "sgcip", true + case 16991: + return "intel-rci-mp", true + case 16992: + return "amt-soap-http", true + case 16993: + return "amt-soap-https", true + case 16994: + return "amt-redir-tcp", true + case 16995: + return "amt-redir-tls", true + case 17007: + return "isode-dua", true + case 17185: + return "soundsvirtual", true + case 17219: + return "chipper", true + case 17220: + return "avtp", true + case 17221: + return "avdecc", true + case 17222: + return "cpsp", true + case 17224: + return "trdp-pd", true + case 17225: + return "trdp-md", true + case 17234: + return "integrius-stp", true + case 17235: + return "ssh-mgmt", true + case 17500: + return "db-lsp-disc", true + case 17729: + return "ea", true + case 17754: + return "zep", true + case 17755: + return "zigbee-ip", true + case 17756: + return "zigbee-ips", true + case 18000: + return "biimenu", true + case 18181: + return "opsec-cvp", true + case 18182: + return "opsec-ufp", true + case 18183: + return "opsec-sam", true + case 18184: + return "opsec-lea", true + case 18185: + return "opsec-omi", true + case 18186: + return "ohsc", true + case 18187: + return "opsec-ela", true + case 18241: + return "checkpoint-rtm", true + case 18262: + return "gv-pf", true + case 18463: + return "ac-cluster", true + case 18516: + return "heythings", true + case 18634: + return "rds-ib", true + case 18635: + return "rds-ip", true + case 18668: + return "vdmmesh-disc", true + case 18769: + return "ique", true + case 18881: + return "infotos", true + case 18888: + return "apc-necmp", true + case 19000: + return "igrid", true + case 19007: + return "scintilla", true + case 19191: + return "opsec-uaa", true + case 19194: + return "ua-secureagent", true + case 19220: + return "cora-disc", true + case 19283: + return "keysrvr", true + case 19315: + return "keyshadow", true + case 19398: + return "mtrgtrans", true + case 19410: + return "hp-sco", true + case 19411: + return "hp-sca", true + case 19412: + return "hp-sessmon", true + case 19539: + return "fxuptp", true + case 19540: + return "sxuptp", true + case 19541: + return "jcp", true + case 19788: + return "mle", true + case 19999: + return "dnp-sec", true + case 20000: + return "dnp", true + case 20001: + return "microsan", true + case 20002: + return "commtact-http", true + case 20003: + return "commtact-https", true + case 20005: + return "openwebnet", true + case 20012: + return "ss-idi-disc", true + case 20014: + return "opendeploy", true + case 20034: + return "nburn-id", true + case 20046: + return "tmophl7mts", true + case 20048: + return "mountd", true + case 20049: + return "nfsrdma", true + case 20167: + return "tolfab", true + case 20202: + return "ipdtp-port", true + case 20222: + return "ipulse-ics", true + case 20480: + return "emwavemsg", true + case 20670: + return "track", true + case 20999: + return "athand-mmp", true + case 21000: + return "irtrans", true + case 21554: + return "dfserver", true + case 21590: + return "vofr-gateway", true + case 21800: + return "tvpm", true + case 21845: + return "webphone", true + case 21846: + return "netspeak-is", true + case 21847: + return "netspeak-cs", true + case 21848: + return "netspeak-acd", true + case 21849: + return "netspeak-cps", true + case 22000: + return "snapenetio", true + case 22001: + return "optocontrol", true + case 22002: + return "optohost002", true + case 22003: + return "optohost003", true + case 22004: + return "optohost004", true + case 22005: + return "optohost004", true + case 22273: + return "wnn6", true + case 22305: + return "cis", true + case 22333: + return "showcockpit-net", true + case 22335: + return "shrewd-stream", true + case 22343: + return "cis-secure", true + case 22347: + return "wibukey", true + case 22350: + return "codemeter", true + case 22555: + return "vocaltec-phone", true + case 22763: + return "talikaserver", true + case 22800: + return "aws-brf", true + case 22951: + return "brf-gw", true + case 23000: + return "inovaport1", true + case 23001: + return "inovaport2", true + case 23002: + return "inovaport3", true + case 23003: + return "inovaport4", true + case 23004: + return "inovaport5", true + case 23005: + return "inovaport6", true + case 23272: + return "s102", true + case 23294: + return "5afe-disc", true + case 23333: + return "elxmgmt", true + case 23400: + return "novar-dbase", true + case 23401: + return "novar-alarm", true + case 23402: + return "novar-global", true + case 24000: + return "med-ltp", true + case 24001: + return "med-fsp-rx", true + case 24002: + return "med-fsp-tx", true + case 24003: + return "med-supp", true + case 24004: + return "med-ovw", true + case 24005: + return "med-ci", true + case 24006: + return "med-net-svc", true + case 24242: + return "filesphere", true + case 24249: + return "vista-4gl", true + case 24321: + return "ild", true + case 24322: + return "hid", true + case 24386: + return "intel-rci", true + case 24465: + return "tonidods", true + case 24554: + return "binkp", true + case 24577: + return "bilobit-update", true + case 24676: + return "canditv", true + case 24677: + return "flashfiler", true + case 24678: + return "proactivate", true + case 24680: + return "tcc-http", true + case 24850: + return "assoc-disc", true + case 24922: + return "find", true + case 25000: + return "icl-twobase1", true + case 25001: + return "icl-twobase2", true + case 25002: + return "icl-twobase3", true + case 25003: + return "icl-twobase4", true + case 25004: + return "icl-twobase5", true + case 25005: + return "icl-twobase6", true + case 25006: + return "icl-twobase7", true + case 25007: + return "icl-twobase8", true + case 25008: + return "icl-twobase9", true + case 25009: + return "icl-twobase10", true + case 25793: + return "vocaltec-hos", true + case 25900: + return "tasp-net", true + case 25901: + return "niobserver", true + case 25902: + return "nilinkanalyst", true + case 25903: + return "niprobe", true + case 25954: + return "bf-game", true + case 25955: + return "bf-master", true + case 26000: + return "quake", true + case 26133: + return "scscp", true + case 26208: + return "wnn6-ds", true + case 26260: + return "ezproxy", true + case 26261: + return "ezmeeting", true + case 26262: + return "k3software-svr", true + case 26263: + return "k3software-cli", true + case 26486: + return "exoline-udp", true + case 26487: + return "exoconfig", true + case 26489: + return "exonet", true + case 27345: + return "imagepump", true + case 27442: + return "jesmsjc", true + case 27504: + return "kopek-httphead", true + case 27782: + return "ars-vista", true + case 27999: + return "tw-auth-key", true + case 28000: + return "nxlmd", true + case 28119: + return "a27-ran-ran", true + case 28200: + return "voxelstorm", true + case 28240: + return "siemensgsm", true + case 29167: + return "otmp", true + case 30001: + return "pago-services1", true + case 30002: + return "pago-services2", true + case 30003: + return "amicon-fpsu-ra", true + case 30004: + return "amicon-fpsu-s", true + case 30260: + return "kingdomsonline", true + case 30832: + return "samsung-disc", true + case 30999: + return "ovobs", true + case 31016: + return "ka-kdp", true + case 31029: + return "yawn", true + case 31337: + return "eldim", true + case 31416: + return "xqosd", true + case 31457: + return "tetrinet", true + case 31620: + return "lm-mon", true + case 31765: + return "gamesmith-port", true + case 31948: + return "iceedcp-tx", true + case 31949: + return "iceedcp-rx", true + case 32034: + return "iracinghelper", true + case 32249: + return "t1distproc60", true + case 32483: + return "apm-link", true + case 32635: + return "sec-ntb-clnt", true + case 32636: + return "DMExpress", true + case 32767: + return "filenet-powsrm", true + case 32768: + return "filenet-tms", true + case 32769: + return "filenet-rpc", true + case 32770: + return "filenet-nch", true + case 32771: + return "filenet-rmi", true + case 32772: + return "filenet-pa", true + case 32773: + return "filenet-cm", true + case 32774: + return "filenet-re", true + case 32775: + return "filenet-pch", true + case 32776: + return "filenet-peior", true + case 32777: + return "filenet-obrok", true + case 32801: + return "mlsn", true + case 32896: + return "idmgratm", true + case 33123: + return "aurora-balaena", true + case 33331: + return "diamondport", true + case 33334: + return "speedtrace-disc", true + case 33434: + return "traceroute", true + case 33435: + return "mtrace", true + case 33656: + return "snip-slave", true + case 34249: + return "turbonote-2", true + case 34378: + return "p-net-local", true + case 34379: + return "p-net-remote", true + case 34567: + return "edi_service", true + case 34962: + return "profinet-rt", true + case 34963: + return "profinet-rtm", true + case 34964: + return "profinet-cm", true + case 34980: + return "ethercat", true + case 35001: + return "rt-viewer", true + case 35004: + return "rt-classmanager", true + case 35100: + return "axio-disc", true + case 35355: + return "altova-lm-disc", true + case 36001: + return "allpeers", true + case 36411: + return "wlcp", true + case 36865: + return "kastenxpipe", true + case 37475: + return "neckar", true + case 37654: + return "unisys-eportal", true + case 38002: + return "crescoctrl-disc", true + case 38201: + return "galaxy7-data", true + case 38202: + return "fairview", true + case 38203: + return "agpolicy", true + case 39681: + return "turbonote-1", true + case 40000: + return "safetynetp", true + case 40023: + return "k-patentssensor", true + case 40841: + return "cscp", true + case 40842: + return "csccredir", true + case 40843: + return "csccfirewall", true + case 40853: + return "ortec-disc", true + case 41111: + return "fs-qos", true + case 41230: + return "z-wave-s", true + case 41794: + return "crestron-cip", true + case 41795: + return "crestron-ctp", true + case 42508: + return "candp", true + case 42509: + return "candrp", true + case 42510: + return "caerpc", true + case 43000: + return "recvr-rc-disc", true + case 43188: + return "reachout", true + case 43189: + return "ndm-agent-port", true + case 43190: + return "ip-provision", true + case 43210: + return "shaperai-disc", true + case 43438: + return "hmip-routing", true + case 43439: + return "eq3-config", true + case 43440: + return "ew-disc-cmd", true + case 43441: + return "ciscocsdb", true + case 44321: + return "pmcd", true + case 44322: + return "pmcdproxy", true + case 44544: + return "domiq", true + case 44553: + return "rbr-debug", true + case 44600: + return "asihpi", true + case 44818: + return "EtherNet-IP-2", true + case 44900: + return "m3da-disc", true + case 45000: + return "asmp-mon", true + case 45054: + return "invision-ag", true + case 45514: + return "cloudcheck-ping", true + case 45678: + return "eba", true + case 45825: + return "qdb2service", true + case 45966: + return "ssr-servermgr", true + case 46999: + return "mediabox", true + case 47000: + return "mbus", true + case 47100: + return "jvl-mactalk", true + case 47557: + return "dbbrowse", true + case 47624: + return "directplaysrvr", true + case 47806: + return "ap", true + case 47808: + return "bacnet", true + case 47809: + return "presonus-ucnet", true + case 48000: + return "nimcontroller", true + case 48001: + return "nimspooler", true + case 48002: + return "nimhub", true + case 48003: + return "nimgtw", true + case 48128: + return "isnetserv", true + case 48129: + return "blp5", true + case 48556: + return "com-bardac-dw", true + case 48619: + return "iqobject", true + case 48653: + return "robotraconteur", true + case 49001: + return "nusdp-disc", true + + } + + return "", false +} + +// SCTPPortNames contains the port names for all SCTP ports. +func SCTPPortNames(port SCTPPort) (string, bool) { + switch port { + case 9: + return "discard", true + case 20: + return "ftp-data", true + case 21: + return "ftp", true + case 22: + return "ssh", true + case 80: + return "http", true + case 179: + return "bgp", true + case 443: + return "https", true + case 1021: + return "exp1", true + case 1022: + return "exp2", true + case 1167: + return "cisco-ipsla", true + case 1528: + return "norp", true + case 1720: + return "h323hostcall", true + case 2049: + return "nfs", true + case 2225: + return "rcip-itu", true + case 2904: + return "m2ua", true + case 2905: + return "m3ua", true + case 2944: + return "megaco-h248", true + case 2945: + return "h248-binary", true + case 3097: + return "itu-bicc-stc", true + case 3565: + return "m2pa", true + case 3863: + return "asap-sctp", true + case 3864: + return "asap-sctp-tls", true + case 3868: + return "diameter", true + case 4195: + return "aws-wsp", true + case 4333: + return "ahsp", true + case 4502: + return "a25-fap-fgw", true + case 4711: + return "trinity-dist", true + case 4739: + return "ipfix", true + case 4740: + return "ipfixs", true + case 5060: + return "sip", true + case 5061: + return "sips", true + case 5090: + return "car", true + case 5091: + return "cxtp", true + case 5215: + return "noteza", true + case 5445: + return "smbdirect", true + case 5672: + return "amqp", true + case 5675: + return "v5ua", true + case 5868: + return "diameters", true + case 5903: + return "ff-ice", true + case 5904: + return "ag-swim", true + case 5905: + return "asmgcs", true + case 5906: + return "rpas-c2", true + case 5907: + return "dsd", true + case 5908: + return "ipsma", true + case 5909: + return "agma", true + case 5910: + return "cm", true + case 5911: + return "cpdlc", true + case 5912: + return "fis", true + case 5913: + return "ads-c", true + case 6704: + return "frc-hp", true + case 6705: + return "frc-mp", true + case 6706: + return "frc-lp", true + case 6970: + return "conductor-mpx", true + case 7626: + return "simco", true + case 7701: + return "nfapi", true + case 7728: + return "osvr", true + case 8471: + return "pim-port", true + case 9082: + return "lcs-ap", true + case 9084: + return "aurora", true + case 9900: + return "iua", true + case 9901: + return "enrp-sctp", true + case 9902: + return "enrp-sctp-tls", true + case 11235: + return "xcompute", true + case 11997: + return "wmereceiving", true + case 11998: + return "wmedistribution", true + case 11999: + return "wmereporting", true + case 14001: + return "sua", true + case 19999: + return "dnp-sec", true + case 20000: + return "dnp", true + case 20049: + return "nfsrdma", true + case 25471: + return "rna", true + case 29118: + return "sgsap", true + case 29168: + return "sbcap", true + case 29169: + return "iuhsctpassoc", true + case 30100: + return "rwp", true + case 36412: + return "s1-control", true + case 36422: + return "x2-control", true + case 36423: + return "slmap", true + case 36424: + return "nq-ap", true + case 36443: + return "m2ap", true + case 36444: + return "m3ap", true + case 36462: + return "xw-control", true + case 37472: + return "3gpp-w1ap", true + case 38412: + return "ng-control", true + case 38422: + return "xn-control", true + case 38462: + return "e1-interface", true + case 38472: + return "f1-control", true + + } + + return "", false +} diff --git a/vendor/github.com/google/gopacket/layers/icmp4.go b/vendor/github.com/gopacket/gopacket/layers/icmp4.go similarity index 93% rename from vendor/github.com/google/gopacket/layers/icmp4.go rename to vendor/github.com/gopacket/gopacket/layers/icmp4.go index bd3f03f00..da87f038d 100644 --- a/vendor/github.com/google/gopacket/layers/icmp4.go +++ b/vendor/github.com/gopacket/gopacket/layers/icmp4.go @@ -13,7 +13,7 @@ import ( "fmt" "reflect" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) const ( @@ -245,7 +245,8 @@ func (i *ICMPv4) SerializeTo(b gopacket.SerializeBuffer, opts gopacket.Serialize if opts.ComputeChecksums { bytes[2] = 0 bytes[3] = 0 - i.Checksum = tcpipChecksum(b.Bytes(), 0) + csum := gopacket.ComputeChecksum(b.Bytes(), 0) + i.Checksum = gopacket.FoldChecksum(csum) } binary.BigEndian.PutUint16(bytes[2:], i.Checksum) return nil @@ -261,6 +262,19 @@ func (i *ICMPv4) NextLayerType() gopacket.LayerType { return gopacket.LayerTypePayload } +func (i *ICMPv4) VerifyChecksum() (error, gopacket.ChecksumVerificationResult) { + bytes := append(i.Contents, i.Payload...) + + existing := i.Checksum + verification := gopacket.ComputeChecksum(bytes, 0) + correct := gopacket.FoldChecksum(verification - uint32(existing)) + return nil, gopacket.ChecksumVerificationResult{ + Valid: correct == existing, + Correct: uint32(correct), + Actual: uint32(existing), + } +} + func decodeICMPv4(data []byte, p gopacket.PacketBuilder) error { i := &ICMPv4{} return decodingLayerDecoder(i, data, p) diff --git a/vendor/github.com/google/gopacket/layers/icmp6.go b/vendor/github.com/gopacket/gopacket/layers/icmp6.go similarity index 93% rename from vendor/github.com/google/gopacket/layers/icmp6.go rename to vendor/github.com/gopacket/gopacket/layers/icmp6.go index 09afd11a6..c275a5bae 100644 --- a/vendor/github.com/google/gopacket/layers/icmp6.go +++ b/vendor/github.com/gopacket/gopacket/layers/icmp6.go @@ -13,7 +13,7 @@ import ( "fmt" "reflect" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) const ( @@ -214,7 +214,7 @@ func (i *ICMPv6) SerializeTo(b gopacket.SerializeBuffer, opts gopacket.Serialize if err != nil { return err } - i.Checksum = csum + i.Checksum = gopacket.FoldChecksum(csum) } binary.BigEndian.PutUint16(bytes[2:], i.Checksum) @@ -260,6 +260,22 @@ func (i *ICMPv6) NextLayerType() gopacket.LayerType { return gopacket.LayerTypePayload } +func (i *ICMPv6) VerifyChecksum() (error, gopacket.ChecksumVerificationResult) { + bytes := append(i.Contents, i.Payload...) + + existing := i.Checksum + verification, err := i.computeChecksum(bytes, IPProtocolICMPv6) + if err != nil { + return err, gopacket.ChecksumVerificationResult{} + } + correct := gopacket.FoldChecksum(verification - uint32(existing)) + return nil, gopacket.ChecksumVerificationResult{ + Valid: correct == existing, + Correct: uint32(correct), + Actual: uint32(existing), + } +} + func decodeICMPv6(data []byte, p gopacket.PacketBuilder) error { i := &ICMPv6{} return decodingLayerDecoder(i, data, p) diff --git a/vendor/github.com/google/gopacket/layers/icmp6msg.go b/vendor/github.com/gopacket/gopacket/layers/icmp6msg.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/icmp6msg.go rename to vendor/github.com/gopacket/gopacket/layers/icmp6msg.go index d9268db05..8af7aa69b 100644 --- a/vendor/github.com/google/gopacket/layers/icmp6msg.go +++ b/vendor/github.com/gopacket/gopacket/layers/icmp6msg.go @@ -15,7 +15,7 @@ import ( "net" "time" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // Based on RFC 4861 diff --git a/vendor/github.com/google/gopacket/layers/igmp.go b/vendor/github.com/gopacket/gopacket/layers/igmp.go similarity index 97% rename from vendor/github.com/google/gopacket/layers/igmp.go rename to vendor/github.com/gopacket/gopacket/layers/igmp.go index d00841535..3d086d5be 100644 --- a/vendor/github.com/google/gopacket/layers/igmp.go +++ b/vendor/github.com/gopacket/gopacket/layers/igmp.go @@ -13,7 +13,7 @@ import ( "net" "time" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) type IGMPType uint8 @@ -93,8 +93,9 @@ type IGMP struct { // IGMPv1or2 stores header details for an IGMPv1 or IGMPv2 packet. // -// 0 1 2 3 -// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +// 0 1 2 3 +// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +// // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ // | Type | Max Resp Time | Checksum | // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ @@ -204,8 +205,9 @@ func (i *IGMP) decodeIGMPv3MembershipReport(data []byte) error { return nil } -// 0 1 2 3 -// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +// 0 1 2 3 +// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +// // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ // | Type = 0x11 | Max Resp Code | Checksum | // +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ diff --git a/vendor/github.com/google/gopacket/layers/ip4.go b/vendor/github.com/gopacket/gopacket/layers/ip4.go similarity index 87% rename from vendor/github.com/google/gopacket/layers/ip4.go rename to vendor/github.com/gopacket/gopacket/layers/ip4.go index 2b3c0c6bf..7963acb94 100644 --- a/vendor/github.com/google/gopacket/layers/ip4.go +++ b/vendor/github.com/gopacket/gopacket/layers/ip4.go @@ -14,7 +14,7 @@ import ( "net" "strings" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) type IPv4Flag uint8 @@ -149,35 +149,17 @@ func (ip *IPv4) SerializeTo(b gopacket.SerializeBuffer, opts gopacket.SerializeO } if opts.ComputeChecksums { - ip.Checksum = checksum(bytes) + // Clear checksum bytes + bytes[10] = 0 + bytes[11] = 0 + + csum := gopacket.ComputeChecksum(bytes, 0) + ip.Checksum = gopacket.FoldChecksum(csum) } binary.BigEndian.PutUint16(bytes[10:], ip.Checksum) return nil } -func checksum(bytes []byte) uint16 { - // Clear checksum bytes - bytes[10] = 0 - bytes[11] = 0 - - // Compute checksum - var csum uint32 - for i := 0; i < len(bytes); i += 2 { - csum += uint32(bytes[i]) << 8 - csum += uint32(bytes[i+1]) - } - for { - // Break when sum is less or equals to 0xFFFF - if csum <= 65535 { - break - } - // Add carry to the sum - csum = (csum >> 16) + uint32(uint16(csum)) - } - // Flip all the bits - return ^uint16(csum) -} - func (ip *IPv4) flagsfrags() (ff uint16) { ff |= uint16(ip.Flags) << 13 ff |= ip.FragOffset @@ -190,24 +172,9 @@ func (ip *IPv4) DecodeFromBytes(data []byte, df gopacket.DecodeFeedback) error { df.SetTruncated() return fmt.Errorf("Invalid ip4 header. Length %d less than 20", len(data)) } - flagsfrags := binary.BigEndian.Uint16(data[6:8]) - ip.Version = uint8(data[0]) >> 4 - ip.IHL = uint8(data[0]) & 0x0F - ip.TOS = data[1] ip.Length = binary.BigEndian.Uint16(data[2:4]) - ip.Id = binary.BigEndian.Uint16(data[4:6]) - ip.Flags = IPv4Flag(flagsfrags >> 13) - ip.FragOffset = flagsfrags & 0x1FFF - ip.TTL = data[8] - ip.Protocol = IPProtocol(data[9]) - ip.Checksum = binary.BigEndian.Uint16(data[10:12]) - ip.SrcIP = data[12:16] - ip.DstIP = data[16:20] - ip.Options = ip.Options[:0] - ip.Padding = nil - // Set up an initial guess for contents/payload... we'll reset these soon. - ip.BaseLayer = BaseLayer{Contents: data} + ip.IHL = uint8(data[0]) & 0x0F // This code is added for the following enviroment: // * Windows 10 with TSO option activated. ( tested on Hyper-V, RealTek ethernet driver ) @@ -224,6 +191,7 @@ func (ip *IPv4) DecodeFromBytes(data []byte, df gopacket.DecodeFeedback) error { } else if int(ip.IHL*4) > int(ip.Length) { return fmt.Errorf("Invalid IP header length > IP length (%d > %d)", ip.IHL, ip.Length) } + if cmp := len(data) - int(ip.Length); cmp > 0 { data = data[:ip.Length] } else if cmp < 0 { @@ -232,45 +200,65 @@ func (ip *IPv4) DecodeFromBytes(data []byte, df gopacket.DecodeFeedback) error { return errors.New("Not all IP header bytes available") } } + + ip.Options = ip.Options[:0] ip.Contents = data[:ip.IHL*4] ip.Payload = data[ip.IHL*4:] + // From here on, data contains the header options. - data = data[20 : ip.IHL*4] + headerOptionsData := data[20 : ip.IHL*4] // Pull out IP options - for len(data) > 0 { + for len(headerOptionsData) > 0 { if ip.Options == nil { // Pre-allocate to avoid growing the slice too much. ip.Options = make([]IPv4Option, 0, 4) } - opt := IPv4Option{OptionType: data[0]} + + opt := IPv4Option{OptionType: headerOptionsData[0]} switch opt.OptionType { case 0: // End of options opt.OptionLength = 1 ip.Options = append(ip.Options, opt) - ip.Padding = data[1:] + ip.Padding = headerOptionsData[1:] + return nil case 1: // 1 byte padding opt.OptionLength = 1 - data = data[1:] + headerOptionsData = headerOptionsData[1:] ip.Options = append(ip.Options, opt) default: - if len(data) < 2 { + if len(headerOptionsData) < 2 { df.SetTruncated() - return fmt.Errorf("Invalid ip4 option length. Length %d less than 2", len(data)) + return fmt.Errorf("Invalid ip4 option length. Length %d less than 2", len(headerOptionsData)) } - opt.OptionLength = data[1] - if len(data) < int(opt.OptionLength) { + + opt.OptionLength = headerOptionsData[1] + if len(headerOptionsData) < int(opt.OptionLength) { df.SetTruncated() return fmt.Errorf("IP option length exceeds remaining IP header size, option type %v length %v", opt.OptionType, opt.OptionLength) } if opt.OptionLength <= 2 { return fmt.Errorf("Invalid IP option type %v length %d. Must be greater than 2", opt.OptionType, opt.OptionLength) } - opt.OptionData = data[2:opt.OptionLength] - data = data[opt.OptionLength:] + opt.OptionData = headerOptionsData[2:opt.OptionLength] + headerOptionsData = headerOptionsData[opt.OptionLength:] ip.Options = append(ip.Options, opt) } } + + flagsfrags := binary.BigEndian.Uint16(data[6:8]) + ip.Version = data[0] >> 4 + ip.TOS = data[1] + ip.Id = binary.BigEndian.Uint16(data[4:6]) + ip.Flags = IPv4Flag(flagsfrags >> 13) + ip.FragOffset = flagsfrags & 0x1FFF + ip.TTL = data[8] + ip.Protocol = IPProtocol(data[9]) + ip.Checksum = binary.BigEndian.Uint16(data[10:12]) + ip.SrcIP = data[12:16] + ip.DstIP = data[16:20] + ip.Padding = nil + return nil } @@ -323,3 +311,14 @@ func (ip *IPv4) AddressTo4() error { ip.DstIP = dst return nil } + +func (ip *IPv4) VerifyChecksum() (error, gopacket.ChecksumVerificationResult) { + existing := ip.Checksum + verification := gopacket.ComputeChecksum(ip.Contents, 0) + correct := gopacket.FoldChecksum(verification - uint32(existing)) + return nil, gopacket.ChecksumVerificationResult{ + Valid: correct == existing, + Correct: uint32(correct), + Actual: uint32(existing), + } +} diff --git a/vendor/github.com/google/gopacket/layers/ip6.go b/vendor/github.com/gopacket/gopacket/layers/ip6.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/ip6.go rename to vendor/github.com/gopacket/gopacket/layers/ip6.go index 87b9d33d5..1fbd085ae 100644 --- a/vendor/github.com/google/gopacket/layers/ip6.go +++ b/vendor/github.com/gopacket/gopacket/layers/ip6.go @@ -13,7 +13,7 @@ import ( "fmt" "net" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) const ( diff --git a/vendor/github.com/google/gopacket/layers/ipsec.go b/vendor/github.com/gopacket/gopacket/layers/ipsec.go similarity index 98% rename from vendor/github.com/google/gopacket/layers/ipsec.go rename to vendor/github.com/gopacket/gopacket/layers/ipsec.go index 12f31caf6..7f789acda 100644 --- a/vendor/github.com/google/gopacket/layers/ipsec.go +++ b/vendor/github.com/gopacket/gopacket/layers/ipsec.go @@ -9,7 +9,8 @@ package layers import ( "encoding/binary" "errors" - "github.com/google/gopacket" + + "github.com/gopacket/gopacket" ) // IPSecAH is the authentication header for IPv4/6 defined in diff --git a/vendor/github.com/google/gopacket/layers/layertypes.go b/vendor/github.com/gopacket/gopacket/layers/layertypes.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/layertypes.go rename to vendor/github.com/gopacket/gopacket/layers/layertypes.go index 69d25ae80..1f5cfc65b 100644 --- a/vendor/github.com/google/gopacket/layers/layertypes.go +++ b/vendor/github.com/gopacket/gopacket/layers/layertypes.go @@ -7,7 +7,7 @@ package layers import ( - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) var ( @@ -148,6 +148,7 @@ var ( LayerTypeASFPresencePong = gopacket.RegisterLayerType(144, gopacket.LayerTypeMetadata{Name: "ASFPresencePong", Decoder: gopacket.DecodeFunc(decodeASFPresencePong)}) LayerTypeERSPANII = gopacket.RegisterLayerType(145, gopacket.LayerTypeMetadata{Name: "ERSPAN Type II", Decoder: gopacket.DecodeFunc(decodeERSPANII)}) LayerTypeRADIUS = gopacket.RegisterLayerType(146, gopacket.LayerTypeMetadata{Name: "RADIUS", Decoder: gopacket.DecodeFunc(decodeRADIUS)}) + LayerTypeLinuxSLL2 = gopacket.RegisterLayerType(276, gopacket.LayerTypeMetadata{Name: "Linux SLL2", Decoder: gopacket.DecodeFunc(decodeLinuxSLL2)}) ) var ( diff --git a/vendor/github.com/google/gopacket/layers/lcm.go b/vendor/github.com/gopacket/gopacket/layers/lcm.go similarity index 98% rename from vendor/github.com/google/gopacket/layers/lcm.go rename to vendor/github.com/gopacket/gopacket/layers/lcm.go index 58a4b8289..04db3bc3f 100644 --- a/vendor/github.com/google/gopacket/layers/lcm.go +++ b/vendor/github.com/gopacket/gopacket/layers/lcm.go @@ -11,7 +11,7 @@ import ( "errors" "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) const ( @@ -29,8 +29,9 @@ const ( // variety of programming languages. // // References -// https://lcm-proj.github.io/ -// https://github.com/lcm-proj/lcm +// +// https://lcm-proj.github.io/ +// https://github.com/lcm-proj/lcm type LCM struct { // Common (short & fragmented header) fields Magic uint32 diff --git a/vendor/github.com/google/gopacket/layers/linux_sll.go b/vendor/github.com/gopacket/gopacket/layers/linux_sll.go similarity index 98% rename from vendor/github.com/google/gopacket/layers/linux_sll.go rename to vendor/github.com/gopacket/gopacket/layers/linux_sll.go index 85a4f8bdd..d6163c4ca 100644 --- a/vendor/github.com/google/gopacket/layers/linux_sll.go +++ b/vendor/github.com/gopacket/gopacket/layers/linux_sll.go @@ -12,7 +12,7 @@ import ( "fmt" "net" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) type LinuxSLLPacketType uint16 diff --git a/vendor/github.com/gopacket/gopacket/layers/linux_sll2.go b/vendor/github.com/gopacket/gopacket/layers/linux_sll2.go new file mode 100644 index 000000000..5935b3163 --- /dev/null +++ b/vendor/github.com/gopacket/gopacket/layers/linux_sll2.go @@ -0,0 +1,176 @@ +// Copyright 2022 Google, Inc. All rights reserved. +// +// Use of this source code is governed by a BSD-style license +// that can be found in the LICENSE file in the root of the source +// tree. + +package layers + +import ( + "encoding/binary" + "errors" + "fmt" + "net" + + "github.com/gopacket/gopacket" +) + +// The ARPHardwareType contains a Linux ARPHRD_ value for the link-layer device type +type ARPHardwareType uint16 + +const ( + ARPHardwareTypeEthernet ARPHardwareType = 1 + ARPHardwareTypeFRAD ARPHardwareType = 770 + ARPHardwareTypeLoopback ARPHardwareType = 772 + ARPHardwareTypeIPGRE ARPHardwareType = 778 + ARPHardwareTypeDot11Radiotap ARPHardwareType = 803 +) + +func (l ARPHardwareType) String() string { + switch l { + case ARPHardwareTypeEthernet: + return "Ethernet" + case ARPHardwareTypeFRAD: + return "Frame Relay Access Device" + case ARPHardwareTypeLoopback: + return "Loopback device" + case ARPHardwareTypeIPGRE: + return "GRE over IP" + case ARPHardwareTypeDot11Radiotap: + return "IEEE 802.11 + radiotap header" + } + + return fmt.Sprintf("Unknown(%d)", int(l)) +} + +// The LinuxSLL2PacketType can contain the same values as LinuxSLLPacketType accept it is a uint8 instread of a uint16 +type LinuxSLL2PacketType uint8 + +const ( + LinuxSLL2PacketTypeHost LinuxSLL2PacketType = 0 // To us + LinuxSLL2PacketTypeBroadcast LinuxSLL2PacketType = 1 // To all + LinuxSLL2PacketTypeMulticast LinuxSLL2PacketType = 2 // To group + LinuxSLL2PacketTypeOtherhost LinuxSLL2PacketType = 3 // To someone else + LinuxSLL2PacketTypeOutgoing LinuxSLL2PacketType = 4 // Outgoing of any type + // These ones are invisible by user level + LinuxSLL2PacketTypeLoopback LinuxSLL2PacketType = 5 // MC/BRD frame looped back + LinuxSLL2PacketTypeFastroute LinuxSLL2PacketType = 6 // Fastrouted frame +) + +func (l LinuxSLL2PacketType) String() string { + switch l { + case LinuxSLL2PacketTypeHost: + return "host" + case LinuxSLL2PacketTypeBroadcast: + return "broadcast" + case LinuxSLL2PacketTypeMulticast: + return "multicast" + case LinuxSLL2PacketTypeOtherhost: + return "otherhost" + case LinuxSLL2PacketTypeOutgoing: + return "outgoing" + case LinuxSLL2PacketTypeLoopback: + return "loopback" + case LinuxSLL2PacketTypeFastroute: + return "fastroute" + } + return fmt.Sprintf("Unknown(%d)", int(l)) +} + +const ( + LinuxSLL2EthernetTypeDot3 EthernetType = 0x0001 + LinuxSLL2EthernetTypeUnknown EthernetType = 0x0003 + LinuxSLL2EthernetTypeLLC EthernetType = 0x0004 + LinuxSLL2EthernetTypeCAN EthernetType = 0x000C +) + +// LinuxSLL2 is the second version of the Linux "cooked" capture encapsulation protocol. It is used to encapsulate +// packets within packet capture files, particularly by libpcap/tcpdump when making a packet capture with -i any +// https://www.tcpdump.org/linktypes/LINKTYPE_LINUX_SLL2.html +type LinuxSLL2 struct { + BaseLayer + ProtocolType EthernetType + InterfaceIndex uint32 + ARPHardwareType ARPHardwareType + PacketType LinuxSLL2PacketType + AddrLength uint8 + Addr net.HardwareAddr +} + +// LayerType returns LayerTypeLinuxSLL. +func (sll *LinuxSLL2) LayerType() gopacket.LayerType { return LayerTypeLinuxSLL2 } + +func (sll *LinuxSLL2) CanDecode() gopacket.LayerClass { + return LayerTypeLinuxSLL2 +} + +func (sll *LinuxSLL2) LinkFlow() gopacket.Flow { + return gopacket.NewFlow(EndpointMAC, sll.Addr, nil) +} + +func (sll *LinuxSLL2) NextLayerType() gopacket.LayerType { + switch sll.ARPHardwareType { + case ARPHardwareTypeFRAD: + // If the ARPHRD_ type is ARPHRD_FRAD (770), the protocol type field is ignored, + // and the payload following the LINKTYPE_LINUX_SLL header is a Frame Relay LAPF frame, + // beginning with a ITU-T Recommendation Q.922 LAPF header starting with the address field, + // and without an FCS at the end of the frame. + return gopacket.LayerTypeZero // LAPF layer not yet implemented + + case ARPHardwareTypeDot11Radiotap: + return LayerTypeRadioTap + + case ARPHardwareTypeIPGRE: + // Docs: If the ARPHRD_ type is ARPHRD_IPGRE (778), the protocol type field contains a GRE protocol type. + // + // It doesn't clearly state if if the next header should be GRE or Ethernet in this case. Will assume ethernet + // for now + return LayerTypeEthernet + + default: + switch sll.ProtocolType { + case LinuxSLL2EthernetTypeDot3: + // Docs: if the frame is a Novell 802.3 frame without an 802.2 LLC header + return gopacket.LayerTypeZero // Novell 802.3 frame layer not yet implemented + + case LinuxSLL2EthernetTypeUnknown: + // Docs: in some mysterious cases; + return gopacket.LayerTypeZero // Mysterious cases not implemented + + case LinuxSLL2EthernetTypeLLC: + return LayerTypeLLC + + case LinuxSLL2EthernetTypeCAN: + // Docs: if the frame is a CAN bus frame that begins with a header of the form + return gopacket.LayerTypeZero + } + + return sll.ProtocolType.LayerType() + } +} + +func (sll *LinuxSLL2) DecodeFromBytes(data []byte, df gopacket.DecodeFeedback) error { + if len(data) < 20 { + return errors.New("Linux SLL2 packet too small") + } + sll.ProtocolType = EthernetType(binary.BigEndian.Uint16(data[0:2])) + sll.InterfaceIndex = binary.BigEndian.Uint32(data[4:8]) + sll.ARPHardwareType = ARPHardwareType(binary.BigEndian.Uint16(data[8:10])) + sll.PacketType = LinuxSLL2PacketType(data[10]) + sll.AddrLength = data[11] + sll.Addr = data[12:20] + sll.Addr = sll.Addr[:sll.AddrLength] + sll.BaseLayer = BaseLayer{data[:20], data[20:]} + + return nil +} + +func decodeLinuxSLL2(data []byte, p gopacket.PacketBuilder) error { + sll := &LinuxSLL2{} + if err := sll.DecodeFromBytes(data, p); err != nil { + return err + } + p.AddLayer(sll) + p.SetLinkLayer(sll) + return p.NextDecoder(sll.NextLayerType()) +} diff --git a/vendor/github.com/google/gopacket/layers/llc.go b/vendor/github.com/gopacket/gopacket/layers/llc.go similarity index 95% rename from vendor/github.com/google/gopacket/layers/llc.go rename to vendor/github.com/gopacket/gopacket/layers/llc.go index cad680367..7c3a282f9 100644 --- a/vendor/github.com/google/gopacket/layers/llc.go +++ b/vendor/github.com/gopacket/gopacket/layers/llc.go @@ -10,7 +10,7 @@ import ( "encoding/binary" "errors" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // LLC is the layer used for 802.2 Logical Link Control headers. @@ -71,9 +71,10 @@ func (l *LLC) NextLayerType() gopacket.LayerType { // SNAP is used inside LLC. See // http://standards.ieee.org/getieee802/download/802-2001.pdf. // From http://en.wikipedia.org/wiki/Subnetwork_Access_Protocol: -// "[T]he Subnetwork Access Protocol (SNAP) is a mechanism for multiplexing, -// on networks using IEEE 802.2 LLC, more protocols than can be distinguished -// by the 8-bit 802.2 Service Access Point (SAP) fields." +// +// "[T]he Subnetwork Access Protocol (SNAP) is a mechanism for multiplexing, +// on networks using IEEE 802.2 LLC, more protocols than can be distinguished +// by the 8-bit 802.2 Service Access Point (SAP) fields." type SNAP struct { BaseLayer OrganizationalCode []byte diff --git a/vendor/github.com/google/gopacket/layers/lldp.go b/vendor/github.com/gopacket/gopacket/layers/lldp.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/lldp.go rename to vendor/github.com/gopacket/gopacket/layers/lldp.go index 16a5bbada..c97fd4513 100644 --- a/vendor/github.com/google/gopacket/layers/lldp.go +++ b/vendor/github.com/gopacket/gopacket/layers/lldp.go @@ -11,7 +11,7 @@ import ( "errors" "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // LLDPTLVType is the type of each TLV value in a LinkLayerDiscovery packet. @@ -240,7 +240,7 @@ type LinkLayerDiscoveryInfo struct { Unknown []LinkLayerDiscoveryValue // undecoded TLVs } -/// IEEE 802.1 TLV Subtypes +// / IEEE 802.1 TLV Subtypes const ( LLDP8021SubtypePortVLANID uint8 = 1 LLDP8021SubtypeProtocolVLANID uint8 = 2 @@ -1449,7 +1449,7 @@ func (t LLDPPowerPriority) String() (s string) { func (t LLDPMediaSubtype) String() (s string) { switch t { case LLDPMediaTypeCapabilities: - s = "Media Capabilities " + s = "Media Capabilities" case LLDPMediaTypeNetwork: s = "Network Policy" case LLDPMediaTypeLocation: @@ -1487,7 +1487,7 @@ func (t LLDPMediaClass) String() (s string) { case LLDPMediaClassEndpointIII: s = "Endpoint Class III" case LLDPMediaClassNetwork: - s = "Network connectivity " + s = "Network Connectivity" default: s = "Unknown" } diff --git a/vendor/github.com/google/gopacket/layers/loopback.go b/vendor/github.com/gopacket/gopacket/layers/loopback.go similarity index 98% rename from vendor/github.com/google/gopacket/layers/loopback.go rename to vendor/github.com/gopacket/gopacket/layers/loopback.go index 839f76073..03f48e391 100644 --- a/vendor/github.com/google/gopacket/layers/loopback.go +++ b/vendor/github.com/gopacket/gopacket/layers/loopback.go @@ -11,7 +11,7 @@ import ( "errors" "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // Loopback contains the header for loopback encapsulation. This header is diff --git a/vendor/github.com/google/gopacket/layers/mldv1.go b/vendor/github.com/gopacket/gopacket/layers/mldv1.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/mldv1.go rename to vendor/github.com/gopacket/gopacket/layers/mldv1.go index e1bb1dc00..aef6e8382 100644 --- a/vendor/github.com/google/gopacket/layers/mldv1.go +++ b/vendor/github.com/gopacket/gopacket/layers/mldv1.go @@ -14,7 +14,7 @@ import ( "net" "time" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // MLDv1Message represents the common structure of all MLDv1 messages diff --git a/vendor/github.com/google/gopacket/layers/mldv2.go b/vendor/github.com/gopacket/gopacket/layers/mldv2.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/mldv2.go rename to vendor/github.com/gopacket/gopacket/layers/mldv2.go index 05100a52d..ebcab88e0 100644 --- a/vendor/github.com/google/gopacket/layers/mldv2.go +++ b/vendor/github.com/gopacket/gopacket/layers/mldv2.go @@ -14,7 +14,7 @@ import ( "net" "time" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) const ( diff --git a/vendor/github.com/google/gopacket/layers/modbustcp.go b/vendor/github.com/gopacket/gopacket/layers/modbustcp.go similarity index 96% rename from vendor/github.com/google/gopacket/layers/modbustcp.go rename to vendor/github.com/gopacket/gopacket/layers/modbustcp.go index bafbd7436..09d5e3261 100644 --- a/vendor/github.com/google/gopacket/layers/modbustcp.go +++ b/vendor/github.com/gopacket/gopacket/layers/modbustcp.go @@ -11,7 +11,8 @@ package layers import ( "encoding/binary" "errors" - "github.com/google/gopacket" + + "github.com/gopacket/gopacket" ) //****************************************************************************** @@ -50,7 +51,6 @@ func (mp ModbusProtocol) String() string { // Type ModbusTCP implements the DecodingLayer interface. Each ModbusTCP object // represents in a structured form the MODBUS Application Protocol header (MBAP) record present as the TCP // payload in an ModbusTCP TCP packet. -// type ModbusTCP struct { BaseLayer // Stores the packet bytes and payload (Modbus PDU) bytes . @@ -148,3 +148,8 @@ func (d *ModbusTCP) NextLayerType() gopacket.LayerType { func (d *ModbusTCP) Payload() []byte { return d.BaseLayer.Payload } + +// CanDecode returns the set of layer types that this DecodingLayer can decode +func (s *ModbusTCP) CanDecode() gopacket.LayerClass { + return LayerTypeModbusTCP +} diff --git a/vendor/github.com/google/gopacket/layers/mpls.go b/vendor/github.com/gopacket/gopacket/layers/mpls.go similarity index 94% rename from vendor/github.com/google/gopacket/layers/mpls.go rename to vendor/github.com/gopacket/gopacket/layers/mpls.go index 83079a09b..e8e3eefd8 100644 --- a/vendor/github.com/google/gopacket/layers/mpls.go +++ b/vendor/github.com/gopacket/gopacket/layers/mpls.go @@ -9,7 +9,8 @@ package layers import ( "encoding/binary" "errors" - "github.com/google/gopacket" + + "github.com/gopacket/gopacket" ) // MPLS is the MPLS packet header. @@ -26,9 +27,11 @@ func (m *MPLS) LayerType() gopacket.LayerType { return LayerTypeMPLS } // ProtocolGuessingDecoder attempts to guess the protocol of the bytes it's // given, then decode the packet accordingly. Its algorithm for guessing is: -// If the packet starts with byte 0x45-0x4F: IPv4 -// If the packet starts with byte 0x60-0x6F: IPv6 -// Otherwise: Error +// +// If the packet starts with byte 0x45-0x4F: IPv4 +// If the packet starts with byte 0x60-0x6F: IPv6 +// Otherwise: Error +// // See draft-hsmit-isis-aal5mux-00.txt for more detail on this approach. type ProtocolGuessingDecoder struct{} diff --git a/vendor/github.com/google/gopacket/layers/ndp.go b/vendor/github.com/gopacket/gopacket/layers/ndp.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/ndp.go rename to vendor/github.com/gopacket/gopacket/layers/ndp.go index f7ca1b26b..e7593f4b1 100644 --- a/vendor/github.com/google/gopacket/layers/ndp.go +++ b/vendor/github.com/gopacket/gopacket/layers/ndp.go @@ -11,8 +11,9 @@ package layers import ( "fmt" - "github.com/google/gopacket" "net" + + "github.com/gopacket/gopacket" ) type NDPChassisType uint8 diff --git a/vendor/github.com/google/gopacket/layers/ntp.go b/vendor/github.com/gopacket/gopacket/layers/ntp.go similarity index 81% rename from vendor/github.com/google/gopacket/layers/ntp.go rename to vendor/github.com/gopacket/gopacket/layers/ntp.go index 33c15b3b3..26bb083a1 100644 --- a/vendor/github.com/google/gopacket/layers/ntp.go +++ b/vendor/github.com/gopacket/gopacket/layers/ntp.go @@ -12,7 +12,7 @@ import ( "encoding/binary" "errors" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) //****************************************************************************** @@ -160,56 +160,55 @@ import ( // The current version of NTP (NTP V4)'s RFC (V4 - RFC 5905) contains // the following diagram for the NTP record format: -// 0 1 2 3 -// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// |LI | VN |Mode | Stratum | Poll | Precision | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Root Delay | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Root Dispersion | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Reference ID | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | | -// + Reference Timestamp (64) + -// | | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | | -// + Origin Timestamp (64) + -// | | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | | -// + Receive Timestamp (64) + -// | | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | | -// + Transmit Timestamp (64) + -// | | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | | -// . . -// . Extension Field 1 (variable) . -// . . -// | | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | | -// . . -// . Extension Field 2 (variable) . -// . . -// | | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | Key Identifier | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// | | -// | dgst (128) | -// | | -// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ -// From http://www.ietf.org/rfc/rfc5905.txt +// 0 1 2 3 +// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// |LI | VN |Mode | Stratum | Poll | Precision | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Root Delay | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Root Dispersion | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Reference ID | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | | +// + Reference Timestamp (64) + +// | | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | | +// + Origin Timestamp (64) + +// | | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | | +// + Receive Timestamp (64) + +// | | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | | +// + Transmit Timestamp (64) + +// | | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | | +// . . +// . Extension Field 1 (variable) . +// . . +// | | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | | +// . . +// . Extension Field 2 (variable) . +// . . +// | | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | Key Identifier | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// | | +// | dgst (128) | +// | | +// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+ +// From http://www.ietf.org/rfc/rfc5905.txt // // The fields "Extension Field 1 (variable)" and later are optional fields, // and so we can set a minimum NTP record size of 48 bytes. -// const ntpMinimumRecordSizeInBytes int = 48 //****************************************************************************** diff --git a/vendor/github.com/google/gopacket/layers/ospf.go b/vendor/github.com/gopacket/gopacket/layers/ospf.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/ospf.go rename to vendor/github.com/gopacket/gopacket/layers/ospf.go index 4f5473d06..371b9292b 100644 --- a/vendor/github.com/google/gopacket/layers/ospf.go +++ b/vendor/github.com/gopacket/gopacket/layers/ospf.go @@ -11,7 +11,7 @@ import ( "errors" "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // OSPFType denotes what kind of OSPF type it is @@ -237,7 +237,7 @@ type OSPF struct { Content interface{} } -//OSPFv2 extend the OSPF head with version 2 specific fields +// OSPFv2 extend the OSPF head with version 2 specific fields type OSPFv2 struct { BaseLayer OSPF diff --git a/vendor/github.com/google/gopacket/layers/pflog.go b/vendor/github.com/gopacket/gopacket/layers/pflog.go similarity index 92% rename from vendor/github.com/google/gopacket/layers/pflog.go rename to vendor/github.com/gopacket/gopacket/layers/pflog.go index 9dbbd90d1..2daf45579 100644 --- a/vendor/github.com/google/gopacket/layers/pflog.go +++ b/vendor/github.com/gopacket/gopacket/layers/pflog.go @@ -11,7 +11,7 @@ import ( "errors" "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) type PFDirection uint8 @@ -57,10 +57,10 @@ func (pf *PFLog) DecodeFromBytes(data []byte, df gopacket.DecodeFeedback) error pf.RuleUID = binary.BigEndian.Uint32(data[52:56]) pf.RulePID = int32(binary.BigEndian.Uint32(data[56:60])) pf.Direction = PFDirection(data[60]) - if pf.Length%4 != 1 { - return errors.New("PFLog header length should be 3 less than multiple of 4") + actualLength := int(pf.Length) + if pf.Length%4 == 1 { + actualLength += 3 } - actualLength := int(pf.Length) + 3 if len(data) < actualLength { return fmt.Errorf("PFLog data size < %d", actualLength) } diff --git a/vendor/github.com/google/gopacket/layers/ports.go b/vendor/github.com/gopacket/gopacket/layers/ports.go similarity index 68% rename from vendor/github.com/google/gopacket/layers/ports.go rename to vendor/github.com/gopacket/gopacket/layers/ports.go index 1e3f42efc..43bf90c7f 100644 --- a/vendor/github.com/google/gopacket/layers/ports.go +++ b/vendor/github.com/gopacket/gopacket/layers/ports.go @@ -10,7 +10,7 @@ import ( "fmt" "strconv" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // TCPPort is a port in a TCP layer. @@ -40,7 +40,7 @@ var UDPLitePortNames = map[UDPLitePort]string{} // or just "number" if there isn't. Well-known names are stored in // TCPPortNames. func (a TCPPort) String() string { - if name, ok := TCPPortNames[a]; ok { + if name, ok := TCPPortNames(a); ok { return fmt.Sprintf("%d(%s)", a, name) } return strconv.Itoa(int(a)) @@ -52,30 +52,44 @@ func (a TCPPort) String() string { // // Returns gopacket.LayerTypePayload for unknown/unsupported port numbers. func (a TCPPort) LayerType() gopacket.LayerType { - lt := tcpPortLayerType[uint16(a)] - if lt != 0 { - return lt + if tcpPortLayerTypeOverride.has(uint16(a)) { + return tcpPortLayerType[a] + } + switch a { + case 53: + return LayerTypeDNS + case 443: // https + return LayerTypeTLS + case 502: // modbustcp + return LayerTypeModbusTCP + case 636: // ldaps + return LayerTypeTLS + case 989: // ftps-data + return LayerTypeTLS + case 990: // ftps + return LayerTypeTLS + case 992: // telnets + return LayerTypeTLS + case 993: // imaps + return LayerTypeTLS + case 994: // ircs + return LayerTypeTLS + case 995: // pop3s + return LayerTypeTLS + case 5061: // ips + return LayerTypeTLS } return gopacket.LayerTypePayload } -var tcpPortLayerType = [65536]gopacket.LayerType{ - 53: LayerTypeDNS, - 443: LayerTypeTLS, // https - 502: LayerTypeModbusTCP, // modbustcp - 636: LayerTypeTLS, // ldaps - 989: LayerTypeTLS, // ftps-data - 990: LayerTypeTLS, // ftps - 992: LayerTypeTLS, // telnets - 993: LayerTypeTLS, // imaps - 994: LayerTypeTLS, // ircs - 995: LayerTypeTLS, // pop3s - 5061: LayerTypeTLS, // ips -} +var tcpPortLayerTypeOverride bitfield + +var tcpPortLayerType = map[TCPPort]gopacket.LayerType{} // RegisterTCPPortLayerType creates a new mapping between a TCPPort // and an underlaying LayerType. func RegisterTCPPortLayerType(port TCPPort, layerType gopacket.LayerType) { + tcpPortLayerTypeOverride.set(uint16(port)) tcpPortLayerType[port] = layerType } @@ -83,7 +97,7 @@ func RegisterTCPPortLayerType(port TCPPort, layerType gopacket.LayerType) { // or just "number" if there isn't. Well-known names are stored in // UDPPortNames. func (a UDPPort) String() string { - if name, ok := UDPPortNames[a]; ok { + if name, ok := UDPPortNames(a); ok { return fmt.Sprintf("%d(%s)", a, name) } return strconv.Itoa(int(a)) @@ -95,33 +109,50 @@ func (a UDPPort) String() string { // // Returns gopacket.LayerTypePayload for unknown/unsupported port numbers. func (a UDPPort) LayerType() gopacket.LayerType { - lt := udpPortLayerType[uint16(a)] - if lt != 0 { - return lt + if udpPortLayerTypeOverride.has(uint16(a)) { + return udpPortLayerType[a] + } + switch a { + case 53: + return LayerTypeDNS + case 67: + return LayerTypeDHCPv4 + case 68: + return LayerTypeDHCPv4 + case 123: + return LayerTypeNTP + case 546: + return LayerTypeDHCPv6 + case 547: + return LayerTypeDHCPv6 + case 623: + return LayerTypeRMCP + case 1812: + return LayerTypeRADIUS + case 2152: + return LayerTypeGTPv1U + case 3784: + return LayerTypeBFD + case 4789: + return LayerTypeVXLAN + case 5060: + return LayerTypeSIP + case 6081: + return LayerTypeGeneve + case 6343: + return LayerTypeSFlow } return gopacket.LayerTypePayload } -var udpPortLayerType = [65536]gopacket.LayerType{ - 53: LayerTypeDNS, - 123: LayerTypeNTP, - 4789: LayerTypeVXLAN, - 67: LayerTypeDHCPv4, - 68: LayerTypeDHCPv4, - 546: LayerTypeDHCPv6, - 547: LayerTypeDHCPv6, - 5060: LayerTypeSIP, - 6343: LayerTypeSFlow, - 6081: LayerTypeGeneve, - 3784: LayerTypeBFD, - 2152: LayerTypeGTPv1U, - 623: LayerTypeRMCP, - 1812: LayerTypeRADIUS, -} +var udpPortLayerTypeOverride bitfield + +var udpPortLayerType = map[UDPPort]gopacket.LayerType{} // RegisterUDPPortLayerType creates a new mapping between a UDPPort // and an underlaying LayerType. func RegisterUDPPortLayerType(port UDPPort, layerType gopacket.LayerType) { + udpPortLayerTypeOverride.set(uint16(port)) udpPortLayerType[port] = layerType } @@ -139,7 +170,7 @@ func (a RUDPPort) String() string { // or just "number" if there isn't. Well-known names are stored in // SCTPPortNames. func (a SCTPPort) String() string { - if name, ok := SCTPPortNames[a]; ok { + if name, ok := SCTPPortNames(a); ok { return fmt.Sprintf("%d(%s)", a, name) } return strconv.Itoa(int(a)) diff --git a/vendor/github.com/google/gopacket/layers/ppp.go b/vendor/github.com/gopacket/gopacket/layers/ppp.go similarity index 98% rename from vendor/github.com/google/gopacket/layers/ppp.go rename to vendor/github.com/gopacket/gopacket/layers/ppp.go index e534d698c..0a66074b4 100644 --- a/vendor/github.com/google/gopacket/layers/ppp.go +++ b/vendor/github.com/gopacket/gopacket/layers/ppp.go @@ -9,7 +9,8 @@ package layers import ( "encoding/binary" "errors" - "github.com/google/gopacket" + + "github.com/gopacket/gopacket" ) // PPP is the layer for PPP encapsulation headers. diff --git a/vendor/github.com/google/gopacket/layers/pppoe.go b/vendor/github.com/gopacket/gopacket/layers/pppoe.go similarity index 98% rename from vendor/github.com/google/gopacket/layers/pppoe.go rename to vendor/github.com/gopacket/gopacket/layers/pppoe.go index 14cd63a18..549224d1b 100644 --- a/vendor/github.com/google/gopacket/layers/pppoe.go +++ b/vendor/github.com/gopacket/gopacket/layers/pppoe.go @@ -8,7 +8,8 @@ package layers import ( "encoding/binary" - "github.com/google/gopacket" + + "github.com/gopacket/gopacket" ) // PPPoE is the layer for PPPoE encapsulation headers. diff --git a/vendor/github.com/google/gopacket/layers/prism.go b/vendor/github.com/gopacket/gopacket/layers/prism.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/prism.go rename to vendor/github.com/gopacket/gopacket/layers/prism.go index e1711e7f5..b075ac0ae 100644 --- a/vendor/github.com/google/gopacket/layers/prism.go +++ b/vendor/github.com/gopacket/gopacket/layers/prism.go @@ -12,7 +12,7 @@ import ( "encoding/binary" "errors" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) func decodePrismValue(data []byte, pv *PrismValue) { diff --git a/vendor/github.com/google/gopacket/layers/radiotap.go b/vendor/github.com/gopacket/gopacket/layers/radiotap.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/radiotap.go rename to vendor/github.com/gopacket/gopacket/layers/radiotap.go index d09559f79..89641e4a1 100644 --- a/vendor/github.com/google/gopacket/layers/radiotap.go +++ b/vendor/github.com/gopacket/gopacket/layers/radiotap.go @@ -14,7 +14,7 @@ import ( "hash/crc32" "strings" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // align calculates the number of bytes needed to align with the width diff --git a/vendor/github.com/google/gopacket/layers/radius.go b/vendor/github.com/gopacket/gopacket/layers/radius.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/radius.go rename to vendor/github.com/gopacket/gopacket/layers/radius.go index c43ea2945..f2cd280cb 100644 --- a/vendor/github.com/google/gopacket/layers/radius.go +++ b/vendor/github.com/gopacket/gopacket/layers/radius.go @@ -9,7 +9,7 @@ import ( "encoding/binary" "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) const ( diff --git a/vendor/github.com/google/gopacket/layers/rmcp.go b/vendor/github.com/gopacket/gopacket/layers/rmcp.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/rmcp.go rename to vendor/github.com/gopacket/gopacket/layers/rmcp.go index 5474fee4a..4e4a6e807 100644 --- a/vendor/github.com/google/gopacket/layers/rmcp.go +++ b/vendor/github.com/gopacket/gopacket/layers/rmcp.go @@ -11,7 +11,7 @@ package layers import ( "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // RMCPClass is the class of a RMCP layer's payload, e.g. ASF or IPMI. This is a diff --git a/vendor/github.com/google/gopacket/layers/rudp.go b/vendor/github.com/gopacket/gopacket/layers/rudp.go similarity index 98% rename from vendor/github.com/google/gopacket/layers/rudp.go rename to vendor/github.com/gopacket/gopacket/layers/rudp.go index 8435129b9..5c3e76947 100644 --- a/vendor/github.com/google/gopacket/layers/rudp.go +++ b/vendor/github.com/gopacket/gopacket/layers/rudp.go @@ -9,7 +9,8 @@ package layers import ( "encoding/binary" "fmt" - "github.com/google/gopacket" + + "github.com/gopacket/gopacket" ) type RUDP struct { diff --git a/vendor/github.com/google/gopacket/layers/sctp.go b/vendor/github.com/gopacket/gopacket/layers/sctp.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/sctp.go rename to vendor/github.com/gopacket/gopacket/layers/sctp.go index 511176e56..d9df040e9 100644 --- a/vendor/github.com/google/gopacket/layers/sctp.go +++ b/vendor/github.com/gopacket/gopacket/layers/sctp.go @@ -12,7 +12,7 @@ import ( "fmt" "hash/crc32" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // SCTP contains information on the top level of an SCTP packet. diff --git a/vendor/github.com/google/gopacket/layers/sflow.go b/vendor/github.com/gopacket/gopacket/layers/sflow.go similarity index 77% rename from vendor/github.com/google/gopacket/layers/sflow.go rename to vendor/github.com/gopacket/gopacket/layers/sflow.go index bc1c9733b..70fd787a4 100644 --- a/vendor/github.com/google/gopacket/layers/sflow.go +++ b/vendor/github.com/gopacket/gopacket/layers/sflow.go @@ -77,7 +77,7 @@ import ( "fmt" "net" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // SFlowRecord holds both flow sample records and counter sample records. @@ -161,26 +161,28 @@ type SFlowDatagram struct { // An SFlow datagram's outer container has the following // structure: -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int sFlow version (2|4|5) | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int IP version of the Agent (1=v4|2=v6) | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / Agent IP address (v4=4byte|v6=16byte) / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int sub agent id | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int datagram sequence number | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int switch uptime in ms | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int n samples in datagram | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / n samples / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// SFlowDataFormat +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int sFlow version (2|4|5) | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int IP version of the Agent (1=v4|2=v6) | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / Agent IP address (v4=4byte|v6=16byte) / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int sub agent id | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int datagram sequence number | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int switch uptime in ms | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int n samples in datagram | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / n samples / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ // SFlowDataFormat encodes the EnterpriseID in the most // significant 12 bits, and the SampleType in the least significant @@ -371,66 +373,66 @@ type SFlowFlowSample struct { // the bit fields to encode the Enterprise ID and the // Flow record format: type 1 -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | sample length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int sample sequence number | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// |id type | src id index value | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int sampling rate | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int sample pool | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int drops | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int input ifIndex | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int output ifIndex | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int number of records | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / flow records / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | sample length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int sample sequence number | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// |id type | src id index value | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int sampling rate | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int sample pool | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int drops | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int input ifIndex | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int output ifIndex | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int number of records | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / flow records / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ // Flow samples have the following structure. // Flow record format: type 3 -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | sample length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int sample sequence number | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int src id type | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int src id index value | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int sampling rate | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int sample pool | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int drops | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int input interface format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int input interface value | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int output interface format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int output interface value | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int number of records | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / flow records / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | sample length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int sample sequence number | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int src id type | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int src id index value | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int sampling rate | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int sample pool | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int drops | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int input interface format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int input interface value | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int output interface format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int output interface value | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int number of records | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / flow records / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowFlowDataFormat uint32 @@ -697,17 +699,19 @@ type SFlowCounterSample struct { // Counter samples have the following structure: -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int sample sequence number | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// |id type | src id index value | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | int number of records | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / counter records / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// SFlowCounterDataFormat +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int sample sequence number | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// |id type | src id index value | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | int number of records | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / counter records / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowCounterDataFormat uint32 @@ -984,25 +988,25 @@ type SFlowRawPacketFlowRecord struct { } // Raw packet record types have the following structure: - -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | record length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Header Protocol | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Frame Length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Payload Removed | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Header Length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// \ Header \ -// \ \ -// \ \ -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | record length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Header Protocol | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Frame Length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Payload Removed | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Header Length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// \ Header \ +// \ \ +// \ \ +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowRawHeaderProtocol uint32 @@ -1088,21 +1092,21 @@ type SFlowExtendedSwitchFlowRecord struct { } // Extended switch records have the following structure: - -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | record length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Incoming VLAN | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Incoming VLAN Priority | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Outgoing VLAN | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Outgoing VLAN Priority | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | record length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Incoming VLAN | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Incoming VLAN Priority | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Outgoing VLAN | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Outgoing VLAN Priority | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ func decodeExtendedSwitchFlowRecord(data *[]byte) (SFlowExtendedSwitchFlowRecord, error) { es := SFlowExtendedSwitchFlowRecord{} @@ -1129,22 +1133,22 @@ type SFlowExtendedRouterFlowRecord struct { } // Extended router records have the following structure: - -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | record length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IP version of next hop router (1=v4|2=v6) | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / Next Hop address (v4=4byte|v6=16byte) / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Next Hop Source Mask | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Next Hop Destination Mask | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | record length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IP version of next hop router (1=v4|2=v6) | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / Next Hop address (v4=4byte|v6=16byte) / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Next Hop Source Mask | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Next Hop Destination Mask | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ func decodeExtendedRouterFlowRecord(data *[]byte) (SFlowExtendedRouterFlowRecord, error) { er := SFlowExtendedRouterFlowRecord{} @@ -1168,56 +1172,56 @@ func decodeExtendedRouterFlowRecord(data *[]byte) (SFlowExtendedRouterFlowRecord // traffic is being sent from / received by various BGP peers. // Extended gateway records have the following structure: - -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | record length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IP version of next hop router (1=v4|2=v6) | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / Next Hop address (v4=4byte|v6=16byte) / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | AS | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Source AS | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Peer AS | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | AS Path Count | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / AS Path / Sequence / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / Communities / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Local Pref | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | record length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IP version of next hop router (1=v4|2=v6) | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / Next Hop address (v4=4byte|v6=16byte) / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | AS | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Source AS | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Peer AS | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | AS Path Count | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / AS Path / Sequence / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / Communities / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Local Pref | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ // AS Path / Sequence: -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | AS Source Type (Path=1 / Sequence=2) | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Path / Sequence length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / Path / Sequence Members / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | AS Source Type (Path=1 / Sequence=2) | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Path / Sequence length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / Path / Sequence Members / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ // Communities: -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | communitiy length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / communitiy Members / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | communitiy length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / communitiy Members / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowExtendedGatewayFlowRecord struct { SFlowBaseFlowRecord @@ -1311,19 +1315,19 @@ func decodeExtendedGatewayFlowRecord(data *[]byte) (SFlowExtendedGatewayFlowReco // ************************************************** // Extended URL Flow Record // ************************************************** - -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | record length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | direction | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | URL | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Host | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | record length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | direction | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | URL | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Host | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowURLDirection uint32 @@ -1378,21 +1382,21 @@ func decodeExtendedURLRecord(data *[]byte) (SFlowExtendedURLRecord, error) { // ************************************************** // Extended User Flow Record // ************************************************** - -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | record length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Source Character Set | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Source User Id | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Destination Character Set | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Destination User ID | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | record length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Source Character Set | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Source User Id | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Destination Character Set | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Destination User ID | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowExtendedUserFlow struct { SFlowBaseFlowRecord @@ -1696,24 +1700,26 @@ func decodeExtendedUserFlow(data *[]byte) (SFlowExtendedUserFlow, error) { // Packet IP version 4 Record // ************************************************** -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Protocol | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Source IPv4 | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Destination IPv4 | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Source Port | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Destionation Port | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | TCP Flags | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | TOS | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// SFlowIpv4Record +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Protocol | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Source IPv4 | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Destination IPv4 | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Source Port | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Destionation Port | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | TCP Flags | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | TOS | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowIpv4Record struct { // The length of the IP packet excluding ower layer encapsulations Length uint32 @@ -1749,27 +1755,29 @@ func decodeSFlowIpv4Record(data *[]byte) (SFlowIpv4Record, error) { } // ************************************************** -// Packet IP version 6 Record +// +// Packet IP version 6 Record +// // ************************************************** - -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Protocol | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Source IPv4 | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Destination IPv4 | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Source Port | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Destionation Port | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | TCP Flags | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Priority | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Protocol | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Source IPv4 | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Destination IPv4 | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Source Port | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Destionation Port | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | TCP Flags | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Priority | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowIpv6Record struct { // The length of the IP packet excluding ower layer encapsulations Length uint32 @@ -1805,18 +1813,20 @@ func decodeSFlowIpv6Record(data *[]byte) (SFlowIpv6Record, error) { } // ************************************************** -// Extended IPv4 Tunnel Egress +// +// Extended IPv4 Tunnel Egress +// // ************************************************** - -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | record length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / Packet IP version 4 Record / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | record length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / Packet IP version 4 Record / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowExtendedIpv4TunnelEgressRecord struct { SFlowBaseFlowRecord SFlowIpv4Record SFlowIpv4Record @@ -1835,18 +1845,20 @@ func decodeExtendedIpv4TunnelEgress(data *[]byte) (SFlowExtendedIpv4TunnelEgress } // ************************************************** -// Extended IPv4 Tunnel Ingress +// +// Extended IPv4 Tunnel Ingress +// // ************************************************** - -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | record length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / Packet IP version 4 Record / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | record length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / Packet IP version 4 Record / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowExtendedIpv4TunnelIngressRecord struct { SFlowBaseFlowRecord SFlowIpv4Record SFlowIpv4Record @@ -1865,18 +1877,20 @@ func decodeExtendedIpv4TunnelIngress(data *[]byte) (SFlowExtendedIpv4TunnelIngre } // ************************************************** -// Extended IPv6 Tunnel Egress +// +// Extended IPv6 Tunnel Egress +// // ************************************************** - -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | record length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / Packet IP version 6 Record / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | record length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / Packet IP version 6 Record / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowExtendedIpv6TunnelEgressRecord struct { SFlowBaseFlowRecord SFlowIpv6Record @@ -1895,18 +1909,20 @@ func decodeExtendedIpv6TunnelEgress(data *[]byte) (SFlowExtendedIpv6TunnelEgress } // ************************************************** -// Extended IPv6 Tunnel Ingress +// +// Extended IPv6 Tunnel Ingress +// // ************************************************** - -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | record length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / Packet IP version 6 Record / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | record length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / Packet IP version 6 Record / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowExtendedIpv6TunnelIngressRecord struct { SFlowBaseFlowRecord SFlowIpv6Record @@ -1925,17 +1941,19 @@ func decodeExtendedIpv6TunnelIngress(data *[]byte) (SFlowExtendedIpv6TunnelIngre } // ************************************************** -// Extended Decapsulate Egress +// +// Extended Decapsulate Egress +// // ************************************************** - -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | record length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Inner Header Offset | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | record length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Inner Header Offset | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowExtendedDecapsulateEgressRecord struct { SFlowBaseFlowRecord InnerHeaderOffset uint32 @@ -1954,17 +1972,21 @@ func decodeExtendedDecapsulateEgress(data *[]byte) (SFlowExtendedDecapsulateEgre } // ************************************************** -// Extended Decapsulate Ingress +// +// Extended Decapsulate Ingress +// // ************************************************** -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | record length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Inner Header Offset | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// SFlowExtendedDecapsulateIngressRecord +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | record length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Inner Header Offset | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowExtendedDecapsulateIngressRecord struct { SFlowBaseFlowRecord InnerHeaderOffset uint32 @@ -1983,17 +2005,21 @@ func decodeExtendedDecapsulateIngress(data *[]byte) (SFlowExtendedDecapsulateIng } // ************************************************** -// Extended VNI Egress +// +// Extended VNI Egress +// // ************************************************** -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | record length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | VNI | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// SFlowExtendedVniEgressRecord +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | record length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | VNI | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowExtendedVniEgressRecord struct { SFlowBaseFlowRecord VNI uint32 @@ -2012,17 +2038,21 @@ func decodeExtendedVniEgress(data *[]byte) (SFlowExtendedVniEgressRecord, error) } // ************************************************** -// Extended VNI Ingress +// +// Extended VNI Ingress +// // ************************************************** -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | record length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | VNI | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// SFlowExtendedVniIngressRecord +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | record length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | VNI | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowExtendedVniIngressRecord struct { SFlowBaseFlowRecord VNI uint32 @@ -2044,16 +2074,17 @@ func decodeExtendedVniIngress(data *[]byte) (SFlowExtendedVniIngressRecord, erro // Counter Record // ************************************************** -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | counter length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / counter data / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ - +// SFlowBaseCounterRecord +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | counter length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | counter data | +// | | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowBaseCounterRecord struct { EnterpriseID SFlowEnterpriseID Format SFlowCounterRecordType @@ -2092,53 +2123,53 @@ func (bcr SFlowBaseCounterRecord) GetType() SFlowCounterRecordType { // ************************************************** // Counter Record // ************************************************** - -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | counter length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfIndex | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfType | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfSpeed | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfDirection | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfStatus | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IFInOctets | -// | | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfInUcastPkts | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfInMulticastPkts | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfInBroadcastPkts | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfInDiscards | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | InInErrors | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfInUnknownProtos | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfOutOctets | -// | | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfOutUcastPkts | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfOutMulticastPkts | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfOutBroadcastPkts | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfOutDiscards | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfOUtErrors | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | IfPromiscouousMode | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | counter length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfIndex | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfType | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfSpeed | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfDirection | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfStatus | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IFInOctets | +// | | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfInUcastPkts | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfInMulticastPkts | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfInBroadcastPkts | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfInDiscards | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | InInErrors | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfInUnknownProtos | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfOutOctets | +// | | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfOutUcastPkts | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfOutMulticastPkts | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfOutBroadcastPkts | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfOutDiscards | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfOUtErrors | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | IfPromiscouousMode | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowGenericInterfaceCounters struct { SFlowBaseCounterRecord @@ -2195,16 +2226,16 @@ func decodeGenericInterfaceCounters(data *[]byte) (SFlowGenericInterfaceCounters // ************************************************** // Counter Record // ************************************************** - -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | counter length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// / counter data / -// / / -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | counter length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// / counter data / +// / / +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowEthernetCounters struct { SFlowBaseCounterRecord @@ -2317,12 +2348,12 @@ func decodeVLANCounters(data *[]byte) (SFlowVLANCounters, error) { return vc, nil } -//SFLLACPportState : SFlow LACP Port State (All(4) - 32 bit) +// SFLLACPportState : SFlow LACP Port State (All(4) - 32 bit) type SFLLACPPortState struct { PortStateAll uint32 } -//LACPcounters : LACP SFlow Counters ( 64 Bytes ) +// LACPcounters : LACP SFlow Counters ( 64 Bytes ) type SFlowLACPCounters struct { SFlowBaseCounterRecord ActorSystemID net.HardwareAddr @@ -2368,22 +2399,23 @@ func decodeLACPCounters(data *[]byte) (SFlowLACPCounters, error) { // ************************************************** // Processor Counter Record // ************************************************** -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | counter length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | FiveSecCpu | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | OneMinCpu | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | GiveMinCpu | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | TotalMemory | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | FreeMemory | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | counter length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | FiveSecCpu | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | OneMinCpu | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | GiveMinCpu | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | TotalMemory | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | FreeMemory | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ type SFlowProcessorCounters struct { SFlowBaseCounterRecord @@ -2428,19 +2460,19 @@ type SFlowEthernetFrameFlowRecord struct { } // Ethernet frame flow records have the following structure: - -// 0 15 31 -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | 20 bit Interprise (0) |12 bit format | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | record length | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Source Mac Address | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Destination Mac Address | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ -// | Ethernet Packet Type | -// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// +// 0 15 31 +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | 20 bit Interprise (0) |12 bit format | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | record length | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Source Mac Address | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Destination Mac Address | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ +// | Ethernet Packet Type | +// +--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+ func decodeEthernetFrameFlowRecord(data *[]byte) (SFlowEthernetFrameFlowRecord, error) { es := SFlowEthernetFrameFlowRecord{} @@ -2457,7 +2489,7 @@ func decodeEthernetFrameFlowRecord(data *[]byte) (SFlowEthernetFrameFlowRecord, return es, nil } -//SFlowOpenflowPortCounters : OVS-Sflow OpenFlow Port Counter ( 20 Bytes ) +// SFlowOpenflowPortCounters : OVS-Sflow OpenFlow Port Counter ( 20 Bytes ) type SFlowOpenflowPortCounters struct { SFlowBaseCounterRecord DatapathID uint64 @@ -2477,7 +2509,7 @@ func decodeOpenflowportCounters(data *[]byte) (SFlowOpenflowPortCounters, error) return ofp, nil } -//SFlowAppresourcesCounters : OVS_Sflow App Resources Counter ( 48 Bytes ) +// SFlowAppresourcesCounters : OVS_Sflow App Resources Counter ( 48 Bytes ) type SFlowAppresourcesCounters struct { SFlowBaseCounterRecord UserTime uint32 @@ -2509,7 +2541,7 @@ func decodeAppresourcesCounters(data *[]byte) (SFlowAppresourcesCounters, error) return app, nil } -//SFlowOVSDPCounters : OVS-Sflow DataPath Counter ( 32 Bytes ) +// SFlowOVSDPCounters : OVS-Sflow DataPath Counter ( 32 Bytes ) type SFlowOVSDPCounters struct { SFlowBaseCounterRecord NHit uint32 @@ -2537,7 +2569,7 @@ func decodeOVSDPCounters(data *[]byte) (SFlowOVSDPCounters, error) { return dp, nil } -//SFlowPORTNAME : OVS-Sflow PORTNAME Counter Sampletype ( 20 Bytes ) +// SFlowPORTNAME : OVS-Sflow PORTNAME Counter Sampletype ( 20 Bytes ) type SFlowPORTNAME struct { SFlowBaseCounterRecord Len uint32 diff --git a/vendor/github.com/google/gopacket/layers/sip.go b/vendor/github.com/gopacket/gopacket/layers/sip.go similarity index 96% rename from vendor/github.com/google/gopacket/layers/sip.go rename to vendor/github.com/gopacket/gopacket/layers/sip.go index 70afdb5c0..c45fffb95 100644 --- a/vendor/github.com/google/gopacket/layers/sip.go +++ b/vendor/github.com/gopacket/gopacket/layers/sip.go @@ -13,7 +13,7 @@ import ( "strconv" "strings" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // SIPVersion defines the different versions of the SIP Protocol @@ -180,7 +180,6 @@ var compactSipHeadersCorrespondance = map[string]string{ // -> The SIP Response code (if it's a response) // -> The SIP Status line (if it's a response) // You can easily know the type of the packet with the IsResponse boolean -// type SIP struct { BaseLayer @@ -307,10 +306,9 @@ func (s *SIP) DecodeFromBytes(data []byte, df gopacket.DecodeFeedback) error { // // Examples of first line of SIP Prococol : // -// Request : INVITE bob@example.com SIP/2.0 -// Response : SIP/2.0 200 OK -// Response : SIP/2.0 501 Not Implemented -// +// Request : INVITE bob@example.com SIP/2.0 +// Response : SIP/2.0 200 OK +// Response : SIP/2.0 501 Not Implemented func (s *SIP) ParseFirstLine(firstLine []byte) error { var err error @@ -372,13 +370,12 @@ func (s *SIP) ParseFirstLine(firstLine []byte) error { // // Examples of header : // -// CSeq: 1 REGISTER -// Via: SIP/2.0/UDP there.com:5060 -// Authorization:Digest username="UserB", -// realm="MCI WorldCom SIP", -// nonce="1cec4341ae6cbe5a359ea9c8e88df84f", opaque="", -// uri="sip:ss2.wcom.com", response="71ba27c64bd01de719686aa4590d5824" -// +// CSeq: 1 REGISTER +// Via: SIP/2.0/UDP there.com:5060 +// Authorization:Digest username="UserB", +// realm="MCI WorldCom SIP", +// nonce="1cec4341ae6cbe5a359ea9c8e88df84f", opaque="", +// uri="sip:ss2.wcom.com", response="71ba27c64bd01de719686aa4590d5824" func (s *SIP) ParseHeader(header []byte) (err error) { // Ignore empty headers diff --git a/vendor/github.com/gopacket/gopacket/layers/stp.go b/vendor/github.com/gopacket/gopacket/layers/stp.go new file mode 100644 index 000000000..5ced41281 --- /dev/null +++ b/vendor/github.com/gopacket/gopacket/layers/stp.go @@ -0,0 +1,150 @@ +// Copyright 2017 Google, Inc. All rights reserved. +// +// Use of this source code is governed by a BSD-style license +// that can be found in the LICENSE file in the root of the source +// tree. + +package layers + +import ( + "encoding/binary" + "errors" + "fmt" + "net" + + "github.com/gopacket/gopacket" +) + +type STPSwitchID struct { + Priority uint16 // Bridge priority + SysID uint16 // VLAN ID + HwAddr net.HardwareAddr +} + +// STP decode spanning tree protocol packets to transport BPDU (bridge protocol data unit) message. +type STP struct { + BaseLayer + ProtocolID uint16 + Version uint8 + Type uint8 + TC, TCA bool // TC: Topologie change ; TCA: Topologie change ack + RouteID, BridgeID STPSwitchID + Cost uint32 + PortID uint16 + MessageAge uint16 + MaxAge uint16 + HelloTime uint16 + FDelay uint16 +} + +// LayerType returns gopacket.LayerTypeSTP. +func (s *STP) LayerType() gopacket.LayerType { return LayerTypeSTP } + +// CanDecode returns the set of layer types that this DecodingLayer can decode. +func (s *STP) CanDecode() gopacket.LayerClass { + return LayerTypeSTP +} + +// DecodeFromBytes decodes the given bytes into this layer. +func (stp *STP) DecodeFromBytes(data []byte, df gopacket.DecodeFeedback) error { + stpLength := 35 + if len(data) < stpLength { + df.SetTruncated() + return fmt.Errorf("STP length %d too short", len(data)) + } + + stp.ProtocolID = binary.BigEndian.Uint16(data[:2]) + stp.Version = uint8(data[2]) + stp.Type = uint8(data[3]) + stp.TC = data[4]&0x01 != 0 + stp.TCA = data[4]&0x80 != 0 + stp.RouteID.Priority = binary.BigEndian.Uint16(data[5:7]) & 0xf000 + stp.RouteID.SysID = binary.BigEndian.Uint16(data[5:7]) & 0x0fff + stp.RouteID.HwAddr = net.HardwareAddr(data[7:13]) + stp.Cost = binary.BigEndian.Uint32(data[13:17]) + stp.BridgeID.Priority = binary.BigEndian.Uint16(data[17:19]) & 0xf000 + stp.BridgeID.SysID = binary.BigEndian.Uint16(data[17:19]) & 0x0fff + stp.BridgeID.HwAddr = net.HardwareAddr(data[19:25]) + stp.PortID = binary.BigEndian.Uint16(data[25:27]) + stp.MessageAge = binary.BigEndian.Uint16(data[27:29]) + stp.MaxAge = binary.BigEndian.Uint16(data[29:31]) + stp.HelloTime = binary.BigEndian.Uint16(data[31:33]) + stp.FDelay = binary.BigEndian.Uint16(data[33:35]) + stp.Contents = data[:stpLength] + stp.Payload = data[stpLength:] + + return nil +} + +// NextLayerType returns the layer type contained by this DecodingLayer. +func (stp *STP) NextLayerType() gopacket.LayerType { + return gopacket.LayerTypePayload +} + +// Check if the priority value is correct. +func checkPriority(prio uint16) (uint16, error) { + if prio == 0 { + return prio, errors.New("Invalid Priority value must be in the rage <4096-61440> with an increment of 4096") + } + if prio%4096 == 0 { + return prio, nil + } else { + return prio, errors.New("Invalid Priority value must be in the rage <4096-61440> with an increment of 4096") + } +} + +// SerializeTo writes the serialized form of this layer into the +// SerializationBuffer, implementing gopacket.SerializableLayer. +// See the docs for gopacket.SerializableLayer for more info. +func (s *STP) SerializeTo(b gopacket.SerializeBuffer, opts gopacket.SerializeOptions) error { + var flags uint8 = 0x00 + bytes, err := b.PrependBytes(35) + if err != nil { + return err + } + binary.BigEndian.PutUint16(bytes, s.ProtocolID) + bytes[2] = s.Version + bytes[3] = s.Type + if s.TC { + flags |= 0x01 + } + if s.TCA { + flags |= 0x80 + } + bytes[4] = flags + + prioRoot, err := checkPriority(s.RouteID.Priority) + if err != nil { + panic(err) + } + if s.RouteID.SysID >= 4096 { + panic("Invalid VlanID value ..!") + } + binary.BigEndian.PutUint16(bytes[5:7], prioRoot|s.RouteID.SysID) + copy(bytes[7:13], s.RouteID.HwAddr) + + binary.BigEndian.PutUint32(bytes[13:17], s.Cost) + + prioBridge, err := checkPriority(s.BridgeID.Priority) + if err != nil { + panic(err) + } + if s.BridgeID.SysID >= 4096 { + panic("Invalid VlanID value ..!") + } + binary.BigEndian.PutUint16(bytes[17:19], prioBridge|s.BridgeID.SysID) + copy(bytes[19:25], s.BridgeID.HwAddr) + + binary.BigEndian.PutUint16(bytes[25:27], s.PortID) + binary.BigEndian.PutUint16(bytes[27:29], s.MessageAge) + binary.BigEndian.PutUint16(bytes[29:31], s.MaxAge) + binary.BigEndian.PutUint16(bytes[31:33], s.HelloTime) + binary.BigEndian.PutUint16(bytes[33:35], s.FDelay) + + return nil +} + +func decodeSTP(data []byte, p gopacket.PacketBuilder) error { + stp := &STP{} + return decodingLayerDecoder(stp, data, p) +} diff --git a/vendor/github.com/google/gopacket/layers/tcp.go b/vendor/github.com/gopacket/gopacket/layers/tcp.go similarity index 92% rename from vendor/github.com/google/gopacket/layers/tcp.go rename to vendor/github.com/gopacket/gopacket/layers/tcp.go index bcdeb4b3c..b38858950 100644 --- a/vendor/github.com/google/gopacket/layers/tcp.go +++ b/vendor/github.com/gopacket/gopacket/layers/tcp.go @@ -13,7 +13,7 @@ import ( "errors" "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // TCP is the layer for TCP headers. @@ -184,14 +184,18 @@ func (t *TCP) SerializeTo(b gopacket.SerializeBuffer, opts gopacket.SerializeOpt if err != nil { return err } - t.Checksum = csum + t.Checksum = gopacket.FoldChecksum(csum) } binary.BigEndian.PutUint16(bytes[16:], t.Checksum) return nil } func (t *TCP) ComputeChecksum() (uint16, error) { - return t.computeChecksum(append(t.Contents, t.Payload...), IPProtocolTCP) + csum, err := t.computeChecksum(append(t.Contents, t.Payload...), IPProtocolTCP) + if err != nil { + return 0, err + } + return gopacket.FoldChecksum(csum), nil } func (t *TCP) flagsAndOffset() uint16 { @@ -339,3 +343,19 @@ func (t *TCP) SetInternalPortsForTesting() { binary.BigEndian.PutUint16(t.sPort, uint16(t.SrcPort)) binary.BigEndian.PutUint16(t.dPort, uint16(t.DstPort)) } + +func (t *TCP) VerifyChecksum() (error, gopacket.ChecksumVerificationResult) { + bytes := append(t.Contents, t.Payload...) + + existing := t.Checksum + verification, err := t.computeChecksum(bytes, IPProtocolTCP) + if err != nil { + return err, gopacket.ChecksumVerificationResult{} + } + correct := gopacket.FoldChecksum(verification - uint32(existing)) + return nil, gopacket.ChecksumVerificationResult{ + Valid: correct == existing, + Correct: uint32(correct), + Actual: uint32(existing), + } +} diff --git a/vendor/github.com/google/gopacket/layers/tcpip.go b/vendor/github.com/gopacket/gopacket/layers/tcpip.go similarity index 73% rename from vendor/github.com/google/gopacket/layers/tcpip.go rename to vendor/github.com/gopacket/gopacket/layers/tcpip.go index 64ba51cc7..90584b32a 100644 --- a/vendor/github.com/google/gopacket/layers/tcpip.go +++ b/vendor/github.com/gopacket/gopacket/layers/tcpip.go @@ -11,7 +11,7 @@ import ( "errors" "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // Checksum computation for TCP/UDP. @@ -47,32 +47,11 @@ func (ip *IPv6) pseudoheaderChecksum() (csum uint32, err error) { return csum, nil } -// Calculate the TCP/IP checksum defined in rfc1071. The passed-in csum is any -// initial checksum data that's already been computed. -func tcpipChecksum(data []byte, csum uint32) uint16 { - // to handle odd lengths, we loop to length - 1, incrementing by 2, then - // handle the last byte specifically by checking against the original - // length. - length := len(data) - 1 - for i := 0; i < length; i += 2 { - // For our test packet, doing this manually is about 25% faster - // (740 ns vs. 1000ns) than doing it by calling binary.BigEndian.Uint16. - csum += uint32(data[i]) << 8 - csum += uint32(data[i+1]) - } - if len(data)%2 == 1 { - csum += uint32(data[length]) << 8 - } - for csum > 0xffff { - csum = (csum >> 16) + (csum & 0xffff) - } - return ^uint16(csum) -} - // computeChecksum computes a TCP or UDP checksum. headerAndPayload is the // serialized TCP or UDP header plus its payload, with the checksum zero'd // out. headerProtocol is the IP protocol number of the upper-layer header. -func (c *tcpipchecksum) computeChecksum(headerAndPayload []byte, headerProtocol IPProtocol) (uint16, error) { +// The returned 32bit checksum may need to be folded. +func (c *tcpipchecksum) computeChecksum(headerAndPayload []byte, headerProtocol IPProtocol) (uint32, error) { if c.pseudoheader == nil { return 0, errors.New("TCP/IP layer 4 checksum cannot be computed without network layer... call SetNetworkLayerForChecksum to set which layer to use") } @@ -84,7 +63,9 @@ func (c *tcpipchecksum) computeChecksum(headerAndPayload []byte, headerProtocol csum += uint32(headerProtocol) csum += length & 0xffff csum += length >> 16 - return tcpipChecksum(headerAndPayload, csum), nil + + csum = gopacket.ComputeChecksum(headerAndPayload, csum) + return csum, nil } // SetNetworkLayerForChecksum tells this layer which network layer is wrapping it. diff --git a/vendor/github.com/google/gopacket/layers/test_creator.py b/vendor/github.com/gopacket/gopacket/layers/test_creator.py similarity index 100% rename from vendor/github.com/google/gopacket/layers/test_creator.py rename to vendor/github.com/gopacket/gopacket/layers/test_creator.py diff --git a/vendor/github.com/google/gopacket/layers/tls.go b/vendor/github.com/gopacket/gopacket/layers/tls.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/tls.go rename to vendor/github.com/gopacket/gopacket/layers/tls.go index 5a155d455..b5c041f6a 100644 --- a/vendor/github.com/google/gopacket/layers/tls.go +++ b/vendor/github.com/gopacket/gopacket/layers/tls.go @@ -10,7 +10,7 @@ import ( "encoding/binary" "errors" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // TLSType defines the type of data after the TLS Record diff --git a/vendor/github.com/google/gopacket/layers/tls_alert.go b/vendor/github.com/gopacket/gopacket/layers/tls_alert.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/tls_alert.go rename to vendor/github.com/gopacket/gopacket/layers/tls_alert.go index 0c5aee021..15cc2e16d 100644 --- a/vendor/github.com/google/gopacket/layers/tls_alert.go +++ b/vendor/github.com/gopacket/gopacket/layers/tls_alert.go @@ -10,7 +10,7 @@ import ( "errors" "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // TLSAlertLevel defines the alert level data type diff --git a/vendor/github.com/google/gopacket/layers/tls_appdata.go b/vendor/github.com/gopacket/gopacket/layers/tls_appdata.go similarity index 96% rename from vendor/github.com/google/gopacket/layers/tls_appdata.go rename to vendor/github.com/gopacket/gopacket/layers/tls_appdata.go index dedd1d587..cc6b095b5 100644 --- a/vendor/github.com/google/gopacket/layers/tls_appdata.go +++ b/vendor/github.com/gopacket/gopacket/layers/tls_appdata.go @@ -9,7 +9,7 @@ package layers import ( "errors" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // TLSAppDataRecord contains all the information that each AppData Record types should have diff --git a/vendor/github.com/google/gopacket/layers/tls_cipherspec.go b/vendor/github.com/gopacket/gopacket/layers/tls_cipherspec.go similarity index 97% rename from vendor/github.com/google/gopacket/layers/tls_cipherspec.go rename to vendor/github.com/gopacket/gopacket/layers/tls_cipherspec.go index 8f3dc62ba..5f9312ab4 100644 --- a/vendor/github.com/google/gopacket/layers/tls_cipherspec.go +++ b/vendor/github.com/gopacket/gopacket/layers/tls_cipherspec.go @@ -9,7 +9,7 @@ package layers import ( "errors" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // TLSchangeCipherSpec defines the message value inside ChangeCipherSpec Record diff --git a/vendor/github.com/gopacket/gopacket/layers/tls_handshake.go b/vendor/github.com/gopacket/gopacket/layers/tls_handshake.go new file mode 100644 index 000000000..dba0c4c75 --- /dev/null +++ b/vendor/github.com/gopacket/gopacket/layers/tls_handshake.go @@ -0,0 +1,148 @@ +// Copyright 2018 The GoPacket Authors. All rights reserved. +// +// Use of this source code is governed by a BSD-style license +// that can be found in the LICENSE file in the root of the source +// tree. + +package layers + +import ( + "encoding/binary" + "errors" + "fmt" + + "github.com/gopacket/gopacket" +) + +/*refer to https://datatracker.ietf.org/doc/html/rfc5246#appendix-A.4*/ +const ( + TLSHandshakeHelloRequest = 0 + TLSHandshakeClientHello = 1 + TLSHandshakeServerHello = 2 + TLSHandsharkHelloVerirfyRequest = 3 + TLSHandshakeCertificate = 11 + TLSHandshakeServerKeyExchange = 12 + TLSHandshakeCertificateRequest = 13 + TLSHandshakeServerHelloDone = 14 + TLSHandshakeCertificateVerify = 15 + TLSHandshakeClientKeyExchange = 16 + TLSHandshakeFinished = 20 +) + +var handShakeTypeMap = map[uint8]string{ + TLSHandshakeHelloRequest: "Hello Request", + TLSHandshakeClientHello: "Client Hello", + TLSHandshakeServerHello: "Server Hello", + TLSHandsharkHelloVerirfyRequest: "Hello Verify Request", + TLSHandshakeCertificate: "Certificate", + TLSHandshakeServerKeyExchange: "Server Key Exchange", + TLSHandshakeCertificateRequest: "Certificate Request", + TLSHandshakeServerHelloDone: "Server Hello Done", + TLSHandshakeCertificateVerify: "Certificate Verify", + TLSHandshakeClientKeyExchange: "Client Key Exchange", + TLSHandshakeFinished: "Finished", +} + +type TLSHandshakeRecordClientHello struct { + HandshakeType uint8 + Length uint32 + ProtocolVersion TLSVersion + Random []uint8 + SessionIDLength uint8 + SessionID []uint8 + CipherSuitsLength uint16 + CipherSuits []uint8 + CompressionMethodsLength uint8 + CompressionMethods []uint8 + ExtensionsLength uint16 + Extensions []uint8 +} + +type TLSHandshakeRecordClientKeyChange struct { +} + +// TLSHandshakeRecord defines the structure of a Handshare Record +type TLSHandshakeRecord struct { + TLSRecordHeader + ClientHello TLSHandshakeRecordClientHello + ClientKeyChange TLSHandshakeRecordClientKeyChange +} + +func (t *TLSHandshakeRecordClientHello) decodeFromBytes(data []byte, df gopacket.DecodeFeedback) error { + t.HandshakeType = data[0] + d := make([]byte, 4) + for k, v := range data[1:4] { + d[k+1] = v + } + t.Length = binary.BigEndian.Uint32(d) + t.ProtocolVersion = TLSVersion(binary.BigEndian.Uint16(data[4:6])) + t.Random = data[6:38] + t.SessionIDLength = data[38] + t.SessionID = data[39 : 39+t.SessionIDLength] + t.CipherSuitsLength = binary.BigEndian.Uint16(data[39+t.SessionIDLength : 39+t.SessionIDLength+2]) + t.CipherSuits = data[39+t.SessionIDLength+2 : (39 + uint16(t.SessionIDLength) + 2 + t.CipherSuitsLength)] + t.CompressionMethodsLength = data[(39 + uint16(t.SessionIDLength) + 2 + t.CipherSuitsLength)] + t.CompressionMethods = data[(39+uint16(t.SessionIDLength)+2+t.CipherSuitsLength)+1 : (39+uint16(t.SessionIDLength)+2+t.CipherSuitsLength)+1+uint16(t.CompressionMethodsLength)] + t.ExtensionsLength = binary.BigEndian.Uint16(data[(39+uint16(t.SessionIDLength)+2+t.CipherSuitsLength)+1+uint16(t.CompressionMethodsLength) : (39+uint16(t.SessionIDLength)+2+t.CipherSuitsLength)+1+uint16(t.CompressionMethodsLength)+2]) + t.Extensions = data[((39 + uint16(t.SessionIDLength) + 2 + t.CipherSuitsLength) + 1 + uint16(t.CompressionMethodsLength) + 2) : ((39+uint16(t.SessionIDLength)+2+t.CipherSuitsLength)+1+uint16(t.CompressionMethodsLength)+2)+t.ExtensionsLength] + return nil +} +func (t *TLSHandshakeRecordClientKeyChange) decodeFromBytes(data []byte, df gopacket.DecodeFeedback) error { + /*TBD*/ + return nil +} + +/** + * Checks whether a handshake message seems encrypted and cannot be dissected. + */ +func (t TLSHandshakeRecord) isEncryptedHandshakeMessage(h TLSRecordHeader, data []byte) bool { + if h.Length < 16 { + /* + * Encrypted data has additional overhead. For TLS 1.0/1.1 with stream + * and block ciphers, there is at least a MAC which is at minimum 16 + * bytes for MD5. In TLS 1.2, AEAD adds an explicit nonce and auth tag. + * For AES-GCM/CCM the auth tag is 16 bytes. AES_CCM_8 (RFC 6655) uses 8 + * byte auth tags, but the explicit nonce is also 8 (sums up to 16). + * + * So anything smaller than 16 bytes is assumed to be plaintext. + */ + return false + } + maybeType := data[0] + d := make([]byte, 4) + for k, v := range data[1:4] { + d[k+1] = v + } + if uint32(h.Length)-binary.BigEndian.Uint32(d) != 4 { + return true + } + if _, ok := handShakeTypeMap[maybeType]; !ok { + return true + } + return false +} + +// DecodeFromBytes decodes the slice into the TLS struct. +func (t *TLSHandshakeRecord) decodeFromBytes(h TLSRecordHeader, data []byte, df gopacket.DecodeFeedback) error { + // TLS Record Header + t.ContentType = h.ContentType + t.Version = h.Version + t.Length = h.Length + + if t.isEncryptedHandshakeMessage(h, data) { + fmt.Printf("encrypted message\n") + return nil + } + handshakeType := data[0] + switch handshakeType { + case TLSHandshakeClientHello: + t.ClientHello.decodeFromBytes(data, df) + case TLSHandshakeClientKeyExchange: + t.ClientKeyChange.decodeFromBytes(data, df) + default: + return errors.New("Unknown TLS handshake type") + // TODO + } + + return nil +} diff --git a/vendor/github.com/google/gopacket/layers/udp.go b/vendor/github.com/gopacket/gopacket/layers/udp.go similarity index 79% rename from vendor/github.com/google/gopacket/layers/udp.go rename to vendor/github.com/gopacket/gopacket/layers/udp.go index 97e81c69f..ed489130e 100644 --- a/vendor/github.com/google/gopacket/layers/udp.go +++ b/vendor/github.com/gopacket/gopacket/layers/udp.go @@ -11,7 +11,7 @@ import ( "encoding/binary" "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // UDP is the layer for UDP headers. @@ -85,11 +85,20 @@ func (u *UDP) SerializeTo(b gopacket.SerializeBuffer, opts gopacket.SerializeOpt // zero out checksum bytes bytes[6] = 0 bytes[7] = 0 + csum, err := u.computeChecksum(b.Bytes(), IPProtocolUDP) if err != nil { return err } - u.Checksum = csum + csumFolded := gopacket.FoldChecksum(csum) + + // RFC768: If the computed checksum is zero, it is transmitted as all ones (the + // equivalent in one's complement arithmetic). An all zero transmitted + // checksum value means that the transmitter generated no checksum. + if csumFolded == 0 { + csumFolded = 0xffff + } + u.Checksum = csumFolded } binary.BigEndian.PutUint16(bytes[6:], u.Checksum) return nil @@ -131,3 +140,19 @@ func (u *UDP) SetInternalPortsForTesting() { binary.BigEndian.PutUint16(u.sPort, uint16(u.SrcPort)) binary.BigEndian.PutUint16(u.dPort, uint16(u.DstPort)) } + +func (u *UDP) VerifyChecksum() (error, gopacket.ChecksumVerificationResult) { + bytes := append(u.Contents, u.Payload...) + + existing := u.Checksum + verification, err := u.computeChecksum(bytes, IPProtocolUDP) + if err != nil { + return err, gopacket.ChecksumVerificationResult{} + } + correct := gopacket.FoldChecksum(verification - uint32(existing)) + return nil, gopacket.ChecksumVerificationResult{ + Valid: existing == 0 || correct == existing, + Correct: uint32(correct), + Actual: uint32(existing), + } +} diff --git a/vendor/github.com/google/gopacket/layers/udplite.go b/vendor/github.com/gopacket/gopacket/layers/udplite.go similarity index 97% rename from vendor/github.com/google/gopacket/layers/udplite.go rename to vendor/github.com/gopacket/gopacket/layers/udplite.go index 7d84c5146..6566e17b8 100644 --- a/vendor/github.com/google/gopacket/layers/udplite.go +++ b/vendor/github.com/gopacket/gopacket/layers/udplite.go @@ -9,7 +9,8 @@ package layers import ( "encoding/binary" - "github.com/google/gopacket" + + "github.com/gopacket/gopacket" ) // UDPLite is the layer for UDP-Lite headers (rfc 3828). diff --git a/vendor/github.com/google/gopacket/layers/usb.go b/vendor/github.com/gopacket/gopacket/layers/usb.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/usb.go rename to vendor/github.com/gopacket/gopacket/layers/usb.go index d611e0fd0..b04791d5b 100644 --- a/vendor/github.com/google/gopacket/layers/usb.go +++ b/vendor/github.com/gopacket/gopacket/layers/usb.go @@ -9,7 +9,8 @@ package layers import ( "encoding/binary" "errors" - "github.com/google/gopacket" + + "github.com/gopacket/gopacket" ) type USBEventType uint8 diff --git a/vendor/github.com/google/gopacket/layers/vrrp.go b/vendor/github.com/gopacket/gopacket/layers/vrrp.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/vrrp.go rename to vendor/github.com/gopacket/gopacket/layers/vrrp.go index ffaafe6a7..b512e6f82 100644 --- a/vendor/github.com/google/gopacket/layers/vrrp.go +++ b/vendor/github.com/gopacket/gopacket/layers/vrrp.go @@ -11,7 +11,7 @@ import ( "errors" "net" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) /* diff --git a/vendor/github.com/google/gopacket/layers/vxlan.go b/vendor/github.com/gopacket/gopacket/layers/vxlan.go similarity index 99% rename from vendor/github.com/google/gopacket/layers/vxlan.go rename to vendor/github.com/gopacket/gopacket/layers/vxlan.go index e479cd81f..f7cdc040a 100644 --- a/vendor/github.com/google/gopacket/layers/vxlan.go +++ b/vendor/github.com/gopacket/gopacket/layers/vxlan.go @@ -11,7 +11,7 @@ import ( "errors" "fmt" - "github.com/google/gopacket" + "github.com/gopacket/gopacket" ) // VXLAN is specifed in RFC 7348 https://tools.ietf.org/html/rfc7348 diff --git a/vendor/github.com/google/gopacket/layers_decoder.go b/vendor/github.com/gopacket/gopacket/layers_decoder.go similarity index 100% rename from vendor/github.com/google/gopacket/layers_decoder.go rename to vendor/github.com/gopacket/gopacket/layers_decoder.go diff --git a/vendor/github.com/google/gopacket/layertype.go b/vendor/github.com/gopacket/gopacket/layertype.go similarity index 100% rename from vendor/github.com/google/gopacket/layertype.go rename to vendor/github.com/gopacket/gopacket/layertype.go diff --git a/vendor/github.com/google/gopacket/packet.go b/vendor/github.com/gopacket/gopacket/packet.go similarity index 79% rename from vendor/github.com/google/gopacket/packet.go rename to vendor/github.com/gopacket/gopacket/packet.go index 3a7c4b3d8..93563437f 100644 --- a/vendor/github.com/google/gopacket/packet.go +++ b/vendor/github.com/gopacket/gopacket/packet.go @@ -8,6 +8,7 @@ package gopacket import ( "bytes" + "context" "encoding/hex" "errors" "fmt" @@ -17,10 +18,23 @@ import ( "reflect" "runtime/debug" "strings" + "sync" "syscall" "time" ) +const maximumMTU = 1500 + +var ( + ErrNoLayersAdded = errors.New("NextDecoder called, but no layers added yet") + poolPackedPool = &sync.Pool{ + New: func() interface{} { + b := make([]byte, maximumMTU) + return &b + }, + } +) + // CaptureInfo provides standardized information about a packet captured off // the wire or read from a file. type CaptureInfo struct { @@ -97,6 +111,17 @@ type Packet interface { Data() []byte // Metadata returns packet metadata associated with this packet. Metadata() *PacketMetadata + + //// Functions for verifying specific aspects of the packet: + //// ------------------------------------------------------------------ + // VerifyChecksums verifies the checksums of all layers in this packet, + // that have one, and returns all found checksum mismatches. + VerifyChecksums() (error, []ChecksumMismatch) +} + +type PooledPacket interface { + Packet + Dispose() } // packet contains all the information we need to fulfill the Packet interface, @@ -182,6 +207,30 @@ func (p *packet) DecodeOptions() *DecodeOptions { return &p.decodeOptions } +func (p *packet) VerifyChecksums() (error, []ChecksumMismatch) { + mismatches := make([]ChecksumMismatch, 0) + for i, l := range p.layers { + if lwc, ok := l.(LayerWithChecksum); ok { + // Verify checksum for that layer + err, res := lwc.VerifyChecksum() + if err != nil { + return fmt.Errorf("couldn't verify checksum for layer %d (%s): %w", + i+1, l.LayerType(), err), nil + } + + if !res.Valid { + mismatches = append(mismatches, ChecksumMismatch{ + ChecksumVerificationResult: res, + Layer: l, + LayerIndex: i, + }) + } + } + } + + return nil, mismatches +} + func (p *packet) addFinalDecodeError(err error, stack []byte) { fail := &DecodeFailure{err: err, stack: stack} if p.last == nil { @@ -201,13 +250,23 @@ func (p *packet) recoverDecodeError() { } } +type pooledPacket struct { + Packet + origData *[]byte +} + +func (p pooledPacket) Dispose() { + poolPackedPool.Put(p.origData) +} + // LayerString outputs an individual layer as a string. The layer is output // in a single line, with no trailing newline. This function is specifically // designed to do the right thing for most layers... it follows the following // rules: -// * If the Layer has a String function, just output that. -// * Otherwise, output all exported fields in the layer, recursing into -// exported slices and structs. +// - If the Layer has a String function, just output that. +// - Otherwise, output all exported fields in the layer, recursing into +// exported slices and structs. +// // NOTE: This is NOT THE SAME AS fmt's "%#v". %#v will output both exported // and unexported fields... many times packet layers contain unexported stuff // that would just mess up the output of the layer, see for example the @@ -247,11 +306,12 @@ func LayerDump(l Layer) string { // LayerString for more details. // // Params: -// i - value to write out -// anonymous: if we're currently recursing an anonymous member of a struct -// writeSpace: if we've already written a value in a struct, and need to -// write a space before writing more. This happens when we write various -// anonymous values, and need to keep writing more. +// +// i - value to write out +// anonymous: if we're currently recursing an anonymous member of a struct +// writeSpace: if we've already written a value in a struct, and need to +// write a space before writing more. This happens when we write various +// anonymous values, and need to keep writing more. func layerString(v reflect.Value, anonymous bool, writeSpace bool) string { // Let String() functions take precedence. if v.CanInterface() { @@ -439,7 +499,7 @@ func (p *eagerPacket) NextDecoder(next Decoder) error { return errNilDecoder } if p.last == nil { - return errors.New("NextDecoder called, but no layers added yet") + return ErrNoLayersAdded } d := p.last.LayerPayload() if len(d) == 0 { @@ -617,6 +677,11 @@ type DecodeOptions struct { // there's any chance that those bytes WILL be changed, this will invalidate // your packets. NoCopy bool + // Pool decoding only applies if NoCopy is false. + // Instead of always allocating new memory it takes the memory from a pool. + // NewPacket then will return a PooledPacket instead of a Packet. + // As soon as you're done with the PooledPacket you should call PooledPacket.Dispose() to return it to the pool. + Pool bool // SkipDecodeRecovery skips over panic recovery during packet decoding. // Normally, when packets decode, if a panic occurs, that panic is captured // by a recover(), and a DecodeFailure layer is added to the packet detailing @@ -651,18 +716,32 @@ var DecodeStreamsAsDatagrams = DecodeOptions{DecodeStreamsAsDatagrams: true} // NewPacket creates a new Packet object from a set of bytes. The // firstLayerDecoder tells it how to interpret the first layer from the bytes, // future layers will be generated from that first layer automatically. -func NewPacket(data []byte, firstLayerDecoder Decoder, options DecodeOptions) Packet { +func NewPacket(data []byte, firstLayerDecoder Decoder, options DecodeOptions) (p Packet) { if !options.NoCopy { - dataCopy := make([]byte, len(data)) - copy(dataCopy, data) - data = dataCopy + var ( + poolMemory *[]byte + dataCopy []byte + ) + if options.Pool && len(data) <= maximumMTU { + poolMemory = poolPackedPool.Get().(*[]byte) + dataCopy = (*poolMemory)[:len(data)] + copy(dataCopy, data) + data = dataCopy + defer func() { + p = &pooledPacket{Packet: p, origData: poolMemory} + }() + } else { + dataCopy = make([]byte, len(data)) + copy(dataCopy, data) + data = dataCopy + } } if options.Lazy { - p := &lazyPacket{ + lp := &lazyPacket{ packet: packet{data: data, decodeOptions: options}, next: firstLayerDecoder, } - p.layers = p.initialLayers[:0] + lp.layers = lp.initialLayers[:0] // Crazy craziness: // If the following return statemet is REMOVED, and Lazy is FALSE, then // eager packet processing becomes 17% FASTER. No, there is no logical @@ -673,14 +752,14 @@ func NewPacket(data []byte, firstLayerDecoder Decoder, options DecodeOptions) Pa // runtime.morestack/runtime.lessstack. We'll hope the compiler gets better // over time and we get this optimization for free. Until then, we'll have // to live with slower packet processing. - return p + return lp } - p := &eagerPacket{ + ep := &eagerPacket{ packet: packet{data: data, decodeOptions: options}, } - p.layers = p.initialLayers[:0] - p.initialDecode(firstLayerDecoder) - return p + ep.layers = ep.initialLayers[:0] + ep.initialDecode(firstLayerDecoder) + return ep } // PacketDataSource is an interface for some source of packet data. Users may @@ -714,7 +793,7 @@ type concat []PacketDataSource func (c *concat) ReadPacketData() (data []byte, ci CaptureInfo, err error) { for len(*c) > 0 { data, ci, err = (*c)[0].ReadPacketData() - if err == io.EOF { + if errors.Is(err, io.EOF) { *c = (*c)[1:] continue } @@ -742,24 +821,65 @@ type ZeroCopyPacketDataSource interface { ZeroCopyReadPacketData() (data []byte, ci CaptureInfo, err error) } +type PacketSourceOption interface { + apply(ps *PacketSource) +} + +type packetSourceOptionFunc func(ps *PacketSource) + +func (f packetSourceOptionFunc) apply(ps *PacketSource) { + f(ps) +} + +func WithLazy(lazy bool) packetSourceOptionFunc { + return func(ps *PacketSource) { + ps.Lazy = lazy + } +} + +func WithNoCopy(noCopy bool) packetSourceOptionFunc { + return func(ps *PacketSource) { + ps.NoCopy = noCopy + } +} + +func WithPool(pool bool) packetSourceOptionFunc { + return func(ps *PacketSource) { + ps.Pool = pool + } +} + +func WithSkipDecodeRecovery(skipDecodeRecovery bool) packetSourceOptionFunc { + return func(ps *PacketSource) { + ps.SkipDecodeRecovery = skipDecodeRecovery + } +} + +func WithDecodeStreamsAsDatagrams(decodeStreamsAsDatagrams bool) packetSourceOptionFunc { + return func(ps *PacketSource) { + ps.DecodeStreamsAsDatagrams = decodeStreamsAsDatagrams + } +} + // PacketSource reads in packets from a PacketDataSource, decodes them, and // returns them. // // There are currently two different methods for reading packets in through // a PacketSource: // -// Reading With Packets Function +// # Reading With Packets Function // // This method is the most convenient and easiest to code, but lacks // flexibility. Packets returns a 'chan Packet', then asynchronously writes // packets into that channel. Packets uses a blocking channel, and closes // it if an io.EOF is returned by the underlying PacketDataSource. All other // PacketDataSource errors are ignored and discarded. -// for packet := range packetSource.Packets() { -// ... -// } // -// Reading With NextPacket Function +// for packet := range packetSource.Packets() { +// ... +// } +// +// # Reading With NextPacket Function // // This method is the most flexible, and exposes errors that may be // encountered by the underlying PacketDataSource. It's also the fastest @@ -767,19 +887,21 @@ type ZeroCopyPacketDataSource interface { // read/write. However, it requires the user to handle errors, most // importantly the io.EOF error in cases where packets are being read from // a file. -// for { -// packet, err := packetSource.NextPacket() -// if err == io.EOF { -// break -// } else if err != nil { -// log.Println("Error:", err) -// continue -// } -// handlePacket(packet) // Do something with each packet. -// } +// +// for { +// packet, err := packetSource.NextPacket() +// if err == io.EOF { +// break +// } else if err != nil { +// log.Println("Error:", err) +// continue +// } +// handlePacket(packet) // Do something with each packet. +// } type PacketSource struct { - source PacketDataSource - decoder Decoder + zeroCopy bool + source func() (data []byte, ci CaptureInfo, err error) + decoder Decoder // DecodeOptions is the set of options to use for decoding each piece // of packet data. This can/should be changed by the user to reflect the // way packets should be decoded. @@ -787,18 +909,38 @@ type PacketSource struct { c chan Packet } +// NewZeroCopyPacketSource creates a zero copy packet data source. +func NewZeroCopyPacketSource(source ZeroCopyPacketDataSource, decoder Decoder, opts ...PacketSourceOption) *PacketSource { + ps := &PacketSource{ + source: source.ZeroCopyReadPacketData, + decoder: decoder, + } + + for idx := range opts { + opts[idx].apply(ps) + } + + return ps +} + // NewPacketSource creates a packet data source. -func NewPacketSource(source PacketDataSource, decoder Decoder) *PacketSource { - return &PacketSource{ - source: source, +func NewPacketSource(source PacketDataSource, decoder Decoder, opts ...PacketSourceOption) *PacketSource { + ps := &PacketSource{ + source: source.ReadPacketData, decoder: decoder, } + + for idx := range opts { + opts[idx].apply(ps) + } + + return ps } // NextPacket returns the next decoded packet from the PacketSource. On error, // it returns a nil packet and a non-nil error. func (p *PacketSource) NextPacket() (Packet, error) { - data, ci, err := p.source.ReadPacketData() + data, ci, err := p.source() if err != nil { return nil, err } @@ -812,29 +954,30 @@ func (p *PacketSource) NextPacket() (Packet, error) { // packetsToChannel reads in all packets from the packet source and sends them // to the given channel. This routine terminates when a non-temporary error // is returned by NextPacket(). -func (p *PacketSource) packetsToChannel() { +func (p *PacketSource) packetsToChannel(ctx context.Context) { defer close(p.c) - for { + for ctx.Err() == nil { packet, err := p.NextPacket() if err == nil { - p.c <- packet - continue - } - - // Immediately retry for temporary network errors - if nerr, ok := err.(net.Error); ok && nerr.Temporary() { - continue + select { + case p.c <- packet: + continue + case <-ctx.Done(): + return + } } - // Immediately retry for EAGAIN - if err == syscall.EAGAIN { + // if timeout error sleep briefly and retry + var netErr net.Error + if ok := errors.As(err, &netErr); ok && netErr.Timeout() { + time.Sleep(time.Millisecond * time.Duration(5)) continue } // Immediately break for known unrecoverable errors - if err == io.EOF || err == io.ErrUnexpectedEOF || - err == io.ErrNoProgress || err == io.ErrClosedPipe || err == io.ErrShortBuffer || - err == syscall.EBADF || + if errors.Is(err, io.EOF) || errors.Is(err, io.ErrUnexpectedEOF) || + errors.Is(err, io.ErrNoProgress) || errors.Is(err, io.ErrClosedPipe) || errors.Is(err, io.ErrShortBuffer) || + errors.Is(err, syscall.EBADF) || strings.Contains(err.Error(), "use of closed file") { break } @@ -850,15 +993,37 @@ func (p *PacketSource) packetsToChannel() { // PacketDataSource returns an io.EOF error, the channel will be closed. // If any other error is encountered, it is ignored. // -// for packet := range packetSource.Packets() { -// handlePacket(packet) // Do something with each packet. -// } +// for packet := range packetSource.Packets() { +// handlePacket(packet) // Do something with each packet +// } // // If called more than once, returns the same channel. func (p *PacketSource) Packets() chan Packet { + return p.PacketsCtx(context.Background()) +} + +// PacketsCtx returns a channel of packets, allowing easy iterating over +// packets. Packets will be asynchronously read in from the underlying +// PacketDataSource and written to the returned channel. If the underlying +// PacketDataSource returns an io.EOF error, the channel will be closed. +// If any other error is encountered, it is ignored. +// The background Go routine will be canceled as soon as the given context +// returns an error either because it got canceled or it has reached its deadline. +// +// for packet := range packetSource.PacketsCtx(context.Background()) { +// handlePacket(packet) // Do something with each packet. +// } +// +// If called more than once, returns the same channel. +func (p *PacketSource) PacketsCtx(ctx context.Context) chan Packet { + if p.DecodeOptions.NoCopy && p.zeroCopy { + panic("PacketSource uses a zero copy datasource and NoCopy decoder option activated - Packets() uses a buffered channel hence packets are most likely overwritten") + } + + const defaultPacketChannelSize = 1000 if p.c == nil { - p.c = make(chan Packet, 1000) - go p.packetsToChannel() + p.c = make(chan Packet, defaultPacketChannelSize) + go p.packetsToChannel(ctx) } return p.c } diff --git a/vendor/github.com/google/gopacket/parser.go b/vendor/github.com/gopacket/gopacket/parser.go similarity index 87% rename from vendor/github.com/google/gopacket/parser.go rename to vendor/github.com/gopacket/gopacket/parser.go index 4a4676f1c..8bc6a68d4 100644 --- a/vendor/github.com/google/gopacket/parser.go +++ b/vendor/github.com/gopacket/gopacket/parser.go @@ -255,47 +255,48 @@ func (l *DecodingLayerParser) SetDecodingLayerContainer(dlc DecodingLayerContain // instead it overwrites the layers that already exist. // // Example usage: -// func main() { -// var eth layers.Ethernet -// var ip4 layers.IPv4 -// var ip6 layers.IPv6 -// var tcp layers.TCP -// var udp layers.UDP -// var payload gopacket.Payload -// parser := gopacket.NewDecodingLayerParser(layers.LayerTypeEthernet, ð, &ip4, &ip6, &tcp, &udp, &payload) -// var source gopacket.PacketDataSource = getMyDataSource() -// decodedLayers := make([]gopacket.LayerType, 0, 10) -// for { -// data, _, err := source.ReadPacketData() -// if err != nil { -// fmt.Println("Error reading packet data: ", err) -// continue -// } -// fmt.Println("Decoding packet") -// err = parser.DecodeLayers(data, &decodedLayers) -// for _, typ := range decodedLayers { -// fmt.Println(" Successfully decoded layer type", typ) -// switch typ { -// case layers.LayerTypeEthernet: -// fmt.Println(" Eth ", eth.SrcMAC, eth.DstMAC) -// case layers.LayerTypeIPv4: -// fmt.Println(" IP4 ", ip4.SrcIP, ip4.DstIP) -// case layers.LayerTypeIPv6: -// fmt.Println(" IP6 ", ip6.SrcIP, ip6.DstIP) -// case layers.LayerTypeTCP: -// fmt.Println(" TCP ", tcp.SrcPort, tcp.DstPort) -// case layers.LayerTypeUDP: -// fmt.Println(" UDP ", udp.SrcPort, udp.DstPort) -// } -// } -// if decodedLayers.Truncated { -// fmt.Println(" Packet has been truncated") -// } -// if err != nil { -// fmt.Println(" Error encountered:", err) -// } -// } -// } +// +// func main() { +// var eth layers.Ethernet +// var ip4 layers.IPv4 +// var ip6 layers.IPv6 +// var tcp layers.TCP +// var udp layers.UDP +// var payload gopacket.Payload +// parser := gopacket.NewDecodingLayerParser(layers.LayerTypeEthernet, ð, &ip4, &ip6, &tcp, &udp, &payload) +// var source gopacket.PacketDataSource = getMyDataSource() +// decodedLayers := make([]gopacket.LayerType, 0, 10) +// for { +// data, _, err := source.ReadPacketData() +// if err != nil { +// fmt.Println("Error reading packet data: ", err) +// continue +// } +// fmt.Println("Decoding packet") +// err = parser.DecodeLayers(data, &decodedLayers) +// for _, typ := range decodedLayers { +// fmt.Println(" Successfully decoded layer type", typ) +// switch typ { +// case layers.LayerTypeEthernet: +// fmt.Println(" Eth ", eth.SrcMAC, eth.DstMAC) +// case layers.LayerTypeIPv4: +// fmt.Println(" IP4 ", ip4.SrcIP, ip4.DstIP) +// case layers.LayerTypeIPv6: +// fmt.Println(" IP6 ", ip6.SrcIP, ip6.DstIP) +// case layers.LayerTypeTCP: +// fmt.Println(" TCP ", tcp.SrcPort, tcp.DstPort) +// case layers.LayerTypeUDP: +// fmt.Println(" UDP ", udp.SrcPort, udp.DstPort) +// } +// } +// if decodedLayers.Truncated { +// fmt.Println(" Packet has been truncated") +// } +// if err != nil { +// fmt.Println(" Error encountered:", err) +// } +// } +// } // // If DecodeLayers is unable to decode the next layer type, it will return the // error UnsupportedLayerType. diff --git a/vendor/github.com/google/gopacket/time.go b/vendor/github.com/gopacket/gopacket/time.go similarity index 100% rename from vendor/github.com/google/gopacket/time.go rename to vendor/github.com/gopacket/gopacket/time.go diff --git a/vendor/github.com/google/gopacket/writer.go b/vendor/github.com/gopacket/gopacket/writer.go similarity index 93% rename from vendor/github.com/google/gopacket/writer.go rename to vendor/github.com/gopacket/gopacket/writer.go index 5d303dc4a..9a463f047 100644 --- a/vendor/github.com/google/gopacket/writer.go +++ b/vendor/github.com/gopacket/gopacket/writer.go @@ -69,9 +69,9 @@ type SerializeOptions struct { // byte slices returned by any previous Bytes() call (the same buffer is // reused). // -// 1) Reusing a write buffer is generally much faster than creating a new one, +// 1. Reusing a write buffer is generally much faster than creating a new one, // and with the default implementation it avoids additional memory allocations. -// 2) If a byte slice from a previous Bytes() call will continue to be used, +// 2. If a byte slice from a previous Bytes() call will continue to be used, // it's better to create a new SerializeBuffer. // // The Clear method is specifically designed to minimize memory allocations for @@ -197,12 +197,13 @@ func (w *serializeBuffer) PushLayer(l LayerType) { // invalidates all slices previously returned by w.Bytes() // // Example: -// buf := gopacket.NewSerializeBuffer() -// opts := gopacket.SerializeOptions{} -// gopacket.SerializeLayers(buf, opts, a, b, c) -// firstPayload := buf.Bytes() // contains byte representation of a(b(c)) -// gopacket.SerializeLayers(buf, opts, d, e, f) -// secondPayload := buf.Bytes() // contains byte representation of d(e(f)). firstPayload is now invalidated, since the SerializeLayers call Clears buf. +// +// buf := gopacket.NewSerializeBuffer() +// opts := gopacket.SerializeOptions{} +// gopacket.SerializeLayers(buf, opts, a, b, c) +// firstPayload := buf.Bytes() // contains byte representation of a(b(c)) +// gopacket.SerializeLayers(buf, opts, d, e, f) +// secondPayload := buf.Bytes() // contains byte representation of d(e(f)). firstPayload is now invalidated, since the SerializeLayers call Clears buf. func SerializeLayers(w SerializeBuffer, opts SerializeOptions, layers ...SerializableLayer) error { w.Clear() for i := len(layers) - 1; i >= 0; i-- { diff --git a/vendor/golang.org/x/crypto/LICENSE b/vendor/golang.org/x/crypto/LICENSE index 6a66aea5e..2a7cf70da 100644 --- a/vendor/golang.org/x/crypto/LICENSE +++ b/vendor/golang.org/x/crypto/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2009 The Go Authors. All rights reserved. +Copyright 2009 The Go Authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -10,7 +10,7 @@ notice, this list of conditions and the following disclaimer. copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of Google Inc. nor the names of its + * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. diff --git a/vendor/golang.org/x/crypto/cryptobyte/asn1/asn1.go b/vendor/golang.org/x/crypto/cryptobyte/asn1/asn1.go index cda8e3edf..90ef6a241 100644 --- a/vendor/golang.org/x/crypto/cryptobyte/asn1/asn1.go +++ b/vendor/golang.org/x/crypto/cryptobyte/asn1/asn1.go @@ -4,7 +4,7 @@ // Package asn1 contains supporting types for parsing and building ASN.1 // messages with the cryptobyte package. -package asn1 // import "golang.org/x/crypto/cryptobyte/asn1" +package asn1 // Tag represents an ASN.1 identifier octet, consisting of a tag number // (indicating a type) and class (such as context-specific or constructed). diff --git a/vendor/golang.org/x/crypto/cryptobyte/string.go b/vendor/golang.org/x/crypto/cryptobyte/string.go index 10692a8a3..4b0f8097f 100644 --- a/vendor/golang.org/x/crypto/cryptobyte/string.go +++ b/vendor/golang.org/x/crypto/cryptobyte/string.go @@ -15,7 +15,7 @@ // // See the documentation and examples for the Builder and String types to get // started. -package cryptobyte // import "golang.org/x/crypto/cryptobyte" +package cryptobyte // String represents a string of bytes. It provides methods for parsing // fixed-length and length-prefixed values from it. diff --git a/vendor/golang.org/x/crypto/curve25519/curve25519.go b/vendor/golang.org/x/crypto/curve25519/curve25519.go index 00f963ea2..21ca3b2ee 100644 --- a/vendor/golang.org/x/crypto/curve25519/curve25519.go +++ b/vendor/golang.org/x/crypto/curve25519/curve25519.go @@ -6,9 +6,11 @@ // performs scalar multiplication on the elliptic curve known as Curve25519. // See RFC 7748. // -// Starting in Go 1.20, this package is a wrapper for the X25519 implementation +// This package is a wrapper for the X25519 implementation // in the crypto/ecdh package. -package curve25519 // import "golang.org/x/crypto/curve25519" +package curve25519 + +import "crypto/ecdh" // ScalarMult sets dst to the product scalar * point. // @@ -16,7 +18,13 @@ package curve25519 // import "golang.org/x/crypto/curve25519" // zeroes, irrespective of the scalar. Instead, use the X25519 function, which // will return an error. func ScalarMult(dst, scalar, point *[32]byte) { - scalarMult(dst, scalar, point) + if _, err := x25519(dst, scalar[:], point[:]); err != nil { + // The only error condition for x25519 when the inputs are 32 bytes long + // is if the output would have been the all-zero value. + for i := range dst { + dst[i] = 0 + } + } } // ScalarBaseMult sets dst to the product scalar * base where base is the @@ -25,7 +33,12 @@ func ScalarMult(dst, scalar, point *[32]byte) { // It is recommended to use the X25519 function with Basepoint instead, as // copying into fixed size arrays can lead to unexpected bugs. func ScalarBaseMult(dst, scalar *[32]byte) { - scalarBaseMult(dst, scalar) + curve := ecdh.X25519() + priv, err := curve.NewPrivateKey(scalar[:]) + if err != nil { + panic("curve25519: internal error: scalarBaseMult was not 32 bytes") + } + copy(dst[:], priv.PublicKey().Bytes()) } const ( @@ -57,3 +70,21 @@ func X25519(scalar, point []byte) ([]byte, error) { var dst [32]byte return x25519(&dst, scalar, point) } + +func x25519(dst *[32]byte, scalar, point []byte) ([]byte, error) { + curve := ecdh.X25519() + pub, err := curve.NewPublicKey(point) + if err != nil { + return nil, err + } + priv, err := curve.NewPrivateKey(scalar) + if err != nil { + return nil, err + } + out, err := priv.ECDH(pub) + if err != nil { + return nil, err + } + copy(dst[:], out) + return dst[:], nil +} diff --git a/vendor/golang.org/x/crypto/curve25519/curve25519_compat.go b/vendor/golang.org/x/crypto/curve25519/curve25519_compat.go deleted file mode 100644 index ba647e8d7..000000000 --- a/vendor/golang.org/x/crypto/curve25519/curve25519_compat.go +++ /dev/null @@ -1,105 +0,0 @@ -// Copyright 2019 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -//go:build !go1.20 - -package curve25519 - -import ( - "crypto/subtle" - "errors" - "strconv" - - "golang.org/x/crypto/curve25519/internal/field" -) - -func scalarMult(dst, scalar, point *[32]byte) { - var e [32]byte - - copy(e[:], scalar[:]) - e[0] &= 248 - e[31] &= 127 - e[31] |= 64 - - var x1, x2, z2, x3, z3, tmp0, tmp1 field.Element - x1.SetBytes(point[:]) - x2.One() - x3.Set(&x1) - z3.One() - - swap := 0 - for pos := 254; pos >= 0; pos-- { - b := e[pos/8] >> uint(pos&7) - b &= 1 - swap ^= int(b) - x2.Swap(&x3, swap) - z2.Swap(&z3, swap) - swap = int(b) - - tmp0.Subtract(&x3, &z3) - tmp1.Subtract(&x2, &z2) - x2.Add(&x2, &z2) - z2.Add(&x3, &z3) - z3.Multiply(&tmp0, &x2) - z2.Multiply(&z2, &tmp1) - tmp0.Square(&tmp1) - tmp1.Square(&x2) - x3.Add(&z3, &z2) - z2.Subtract(&z3, &z2) - x2.Multiply(&tmp1, &tmp0) - tmp1.Subtract(&tmp1, &tmp0) - z2.Square(&z2) - - z3.Mult32(&tmp1, 121666) - x3.Square(&x3) - tmp0.Add(&tmp0, &z3) - z3.Multiply(&x1, &z2) - z2.Multiply(&tmp1, &tmp0) - } - - x2.Swap(&x3, swap) - z2.Swap(&z3, swap) - - z2.Invert(&z2) - x2.Multiply(&x2, &z2) - copy(dst[:], x2.Bytes()) -} - -func scalarBaseMult(dst, scalar *[32]byte) { - checkBasepoint() - scalarMult(dst, scalar, &basePoint) -} - -func x25519(dst *[32]byte, scalar, point []byte) ([]byte, error) { - var in [32]byte - if l := len(scalar); l != 32 { - return nil, errors.New("bad scalar length: " + strconv.Itoa(l) + ", expected 32") - } - if l := len(point); l != 32 { - return nil, errors.New("bad point length: " + strconv.Itoa(l) + ", expected 32") - } - copy(in[:], scalar) - if &point[0] == &Basepoint[0] { - scalarBaseMult(dst, &in) - } else { - var base, zero [32]byte - copy(base[:], point) - scalarMult(dst, &in, &base) - if subtle.ConstantTimeCompare(dst[:], zero[:]) == 1 { - return nil, errors.New("bad input point: low order point") - } - } - return dst[:], nil -} - -func checkBasepoint() { - if subtle.ConstantTimeCompare(Basepoint, []byte{ - 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, - }) != 1 { - panic("curve25519: global Basepoint value was modified") - } -} diff --git a/vendor/golang.org/x/crypto/curve25519/curve25519_go120.go b/vendor/golang.org/x/crypto/curve25519/curve25519_go120.go deleted file mode 100644 index 627df4972..000000000 --- a/vendor/golang.org/x/crypto/curve25519/curve25519_go120.go +++ /dev/null @@ -1,46 +0,0 @@ -// Copyright 2022 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -//go:build go1.20 - -package curve25519 - -import "crypto/ecdh" - -func x25519(dst *[32]byte, scalar, point []byte) ([]byte, error) { - curve := ecdh.X25519() - pub, err := curve.NewPublicKey(point) - if err != nil { - return nil, err - } - priv, err := curve.NewPrivateKey(scalar) - if err != nil { - return nil, err - } - out, err := priv.ECDH(pub) - if err != nil { - return nil, err - } - copy(dst[:], out) - return dst[:], nil -} - -func scalarMult(dst, scalar, point *[32]byte) { - if _, err := x25519(dst, scalar[:], point[:]); err != nil { - // The only error condition for x25519 when the inputs are 32 bytes long - // is if the output would have been the all-zero value. - for i := range dst { - dst[i] = 0 - } - } -} - -func scalarBaseMult(dst, scalar *[32]byte) { - curve := ecdh.X25519() - priv, err := curve.NewPrivateKey(scalar[:]) - if err != nil { - panic("curve25519: internal error: scalarBaseMult was not 32 bytes") - } - copy(dst[:], priv.PublicKey().Bytes()) -} diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/README b/vendor/golang.org/x/crypto/curve25519/internal/field/README deleted file mode 100644 index e25bca7dc..000000000 --- a/vendor/golang.org/x/crypto/curve25519/internal/field/README +++ /dev/null @@ -1,7 +0,0 @@ -This package is kept in sync with crypto/ed25519/internal/edwards25519/field in -the standard library. - -If there are any changes in the standard library that need to be synced to this -package, run sync.sh. It will not overwrite any local changes made since the -previous sync, so it's ok to land changes in this package first, and then sync -to the standard library later. diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe.go b/vendor/golang.org/x/crypto/curve25519/internal/field/fe.go deleted file mode 100644 index ca841ad99..000000000 --- a/vendor/golang.org/x/crypto/curve25519/internal/field/fe.go +++ /dev/null @@ -1,416 +0,0 @@ -// Copyright (c) 2017 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -// Package field implements fast arithmetic modulo 2^255-19. -package field - -import ( - "crypto/subtle" - "encoding/binary" - "math/bits" -) - -// Element represents an element of the field GF(2^255-19). Note that this -// is not a cryptographically secure group, and should only be used to interact -// with edwards25519.Point coordinates. -// -// This type works similarly to math/big.Int, and all arguments and receivers -// are allowed to alias. -// -// The zero value is a valid zero element. -type Element struct { - // An element t represents the integer - // t.l0 + t.l1*2^51 + t.l2*2^102 + t.l3*2^153 + t.l4*2^204 - // - // Between operations, all limbs are expected to be lower than 2^52. - l0 uint64 - l1 uint64 - l2 uint64 - l3 uint64 - l4 uint64 -} - -const maskLow51Bits uint64 = (1 << 51) - 1 - -var feZero = &Element{0, 0, 0, 0, 0} - -// Zero sets v = 0, and returns v. -func (v *Element) Zero() *Element { - *v = *feZero - return v -} - -var feOne = &Element{1, 0, 0, 0, 0} - -// One sets v = 1, and returns v. -func (v *Element) One() *Element { - *v = *feOne - return v -} - -// reduce reduces v modulo 2^255 - 19 and returns it. -func (v *Element) reduce() *Element { - v.carryPropagate() - - // After the light reduction we now have a field element representation - // v < 2^255 + 2^13 * 19, but need v < 2^255 - 19. - - // If v >= 2^255 - 19, then v + 19 >= 2^255, which would overflow 2^255 - 1, - // generating a carry. That is, c will be 0 if v < 2^255 - 19, and 1 otherwise. - c := (v.l0 + 19) >> 51 - c = (v.l1 + c) >> 51 - c = (v.l2 + c) >> 51 - c = (v.l3 + c) >> 51 - c = (v.l4 + c) >> 51 - - // If v < 2^255 - 19 and c = 0, this will be a no-op. Otherwise, it's - // effectively applying the reduction identity to the carry. - v.l0 += 19 * c - - v.l1 += v.l0 >> 51 - v.l0 = v.l0 & maskLow51Bits - v.l2 += v.l1 >> 51 - v.l1 = v.l1 & maskLow51Bits - v.l3 += v.l2 >> 51 - v.l2 = v.l2 & maskLow51Bits - v.l4 += v.l3 >> 51 - v.l3 = v.l3 & maskLow51Bits - // no additional carry - v.l4 = v.l4 & maskLow51Bits - - return v -} - -// Add sets v = a + b, and returns v. -func (v *Element) Add(a, b *Element) *Element { - v.l0 = a.l0 + b.l0 - v.l1 = a.l1 + b.l1 - v.l2 = a.l2 + b.l2 - v.l3 = a.l3 + b.l3 - v.l4 = a.l4 + b.l4 - // Using the generic implementation here is actually faster than the - // assembly. Probably because the body of this function is so simple that - // the compiler can figure out better optimizations by inlining the carry - // propagation. TODO - return v.carryPropagateGeneric() -} - -// Subtract sets v = a - b, and returns v. -func (v *Element) Subtract(a, b *Element) *Element { - // We first add 2 * p, to guarantee the subtraction won't underflow, and - // then subtract b (which can be up to 2^255 + 2^13 * 19). - v.l0 = (a.l0 + 0xFFFFFFFFFFFDA) - b.l0 - v.l1 = (a.l1 + 0xFFFFFFFFFFFFE) - b.l1 - v.l2 = (a.l2 + 0xFFFFFFFFFFFFE) - b.l2 - v.l3 = (a.l3 + 0xFFFFFFFFFFFFE) - b.l3 - v.l4 = (a.l4 + 0xFFFFFFFFFFFFE) - b.l4 - return v.carryPropagate() -} - -// Negate sets v = -a, and returns v. -func (v *Element) Negate(a *Element) *Element { - return v.Subtract(feZero, a) -} - -// Invert sets v = 1/z mod p, and returns v. -// -// If z == 0, Invert returns v = 0. -func (v *Element) Invert(z *Element) *Element { - // Inversion is implemented as exponentiation with exponent p − 2. It uses the - // same sequence of 255 squarings and 11 multiplications as [Curve25519]. - var z2, z9, z11, z2_5_0, z2_10_0, z2_20_0, z2_50_0, z2_100_0, t Element - - z2.Square(z) // 2 - t.Square(&z2) // 4 - t.Square(&t) // 8 - z9.Multiply(&t, z) // 9 - z11.Multiply(&z9, &z2) // 11 - t.Square(&z11) // 22 - z2_5_0.Multiply(&t, &z9) // 31 = 2^5 - 2^0 - - t.Square(&z2_5_0) // 2^6 - 2^1 - for i := 0; i < 4; i++ { - t.Square(&t) // 2^10 - 2^5 - } - z2_10_0.Multiply(&t, &z2_5_0) // 2^10 - 2^0 - - t.Square(&z2_10_0) // 2^11 - 2^1 - for i := 0; i < 9; i++ { - t.Square(&t) // 2^20 - 2^10 - } - z2_20_0.Multiply(&t, &z2_10_0) // 2^20 - 2^0 - - t.Square(&z2_20_0) // 2^21 - 2^1 - for i := 0; i < 19; i++ { - t.Square(&t) // 2^40 - 2^20 - } - t.Multiply(&t, &z2_20_0) // 2^40 - 2^0 - - t.Square(&t) // 2^41 - 2^1 - for i := 0; i < 9; i++ { - t.Square(&t) // 2^50 - 2^10 - } - z2_50_0.Multiply(&t, &z2_10_0) // 2^50 - 2^0 - - t.Square(&z2_50_0) // 2^51 - 2^1 - for i := 0; i < 49; i++ { - t.Square(&t) // 2^100 - 2^50 - } - z2_100_0.Multiply(&t, &z2_50_0) // 2^100 - 2^0 - - t.Square(&z2_100_0) // 2^101 - 2^1 - for i := 0; i < 99; i++ { - t.Square(&t) // 2^200 - 2^100 - } - t.Multiply(&t, &z2_100_0) // 2^200 - 2^0 - - t.Square(&t) // 2^201 - 2^1 - for i := 0; i < 49; i++ { - t.Square(&t) // 2^250 - 2^50 - } - t.Multiply(&t, &z2_50_0) // 2^250 - 2^0 - - t.Square(&t) // 2^251 - 2^1 - t.Square(&t) // 2^252 - 2^2 - t.Square(&t) // 2^253 - 2^3 - t.Square(&t) // 2^254 - 2^4 - t.Square(&t) // 2^255 - 2^5 - - return v.Multiply(&t, &z11) // 2^255 - 21 -} - -// Set sets v = a, and returns v. -func (v *Element) Set(a *Element) *Element { - *v = *a - return v -} - -// SetBytes sets v to x, which must be a 32-byte little-endian encoding. -// -// Consistent with RFC 7748, the most significant bit (the high bit of the -// last byte) is ignored, and non-canonical values (2^255-19 through 2^255-1) -// are accepted. Note that this is laxer than specified by RFC 8032. -func (v *Element) SetBytes(x []byte) *Element { - if len(x) != 32 { - panic("edwards25519: invalid field element input size") - } - - // Bits 0:51 (bytes 0:8, bits 0:64, shift 0, mask 51). - v.l0 = binary.LittleEndian.Uint64(x[0:8]) - v.l0 &= maskLow51Bits - // Bits 51:102 (bytes 6:14, bits 48:112, shift 3, mask 51). - v.l1 = binary.LittleEndian.Uint64(x[6:14]) >> 3 - v.l1 &= maskLow51Bits - // Bits 102:153 (bytes 12:20, bits 96:160, shift 6, mask 51). - v.l2 = binary.LittleEndian.Uint64(x[12:20]) >> 6 - v.l2 &= maskLow51Bits - // Bits 153:204 (bytes 19:27, bits 152:216, shift 1, mask 51). - v.l3 = binary.LittleEndian.Uint64(x[19:27]) >> 1 - v.l3 &= maskLow51Bits - // Bits 204:251 (bytes 24:32, bits 192:256, shift 12, mask 51). - // Note: not bytes 25:33, shift 4, to avoid overread. - v.l4 = binary.LittleEndian.Uint64(x[24:32]) >> 12 - v.l4 &= maskLow51Bits - - return v -} - -// Bytes returns the canonical 32-byte little-endian encoding of v. -func (v *Element) Bytes() []byte { - // This function is outlined to make the allocations inline in the caller - // rather than happen on the heap. - var out [32]byte - return v.bytes(&out) -} - -func (v *Element) bytes(out *[32]byte) []byte { - t := *v - t.reduce() - - var buf [8]byte - for i, l := range [5]uint64{t.l0, t.l1, t.l2, t.l3, t.l4} { - bitsOffset := i * 51 - binary.LittleEndian.PutUint64(buf[:], l<= len(out) { - break - } - out[off] |= bb - } - } - - return out[:] -} - -// Equal returns 1 if v and u are equal, and 0 otherwise. -func (v *Element) Equal(u *Element) int { - sa, sv := u.Bytes(), v.Bytes() - return subtle.ConstantTimeCompare(sa, sv) -} - -// mask64Bits returns 0xffffffff if cond is 1, and 0 otherwise. -func mask64Bits(cond int) uint64 { return ^(uint64(cond) - 1) } - -// Select sets v to a if cond == 1, and to b if cond == 0. -func (v *Element) Select(a, b *Element, cond int) *Element { - m := mask64Bits(cond) - v.l0 = (m & a.l0) | (^m & b.l0) - v.l1 = (m & a.l1) | (^m & b.l1) - v.l2 = (m & a.l2) | (^m & b.l2) - v.l3 = (m & a.l3) | (^m & b.l3) - v.l4 = (m & a.l4) | (^m & b.l4) - return v -} - -// Swap swaps v and u if cond == 1 or leaves them unchanged if cond == 0, and returns v. -func (v *Element) Swap(u *Element, cond int) { - m := mask64Bits(cond) - t := m & (v.l0 ^ u.l0) - v.l0 ^= t - u.l0 ^= t - t = m & (v.l1 ^ u.l1) - v.l1 ^= t - u.l1 ^= t - t = m & (v.l2 ^ u.l2) - v.l2 ^= t - u.l2 ^= t - t = m & (v.l3 ^ u.l3) - v.l3 ^= t - u.l3 ^= t - t = m & (v.l4 ^ u.l4) - v.l4 ^= t - u.l4 ^= t -} - -// IsNegative returns 1 if v is negative, and 0 otherwise. -func (v *Element) IsNegative() int { - return int(v.Bytes()[0] & 1) -} - -// Absolute sets v to |u|, and returns v. -func (v *Element) Absolute(u *Element) *Element { - return v.Select(new(Element).Negate(u), u, u.IsNegative()) -} - -// Multiply sets v = x * y, and returns v. -func (v *Element) Multiply(x, y *Element) *Element { - feMul(v, x, y) - return v -} - -// Square sets v = x * x, and returns v. -func (v *Element) Square(x *Element) *Element { - feSquare(v, x) - return v -} - -// Mult32 sets v = x * y, and returns v. -func (v *Element) Mult32(x *Element, y uint32) *Element { - x0lo, x0hi := mul51(x.l0, y) - x1lo, x1hi := mul51(x.l1, y) - x2lo, x2hi := mul51(x.l2, y) - x3lo, x3hi := mul51(x.l3, y) - x4lo, x4hi := mul51(x.l4, y) - v.l0 = x0lo + 19*x4hi // carried over per the reduction identity - v.l1 = x1lo + x0hi - v.l2 = x2lo + x1hi - v.l3 = x3lo + x2hi - v.l4 = x4lo + x3hi - // The hi portions are going to be only 32 bits, plus any previous excess, - // so we can skip the carry propagation. - return v -} - -// mul51 returns lo + hi * 2⁵¹ = a * b. -func mul51(a uint64, b uint32) (lo uint64, hi uint64) { - mh, ml := bits.Mul64(a, uint64(b)) - lo = ml & maskLow51Bits - hi = (mh << 13) | (ml >> 51) - return -} - -// Pow22523 set v = x^((p-5)/8), and returns v. (p-5)/8 is 2^252-3. -func (v *Element) Pow22523(x *Element) *Element { - var t0, t1, t2 Element - - t0.Square(x) // x^2 - t1.Square(&t0) // x^4 - t1.Square(&t1) // x^8 - t1.Multiply(x, &t1) // x^9 - t0.Multiply(&t0, &t1) // x^11 - t0.Square(&t0) // x^22 - t0.Multiply(&t1, &t0) // x^31 - t1.Square(&t0) // x^62 - for i := 1; i < 5; i++ { // x^992 - t1.Square(&t1) - } - t0.Multiply(&t1, &t0) // x^1023 -> 1023 = 2^10 - 1 - t1.Square(&t0) // 2^11 - 2 - for i := 1; i < 10; i++ { // 2^20 - 2^10 - t1.Square(&t1) - } - t1.Multiply(&t1, &t0) // 2^20 - 1 - t2.Square(&t1) // 2^21 - 2 - for i := 1; i < 20; i++ { // 2^40 - 2^20 - t2.Square(&t2) - } - t1.Multiply(&t2, &t1) // 2^40 - 1 - t1.Square(&t1) // 2^41 - 2 - for i := 1; i < 10; i++ { // 2^50 - 2^10 - t1.Square(&t1) - } - t0.Multiply(&t1, &t0) // 2^50 - 1 - t1.Square(&t0) // 2^51 - 2 - for i := 1; i < 50; i++ { // 2^100 - 2^50 - t1.Square(&t1) - } - t1.Multiply(&t1, &t0) // 2^100 - 1 - t2.Square(&t1) // 2^101 - 2 - for i := 1; i < 100; i++ { // 2^200 - 2^100 - t2.Square(&t2) - } - t1.Multiply(&t2, &t1) // 2^200 - 1 - t1.Square(&t1) // 2^201 - 2 - for i := 1; i < 50; i++ { // 2^250 - 2^50 - t1.Square(&t1) - } - t0.Multiply(&t1, &t0) // 2^250 - 1 - t0.Square(&t0) // 2^251 - 2 - t0.Square(&t0) // 2^252 - 4 - return v.Multiply(&t0, x) // 2^252 - 3 -> x^(2^252-3) -} - -// sqrtM1 is 2^((p-1)/4), which squared is equal to -1 by Euler's Criterion. -var sqrtM1 = &Element{1718705420411056, 234908883556509, - 2233514472574048, 2117202627021982, 765476049583133} - -// SqrtRatio sets r to the non-negative square root of the ratio of u and v. -// -// If u/v is square, SqrtRatio returns r and 1. If u/v is not square, SqrtRatio -// sets r according to Section 4.3 of draft-irtf-cfrg-ristretto255-decaf448-00, -// and returns r and 0. -func (r *Element) SqrtRatio(u, v *Element) (rr *Element, wasSquare int) { - var a, b Element - - // r = (u * v3) * (u * v7)^((p-5)/8) - v2 := a.Square(v) - uv3 := b.Multiply(u, b.Multiply(v2, v)) - uv7 := a.Multiply(uv3, a.Square(v2)) - r.Multiply(uv3, r.Pow22523(uv7)) - - check := a.Multiply(v, a.Square(r)) // check = v * r^2 - - uNeg := b.Negate(u) - correctSignSqrt := check.Equal(u) - flippedSignSqrt := check.Equal(uNeg) - flippedSignSqrtI := check.Equal(uNeg.Multiply(uNeg, sqrtM1)) - - rPrime := b.Multiply(r, sqrtM1) // r_prime = SQRT_M1 * r - // r = CT_SELECT(r_prime IF flipped_sign_sqrt | flipped_sign_sqrt_i ELSE r) - r.Select(rPrime, r, flippedSignSqrt|flippedSignSqrtI) - - r.Absolute(r) // Choose the nonnegative square root. - return r, correctSignSqrt | flippedSignSqrt -} diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64.go b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64.go deleted file mode 100644 index 70c541692..000000000 --- a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64.go +++ /dev/null @@ -1,15 +0,0 @@ -// Code generated by command: go run fe_amd64_asm.go -out ../fe_amd64.s -stubs ../fe_amd64.go -pkg field. DO NOT EDIT. - -//go:build amd64 && gc && !purego - -package field - -// feMul sets out = a * b. It works like feMulGeneric. -// -//go:noescape -func feMul(out *Element, a *Element, b *Element) - -// feSquare sets out = a * a. It works like feSquareGeneric. -// -//go:noescape -func feSquare(out *Element, a *Element) diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64.s b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64.s deleted file mode 100644 index 60817acc4..000000000 --- a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64.s +++ /dev/null @@ -1,378 +0,0 @@ -// Code generated by command: go run fe_amd64_asm.go -out ../fe_amd64.s -stubs ../fe_amd64.go -pkg field. DO NOT EDIT. - -//go:build amd64 && gc && !purego - -#include "textflag.h" - -// func feMul(out *Element, a *Element, b *Element) -TEXT ·feMul(SB), NOSPLIT, $0-24 - MOVQ a+8(FP), CX - MOVQ b+16(FP), BX - - // r0 = a0×b0 - MOVQ (CX), AX - MULQ (BX) - MOVQ AX, DI - MOVQ DX, SI - - // r0 += 19×a1×b4 - MOVQ 8(CX), AX - IMUL3Q $0x13, AX, AX - MULQ 32(BX) - ADDQ AX, DI - ADCQ DX, SI - - // r0 += 19×a2×b3 - MOVQ 16(CX), AX - IMUL3Q $0x13, AX, AX - MULQ 24(BX) - ADDQ AX, DI - ADCQ DX, SI - - // r0 += 19×a3×b2 - MOVQ 24(CX), AX - IMUL3Q $0x13, AX, AX - MULQ 16(BX) - ADDQ AX, DI - ADCQ DX, SI - - // r0 += 19×a4×b1 - MOVQ 32(CX), AX - IMUL3Q $0x13, AX, AX - MULQ 8(BX) - ADDQ AX, DI - ADCQ DX, SI - - // r1 = a0×b1 - MOVQ (CX), AX - MULQ 8(BX) - MOVQ AX, R9 - MOVQ DX, R8 - - // r1 += a1×b0 - MOVQ 8(CX), AX - MULQ (BX) - ADDQ AX, R9 - ADCQ DX, R8 - - // r1 += 19×a2×b4 - MOVQ 16(CX), AX - IMUL3Q $0x13, AX, AX - MULQ 32(BX) - ADDQ AX, R9 - ADCQ DX, R8 - - // r1 += 19×a3×b3 - MOVQ 24(CX), AX - IMUL3Q $0x13, AX, AX - MULQ 24(BX) - ADDQ AX, R9 - ADCQ DX, R8 - - // r1 += 19×a4×b2 - MOVQ 32(CX), AX - IMUL3Q $0x13, AX, AX - MULQ 16(BX) - ADDQ AX, R9 - ADCQ DX, R8 - - // r2 = a0×b2 - MOVQ (CX), AX - MULQ 16(BX) - MOVQ AX, R11 - MOVQ DX, R10 - - // r2 += a1×b1 - MOVQ 8(CX), AX - MULQ 8(BX) - ADDQ AX, R11 - ADCQ DX, R10 - - // r2 += a2×b0 - MOVQ 16(CX), AX - MULQ (BX) - ADDQ AX, R11 - ADCQ DX, R10 - - // r2 += 19×a3×b4 - MOVQ 24(CX), AX - IMUL3Q $0x13, AX, AX - MULQ 32(BX) - ADDQ AX, R11 - ADCQ DX, R10 - - // r2 += 19×a4×b3 - MOVQ 32(CX), AX - IMUL3Q $0x13, AX, AX - MULQ 24(BX) - ADDQ AX, R11 - ADCQ DX, R10 - - // r3 = a0×b3 - MOVQ (CX), AX - MULQ 24(BX) - MOVQ AX, R13 - MOVQ DX, R12 - - // r3 += a1×b2 - MOVQ 8(CX), AX - MULQ 16(BX) - ADDQ AX, R13 - ADCQ DX, R12 - - // r3 += a2×b1 - MOVQ 16(CX), AX - MULQ 8(BX) - ADDQ AX, R13 - ADCQ DX, R12 - - // r3 += a3×b0 - MOVQ 24(CX), AX - MULQ (BX) - ADDQ AX, R13 - ADCQ DX, R12 - - // r3 += 19×a4×b4 - MOVQ 32(CX), AX - IMUL3Q $0x13, AX, AX - MULQ 32(BX) - ADDQ AX, R13 - ADCQ DX, R12 - - // r4 = a0×b4 - MOVQ (CX), AX - MULQ 32(BX) - MOVQ AX, R15 - MOVQ DX, R14 - - // r4 += a1×b3 - MOVQ 8(CX), AX - MULQ 24(BX) - ADDQ AX, R15 - ADCQ DX, R14 - - // r4 += a2×b2 - MOVQ 16(CX), AX - MULQ 16(BX) - ADDQ AX, R15 - ADCQ DX, R14 - - // r4 += a3×b1 - MOVQ 24(CX), AX - MULQ 8(BX) - ADDQ AX, R15 - ADCQ DX, R14 - - // r4 += a4×b0 - MOVQ 32(CX), AX - MULQ (BX) - ADDQ AX, R15 - ADCQ DX, R14 - - // First reduction chain - MOVQ $0x0007ffffffffffff, AX - SHLQ $0x0d, DI, SI - SHLQ $0x0d, R9, R8 - SHLQ $0x0d, R11, R10 - SHLQ $0x0d, R13, R12 - SHLQ $0x0d, R15, R14 - ANDQ AX, DI - IMUL3Q $0x13, R14, R14 - ADDQ R14, DI - ANDQ AX, R9 - ADDQ SI, R9 - ANDQ AX, R11 - ADDQ R8, R11 - ANDQ AX, R13 - ADDQ R10, R13 - ANDQ AX, R15 - ADDQ R12, R15 - - // Second reduction chain (carryPropagate) - MOVQ DI, SI - SHRQ $0x33, SI - MOVQ R9, R8 - SHRQ $0x33, R8 - MOVQ R11, R10 - SHRQ $0x33, R10 - MOVQ R13, R12 - SHRQ $0x33, R12 - MOVQ R15, R14 - SHRQ $0x33, R14 - ANDQ AX, DI - IMUL3Q $0x13, R14, R14 - ADDQ R14, DI - ANDQ AX, R9 - ADDQ SI, R9 - ANDQ AX, R11 - ADDQ R8, R11 - ANDQ AX, R13 - ADDQ R10, R13 - ANDQ AX, R15 - ADDQ R12, R15 - - // Store output - MOVQ out+0(FP), AX - MOVQ DI, (AX) - MOVQ R9, 8(AX) - MOVQ R11, 16(AX) - MOVQ R13, 24(AX) - MOVQ R15, 32(AX) - RET - -// func feSquare(out *Element, a *Element) -TEXT ·feSquare(SB), NOSPLIT, $0-16 - MOVQ a+8(FP), CX - - // r0 = l0×l0 - MOVQ (CX), AX - MULQ (CX) - MOVQ AX, SI - MOVQ DX, BX - - // r0 += 38×l1×l4 - MOVQ 8(CX), AX - IMUL3Q $0x26, AX, AX - MULQ 32(CX) - ADDQ AX, SI - ADCQ DX, BX - - // r0 += 38×l2×l3 - MOVQ 16(CX), AX - IMUL3Q $0x26, AX, AX - MULQ 24(CX) - ADDQ AX, SI - ADCQ DX, BX - - // r1 = 2×l0×l1 - MOVQ (CX), AX - SHLQ $0x01, AX - MULQ 8(CX) - MOVQ AX, R8 - MOVQ DX, DI - - // r1 += 38×l2×l4 - MOVQ 16(CX), AX - IMUL3Q $0x26, AX, AX - MULQ 32(CX) - ADDQ AX, R8 - ADCQ DX, DI - - // r1 += 19×l3×l3 - MOVQ 24(CX), AX - IMUL3Q $0x13, AX, AX - MULQ 24(CX) - ADDQ AX, R8 - ADCQ DX, DI - - // r2 = 2×l0×l2 - MOVQ (CX), AX - SHLQ $0x01, AX - MULQ 16(CX) - MOVQ AX, R10 - MOVQ DX, R9 - - // r2 += l1×l1 - MOVQ 8(CX), AX - MULQ 8(CX) - ADDQ AX, R10 - ADCQ DX, R9 - - // r2 += 38×l3×l4 - MOVQ 24(CX), AX - IMUL3Q $0x26, AX, AX - MULQ 32(CX) - ADDQ AX, R10 - ADCQ DX, R9 - - // r3 = 2×l0×l3 - MOVQ (CX), AX - SHLQ $0x01, AX - MULQ 24(CX) - MOVQ AX, R12 - MOVQ DX, R11 - - // r3 += 2×l1×l2 - MOVQ 8(CX), AX - IMUL3Q $0x02, AX, AX - MULQ 16(CX) - ADDQ AX, R12 - ADCQ DX, R11 - - // r3 += 19×l4×l4 - MOVQ 32(CX), AX - IMUL3Q $0x13, AX, AX - MULQ 32(CX) - ADDQ AX, R12 - ADCQ DX, R11 - - // r4 = 2×l0×l4 - MOVQ (CX), AX - SHLQ $0x01, AX - MULQ 32(CX) - MOVQ AX, R14 - MOVQ DX, R13 - - // r4 += 2×l1×l3 - MOVQ 8(CX), AX - IMUL3Q $0x02, AX, AX - MULQ 24(CX) - ADDQ AX, R14 - ADCQ DX, R13 - - // r4 += l2×l2 - MOVQ 16(CX), AX - MULQ 16(CX) - ADDQ AX, R14 - ADCQ DX, R13 - - // First reduction chain - MOVQ $0x0007ffffffffffff, AX - SHLQ $0x0d, SI, BX - SHLQ $0x0d, R8, DI - SHLQ $0x0d, R10, R9 - SHLQ $0x0d, R12, R11 - SHLQ $0x0d, R14, R13 - ANDQ AX, SI - IMUL3Q $0x13, R13, R13 - ADDQ R13, SI - ANDQ AX, R8 - ADDQ BX, R8 - ANDQ AX, R10 - ADDQ DI, R10 - ANDQ AX, R12 - ADDQ R9, R12 - ANDQ AX, R14 - ADDQ R11, R14 - - // Second reduction chain (carryPropagate) - MOVQ SI, BX - SHRQ $0x33, BX - MOVQ R8, DI - SHRQ $0x33, DI - MOVQ R10, R9 - SHRQ $0x33, R9 - MOVQ R12, R11 - SHRQ $0x33, R11 - MOVQ R14, R13 - SHRQ $0x33, R13 - ANDQ AX, SI - IMUL3Q $0x13, R13, R13 - ADDQ R13, SI - ANDQ AX, R8 - ADDQ BX, R8 - ANDQ AX, R10 - ADDQ DI, R10 - ANDQ AX, R12 - ADDQ R9, R12 - ANDQ AX, R14 - ADDQ R11, R14 - - // Store output - MOVQ out+0(FP), AX - MOVQ SI, (AX) - MOVQ R8, 8(AX) - MOVQ R10, 16(AX) - MOVQ R12, 24(AX) - MOVQ R14, 32(AX) - RET diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64_noasm.go b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64_noasm.go deleted file mode 100644 index 9da280d1d..000000000 --- a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_amd64_noasm.go +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright (c) 2019 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -//go:build !amd64 || !gc || purego - -package field - -func feMul(v, x, y *Element) { feMulGeneric(v, x, y) } - -func feSquare(v, x *Element) { feSquareGeneric(v, x) } diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64.go b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64.go deleted file mode 100644 index 075fe9b92..000000000 --- a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64.go +++ /dev/null @@ -1,15 +0,0 @@ -// Copyright (c) 2020 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -//go:build arm64 && gc && !purego - -package field - -//go:noescape -func carryPropagate(v *Element) - -func (v *Element) carryPropagate() *Element { - carryPropagate(v) - return v -} diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64.s b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64.s deleted file mode 100644 index 3126a4341..000000000 --- a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64.s +++ /dev/null @@ -1,42 +0,0 @@ -// Copyright (c) 2020 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -//go:build arm64 && gc && !purego - -#include "textflag.h" - -// carryPropagate works exactly like carryPropagateGeneric and uses the -// same AND, ADD, and LSR+MADD instructions emitted by the compiler, but -// avoids loading R0-R4 twice and uses LDP and STP. -// -// See https://golang.org/issues/43145 for the main compiler issue. -// -// func carryPropagate(v *Element) -TEXT ·carryPropagate(SB),NOFRAME|NOSPLIT,$0-8 - MOVD v+0(FP), R20 - - LDP 0(R20), (R0, R1) - LDP 16(R20), (R2, R3) - MOVD 32(R20), R4 - - AND $0x7ffffffffffff, R0, R10 - AND $0x7ffffffffffff, R1, R11 - AND $0x7ffffffffffff, R2, R12 - AND $0x7ffffffffffff, R3, R13 - AND $0x7ffffffffffff, R4, R14 - - ADD R0>>51, R11, R11 - ADD R1>>51, R12, R12 - ADD R2>>51, R13, R13 - ADD R3>>51, R14, R14 - // R4>>51 * 19 + R10 -> R10 - LSR $51, R4, R21 - MOVD $19, R22 - MADD R22, R10, R21, R10 - - STP (R10, R11), 0(R20) - STP (R12, R13), 16(R20) - MOVD R14, 32(R20) - - RET diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64_noasm.go b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64_noasm.go deleted file mode 100644 index fc029ac12..000000000 --- a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_arm64_noasm.go +++ /dev/null @@ -1,11 +0,0 @@ -// Copyright (c) 2021 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -//go:build !arm64 || !gc || purego - -package field - -func (v *Element) carryPropagate() *Element { - return v.carryPropagateGeneric() -} diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_generic.go b/vendor/golang.org/x/crypto/curve25519/internal/field/fe_generic.go deleted file mode 100644 index 2671217da..000000000 --- a/vendor/golang.org/x/crypto/curve25519/internal/field/fe_generic.go +++ /dev/null @@ -1,264 +0,0 @@ -// Copyright (c) 2017 The Go Authors. All rights reserved. -// Use of this source code is governed by a BSD-style -// license that can be found in the LICENSE file. - -package field - -import "math/bits" - -// uint128 holds a 128-bit number as two 64-bit limbs, for use with the -// bits.Mul64 and bits.Add64 intrinsics. -type uint128 struct { - lo, hi uint64 -} - -// mul64 returns a * b. -func mul64(a, b uint64) uint128 { - hi, lo := bits.Mul64(a, b) - return uint128{lo, hi} -} - -// addMul64 returns v + a * b. -func addMul64(v uint128, a, b uint64) uint128 { - hi, lo := bits.Mul64(a, b) - lo, c := bits.Add64(lo, v.lo, 0) - hi, _ = bits.Add64(hi, v.hi, c) - return uint128{lo, hi} -} - -// shiftRightBy51 returns a >> 51. a is assumed to be at most 115 bits. -func shiftRightBy51(a uint128) uint64 { - return (a.hi << (64 - 51)) | (a.lo >> 51) -} - -func feMulGeneric(v, a, b *Element) { - a0 := a.l0 - a1 := a.l1 - a2 := a.l2 - a3 := a.l3 - a4 := a.l4 - - b0 := b.l0 - b1 := b.l1 - b2 := b.l2 - b3 := b.l3 - b4 := b.l4 - - // Limb multiplication works like pen-and-paper columnar multiplication, but - // with 51-bit limbs instead of digits. - // - // a4 a3 a2 a1 a0 x - // b4 b3 b2 b1 b0 = - // ------------------------ - // a4b0 a3b0 a2b0 a1b0 a0b0 + - // a4b1 a3b1 a2b1 a1b1 a0b1 + - // a4b2 a3b2 a2b2 a1b2 a0b2 + - // a4b3 a3b3 a2b3 a1b3 a0b3 + - // a4b4 a3b4 a2b4 a1b4 a0b4 = - // ---------------------------------------------- - // r8 r7 r6 r5 r4 r3 r2 r1 r0 - // - // We can then use the reduction identity (a * 2²⁵⁵ + b = a * 19 + b) to - // reduce the limbs that would overflow 255 bits. r5 * 2²⁵⁵ becomes 19 * r5, - // r6 * 2³⁰⁶ becomes 19 * r6 * 2⁵¹, etc. - // - // Reduction can be carried out simultaneously to multiplication. For - // example, we do not compute r5: whenever the result of a multiplication - // belongs to r5, like a1b4, we multiply it by 19 and add the result to r0. - // - // a4b0 a3b0 a2b0 a1b0 a0b0 + - // a3b1 a2b1 a1b1 a0b1 19×a4b1 + - // a2b2 a1b2 a0b2 19×a4b2 19×a3b2 + - // a1b3 a0b3 19×a4b3 19×a3b3 19×a2b3 + - // a0b4 19×a4b4 19×a3b4 19×a2b4 19×a1b4 = - // -------------------------------------- - // r4 r3 r2 r1 r0 - // - // Finally we add up the columns into wide, overlapping limbs. - - a1_19 := a1 * 19 - a2_19 := a2 * 19 - a3_19 := a3 * 19 - a4_19 := a4 * 19 - - // r0 = a0×b0 + 19×(a1×b4 + a2×b3 + a3×b2 + a4×b1) - r0 := mul64(a0, b0) - r0 = addMul64(r0, a1_19, b4) - r0 = addMul64(r0, a2_19, b3) - r0 = addMul64(r0, a3_19, b2) - r0 = addMul64(r0, a4_19, b1) - - // r1 = a0×b1 + a1×b0 + 19×(a2×b4 + a3×b3 + a4×b2) - r1 := mul64(a0, b1) - r1 = addMul64(r1, a1, b0) - r1 = addMul64(r1, a2_19, b4) - r1 = addMul64(r1, a3_19, b3) - r1 = addMul64(r1, a4_19, b2) - - // r2 = a0×b2 + a1×b1 + a2×b0 + 19×(a3×b4 + a4×b3) - r2 := mul64(a0, b2) - r2 = addMul64(r2, a1, b1) - r2 = addMul64(r2, a2, b0) - r2 = addMul64(r2, a3_19, b4) - r2 = addMul64(r2, a4_19, b3) - - // r3 = a0×b3 + a1×b2 + a2×b1 + a3×b0 + 19×a4×b4 - r3 := mul64(a0, b3) - r3 = addMul64(r3, a1, b2) - r3 = addMul64(r3, a2, b1) - r3 = addMul64(r3, a3, b0) - r3 = addMul64(r3, a4_19, b4) - - // r4 = a0×b4 + a1×b3 + a2×b2 + a3×b1 + a4×b0 - r4 := mul64(a0, b4) - r4 = addMul64(r4, a1, b3) - r4 = addMul64(r4, a2, b2) - r4 = addMul64(r4, a3, b1) - r4 = addMul64(r4, a4, b0) - - // After the multiplication, we need to reduce (carry) the five coefficients - // to obtain a result with limbs that are at most slightly larger than 2⁵¹, - // to respect the Element invariant. - // - // Overall, the reduction works the same as carryPropagate, except with - // wider inputs: we take the carry for each coefficient by shifting it right - // by 51, and add it to the limb above it. The top carry is multiplied by 19 - // according to the reduction identity and added to the lowest limb. - // - // The largest coefficient (r0) will be at most 111 bits, which guarantees - // that all carries are at most 111 - 51 = 60 bits, which fits in a uint64. - // - // r0 = a0×b0 + 19×(a1×b4 + a2×b3 + a3×b2 + a4×b1) - // r0 < 2⁵²×2⁵² + 19×(2⁵²×2⁵² + 2⁵²×2⁵² + 2⁵²×2⁵² + 2⁵²×2⁵²) - // r0 < (1 + 19 × 4) × 2⁵² × 2⁵² - // r0 < 2⁷ × 2⁵² × 2⁵² - // r0 < 2¹¹¹ - // - // Moreover, the top coefficient (r4) is at most 107 bits, so c4 is at most - // 56 bits, and c4 * 19 is at most 61 bits, which again fits in a uint64 and - // allows us to easily apply the reduction identity. - // - // r4 = a0×b4 + a1×b3 + a2×b2 + a3×b1 + a4×b0 - // r4 < 5 × 2⁵² × 2⁵² - // r4 < 2¹⁰⁷ - // - - c0 := shiftRightBy51(r0) - c1 := shiftRightBy51(r1) - c2 := shiftRightBy51(r2) - c3 := shiftRightBy51(r3) - c4 := shiftRightBy51(r4) - - rr0 := r0.lo&maskLow51Bits + c4*19 - rr1 := r1.lo&maskLow51Bits + c0 - rr2 := r2.lo&maskLow51Bits + c1 - rr3 := r3.lo&maskLow51Bits + c2 - rr4 := r4.lo&maskLow51Bits + c3 - - // Now all coefficients fit into 64-bit registers but are still too large to - // be passed around as a Element. We therefore do one last carry chain, - // where the carries will be small enough to fit in the wiggle room above 2⁵¹. - *v = Element{rr0, rr1, rr2, rr3, rr4} - v.carryPropagate() -} - -func feSquareGeneric(v, a *Element) { - l0 := a.l0 - l1 := a.l1 - l2 := a.l2 - l3 := a.l3 - l4 := a.l4 - - // Squaring works precisely like multiplication above, but thanks to its - // symmetry we get to group a few terms together. - // - // l4 l3 l2 l1 l0 x - // l4 l3 l2 l1 l0 = - // ------------------------ - // l4l0 l3l0 l2l0 l1l0 l0l0 + - // l4l1 l3l1 l2l1 l1l1 l0l1 + - // l4l2 l3l2 l2l2 l1l2 l0l2 + - // l4l3 l3l3 l2l3 l1l3 l0l3 + - // l4l4 l3l4 l2l4 l1l4 l0l4 = - // ---------------------------------------------- - // r8 r7 r6 r5 r4 r3 r2 r1 r0 - // - // l4l0 l3l0 l2l0 l1l0 l0l0 + - // l3l1 l2l1 l1l1 l0l1 19×l4l1 + - // l2l2 l1l2 l0l2 19×l4l2 19×l3l2 + - // l1l3 l0l3 19×l4l3 19×l3l3 19×l2l3 + - // l0l4 19×l4l4 19×l3l4 19×l2l4 19×l1l4 = - // -------------------------------------- - // r4 r3 r2 r1 r0 - // - // With precomputed 2×, 19×, and 2×19× terms, we can compute each limb with - // only three Mul64 and four Add64, instead of five and eight. - - l0_2 := l0 * 2 - l1_2 := l1 * 2 - - l1_38 := l1 * 38 - l2_38 := l2 * 38 - l3_38 := l3 * 38 - - l3_19 := l3 * 19 - l4_19 := l4 * 19 - - // r0 = l0×l0 + 19×(l1×l4 + l2×l3 + l3×l2 + l4×l1) = l0×l0 + 19×2×(l1×l4 + l2×l3) - r0 := mul64(l0, l0) - r0 = addMul64(r0, l1_38, l4) - r0 = addMul64(r0, l2_38, l3) - - // r1 = l0×l1 + l1×l0 + 19×(l2×l4 + l3×l3 + l4×l2) = 2×l0×l1 + 19×2×l2×l4 + 19×l3×l3 - r1 := mul64(l0_2, l1) - r1 = addMul64(r1, l2_38, l4) - r1 = addMul64(r1, l3_19, l3) - - // r2 = l0×l2 + l1×l1 + l2×l0 + 19×(l3×l4 + l4×l3) = 2×l0×l2 + l1×l1 + 19×2×l3×l4 - r2 := mul64(l0_2, l2) - r2 = addMul64(r2, l1, l1) - r2 = addMul64(r2, l3_38, l4) - - // r3 = l0×l3 + l1×l2 + l2×l1 + l3×l0 + 19×l4×l4 = 2×l0×l3 + 2×l1×l2 + 19×l4×l4 - r3 := mul64(l0_2, l3) - r3 = addMul64(r3, l1_2, l2) - r3 = addMul64(r3, l4_19, l4) - - // r4 = l0×l4 + l1×l3 + l2×l2 + l3×l1 + l4×l0 = 2×l0×l4 + 2×l1×l3 + l2×l2 - r4 := mul64(l0_2, l4) - r4 = addMul64(r4, l1_2, l3) - r4 = addMul64(r4, l2, l2) - - c0 := shiftRightBy51(r0) - c1 := shiftRightBy51(r1) - c2 := shiftRightBy51(r2) - c3 := shiftRightBy51(r3) - c4 := shiftRightBy51(r4) - - rr0 := r0.lo&maskLow51Bits + c4*19 - rr1 := r1.lo&maskLow51Bits + c0 - rr2 := r2.lo&maskLow51Bits + c1 - rr3 := r3.lo&maskLow51Bits + c2 - rr4 := r4.lo&maskLow51Bits + c3 - - *v = Element{rr0, rr1, rr2, rr3, rr4} - v.carryPropagate() -} - -// carryPropagateGeneric brings the limbs below 52 bits by applying the reduction -// identity (a * 2²⁵⁵ + b = a * 19 + b) to the l4 carry. TODO inline -func (v *Element) carryPropagateGeneric() *Element { - c0 := v.l0 >> 51 - c1 := v.l1 >> 51 - c2 := v.l2 >> 51 - c3 := v.l3 >> 51 - c4 := v.l4 >> 51 - - v.l0 = v.l0&maskLow51Bits + c4*19 - v.l1 = v.l1&maskLow51Bits + c0 - v.l2 = v.l2&maskLow51Bits + c1 - v.l3 = v.l3&maskLow51Bits + c2 - v.l4 = v.l4&maskLow51Bits + c3 - - return v -} diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/sync.checkpoint b/vendor/golang.org/x/crypto/curve25519/internal/field/sync.checkpoint deleted file mode 100644 index e3685f95c..000000000 --- a/vendor/golang.org/x/crypto/curve25519/internal/field/sync.checkpoint +++ /dev/null @@ -1 +0,0 @@ -b0c49ae9f59d233526f8934262c5bbbe14d4358d diff --git a/vendor/golang.org/x/crypto/curve25519/internal/field/sync.sh b/vendor/golang.org/x/crypto/curve25519/internal/field/sync.sh deleted file mode 100644 index 1ba22a8b4..000000000 --- a/vendor/golang.org/x/crypto/curve25519/internal/field/sync.sh +++ /dev/null @@ -1,19 +0,0 @@ -#! /bin/bash -set -euo pipefail - -cd "$(git rev-parse --show-toplevel)" - -STD_PATH=src/crypto/ed25519/internal/edwards25519/field -LOCAL_PATH=curve25519/internal/field -LAST_SYNC_REF=$(cat $LOCAL_PATH/sync.checkpoint) - -git fetch https://go.googlesource.com/go master - -if git diff --quiet $LAST_SYNC_REF:$STD_PATH FETCH_HEAD:$STD_PATH; then - echo "No changes." -else - NEW_REF=$(git rev-parse FETCH_HEAD | tee $LOCAL_PATH/sync.checkpoint) - echo "Applying changes from $LAST_SYNC_REF to $NEW_REF..." - git diff $LAST_SYNC_REF:$STD_PATH FETCH_HEAD:$STD_PATH | \ - git apply -3 --directory=$LOCAL_PATH -fi diff --git a/vendor/golang.org/x/net/LICENSE b/vendor/golang.org/x/net/LICENSE index 6a66aea5e..2a7cf70da 100644 --- a/vendor/golang.org/x/net/LICENSE +++ b/vendor/golang.org/x/net/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2009 The Go Authors. All rights reserved. +Copyright 2009 The Go Authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -10,7 +10,7 @@ notice, this list of conditions and the following disclaimer. copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of Google Inc. nor the names of its + * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. diff --git a/vendor/golang.org/x/net/http2/transport.go b/vendor/golang.org/x/net/http2/transport.go index 98a49c6b6..61f511f97 100644 --- a/vendor/golang.org/x/net/http2/transport.go +++ b/vendor/golang.org/x/net/http2/transport.go @@ -827,10 +827,6 @@ func (t *Transport) newClientConn(c net.Conn, singleUse bool) (*ClientConn, erro cc.henc.SetMaxDynamicTableSizeLimit(t.maxEncoderHeaderTableSize()) cc.peerMaxHeaderTableSize = initialHeaderTableSize - if t.AllowHTTP { - cc.nextStreamID = 3 - } - if cs, ok := c.(connectionStater); ok { state := cs.ConnectionState() cc.tlsState = &state diff --git a/vendor/golang.org/x/term/LICENSE b/vendor/golang.org/x/term/LICENSE index 6a66aea5e..2a7cf70da 100644 --- a/vendor/golang.org/x/term/LICENSE +++ b/vendor/golang.org/x/term/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2009 The Go Authors. All rights reserved. +Copyright 2009 The Go Authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -10,7 +10,7 @@ notice, this list of conditions and the following disclaimer. copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of Google Inc. nor the names of its + * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. diff --git a/vendor/golang.org/x/text/LICENSE b/vendor/golang.org/x/text/LICENSE index 6a66aea5e..2a7cf70da 100644 --- a/vendor/golang.org/x/text/LICENSE +++ b/vendor/golang.org/x/text/LICENSE @@ -1,4 +1,4 @@ -Copyright (c) 2009 The Go Authors. All rights reserved. +Copyright 2009 The Go Authors. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are @@ -10,7 +10,7 @@ notice, this list of conditions and the following disclaimer. copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - * Neither the name of Google Inc. nor the names of its + * Neither the name of Google LLC nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. diff --git a/vendor/modules.txt b/vendor/modules.txt index 42c448705..9e4a607c4 100644 --- a/vendor/modules.txt +++ b/vendor/modules.txt @@ -169,13 +169,13 @@ github.com/google/go-cmp/cmp/internal/value ## explicit; go 1.12 github.com/google/gofuzz github.com/google/gofuzz/bytesource -# github.com/google/gopacket v1.1.19 -## explicit; go 1.12 -github.com/google/gopacket -github.com/google/gopacket/layers # github.com/google/uuid v1.6.0 ## explicit github.com/google/uuid +# github.com/gopacket/gopacket v1.2.0 +## explicit; go 1.20 +github.com/gopacket/gopacket +github.com/gopacket/gopacket/layers # github.com/gorilla/websocket v1.5.0 ## explicit; go 1.12 github.com/gorilla/websocket @@ -636,18 +636,17 @@ go.opentelemetry.io/proto/otlp/trace/v1 # go.uber.org/atomic v1.9.0 ## explicit; go 1.13 go.uber.org/atomic -# golang.org/x/crypto v0.24.0 -## explicit; go 1.18 +# golang.org/x/crypto v0.26.0 +## explicit; go 1.20 golang.org/x/crypto/argon2 golang.org/x/crypto/blake2b golang.org/x/crypto/cryptobyte golang.org/x/crypto/cryptobyte/asn1 golang.org/x/crypto/curve25519 -golang.org/x/crypto/curve25519/internal/field # golang.org/x/exp v0.0.0-20240506185415-9bf2ced13842 ## explicit; go 1.20 golang.org/x/exp/constraints -# golang.org/x/net v0.26.0 +# golang.org/x/net v0.28.0 ## explicit; go 1.18 golang.org/x/net/context golang.org/x/net/html @@ -675,10 +674,10 @@ golang.org/x/sys/plan9 golang.org/x/sys/unix golang.org/x/sys/windows golang.org/x/sys/windows/registry -# golang.org/x/term v0.21.0 +# golang.org/x/term v0.23.0 ## explicit; go 1.18 golang.org/x/term -# golang.org/x/text v0.16.0 +# golang.org/x/text v0.17.0 ## explicit; go 1.18 golang.org/x/text/secure/bidirule golang.org/x/text/transform