From ca89ec028efbc8542200079391c873c7caa43455 Mon Sep 17 00:00:00 2001
From: Brian Torres-Gil
Date: Wed, 24 Jul 2013 11:45:04 -0700
Subject: [PATCH 01/12] Integration with NetFlow Logic Integrator
---
appserver/controllers/get_version.py | 26 +
appserver/controllers/nfi_nav_handler.py | 26 +
appserver/static/nfi_about.html | 14 +
default/data/ui/nav/default.xml.disabled | 74 +
default/data/ui/nav/default.xml.enabled | 96 +
default/data/ui/views/nfi_about.xml | 17 +
default/data/ui/views/nfi_overview.xml | 169 +
default/data/ui/views/nfi_search_apps.xml | 158 +
.../data/ui/views/nfi_search_apps_users.xml | 179 +
.../data/ui/views/nfi_search_connectors.xml | 178 +
.../data/ui/views/nfi_search_consumers.xml | 180 +
.../data/ui/views/nfi_search_destinations.xml | 145 +
.../data/ui/views/nfi_search_violators.xml | 178 +
default/data/ui/views/nfi_top_apps.xml | 109 +
default/data/ui/views/nfi_top_apps_users.xml | 184 +
default/data/ui/views/nfi_top_connectors.xml | 186 +
default/data/ui/views/nfi_top_consumers.xml | 111 +
.../data/ui/views/nfi_top_destinations.xml | 187 +
default/data/ui/views/nfi_top_violators.xml | 186 +
default/indexes.conf | 8 +-
default/macros.conf | 62 +
default/nfi_pages.conf | 4 +
default/props.conf | 16 +
default/setup.xml | 29 +
default/transforms.conf | 13 +
default/version.conf | 1 +
default/web.conf | 2 +
lookups/protocols.csv | 131 +
lookups/services.csv | 9891 +++++++++++++++++
29 files changed, 12559 insertions(+), 1 deletion(-)
create mode 100644 appserver/controllers/get_version.py
create mode 100644 appserver/controllers/nfi_nav_handler.py
create mode 100644 appserver/static/nfi_about.html
create mode 100755 default/data/ui/nav/default.xml.disabled
create mode 100755 default/data/ui/nav/default.xml.enabled
create mode 100644 default/data/ui/views/nfi_about.xml
create mode 100644 default/data/ui/views/nfi_overview.xml
create mode 100644 default/data/ui/views/nfi_search_apps.xml
create mode 100644 default/data/ui/views/nfi_search_apps_users.xml
create mode 100644 default/data/ui/views/nfi_search_connectors.xml
create mode 100644 default/data/ui/views/nfi_search_consumers.xml
create mode 100644 default/data/ui/views/nfi_search_destinations.xml
create mode 100644 default/data/ui/views/nfi_search_violators.xml
create mode 100644 default/data/ui/views/nfi_top_apps.xml
create mode 100644 default/data/ui/views/nfi_top_apps_users.xml
create mode 100644 default/data/ui/views/nfi_top_connectors.xml
create mode 100644 default/data/ui/views/nfi_top_consumers.xml
create mode 100644 default/data/ui/views/nfi_top_destinations.xml
create mode 100644 default/data/ui/views/nfi_top_violators.xml
create mode 100644 default/nfi_pages.conf
create mode 100644 default/version.conf
create mode 100644 default/web.conf
create mode 100644 lookups/protocols.csv
create mode 100644 lookups/services.csv
diff --git a/appserver/controllers/get_version.py b/appserver/controllers/get_version.py
new file mode 100644
index 00000000..78cbe356
--- /dev/null
+++ b/appserver/controllers/get_version.py
@@ -0,0 +1,26 @@
+import os
+import splunk.appserver.mrsparkle.controllers as controllers
+from splunk.appserver.mrsparkle.lib.decorators import expose_page
+
+APP = 'SplunkforPaloAltoNetworks'
+VERSION_CONF = os.path.join(os.environ['SPLUNK_HOME'], 'etc', 'apps', APP, 'default', 'version.conf')
+
+class GetVersion(controllers.BaseController):
+ @expose_page(must_login=True, methods=['GET'])
+ def get_version(self, **kwargs):
+ version = 'unknown';
+ try:
+ with open(VERSION_CONF, 'r') as cf:
+ for line in cf:
+ if not line.startswith('#') and not line.startswith(';') and line.strip() != '':
+ parts = line.split('=', 1)
+ if len(parts) == 1:
+ continue
+ key = parts[0].strip()
+ if key == 'version':
+ version = parts[1].strip()
+ break
+ except:
+ version = 'unknown';
+ return version
+
diff --git a/appserver/controllers/nfi_nav_handler.py b/appserver/controllers/nfi_nav_handler.py
new file mode 100644
index 00000000..5ad8adb1
--- /dev/null
+++ b/appserver/controllers/nfi_nav_handler.py
@@ -0,0 +1,26 @@
+import os
+import shutil
+import splunk.appserver.mrsparkle.controllers as controllers
+from splunk.appserver.mrsparkle.lib.decorators import expose_page
+
+APP = 'SplunkforPaloAltoNetworks'
+ENABLED_NAV = os.path.join(os.environ['SPLUNK_HOME'], 'etc', 'apps', APP, 'default', 'data', 'ui', 'nav', 'default.xml.enabled')
+DISABLED_NAV = os.path.join(os.environ['SPLUNK_HOME'], 'etc', 'apps', APP, 'default', 'data', 'ui', 'nav', 'default.xml.disabled')
+NAV = os.path.join(os.environ['SPLUNK_HOME'], 'etc', 'apps', APP, 'default', 'data', 'ui', 'nav', 'default.xml')
+
+class NAVHANDLER(controllers.BaseController):
+ @expose_page(must_login=True, methods=['GET'])
+ def enable(self, **kwargs):
+ try:
+ shutil.copy(ENABLED_NAV, NAV)
+ except:
+ pass
+ return 'Enabled!'
+ @expose_page(must_login=True, methods=['GET'])
+ def disable(self, **kwargs):
+ try:
+ shutil.copy(DISABLED_NAV, NAV)
+ except:
+ pass
+ return 'Disabled!'
+
diff --git a/appserver/static/nfi_about.html b/appserver/static/nfi_about.html
new file mode 100644
index 00000000..35cf6da6
--- /dev/null
+++ b/appserver/static/nfi_about.html
@@ -0,0 +1,14 @@
+About these views
+
+These views are based on NetFlow data produced by Palo Alto Network devices and processed and converted to syslog messages by 3rd party software - NetFlow Integrator. Download a 30-day free trial of NetFlow Integrator here https://www.netflowlogic.com/downloads
+
+
+Install NetFlow Integrator on a separate server or together with Splunk Forwarder
+Point Palo Alto Network NetFlow to NetFlow Integrator server, port 9995
+Add NetFlow Integrator output pointing to Splunk UDP port 10514
+Create Splunk UDP data input sourcetype=flowintegrator, which receives syslog messages on UDP port 10514, and index=flowintegrator.
+Enable NetFlow Integrator Palo Alto Network Rules (10030 through 10035) and Converter (20093)
+
+
+If you have any questions, or require any assistance with configuration please contact us at https://netflowlogic.zendesk.com/home
+
diff --git a/default/data/ui/nav/default.xml.disabled b/default/data/ui/nav/default.xml.disabled
new file mode 100755
index 00000000..de0381c6
--- /dev/null
+++ b/default/data/ui/nav/default.xml.disabled
@@ -0,0 +1,74 @@
+
+
+
+
+ Search
+ Threat Data
+ Traffic Logs
+ Config Messages
+ System Logs
+
+
+ Configuration
+
+ Send Feedback
+
+
+
+
+
+
+
+
+ Search Traffic Data
+
+
+
+
+
+
+
+
+
+
+ Search Threat Data
+
+
+
+
+
+
+
+
+
+
+
+ Search Threat Data
+
+
+
+
+
+
+
+
+
+
+ Search System Messages
+
+
+
+
+ Search Config Changes
+
+
+
+
+
+
+
+
+
diff --git a/default/data/ui/nav/default.xml.enabled b/default/data/ui/nav/default.xml.enabled
new file mode 100755
index 00000000..33b6b9d4
--- /dev/null
+++ b/default/data/ui/nav/default.xml.enabled
@@ -0,0 +1,96 @@
+
+
+
+
+ Search
+ Threat Data
+ Traffic Logs
+ Config Messages
+ System Logs
+
+
+ Configuration
+
+ Send Feedback
+
+
+
+
+
+
+
+
+ Search Traffic Data
+
+
+
+
+
+
+
+
+
+
+ Search Threat Data
+
+
+
+
+
+
+
+
+
+
+
+ Search Threat Data
+
+
+
+
+
+
+
+
+
+
+ Search System Messages
+
+
+
+
+ Search Config Changes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Timeline
+
+
diff --git a/default/data/ui/views/nfi_about.xml b/default/data/ui/views/nfi_about.xml
new file mode 100644
index 00000000..067a5a37
--- /dev/null
+++ b/default/data/ui/views/nfi_about.xml
@@ -0,0 +1,17 @@
+
+ About these views
+
+
+
+ *
+ False
+ 1
+
+
+ False
+
+
+
+ nfi_about.html
+
+
diff --git a/default/data/ui/views/nfi_overview.xml b/default/data/ui/views/nfi_overview.xml
new file mode 100644
index 00000000..b2c435b9
--- /dev/null
+++ b/default/data/ui/views/nfi_overview.xml
@@ -0,0 +1,169 @@
+
+ Overview
+
+
+
+ *
+ False
+ 1
+
+
+ dashboard
+
+
+
+ Last 60 minutes
+ true
+
+
+
+ `nfi_pan_20030` | eval bytes=`formatbytestom(bytes)` | timechart sum(bytes) by user | fields - OTHER
+
+
+
+ results
+ Top Bandwidth Consumers (NFI Rule 10030/20093)
+
+
+
+ area
+ zero
+ Time
+ MB
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
+ `nfi_pan_20031` | eval bytes=`formatbytestom(bytes)` | timechart sum(bytes) by dest_ip | fields - OTHER
+
+
+
+ results
+ Top Destinations (NFI Rule 10031/20093)
+
+
+
+ area
+ zero
+ Time
+ MB
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
+ `nfi_pan_20032` | timechart sum(denied_count) by user | fields - OTHER
+
+
+
+ results
+ Top Violators (NFI Rule 10032/20093)
+
+
+
+ area
+ zero
+ Time
+ Count
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
+ `nfi_pan_20033` | timechart sum(created_count) by user | fields - OTHER
+
+
+
+ results
+ Top Connectors (NFI Rule 10033/20093)
+
+
+
+ area
+ zero
+ Time
+ Count
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
+ `nfi_pan_20034` | eval bytes=`formatbytestom(bytes)` | timechart sum(bytes) by app | fields - OTHER
+
+
+
+ results
+ Top Applications (NFI Rule 10034/20093)
+
+
+
+ area
+ zero
+ Time
+ MB
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
+ `nfi_pan_20035` | eval bytes=`formatbytestom(bytes)` | strcat app "/" user appuser | timechart sum(bytes) by appuser | fields - OTHER
+
+
+
+ results
+ Top Applications and Users (NFI Rule 10035/20093)
+
+
+
+ area
+ zero
+ Time
+ MB
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
diff --git a/default/data/ui/views/nfi_search_apps.xml b/default/data/ui/views/nfi_search_apps.xml
new file mode 100644
index 00000000..92b01c5e
--- /dev/null
+++ b/default/data/ui/views/nfi_search_apps.xml
@@ -0,0 +1,158 @@
+
+ Search - Applications
+
+
+
+ *
+ False
+ 1
+
+
+ dashboard
+
+
+
+ Last 60 minutes
+ false
+
+
+ exp_ip_setting
+
+ `nfi_pan_unified` | dedup exp_ip | sort exp_ip | table exp_ip
+
+ PAN IP
+ false
+ All
+
+
+ All
+ *
+
+
+
+
+ exp_ip
+ exp_ip
+
+
+
+
+ app_element
+ app_setting
+ App
+
+
+ false
+ Search
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ user_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ app_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20034` exp_ip="$exp_ip$" app="$app$" | stats count by `nfi_all_fields_20034`
+
+
+
+ 200px
+ 100%
+
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ app_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20034` exp_ip="$exp_ip$" app="$app$"
+ | stats sum(created_count) as sum_created_count, sum(bytes) as sum_bytes by app
+ | table app sum_created_count sum_bytes
+ | rename app as "Application"
+ | rename sum_created_count as "Created flows"
+ | rename sum_bytes as "Bytes"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ none
+ click
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/default/data/ui/views/nfi_search_apps_users.xml b/default/data/ui/views/nfi_search_apps_users.xml
new file mode 100644
index 00000000..c4579108
--- /dev/null
+++ b/default/data/ui/views/nfi_search_apps_users.xml
@@ -0,0 +1,179 @@
+
+ Search - Applications and Users
+
+
+
+ *
+ False
+ 1
+
+
+ dashboard
+
+
+
+ Last 60 minutes
+ false
+
+
+ exp_ip_setting
+
+ `nfi_pan_unified` | dedup exp_ip | sort exp_ip | table exp_ip
+
+ PAN IP
+ false
+ All
+
+
+ All
+ *
+
+
+
+
+ exp_ip
+ exp_ip
+
+
+
+
+ user_element
+ user_setting
+ User
+
+
+ app_element
+ app_setting
+ App
+
+
+ false
+ Search
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ user_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ app_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20035` exp_ip="$exp_ip$" user="$user$" app="$app$" | stats count by `nfi_all_fields_20035`
+
+
+
+ 200px
+ 100%
+
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ user_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ app_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20035` exp_ip="$exp_ip$" user="$user$" app="$app$"
+ | strcat app "/" user app_user
+ | stats sum(created_count) as sum_created_count, sum(bytes) as sum_bytes by app_user
+ | table app_user sum_created_count sum_bytes
+ | rename app_user as "Application/User ID"
+ | rename sum_created_count as "Created flows"
+ | rename sum_bytes as "Bytes"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ none
+ click
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/default/data/ui/views/nfi_search_connectors.xml b/default/data/ui/views/nfi_search_connectors.xml
new file mode 100644
index 00000000..07449291
--- /dev/null
+++ b/default/data/ui/views/nfi_search_connectors.xml
@@ -0,0 +1,178 @@
+
+ Search - Connectors
+
+
+
+ *
+ False
+ 1
+
+
+ dashboard
+
+
+
+ Last 60 minutes
+ false
+
+
+ exp_ip_setting
+
+ `nfi_pan_unified` | dedup exp_ip | sort exp_ip | table exp_ip
+
+ PAN IP
+ false
+ All
+
+
+ All
+ *
+
+
+
+
+ exp_ip
+ exp_ip
+
+
+
+
+ src_ip_element
+ src_ip_setting
+ Source IP
+
+
+ user_element
+ user_setting
+ User
+
+
+ false
+ Search
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ src_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ user_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20033` exp_ip="$exp_ip$" src_ip="$src_ip$" user="$user$" | stats count by `nfi_all_fields_20033`
+
+
+
+ 200px
+ 100%
+
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ src_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ user_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20033` exp_ip="$exp_ip$" src_ip="$src_ip$" user="$user$"
+ | strcat src_ip "/" user ip_user
+ | stats sum(created_count) as sum_created_count by ip_user
+ | table ip_user sum_created_count
+ | rename ip_user as "Source IP/User"
+ | rename sum_created_count as "Created flows"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ none
+ click
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/default/data/ui/views/nfi_search_consumers.xml b/default/data/ui/views/nfi_search_consumers.xml
new file mode 100644
index 00000000..4979b7d9
--- /dev/null
+++ b/default/data/ui/views/nfi_search_consumers.xml
@@ -0,0 +1,180 @@
+
+ Search - Consumers
+
+
+
+ *
+ False
+ 1
+
+
+ dashboard
+
+
+
+ Last 60 minutes
+ false
+
+
+ exp_ip_setting
+
+ `nfi_pan_unified` | dedup exp_ip | sort exp_ip | table exp_ip
+
+ PAN IP
+ false
+ All
+
+
+ All
+ *
+
+
+
+
+ exp_ip
+ exp_ip
+
+
+
+
+ src_ip_element
+ src_ip_setting
+ Source IP
+
+
+ user_element
+ user_setting
+ User
+
+
+ false
+ Search
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ src_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ user_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20030` exp_ip="$exp_ip$" src_ip="$src_ip$" user="$user$" | stats count by `nfi_all_fields_20030`
+
+
+
+ 200px
+ 100%
+
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ src_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ user_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20030` exp_ip="$exp_ip$" src_ip="$src_ip$" user="$user$"
+ | strcat src_ip "/" user ip_user
+ | stats sum(created_count) as sum_created_count, sum(denied_count) as sum_denied_count, sum(bytes) as sum_bytes by ip_user
+ | table ip_user sum_created_count sum_denied_count sum_bytes
+ | rename ip_user as "Source IP/User"
+ | rename sum_created_count as "Created flows"
+ | rename sum_denied_count as "Denied flows"
+ | rename sum_bytes as "Bytes"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ none
+ click
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/default/data/ui/views/nfi_search_destinations.xml b/default/data/ui/views/nfi_search_destinations.xml
new file mode 100644
index 00000000..c8069ec3
--- /dev/null
+++ b/default/data/ui/views/nfi_search_destinations.xml
@@ -0,0 +1,145 @@
+
+ Search - Destinations
+
+
+
+ *
+ False
+ 1
+
+
+ dashboard
+
+
+
+ Last 60 minutes
+ false
+
+
+ exp_ip_setting
+
+ `nfi_pan_unified` | dedup exp_ip | sort exp_ip | table exp_ip
+
+ PAN IP
+ false
+ All
+
+
+ All
+ *
+
+
+
+
+ exp_ip
+ exp_ip
+
+
+
+
+ dest_ip_element
+ dest_ip_setting
+ Destination IP
+
+
+ false
+ Search
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ dest_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20031` exp_ip="$exp_ip$" dest_ip="$dest_ip$" | stats count by `nfi_all_fields_20031`
+
+
+
+ 200px
+ 100%
+
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ dest_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20031` exp_ip="$exp_ip$" dest_ip="$dest_ip$"
+ | stats sum(created_count) as sum_created_count, sum(denied_count) as sum_denied_count, sum(bytes) as sum_bytes by dest_ip
+ | table dest_ip sum_created_count sum_denied_count sum_bytes
+ | rename dest_ip as "Destination IP"
+ | rename sum_created_count as "Created flows"
+ | rename sum_denied_count as "Denied flows"
+ | rename sum_bytes as "Bytes"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ none
+ click
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/default/data/ui/views/nfi_search_violators.xml b/default/data/ui/views/nfi_search_violators.xml
new file mode 100644
index 00000000..7cf3c24e
--- /dev/null
+++ b/default/data/ui/views/nfi_search_violators.xml
@@ -0,0 +1,178 @@
+
+ Search - Violators
+
+
+
+ *
+ False
+ 1
+
+
+ dashboard
+
+
+
+ Last 60 minutes
+ false
+
+
+ exp_ip_setting
+
+ `nfi_pan_unified` | dedup exp_ip | sort exp_ip | table exp_ip
+
+ PAN IP
+ false
+ All
+
+
+ All
+ *
+
+
+
+
+ exp_ip
+ exp_ip
+
+
+
+
+ src_ip_element
+ src_ip_setting
+ Source IP
+
+
+ user_element
+ user_setting
+ User
+
+
+ false
+ Search
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ src_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ user_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20032` exp_ip="$exp_ip$" src_ip="$src_ip$" user="$user$" | stats count by `nfi_all_fields_20032`
+
+
+
+ 200px
+ 100%
+
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ src_ip_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+ user_setting
+
+ stringreplace
+
+
+ *
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20032` exp_ip="$exp_ip$" src_ip="$src_ip$" user="$user$"
+ | strcat src_ip "/" user ip_user
+ | stats sum(denied_count) as sum_denied_count by ip_user
+ | table ip_user sum_denied_count
+ | rename ip_user as "Source IP/User"
+ | rename sum_denied_count as "Denied flows"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ none
+ click
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/default/data/ui/views/nfi_top_apps.xml b/default/data/ui/views/nfi_top_apps.xml
new file mode 100644
index 00000000..91f467e7
--- /dev/null
+++ b/default/data/ui/views/nfi_top_apps.xml
@@ -0,0 +1,109 @@
+
+ Top Applications
+
+
+
+ *
+ False
+ 1
+
+
+ dashboard
+
+
+
+ Last 60 minutes
+ false
+
+
+ exp_ip_setting
+
+ `nfi_pan_unified` | dedup exp_ip | sort exp_ip | table exp_ip
+
+ PAN IP
+ false
+ All
+
+
+ All
+ *
+
+
+
+
+ exp_ip
+ exp_ip
+
+
+
+
+ false
+ Search
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20034` exp_ip="$exp_ip$" | eval bytes=`formatbytestom(bytes)` | timechart sum(bytes) by app | fields - OTHER
+
+
+
+ results
+ Top Applications (NFI Rule 10034/20093)
+
+
+
+
+ area
+ zero
+ Time
+ MB
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
+ `nfi_pan_20034` exp_ip="$exp_ip$"
+ | stats sum(created_count) as sum_created_count, sum(bytes) as sum_bytes by app
+ | table app sum_created_count sum_bytes
+ | rename app as "Application"
+ | rename sum_created_count as "Created flows"
+ | rename sum_bytes as "Bytes"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ none
+ click
+
+
+
+
+
+
+
+
+
diff --git a/default/data/ui/views/nfi_top_apps_users.xml b/default/data/ui/views/nfi_top_apps_users.xml
new file mode 100644
index 00000000..5f7720d5
--- /dev/null
+++ b/default/data/ui/views/nfi_top_apps_users.xml
@@ -0,0 +1,184 @@
+
+ Top Applications and Users
+
+
+
+ *
+ False
+ 1
+
+
+ dashboard
+
+
+
+ Last 60 minutes
+ false
+
+
+ exp_ip_setting
+
+ `nfi_pan_unified` | dedup exp_ip | sort exp_ip | table exp_ip
+
+ PAN IP
+ false
+ All
+
+
+ All
+ *
+
+
+
+
+ exp_ip
+ exp_ip
+
+
+
+
+ false
+ Search
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20035` exp_ip="$exp_ip$" | eval bytes=`formatbytestom(bytes)` | timechart sum(bytes) by app | fields - OTHER
+
+
+
+ results
+ Top Applications (NFI Rule 10035/20093)
+
+
+
+
+ area
+ zero
+ Time
+ MB
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
+ `nfi_pan_20035` exp_ip="$exp_ip$"
+ | stats sum(created_count) as sum_created_count, sum(bytes) as sum_bytes by app
+ | table app sum_created_count sum_bytes
+ | rename app as "Application"
+ | rename sum_created_count as "Created flows"
+ | rename sum_bytes as "Bytes"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ row
+ click
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ $target$
+
+
+ indexed
+
+
+
+
+ stringreplace
+
+
+ $click.value$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20035` exp_ip="$exp_ip$" app="$app_id$" | eval bytes=`formatbytestom(bytes)` | timechart sum(bytes) by user | fields - OTHER
+
+
+
+ results
+ Application $click.value$ by Users (NFI Rule 10035/20093)
+
+
+
+
+ area
+ zero
+ Time
+ MB
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
+ `nfi_pan_20035` exp_ip="$exp_ip$" app="$app_id$"
+ | stats sum(created_count) as sum_created_count, sum(bytes) as sum_bytes by user
+ | table user sum_created_count sum_bytes
+ | rename user as "User ID"
+ | rename sum_created_count as "Created flows"
+ | rename sum_bytes as "Bytes"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ none
+ click
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/default/data/ui/views/nfi_top_connectors.xml b/default/data/ui/views/nfi_top_connectors.xml
new file mode 100644
index 00000000..a777d7f6
--- /dev/null
+++ b/default/data/ui/views/nfi_top_connectors.xml
@@ -0,0 +1,186 @@
+
+ Top Connectors
+
+
+
+ *
+ False
+ 1
+
+
+ dashboard
+
+
+
+ Last 60 minutes
+ false
+
+
+ exp_ip_setting
+
+ `nfi_pan_unified` | dedup exp_ip | sort exp_ip | table exp_ip
+
+ PAN IP
+ false
+ All
+
+
+ All
+ *
+
+
+
+
+ exp_ip
+ exp_ip
+
+
+
+
+ false
+ Search
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20033` exp_ip="$exp_ip$" | strcat src_ip "/" user ip_user | timechart sum(created_count) by ip_user | fields - OTHER
+
+
+
+ results
+ Top Connectors (NFI Rule 10033/20093)
+
+
+
+
+ area
+ zero
+ Time
+ Count
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
+ `nfi_pan_20033` exp_ip="$exp_ip$"
+ | strcat src_ip "/" user ip_user
+ | stats sum(created_count) as sum_created_count by ip_user
+ | table ip_user sum_created_count
+ | rename ip_user as "Source IP/User"
+ | rename sum_created_count as "Created flows"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ row
+ click
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ $target$
+
+
+ indexed
+
+
+
+
+ stringreplace
+
+
+ $click.value$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20033` exp_ip="$exp_ip$" | strcat src_ip "/" user ip_user | search ip_user="$ip_user$" | lookup port_lookup port as dest_port OUTPUT service as dest_service | timechart sum(created_count) by dest_service | fields - OTHER
+
+
+
+ results
+ Connector $click.value$
+
+
+
+
+ area
+ zero
+ Time
+ Count
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
+ `nfi_pan_20033` exp_ip="$exp_ip$"
+ | strcat src_ip "/" user ip_user
+ | search ip_user="$ip_user$"
+ | lookup port_lookup port as dest_port OUTPUT service as dest_service
+ | stats sum(created_count) as sum_created_count by dest_service
+ | table dest_service sum_created_count
+ | rename dest_service as "Dest. port"
+ | rename sum_created_count as "Created flows"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ none
+ click
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/default/data/ui/views/nfi_top_consumers.xml b/default/data/ui/views/nfi_top_consumers.xml
new file mode 100644
index 00000000..aa35b1d4
--- /dev/null
+++ b/default/data/ui/views/nfi_top_consumers.xml
@@ -0,0 +1,111 @@
+
+ Top Consumers
+
+
+
+ *
+ False
+ 1
+
+
+ dashboard
+
+
+
+ Last 60 minutes
+ false
+
+
+ exp_ip_setting
+
+ `nfi_pan_unified` | dedup exp_ip | sort exp_ip | table exp_ip
+
+ PAN IP
+ false
+ All
+
+
+ All
+ *
+
+
+
+
+ exp_ip
+ exp_ip
+
+
+
+
+ false
+ Search
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20030` exp_ip="$exp_ip$" | eval bytes=`formatbytestom(bytes)` | strcat src_ip "/" user ip_user | timechart sum(bytes) by ip_user | fields - OTHER
+
+
+
+ results
+ Top Consumers (NFI Rule 10030/20093)
+
+
+
+
+ area
+ zero
+ Time
+ MB
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
+ `nfi_pan_20030` exp_ip="$exp_ip$"
+ | strcat src_ip "/" user ip_user
+ | stats sum(created_count) as sum_created_count, sum(denied_count) as sum_denied_count, sum(bytes) as sum_bytes by ip_user
+ | table ip_user sum_created_count sum_denied_count sum_bytes
+ | rename ip_user as "Source IP/User"
+ | rename sum_created_count as "Created flows"
+ | rename sum_denied_count as "Denied flows"
+ | rename sum_bytes as "Bytes"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ none
+ click
+
+
+
+
+
+
+
+
+
diff --git a/default/data/ui/views/nfi_top_destinations.xml b/default/data/ui/views/nfi_top_destinations.xml
new file mode 100644
index 00000000..5d19e933
--- /dev/null
+++ b/default/data/ui/views/nfi_top_destinations.xml
@@ -0,0 +1,187 @@
+
+ Top Destinations
+
+
+
+ *
+ False
+ 1
+
+
+ dashboard
+
+
+
+ Last 60 minutes
+ false
+
+
+ exp_ip_setting
+
+ `nfi_pan_unified` | dedup exp_ip | sort exp_ip | table exp_ip
+
+ PAN IP
+ false
+ All
+
+
+ All
+ *
+
+
+
+
+ exp_ip
+ exp_ip
+
+
+
+
+ false
+ Search
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20031` exp_ip="$exp_ip$" | eval bytes=`formatbytestom(bytes)` | timechart sum(bytes) by dest_ip | fields - OTHER
+
+
+
+ results
+ Top Destinations (NFI Rule 10031/20093)
+
+
+
+
+ area
+ zero
+ Time
+ MB
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
+ `nfi_pan_20031` exp_ip="$exp_ip$"
+ | stats sum(created_count) as sum_created_count, sum(denied_count) as sum_denied_count, sum(bytes) as sum_bytes by dest_ip
+ | table dest_ip sum_created_count sum_denied_count sum_bytes
+ | rename dest_ip as "Destination IP"
+ | rename sum_created_count as "Created flows"
+ | rename sum_denied_count as "Denied flows"
+ | rename sum_bytes as "Bytes"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ row
+ click
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ $target$
+
+
+ indexed
+
+
+
+
+ stringreplace
+
+
+ $click.value$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20031` exp_ip="$exp_ip$" dest_ip="$dest_ip$" | eval bytes=`formatbytestom(bytes)` | lookup port_lookup port as dest_port OUTPUT service as dest_service | timechart sum(bytes) by dest_service | fields - OTHER
+
+
+
+ results
+ Destination $click.value$
+
+
+
+
+ area
+ zero
+ Time
+ MB
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
+ `nfi_pan_20031` exp_ip="$exp_ip$" dest_ip="$dest_ip$"
+ | lookup port_lookup port as dest_port OUTPUT service as dest_service
+ | stats sum(created_count) as sum_created_count, sum(denied_count) as sum_denied_count, sum(bytes) as sum_bytes by dest_service
+ | table dest_service sum_created_count sum_denied_count sum_bytes
+ | rename dest_service as "Dest. port"
+ | rename sum_created_count as "Created flows"
+ | rename sum_denied_count as "Denied flows"
+ | rename sum_bytes as "Bytes"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ none
+ click
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/default/data/ui/views/nfi_top_violators.xml b/default/data/ui/views/nfi_top_violators.xml
new file mode 100644
index 00000000..24caddbe
--- /dev/null
+++ b/default/data/ui/views/nfi_top_violators.xml
@@ -0,0 +1,186 @@
+
+ Top Violators
+
+
+
+ *
+ False
+ 1
+
+
+ dashboard
+
+
+
+ Last 60 minutes
+ false
+
+
+ exp_ip_setting
+
+ `nfi_pan_unified` | dedup exp_ip | sort exp_ip | table exp_ip
+
+ PAN IP
+ false
+ All
+
+
+ All
+ *
+
+
+
+
+ exp_ip
+ exp_ip
+
+
+
+
+ false
+ Search
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ $target$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20032` exp_ip="$exp_ip$" | strcat src_ip "/" user ip_user | timechart sum(denied_count) by ip_user | fields - OTHER
+
+
+
+ results
+ Top Violators (NFI Rule 10032/20093)
+
+
+
+
+ area
+ zero
+ Time
+ Count
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
+ `nfi_pan_20032` exp_ip="$exp_ip$"
+ | strcat src_ip "/" user ip_user
+ | stats sum(denied_count) as sum_denied_count by ip_user
+ | table ip_user sum_denied_count
+ | rename ip_user as "Source IP/User"
+ | rename sum_denied_count as "Denied flows"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ row
+ click
+
+
+ exp_ip_setting
+
+ stringreplace
+
+
+ $target$
+
+
+ indexed
+
+
+
+
+ stringreplace
+
+
+ $click.value$
+
+
+ indexed
+
+
+
+
+ `nfi_pan_20032` exp_ip="$exp_ip$" | strcat src_ip "/" user ip_user | search ip_user="$ip_user$" | lookup port_lookup port as dest_port OUTPUT service as dest_service | timechart sum(denied_count) by dest_service | fields - OTHER
+
+
+
+ results
+ Violator $click.value$
+
+
+
+
+ area
+ zero
+ Time
+ Count
+ right
+
+ 100%
+ 200px
+ False
+ click
+
+
+
+
+
+
+ `nfi_pan_20032` exp_ip="$exp_ip$"
+ | strcat src_ip "/" user ip_user
+ | search ip_user="$ip_user$"
+ | lookup port_lookup port as dest_port OUTPUT service as dest_service
+ | stats sum(denied_count) as sum_denied_count by dest_service
+ | table dest_service sum_denied_count
+ | rename dest_service as "Dest. port"
+ | rename sum_denied_count as "Denied flows"
+
+
+
+
+ results
+ 10
+ 100
+
+ results
+ true
+ none
+ click
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/default/indexes.conf b/default/indexes.conf
index 4218be14..5b5053d3 100755
--- a/default/indexes.conf
+++ b/default/indexes.conf
@@ -1,4 +1,10 @@
[pan_logs]
coldPath = $SPLUNK_DB/pan_logs/colddb
homePath = $SPLUNK_DB/pan_logs/db
-thawedPath = $SPLUNK_DB/pan_logs/thaweddb
\ No newline at end of file
+thawedPath = $SPLUNK_DB/pan_logs/thaweddb
+
+[flowintegrator]
+homePath = $SPLUNK_DB/flowintegrator/nfi_traffic/db
+coldPath = $SPLUNK_DB/flowintegrator/nfi_traffic/colddb
+thawedPath = $SPLUNK_DB/flowintegrator/nfi_traffic/thaweddb
+
diff --git a/default/macros.conf b/default/macros.conf
index 2516392e..2e6277cf 100755
--- a/default/macros.conf
+++ b/default/macros.conf
@@ -36,3 +36,65 @@ definition = tstats
[tstats_local]
definition = false
+
+########################
+# NFI macros
+########################
+[formatbytes(1)]
+args = bytes
+definition = case($bytes$ > 1073741824, tostring(round($bytes$/1073741824,2))+" GB", $bytes$ > 1048576, tostring(round($bytes$/1048576,2))+" MB", $bytes$ > 1024, tostring(round($bytes$/1024))+" KB", $bytes$ <= 1024, tostring($bytes$)+" Bytes")
+
+[formatbytestom(1)]
+args = bytes
+definition = $bytes$/1048576
+
+[formatbps(1)]
+args = bps
+definition = case($bps$ > 1000000000, tostring(round($bps$/1000000000,2))+" Gbps", $bps$ > 1000000, tostring(round($bps$/1000000,2))+" Mbps", $bps$ > 1000, tostring(round($bps$/1000,2))+" Kbps", $bps$ <= 1000, tostring(ceil($bps$))+" bps")
+
+[formatpps(1)]
+args=pps
+definition = tostring(round($pps$,2))+" pps"
+
+[nfi_common_search]
+definition = index=flowintegrator sourcetype=flowintegrator
+
+[nfi_pan_unified]
+definition = `nfi_common_search` nfc_id=20030 OR nfc_id=20031 OR nfc_id=20032 OR nfc_id=20033 OR nfc_id=20034 OR nfc_id=20035
+
+[nfi_pan_20030]
+definition = `nfi_common_search` nfc_id=20030
+
+[nfi_pan_20031]
+definition = `nfi_common_search` nfc_id=20031
+
+[nfi_pan_20032]
+definition = `nfi_common_search` nfc_id=20032
+
+[nfi_pan_20033]
+definition = `nfi_common_search` nfc_id=20033
+
+[nfi_pan_20034]
+definition = `nfi_common_search` nfc_id=20034
+
+[nfi_pan_20035]
+definition = `nfi_common_search` nfc_id=20035
+
+[nfi_all_fields_20030]
+definition = exp_ip src_ip user created_count denied_count bytes percent_of_total _time
+
+[nfi_all_fields_20031]
+definition = exp_ip dest_ip dest_port created_count denied_count bytes percent_of_total _time
+
+[nfi_all_fields_20032]
+definition = exp_ip src_ip dest_port user denied_count _time
+
+[nfi_all_fields_20033]
+definition = exp_ip src_ip dest_port user created_count _time
+
+[nfi_all_fields_20034]
+definition = exp_ip app created_count bytes percent_of_total _time
+
+[nfi_all_fields_20035]
+definition = exp_ip app user created_count bytes percent_of_total _time
+
diff --git a/default/nfi_pages.conf b/default/nfi_pages.conf
new file mode 100644
index 00000000..a127cd0d
--- /dev/null
+++ b/default/nfi_pages.conf
@@ -0,0 +1,4 @@
+
+[nfi]
+enable = 0
+
diff --git a/default/props.conf b/default/props.conf
index 2bfd9788..1a1a23c5 100755
--- a/default/props.conf
+++ b/default/props.conf
@@ -72,3 +72,19 @@ FIELDALIAS-src_for_pan_config = src_ip as src
FIELDALIAS-dest_for_pan_config = dst_ip as dest
FIELDALIAS-dest_for_pan_config = host as dest_ip, host as dest
+[flowintegrator]
+SHOULD_LINEMERGE = False
+
+FIELDALIAS-fi_module = nfc_id AS fi_module
+FIELDALIAS-exp_ip_addr = exp_ip AS exp_ip_addr
+FIELDALIAS-in_ifindex = input_snmp AS in_ifindex
+FIELDALIAS-out_ifindex = output_snmp AS out_ifindex
+FIELDALIAS-pkt = packets AS pkt
+FIELDALIAS-username = user AS username
+FIELDALIAS-ipv4_src_addr = src_ip AS ipv4_src_addr
+FIELDALIAS-app_layer = app_layer AS app
+
+lookup_proto = protocol_lookup protocol
+lookup_srcport = port_lookup port AS src_port OUTPUT service AS src_service
+lookup_dstport = port_lookup port AS dest_port OUTPUT service AS dest_service
+
diff --git a/default/setup.xml b/default/setup.xml
index c7290bde..e4e64a9c 100644
--- a/default/setup.xml
+++ b/default/setup.xml
@@ -11,4 +11,33 @@
password
+
+
+ function NFIPages(eventObject)
+ {
+ var nfi_checkbox = $('input[name$="enable"]').is(':checked');
+ var url;
+ if (nfi_checkbox)
+ {
+ url = Splunk.util.make_url('custom', Splunk.util.getCurrentApp(), 'nfi_nav_handler', 'enable');
+ }
+ else
+ {
+ url = Splunk.util.make_url('custom', Splunk.util.getCurrentApp(), 'nfi_nav_handler', 'disable');
+ }
+ $.get(url, false, function(){});
+ }
+
+ $(document).ready(function()
+ {
+ $('#eaiform').submit(NFIPages);
+ });
+
+ ]]>
+
+ NetFlow views enabled by this option are based on NetFlow data produced by Palo Alto Networks Next Generation Firewalls which are processed and converted to syslog (CIM) messages by 3rd party software - NetFlow Integrator. (Restart Splunk after you Save your changes) ]]>
+ bool
+
+
diff --git a/default/transforms.conf b/default/transforms.conf
index 1866355e..0ad9dbe9 100755
--- a/default/transforms.conf
+++ b/default/transforms.conf
@@ -64,3 +64,16 @@ FORMAT = dst_hostname::$1
[extract_domain]
REGEX = (?:[^:]*:){2}\d+ (\d+.\d+.\d+.\d+)
FORMAT = domain::$1
+
+[protocol_lookup]
+filename = protocols.csv
+max_matches = 1
+min_matches = 1
+default_match = unknown
+
+[port_lookup]
+filename = services.csv
+max_matches = 1
+min_matches = 1
+default_match = unknown
+
diff --git a/default/version.conf b/default/version.conf
new file mode 100644
index 00000000..afe4b8da
--- /dev/null
+++ b/default/version.conf
@@ -0,0 +1 @@
+version = 2.2.0.0.551
diff --git a/default/web.conf b/default/web.conf
new file mode 100644
index 00000000..c13ca2ff
--- /dev/null
+++ b/default/web.conf
@@ -0,0 +1,2 @@
+[endpoint:get_version]
+[endpoint:nfi_nav_handler]
diff --git a/lookups/protocols.csv b/lookups/protocols.csv
new file mode 100644
index 00000000..3a5be2da
--- /dev/null
+++ b/lookups/protocols.csv
@@ -0,0 +1,131 @@
+protocol,protocol_name
+0,ip
+1,icmp
+2,igmp
+3,ggp
+4,ipencap
+5,st2
+6,tcp
+7,cbt
+8,egp
+9,igp
+10,bbn-rcc
+11,nvp
+12,pup
+13,argus
+14,emcon
+15,xnet
+16,chaos
+17,udp
+18,mux
+19,dcn
+20,hmp
+21,prm
+22,xns-idp
+23,trunk-1
+24,trunk-2
+25,leaf-1
+26,leaf-2
+27,rdp
+28,irtp
+29,iso-tp4
+30,netblt
+31,mfe-nsp
+32,merit-inp
+33,sep
+34,3pc
+35,idpr
+36,xtp
+37,ddp
+38,idpr-cmtp
+39,tp++
+40,il
+41,ipv6
+42,sdrp
+43,ipv6-route
+44,ipv6-frag
+45,idrp
+46,rsvp
+47,gre
+48,mhrp
+49,bna
+50,esp
+51,ah
+52,i-nlsp
+53,swipe
+54,narp
+55,mobile
+56,tlsp
+57,skip
+58,ipv6-icmp
+59,ipv6-nonxt
+60,ipv6-opts
+62,cftp
+64,sat-expak
+65,kryptolan
+66,rvd
+67,ippc
+69,sat-mon
+70,visa
+71,ipcv
+72,cpnx
+73,cphb
+74,wsn
+75,pvp
+76,br-sat-mon
+77,sun-nd
+78,wb-mon
+79,wb-expak
+80,iso-ip
+81,vmtp
+82,secure-vmtp
+83,vines
+84,ttp
+85,nsfnet-igp
+86,dgp
+87,tcf
+88,eigrp
+89,ospf
+90,sprite-rpc
+91,larp
+92,mtp
+93,ax.25
+94,ipip
+95,micp
+96,scc-sp
+97,etherip
+98,encap
+100,gmtp
+101,ifmp
+102,pnni
+103,pim
+104,aris
+105,scps
+106,qnx
+107,a/n
+108,ipcomp
+109,snp
+110,compaq-peer
+111,ipx-in-ip
+112,vrrp
+113,pgm
+115,l2tp
+116,ddx
+117,iatp
+118,st
+119,srp
+120,uti
+121,smp
+122,sm
+123,ptp
+124,isis
+125,fire
+126,crtp
+127,crdup
+128,sscopmce
+129,iplt
+130,sps
+131,pipe
+132,sctp
+133,fc
+254,divert
diff --git a/lookups/services.csv b/lookups/services.csv
new file mode 100644
index 00000000..d91af3a7
--- /dev/null
+++ b/lookups/services.csv
@@ -0,0 +1,9891 @@
+port,transport,service
+0,ddp,other
+0,udp,other
+0,tcp,other
+1,ddp,rtmp
+1,udp,tcpmux
+1,tcp,tcpmux
+2,ddp,nbp
+2,udp,compressnet
+2,tcp,compressnet
+3,udp,compressnet
+3,tcp,compressnet
+4,ddp,echo
+5,udp,rje
+5,tcp,rje
+6,ddp,zip
+7,udp,echo
+7,tcp,echo
+9,udp,discard
+9,tcp,discard
+11,udp,systat
+11,tcp,systat
+13,udp,daytime
+13,tcp,daytime
+17,udp,qotd
+17,tcp,qotd
+18,udp,msp
+18,tcp,msp
+19,udp,chargen
+19,tcp,chargen
+20,udp,ftp-data
+20,tcp,ftp-data
+21,udp,ftp
+21,tcp,ftp
+22,udp,ssh
+22,tcp,ssh
+23,udp,telnet
+23,tcp,telnet
+24,udp,mail-system
+24,tcp,mail-system
+25,udp,smtp
+25,tcp,smtp
+27,udp,nsw-fe
+27,tcp,nsw-fe
+29,udp,msg-icp
+29,tcp,msg-icp
+31,udp,msg-auth
+31,tcp,msg-auth
+33,udp,dsp
+33,tcp,dsp
+35,udp,printer-server
+35,tcp,printer-server
+37,udp,time
+37,tcp,time
+38,udp,rap
+38,tcp,rap
+39,udp,rlp
+39,tcp,rlp
+40,udp,unassigned
+40,tcp,unassigned
+41,udp,graphics
+41,tcp,graphics
+42,udp,name
+42,tcp,name
+43,udp,nicname
+43,tcp,nicname
+44,udp,mpm-flags
+44,tcp,mpm-flags
+45,udp,mpm
+45,tcp,mpm
+46,udp,mpm-snd
+46,tcp,mpm-snd
+47,udp,ni-ftp
+47,tcp,ni-ftp
+48,udp,auditd
+48,tcp,auditd
+49,udp,tacacs
+49,tcp,tacacs
+50,udp,re-mail-ck
+50,tcp,re-mail-ck
+51,udp,la-maint
+51,tcp,la-maint
+52,udp,xns-time
+52,tcp,xns-time
+53,udp,domain
+53,tcp,domain
+54,udp,xns-ch
+54,tcp,xns-ch
+55,udp,isi-gl
+55,tcp,isi-gl
+56,udp,xns-auth
+56,tcp,xns-auth
+57,udp,terminal-access
+57,tcp,terminal-access
+58,udp,xns-mail
+58,tcp,xns-mail
+59,udp,file-service
+59,tcp,file-service
+60,udp,unassigned
+60,tcp,unassigned
+61,udp,ni-mail
+61,tcp,ni-mail
+62,udp,acas
+62,tcp,acas
+63,udp,whois++
+63,tcp,whois++
+64,udp,covia
+64,tcp,covia
+65,udp,tacacs-ds
+65,tcp,tacacs-ds
+66,udp,sql*net
+66,tcp,sql*net
+67,udp,bootps
+67,tcp,bootps
+68,udp,bootpc
+68,tcp,bootpc
+69,udp,tftp
+69,tcp,tftp
+70,udp,gopher
+70,tcp,gopher
+71,udp,netrjs-1
+71,tcp,netrjs-1
+72,udp,netrjs-2
+72,tcp,netrjs-2
+73,udp,netrjs-3
+73,tcp,netrjs-3
+74,udp,netrjs-4
+74,tcp,netrjs-4
+75,udp,dial-out-service
+75,tcp,dial-out-service
+76,udp,deos
+76,tcp,deos
+77,udp,RJE-service
+77,tcp,RJE-service
+78,udp,vettcp
+78,tcp,vettcp
+79,udp,finger
+79,tcp,finger
+80,udp,http
+80,tcp,http
+81,udp,hosts2-ns
+81,tcp,hosts2-ns
+82,udp,xfer
+82,tcp,xfer
+83,udp,mit-ml-dev
+83,tcp,mit-ml-dev
+84,udp,ctf
+84,tcp,ctf
+85,udp,mit-ml-dev
+85,tcp,mit-ml-dev
+86,udp,mfcobol
+86,tcp,mfcobol
+87,udp,terminal-link
+87,tcp,terminal-link
+88,udp,kerberos
+88,tcp,kerberos
+89,udp,su-mit-tg
+89,tcp,su-mit-tg
+90,udp,dnsix
+90,tcp,dnsix
+91,udp,mit-dov
+91,tcp,mit-dov
+92,udp,npp
+92,tcp,npp
+93,udp,dcp
+93,tcp,dcp
+94,udp,objcall
+94,tcp,objcall
+95,udp,supdup
+95,tcp,supdup
+96,udp,dixie
+96,tcp,dixie
+97,udp,swift-rvf
+97,tcp,swift-rvf
+98,udp,tacnews
+98,tcp,tacnews
+99,udp,metagram
+99,tcp,metagram
+100,tcp,newacct
+101,udp,hostname
+101,tcp,hostname
+102,udp,iso-tsap
+102,tcp,iso-tsap
+103,udp,gppitnp
+103,tcp,gppitnp
+104,udp,acr-nema
+104,tcp,acr-nema
+105,udp,cso
+105,tcp,cso
+105,udp,csnet-ns
+105,tcp,csnet-ns
+106,udp,3com-tsmux
+106,tcp,3com-tsmux
+107,udp,rtelnet
+107,tcp,rtelnet
+108,udp,snagas
+108,tcp,snagas
+109,udp,pop2
+109,tcp,pop2
+110,udp,pop3
+110,tcp,pop3
+111,udp,sunrpc
+111,tcp,sunrpc
+112,udp,mcidas
+112,tcp,mcidas
+113,udp,auth
+113,tcp,ident
+114,udp,audionews
+114,tcp,audionews
+115,udp,sftp
+115,tcp,sftp
+116,udp,ansanotify
+116,tcp,ansanotify
+117,udp,uucp-path
+117,tcp,uucp-path
+118,udp,sqlserv
+118,tcp,sqlserv
+119,udp,nntp
+119,tcp,nntp
+120,udp,cfdptkt
+120,tcp,cfdptkt
+121,udp,erpc
+121,tcp,erpc
+122,udp,smakynet
+122,tcp,smakynet
+123,udp,ntp
+123,tcp,ntp
+124,udp,ansatrader
+124,tcp,ansatrader
+125,udp,locus-map
+125,tcp,locus-map
+126,udp,nxedit
+126,tcp,nxedit
+127,udp,locus-con
+127,tcp,locus-con
+128,udp,gss-xlicen
+128,tcp,gss-xlicen
+129,udp,pwdgen
+129,tcp,pwdgen
+130,udp,cisco-fna
+130,tcp,cisco-fna
+131,udp,cisco-tna
+131,tcp,cisco-tna
+132,udp,cisco-sys
+132,tcp,cisco-sys
+133,udp,statsrv
+133,tcp,statsrv
+134,udp,ingres-net
+134,tcp,ingres-net
+135,udp,epmap
+135,tcp,epmap
+136,udp,profile
+136,tcp,profile
+137,udp,netbios-ns
+137,tcp,netbios-ns
+138,udp,netbios-dgm
+138,tcp,netbios-dgm
+139,udp,netbios-ssn
+139,tcp,netbios-ssn
+140,udp,emfis-data
+140,tcp,emfis-data
+141,udp,emfis-cntl
+141,tcp,emfis-cntl
+142,udp,bl-idm
+142,tcp,bl-idm
+143,udp,imap
+143,tcp,imap
+144,udp,uma
+144,tcp,uma
+145,udp,uaac
+145,tcp,uaac
+146,udp,iso-tp0
+146,tcp,iso-tp0
+147,udp,iso-ip
+147,tcp,iso-ip
+148,udp,jargon
+148,tcp,jargon
+149,udp,aed-512
+149,tcp,aed-512
+150,udp,sql-net
+150,tcp,sql-net
+151,udp,hems
+151,tcp,hems
+152,udp,bftp
+152,tcp,bftp
+153,udp,sgmp
+153,tcp,sgmp
+154,udp,netsc-prod
+154,tcp,netsc-prod
+155,udp,netsc-dev
+155,tcp,netsc-dev
+156,udp,sqlsrv
+156,tcp,sqlsrv
+157,udp,knet-cmp
+157,tcp,knet-cmp
+158,udp,pcmail-srv
+158,tcp,pcmail-srv
+159,udp,nss-routing
+159,tcp,nss-routing
+160,udp,sgmp-traps
+160,tcp,sgmp-traps
+161,udp,snmp
+161,tcp,snmp
+162,udp,snmptrap
+162,tcp,snmptrap
+163,udp,cmip-man
+163,tcp,cmip-man
+164,udp,cmip-agent
+164,tcp,cmip-agent
+165,udp,xns-courier
+165,tcp,xns-courier
+166,udp,s-net
+166,tcp,s-net
+167,udp,namp
+167,tcp,namp
+168,udp,rsvd
+168,tcp,rsvd
+169,udp,send
+169,tcp,send
+170,udp,print-srv
+170,tcp,print-srv
+171,udp,multiplex
+171,tcp,multiplex
+172,udp,cl/1
+172,tcp,cl/1
+173,udp,xyplex-mux
+173,tcp,xyplex-mux
+174,udp,mailq
+174,tcp,mailq
+175,udp,vmnet
+175,tcp,vmnet
+176,udp,genrad-mux
+176,tcp,genrad-mux
+177,udp,xdmcp
+177,tcp,xdmcp
+178,udp,nextstep
+178,tcp,nextstep
+179,udp,bgp
+179,tcp,bgp
+180,udp,ris
+180,tcp,ris
+181,udp,unify
+181,tcp,unify
+182,udp,audit
+182,tcp,audit
+183,udp,ocbinder
+183,tcp,ocbinder
+184,udp,ocserver
+184,tcp,ocserver
+185,udp,remote-kis
+185,tcp,remote-kis
+186,udp,kis
+186,tcp,kis
+187,udp,aci
+187,tcp,aci
+188,udp,mumps
+188,tcp,mumps
+189,udp,qft
+189,tcp,qft
+190,udp,gacp
+190,tcp,gacp
+191,udp,prospero
+191,tcp,prospero
+192,udp,osu-nms
+192,tcp,osu-nms
+193,udp,srmp
+193,tcp,srmp
+194,udp,irc
+194,tcp,irc
+195,udp,dn6-nlm-aud
+195,tcp,dn6-nlm-aud
+196,udp,dn6-smm-red
+196,tcp,dn6-smm-red
+197,udp,dls
+197,tcp,dls
+198,udp,dls-mon
+198,tcp,dls-mon
+199,udp,smux
+199,tcp,smux
+200,udp,src
+200,tcp,src
+201,udp,at-rtmp
+201,tcp,at-rtmp
+202,udp,at-nbp
+202,tcp,at-nbp
+203,udp,at-3
+203,tcp,at-3
+204,udp,at-echo
+204,tcp,at-echo
+205,udp,at-5
+205,tcp,at-5
+206,udp,at-zis
+206,tcp,at-zis
+207,udp,at-7
+207,tcp,at-7
+208,udp,at-8
+208,tcp,at-8
+209,udp,qmtp
+209,tcp,qmtp
+210,udp,z39.50
+210,tcp,z39.50
+211,udp,914c/g
+211,tcp,914c/g
+212,udp,anet
+212,tcp,anet
+213,udp,ipx
+213,tcp,ipx
+214,udp,vmpwscs
+214,tcp,vmpwscs
+215,udp,softpc
+215,tcp,softpc
+216,udp,CAIlic
+216,tcp,CAIlic
+217,udp,dbase
+217,tcp,dbase
+218,udp,mpp
+218,tcp,mpp
+219,udp,uarps
+219,tcp,uarps
+220,udp,imap3
+220,tcp,imap3
+221,udp,fln-spx
+221,tcp,fln-spx
+222,udp,rsh-spx
+222,tcp,rsh-spx
+223,udp,cdc
+223,tcp,cdc
+224,udp,masqdialer
+224,tcp,masqdialer
+242,udp,direct
+242,tcp,direct
+243,udp,sur-meas
+243,tcp,sur-meas
+244,udp,inbusiness
+244,tcp,inbusiness
+245,udp,link
+245,tcp,link
+246,udp,dsp3270
+246,tcp,dsp3270
+247,udp,subntbcst_tftp
+247,tcp,subntbcst_tftp
+248,udp,bhfhs
+248,tcp,bhfhs
+256,udp,rap
+256,tcp,rap
+257,udp,set
+257,tcp,set
+258,udp,yak-chat
+258,tcp,yak-chat
+259,udp,esro-gen
+259,tcp,esro-gen
+260,udp,openport
+260,tcp,openport
+261,udp,nsiiops
+261,tcp,nsiiops
+262,udp,arcisdms
+262,tcp,arcisdms
+263,udp,hdap
+263,tcp,hdap
+264,udp,bgmp
+264,tcp,bgmp
+265,udp,x-bone-ctl
+265,tcp,x-bone-ctl
+266,udp,sst
+266,tcp,sst
+267,udp,td-service
+267,tcp,td-service
+268,udp,td-replica
+268,tcp,td-replica
+280,udp,http-mgmt
+280,tcp,http-mgmt
+281,udp,personal-link
+281,tcp,personal-link
+282,udp,cableport-ax
+282,tcp,cableport-ax
+283,udp,rescap
+283,tcp,rescap
+284,udp,corerjd
+284,tcp,corerjd
+286,udp,fxp-1
+286,tcp,fxp-1
+287,udp,k-block
+287,tcp,k-block
+308,udp,novastorbakcup
+308,tcp,novastorbakcup
+309,udp,entrusttime
+309,tcp,entrusttime
+310,udp,bhmds
+310,tcp,bhmds
+311,udp,asip-webadmin
+311,tcp,asip-webadmin
+312,udp,vslmp
+312,tcp,vslmp
+313,udp,magenta-logic
+313,tcp,magenta-logic
+314,udp,opalis-robot
+314,tcp,opalis-robot
+315,udp,dpsi
+315,tcp,dpsi
+316,udp,decauth
+316,tcp,decauth
+317,udp,zannet
+317,tcp,zannet
+318,udp,pkix-timestamp
+318,tcp,pkix-timestamp
+319,udp,ptp-event
+319,tcp,ptp-event
+320,udp,ptp-general
+320,tcp,ptp-general
+321,udp,pip
+321,tcp,pip
+322,udp,rtsps
+322,tcp,rtsps
+333,udp,texar
+333,tcp,texar
+344,udp,pdap
+344,tcp,pdap
+345,udp,pawserv
+345,tcp,pawserv
+346,udp,zserv
+346,tcp,zserv
+347,udp,fatserv
+347,tcp,fatserv
+348,udp,csi-sgwp
+348,tcp,csi-sgwp
+349,udp,mftp
+349,tcp,mftp
+350,udp,matip-type-a
+350,tcp,matip-type-a
+351,udp,matip-type-b
+351,tcp,matip-type-b
+351,udp,bhoetty
+351,tcp,bhoetty
+352,udp,dtag-ste-sb
+352,tcp,dtag-ste-sb
+352,udp,bhoedap4
+352,tcp,bhoedap4
+353,udp,ndsauth
+353,tcp,ndsauth
+354,udp,bh611
+354,tcp,bh611
+355,udp,datex-asn
+355,tcp,datex-asn
+356,udp,cloanto-net-1
+356,tcp,cloanto-net-1
+357,udp,bhevent
+357,tcp,bhevent
+358,udp,shrinkwrap
+358,tcp,shrinkwrap
+359,udp,nsrmp
+359,tcp,nsrmp
+360,udp,scoi2odialog
+360,tcp,scoi2odialog
+361,udp,semantix
+361,tcp,semantix
+362,udp,srssend
+362,tcp,srssend
+363,udp,rsvp_tunnel
+363,tcp,rsvp_tunnel
+364,udp,aurora-cmgr
+364,tcp,aurora-cmgr
+365,udp,dtk
+365,tcp,dtk
+366,udp,odmr
+366,tcp,odmr
+367,udp,mortgageware
+367,tcp,mortgageware
+368,udp,qbikgdp
+368,tcp,qbikgdp
+369,udp,rpc2portmap
+369,tcp,rpc2portmap
+370,udp,codaauth2
+370,tcp,codaauth2
+371,udp,clearcase
+371,tcp,clearcase
+372,udp,ulistproc
+372,tcp,ulistproc
+373,udp,legent-1
+373,tcp,legent-1
+374,udp,legent-2
+374,tcp,legent-2
+375,udp,hassle
+375,tcp,hassle
+376,udp,nip
+376,tcp,nip
+377,udp,tnETOS
+377,tcp,tnETOS
+378,udp,dsETOS
+378,tcp,dsETOS
+379,udp,is99c
+379,tcp,is99c
+380,udp,is99s
+380,tcp,is99s
+381,udp,hp-collector
+381,tcp,hp-collector
+382,udp,hp-managed-node
+382,tcp,hp-managed-node
+383,udp,hp-alarm-mgr
+383,tcp,hp-alarm-mgr
+384,udp,arns
+384,tcp,arns
+385,udp,ibm-app
+385,tcp,ibm-app
+386,udp,asa
+386,tcp,asa
+387,udp,aurp
+387,tcp,aurp
+388,udp,unidata-ldm
+388,tcp,unidata-ldm
+389,udp,ldap
+389,tcp,ldap
+390,udp,uis
+390,tcp,uis
+391,udp,synotics-relay
+391,tcp,synotics-relay
+392,udp,synotics-broker
+392,tcp,synotics-broker
+393,udp,meta5
+393,tcp,meta5
+394,udp,embl-ndt
+394,tcp,embl-ndt
+395,udp,netcp
+395,tcp,netcp
+396,udp,netware-ip
+396,tcp,netware-ip
+397,udp,mptn
+397,tcp,mptn
+398,udp,kryptolan
+398,tcp,kryptolan
+399,udp,iso-tsap-c2
+399,tcp,iso-tsap-c2
+400,udp,work-sol
+400,tcp,work-sol
+401,udp,ups
+401,tcp,ups
+402,udp,genie
+402,tcp,genie
+403,udp,decap
+403,tcp,decap
+404,udp,nced
+404,tcp,nced
+405,udp,ncld
+405,tcp,ncld
+406,udp,imsp
+406,tcp,imsp
+407,udp,timbuktu
+407,tcp,timbuktu
+408,udp,prm-sm
+408,tcp,prm-sm
+409,udp,prm-nm
+409,tcp,prm-nm
+410,udp,decladebug
+410,tcp,decladebug
+411,udp,rmt
+411,tcp,rmt
+412,udp,synoptics-trap
+412,tcp,synoptics-trap
+413,udp,smsp
+413,tcp,smsp
+414,udp,infoseek
+414,tcp,infoseek
+415,udp,bnet
+415,tcp,bnet
+416,udp,silverplatter
+416,tcp,silverplatter
+417,udp,onmux
+417,tcp,onmux
+418,udp,hyper-g
+418,tcp,hyper-g
+419,udp,ariel1
+419,tcp,ariel1
+420,udp,smpte
+420,tcp,smpte
+421,udp,ariel2
+421,tcp,ariel2
+422,udp,ariel3
+422,tcp,ariel3
+423,udp,opc-job-start
+423,tcp,opc-job-start
+424,udp,opc-job-track
+424,tcp,opc-job-track
+425,udp,icad-el
+425,tcp,icad-el
+426,udp,smartsdp
+426,tcp,smartsdp
+427,udp,svrloc
+427,tcp,svrloc
+428,udp,ocs_cmu
+428,tcp,ocs_cmu
+429,udp,ocs_amu
+429,tcp,ocs_amu
+430,udp,utmpsd
+430,tcp,utmpsd
+431,udp,utmpcd
+431,tcp,utmpcd
+432,udp,iasd
+432,tcp,iasd
+433,udp,nnsp
+433,tcp,nnsp
+434,udp,mobileip-agent
+434,tcp,mobileip-agent
+435,udp,mobilip-mn
+435,tcp,mobilip-mn
+436,udp,dna-cml
+436,tcp,dna-cml
+437,udp,comscm
+437,tcp,comscm
+438,udp,dsfgw
+438,tcp,dsfgw
+439,udp,dasp
+439,tcp,dasp
+440,udp,sgcp
+440,tcp,sgcp
+441,udp,decvms-sysmgt
+441,tcp,decvms-sysmgt
+442,udp,cvc_hostd
+442,tcp,cvc_hostd
+443,udp,https
+443,tcp,https
+444,udp,snpp
+444,tcp,snpp
+445,udp,microsoft-ds
+445,tcp,microsoft-ds
+446,udp,ddm-rdb
+446,tcp,ddm-rdb
+447,udp,ddm-dfm
+447,tcp,ddm-dfm
+448,udp,ddm-ssl
+448,tcp,ddm-ssl
+449,udp,as-servermap
+449,tcp,as-servermap
+450,udp,tserver
+450,tcp,tserver
+451,udp,sfs-smp-net
+451,tcp,sfs-smp-net
+452,udp,sfs-config
+452,tcp,sfs-config
+453,udp,creativeserver
+453,tcp,creativeserver
+454,udp,contentserver
+454,tcp,contentserver
+455,udp,creativepartnr
+455,tcp,creativepartnr
+456,udp,macon-udp
+456,tcp,macon-tcp
+457,udp,scohelp
+457,tcp,scohelp
+458,udp,appleqtc
+458,tcp,appleqtc
+459,udp,ampr-rcmd
+459,tcp,ampr-rcmd
+460,udp,skronk
+460,tcp,skronk
+461,udp,datasurfsrv
+461,tcp,datasurfsrv
+462,udp,datasurfsrvsec
+462,tcp,datasurfsrvsec
+463,udp,alpes
+463,tcp,alpes
+464,udp,kpasswd
+464,tcp,kpasswd
+465,udp,igmpv3lite
+465,tcp,urd
+466,udp,digital-vrc
+466,tcp,digital-vrc
+467,udp,mylex-mapd
+467,tcp,mylex-mapd
+468,udp,photuris
+468,tcp,photuris
+469,udp,rcp
+469,tcp,rcp
+470,udp,scx-proxy
+470,tcp,scx-proxy
+471,udp,mondex
+471,tcp,mondex
+472,udp,ljk-login
+472,tcp,ljk-login
+473,udp,hybrid-pop
+473,tcp,hybrid-pop
+474,udp,tn-tl-w2
+474,tcp,tn-tl-w1
+475,udp,tcpnethaspsrv
+475,tcp,tcpnethaspsrv
+476,udp,tn-tl-fd1
+476,tcp,tn-tl-fd1
+477,udp,ss7ns
+477,tcp,ss7ns
+478,udp,spsc
+478,tcp,spsc
+479,udp,iafserver
+479,tcp,iafserver
+480,udp,iafdbase
+480,tcp,iafdbase
+481,udp,ph
+481,tcp,ph
+482,udp,bgs-nsi
+482,tcp,bgs-nsi
+483,udp,ulpnet
+483,tcp,ulpnet
+484,udp,integra-sme
+484,tcp,integra-sme
+485,udp,powerburst
+485,tcp,powerburst
+486,udp,avian
+486,tcp,avian
+487,udp,saft
+487,tcp,saft
+488,udp,gss-http
+488,tcp,gss-http
+489,udp,nest-protocol
+489,tcp,nest-protocol
+490,udp,micom-pfs
+490,tcp,micom-pfs
+491,udp,go-login
+491,tcp,go-login
+492,udp,ticf-1
+492,tcp,ticf-1
+493,udp,ticf-2
+493,tcp,ticf-2
+494,udp,pov-ray
+494,tcp,pov-ray
+495,udp,intecourier
+495,tcp,intecourier
+496,udp,pim-rp-disc
+496,tcp,pim-rp-disc
+497,udp,dantz
+497,tcp,dantz
+498,udp,siam
+498,tcp,siam
+499,udp,iso-ill
+499,tcp,iso-ill
+500,udp,isakmp
+500,tcp,isakmp
+501,udp,stmf
+501,tcp,stmf
+502,udp,asa-appl-proto
+502,tcp,asa-appl-proto
+503,udp,intrinsa
+503,tcp,intrinsa
+504,udp,citadel
+504,tcp,citadel
+505,udp,mailbox-lm
+505,tcp,mailbox-lm
+506,udp,ohimsrv
+506,tcp,ohimsrv
+507,udp,crs
+507,tcp,crs
+508,udp,xvttp
+508,tcp,xvttp
+509,udp,snare
+509,tcp,snare
+510,udp,fcp
+510,tcp,fcp
+511,udp,passgo
+511,tcp,passgo
+512,tcp,exec
+512,udp,comsat
+513,tcp,login
+513,udp,who
+514,tcp,shell
+514,udp,syslog
+515,udp,printer
+515,tcp,printer
+516,udp,videotex
+516,tcp,videotex
+517,tcp,talk
+517,udp,talk
+518,udp,ntalk
+518,tcp,ntalk
+519,udp,utime
+519,tcp,utime
+520,udp,router
+520,tcp,efs
+521,udp,ripng
+521,tcp,ripng
+522,udp,ulp
+522,tcp,ulp
+523,udp,ibm-db2
+523,tcp,ibm-db2
+524,udp,ncp
+524,tcp,ncp
+525,udp,timed
+525,tcp,timed
+526,udp,tempo
+526,tcp,tempo
+527,udp,stx
+527,tcp,stx
+528,udp,custix
+528,tcp,custix
+529,udp,irc-serv
+529,tcp,irc-serv
+530,udp,courier
+530,tcp,courier
+531,udp,conference
+531,tcp,conference
+532,udp,netnews
+532,tcp,netnews
+533,udp,netwall
+533,tcp,netwall
+534,udp,mm-admin
+534,tcp,mm-admin
+535,udp,iiop
+535,tcp,iiop
+536,udp,opalis-rdv
+536,tcp,opalis-rdv
+537,udp,nmsp
+537,tcp,nmsp
+538,udp,gdomap
+538,tcp,gdomap
+539,udp,apertus-ldp
+539,tcp,apertus-ldp
+540,udp,uucp
+540,tcp,uucp
+541,udp,uucp-rlogin
+541,tcp,uucp-rlogin
+542,udp,commerce
+542,tcp,commerce
+543,udp,klogin
+543,tcp,klogin
+544,udp,kshell
+544,tcp,kshell
+545,udp,appleqtcsrvr
+545,tcp,appleqtcsrvr
+546,udp,dhcpv6-client
+546,tcp,dhcpv6-client
+547,udp,dhcpv6-server
+547,tcp,dhcpv6-server
+548,udp,afpovertcp
+548,tcp,afpovertcp
+549,udp,idfp
+549,tcp,idfp
+550,udp,new-rwho
+550,tcp,new-rwho
+551,udp,cybercash
+551,tcp,cybercash
+552,udp,devshr-nts
+552,tcp,devshr-nts
+553,udp,pirp
+553,tcp,pirp
+554,udp,rtsp
+554,tcp,rtsp
+555,udp,dsf
+555,tcp,dsf
+556,udp,remotefs
+556,tcp,remotefs
+557,udp,openvms-sysipc
+557,tcp,openvms-sysipc
+558,udp,sdnskmp
+558,tcp,sdnskmp
+559,udp,teedtap
+559,tcp,teedtap
+560,udp,rmonitor
+560,tcp,rmonitor
+561,udp,monitor
+561,tcp,monitor
+562,udp,chshell
+562,tcp,chshell
+563,udp,nntps
+563,tcp,nntps
+564,udp,9pfs
+564,tcp,9pfs
+565,udp,whoami
+565,tcp,whoami
+566,udp,streettalk
+566,tcp,streettalk
+567,udp,banyan-rpc
+567,tcp,banyan-rpc
+568,udp,ms-shuttle
+568,tcp,ms-shuttle
+569,udp,ms-rome
+569,tcp,ms-rome
+570,udp,meter
+570,tcp,meter
+571,udp,meter
+571,tcp,meter
+572,udp,sonar
+572,tcp,sonar
+573,udp,banyan-vip
+573,tcp,banyan-vip
+574,udp,ftp-agent
+574,tcp,ftp-agent
+575,udp,vemmi
+575,tcp,vemmi
+576,udp,ipcd
+576,tcp,ipcd
+577,udp,vnas
+577,tcp,vnas
+578,udp,ipdd
+578,tcp,ipdd
+579,udp,decbsrv
+579,tcp,decbsrv
+580,udp,sntp-heartbeat
+580,tcp,sntp-heartbeat
+581,udp,bdp
+581,tcp,bdp
+582,udp,scc-security
+582,tcp,scc-security
+583,udp,philips-vc
+583,tcp,philips-vc
+584,udp,keyserver
+584,tcp,keyserver
+585,udp,imap4-ssl
+585,tcp,imap4-ssl
+586,udp,password-chg
+586,tcp,password-chg
+587,udp,submission
+587,tcp,submission
+588,udp,cal
+588,tcp,cal
+589,udp,eyelink
+589,tcp,eyelink
+590,udp,tns-cml
+590,tcp,tns-cml
+591,udp,http-alt
+591,tcp,http-alt
+592,udp,eudora-set
+592,tcp,eudora-set
+593,udp,http-rpc-epmap
+593,tcp,http-rpc-epmap
+594,udp,tpip
+594,tcp,tpip
+595,udp,cab-protocol
+595,tcp,cab-protocol
+596,udp,smsd
+596,tcp,smsd
+597,udp,ptcnameservice
+597,tcp,ptcnameservice
+598,udp,sco-websrvrmg3
+598,tcp,sco-websrvrmg3
+599,udp,acp
+599,tcp,acp
+600,udp,ipcserver
+600,tcp,ipcserver
+601,udp,syslog-conn
+601,tcp,syslog-conn
+602,udp,xmlrpc-beep
+602,tcp,xmlrpc-beep
+603,udp,idxp
+603,tcp,idxp
+604,udp,tunnel
+604,tcp,tunnel
+605,udp,soap-beep
+605,tcp,soap-beep
+606,udp,urm
+606,tcp,urm
+607,udp,nqs
+607,tcp,nqs
+608,udp,sift-uft
+608,tcp,sift-uft
+609,udp,npmp-trap
+609,tcp,npmp-trap
+610,udp,npmp-local
+610,tcp,npmp-local
+611,udp,npmp-gui
+611,tcp,npmp-gui
+612,udp,hmmp-ind
+612,tcp,hmmp-ind
+613,udp,hmmp-op
+613,tcp,hmmp-op
+614,udp,sshell
+614,tcp,sshell
+615,udp,sco-inetmgr
+615,tcp,sco-inetmgr
+616,udp,sco-sysmgr
+616,tcp,sco-sysmgr
+617,udp,sco-dtmgr
+617,tcp,sco-dtmgr
+618,udp,dei-icda
+618,tcp,dei-icda
+619,udp,compaq-evm
+619,tcp,compaq-evm
+620,udp,sco-websrvrmgr
+620,tcp,sco-websrvrmgr
+621,udp,escp-ip
+621,tcp,escp-ip
+622,udp,collaborator
+622,tcp,collaborator
+623,udp,asf-rmcp
+623,tcp,asf-rmcp
+624,udp,cryptoadmin
+624,tcp,cryptoadmin
+625,udp,dec_dlm
+625,tcp,dec_dlm
+626,udp,asia
+626,tcp,asia
+627,udp,passgo-tivoli
+627,tcp,passgo-tivoli
+628,udp,qmqp
+628,tcp,qmqp
+629,udp,3com-amp3
+629,tcp,3com-amp3
+630,udp,rda
+630,tcp,rda
+631,udp,ipp
+631,tcp,ipp
+632,udp,bmpp
+632,tcp,bmpp
+633,udp,servstat
+633,tcp,servstat
+634,udp,ginad
+634,tcp,ginad
+635,udp,rlzdbase
+635,tcp,rlzdbase
+636,udp,ldaps
+636,tcp,ldaps
+637,udp,lanserver
+637,tcp,lanserver
+638,udp,mcns-sec
+638,tcp,mcns-sec
+639,udp,msdp
+639,tcp,msdp
+640,udp,entrust-sps
+640,tcp,entrust-sps
+641,udp,repcmd
+641,tcp,repcmd
+642,udp,esro-emsdp
+642,tcp,esro-emsdp
+643,udp,sanity
+643,tcp,sanity
+644,udp,dwr
+644,tcp,dwr
+645,udp,pssc
+645,tcp,pssc
+646,udp,ldp
+646,tcp,ldp
+647,udp,dhcp-failover
+647,tcp,dhcp-failover
+648,udp,rrp
+648,tcp,rrp
+649,udp,cadview-3d
+649,tcp,cadview-3d
+650,udp,obex
+650,tcp,obex
+651,udp,ieee-mms
+651,tcp,ieee-mms
+652,udp,hello-port
+652,tcp,hello-port
+653,udp,repscmd
+653,tcp,repscmd
+654,udp,aodv
+654,tcp,aodv
+655,udp,tinc
+655,tcp,tinc
+656,udp,spmp
+656,tcp,spmp
+657,udp,rmc
+657,tcp,rmc
+658,udp,tenfold
+658,tcp,tenfold
+660,udp,mac-srvr-admin
+660,tcp,mac-srvr-admin
+661,udp,hap
+661,tcp,hap
+662,udp,pftp
+662,tcp,pftp
+663,udp,purenoise
+663,tcp,purenoise
+664,udp,asf-secure-rmcp
+664,tcp,asf-secure-rmcp
+665,udp,sun-dr
+665,tcp,sun-dr
+666,udp,mdqs
+666,tcp,mdqs
+667,udp,disclose
+667,tcp,disclose
+668,udp,mecomm
+668,tcp,mecomm
+669,udp,meregister
+669,tcp,meregister
+670,udp,vacdsm-sws
+670,tcp,vacdsm-sws
+671,udp,vacdsm-app
+671,tcp,vacdsm-app
+672,udp,vpps-qua
+672,tcp,vpps-qua
+673,udp,cimplex
+673,tcp,cimplex
+674,udp,acap
+674,tcp,acap
+675,udp,dctp
+675,tcp,dctp
+676,udp,vpps-via
+676,tcp,vpps-via
+677,udp,vpp
+677,tcp,vpp
+678,udp,ggf-ncp
+678,tcp,ggf-ncp
+679,udp,mrm
+679,tcp,mrm
+680,udp,entrust-aaas
+680,tcp,entrust-aaas
+681,udp,entrust-aams
+681,tcp,entrust-aams
+682,udp,xfr
+682,tcp,xfr
+683,udp,corba-iiop
+683,tcp,corba-iiop
+684,udp,corba-iiop-ssl
+684,tcp,corba-iiop-ssl
+685,udp,mdc-portmapper
+685,tcp,mdc-portmapper
+686,udp,hcp-wismar
+686,tcp,hcp-wismar
+687,udp,asipregistry
+687,tcp,asipregistry
+688,udp,realm-rusd
+688,tcp,realm-rusd
+689,udp,nmap
+689,tcp,nmap
+690,udp,vatp
+690,tcp,vatp
+691,udp,msexch-routing
+691,tcp,msexch-routing
+692,udp,hyperwave-isp
+692,tcp,hyperwave-isp
+693,udp,connendp
+693,tcp,connendp
+694,udp,ha-cluster
+694,tcp,ha-cluster
+695,udp,ieee-mms-ssl
+695,tcp,ieee-mms-ssl
+696,udp,rushd
+696,tcp,rushd
+697,udp,uuidgen
+697,tcp,uuidgen
+698,udp,olsr
+698,tcp,olsr
+699,udp,accessnetwork
+699,tcp,accessnetwork
+700,tcp,epp
+700,udp,epp
+701,tcp,lmp
+701,udp,lmp
+702,tcp,iris-beep
+702,udp,iris-beep
+704,udp,elcsd
+704,tcp,elcsd
+705,udp,agentx
+705,tcp,agentx
+706,udp,silc
+706,tcp,silc
+707,udp,borland-dsj
+707,tcp,borland-dsj
+709,udp,entrust-kmsh
+709,tcp,entrust-kmsh
+710,udp,entrust-ash
+710,tcp,entrust-ash
+711,udp,cisco-tdp
+711,tcp,cisco-tdp
+712,tcp,tbrpf
+712,udp,tbrpf
+729,udp,netviewdm1
+729,tcp,netviewdm1
+730,udp,netviewdm2
+730,tcp,netviewdm2
+731,udp,netviewdm3
+731,tcp,netviewdm3
+741,udp,netgw
+741,tcp,netgw
+742,udp,netrcs
+742,tcp,netrcs
+744,udp,flexlm
+744,tcp,flexlm
+747,udp,fujitsu-dev
+747,tcp,fujitsu-dev
+748,udp,ris-cm
+748,tcp,ris-cm
+749,udp,kerberos-adm
+749,tcp,kerberos-adm
+750,udp,loadav
+750,tcp,rfile
+751,udp,pump
+751,tcp,pump
+752,udp,qrh
+752,tcp,qrh
+753,udp,rrh
+753,tcp,rrh
+754,udp,tell
+754,tcp,tell
+758,udp,nlogin
+758,tcp,nlogin
+759,udp,con
+759,tcp,con
+760,udp,ns
+760,tcp,ns
+761,udp,rxe
+761,tcp,rxe
+762,udp,quotad
+762,tcp,quotad
+763,udp,cycleserv
+763,tcp,cycleserv
+764,udp,omserv
+764,tcp,omserv
+765,udp,webster
+765,tcp,webster
+767,udp,phonebook
+767,tcp,phonebook
+769,udp,vid
+769,tcp,vid
+770,udp,cadlock
+770,tcp,cadlock
+771,udp,rtip
+771,tcp,rtip
+772,udp,cycleserv2
+772,tcp,cycleserv2
+773,udp,notify
+773,tcp,submit
+774,udp,acmaint_dbd
+774,tcp,rpasswd
+775,udp,acmaint_transd
+775,tcp,entomb
+776,udp,wpages
+776,tcp,wpages
+777,udp,multiling-http
+777,tcp,multiling-http
+780,udp,wpgs
+780,tcp,wpgs
+800,udp,mdbs_daemon
+800,tcp,mdbs_daemon
+801,udp,device
+801,tcp,device
+810,udp,fcp-udp
+810,tcp,fcp-udp
+828,udp,itm-mcell-s
+828,tcp,itm-mcell-s
+829,udp,pkix-3-ca-ra
+829,tcp,pkix-3-ca-ra
+830,tcp,netconf-ssh
+830,udp,netconf-ssh
+831,tcp,netconf-beep
+831,udp,netconf-beep
+832,tcp,netconfsoaphttp
+832,udp,netconfsoaphttp
+833,tcp,netconfsoapbeep
+833,udp,netconfsoapbeep
+847,udp,dhcp-failover2
+847,tcp,dhcp-failover2
+848,udp,gdoi
+848,tcp,gdoi
+860,udp,iscsi
+860,tcp,iscsi
+861,tcp,owamp-control
+861,udp,owamp-control
+873,udp,rsync
+873,tcp,rsync
+886,udp,iclcnet-locate
+886,tcp,iclcnet-locate
+887,udp,iclcnet_svinfo
+887,tcp,iclcnet_svinfo
+888,udp,accessbuilder
+888,tcp,accessbuilder
+888,tcp,cddbp
+900,udp,omginitialrefs
+900,tcp,omginitialrefs
+901,udp,smpnameres
+901,tcp,smpnameres
+902,udp,ideafarm-chat
+902,tcp,ideafarm-chat
+903,udp,ideafarm-catch
+903,tcp,ideafarm-catch
+910,tcp,kink
+910,udp,kink
+911,udp,xact-backup
+911,tcp,xact-backup
+912,udp,apex-mesh
+912,tcp,apex-mesh
+913,udp,apex-edge
+913,tcp,apex-edge
+989,udp,ftps-data
+989,tcp,ftps-data
+990,udp,ftps
+990,tcp,ftps
+991,udp,nas
+991,tcp,nas
+992,udp,telnets
+992,tcp,telnets
+993,udp,imaps
+993,tcp,imaps
+994,udp,ircs
+994,tcp,ircs
+995,udp,pop3s
+995,tcp,pop3s
+996,udp,vsinet
+996,tcp,vsinet
+997,udp,maitrd
+997,tcp,maitrd
+998,udp,puparp
+998,tcp,busboy
+999,udp,applix
+999,tcp,garcon
+1000,udp,cadlock2
+1000,tcp,cadlock2
+1010,udp,surf
+1010,tcp,surf
+1023,udp,unassigned
+1023,tcp,unassigned
+1024,udp,unassigned
+1024,tcp,unassigned
+1021,tcp,exp1
+1021,udp,exp1
+1022,tcp,exp2
+1022,udp,exp2
+1025,udp,blackjack
+1025,tcp,blackjack
+1026,udp,cap
+1026,tcp,cap
+1027,udp,exosee
+1027,tcp,exosee
+1029,tcp,solid-mux
+1029,udp,solid-mux
+1030,udp,iad1
+1030,tcp,iad1
+1031,udp,iad2
+1031,tcp,iad2
+1032,udp,iad3
+1032,tcp,iad3
+1033,udp,netinfo-local
+1033,tcp,netinfo-local
+1034,udp,activesync
+1034,tcp,activesync
+1035,udp,mxxrlogin
+1035,tcp,mxxrlogin
+1036,udp,pcg-radar
+1036,tcp,pcg-radar
+1037,tcp,ams
+1037,udp,ams
+1038,tcp,mtqp
+1038,udp,mtqp
+1039,tcp,sbl
+1039,udp,sbl
+1040,udp,netarx
+1040,tcp,netarx
+1041,tcp,danf-ak2
+1041,udp,danf-ak2
+1042,tcp,afrog
+1042,udp,afrog
+1043,tcp,boinc-client
+1043,udp,boinc-client
+1044,tcp,dcutility
+1044,udp,dcutility
+1045,udp,fpitp
+1045,tcp,fpitp
+1046,tcp,wfremotertm
+1046,udp,wfremotertm
+1047,udp,neod1
+1047,tcp,neod1
+1048,udp,neod2
+1048,tcp,neod2
+1049,udp,td-postman
+1049,tcp,td-postman
+1050,udp,cma
+1050,tcp,cma
+1051,udp,optima-vnet
+1051,tcp,optima-vnet
+1052,udp,ddt
+1052,tcp,ddt
+1053,udp,remote-as
+1053,tcp,remote-as
+1054,udp,brvread
+1054,tcp,brvread
+1055,udp,ansyslmd
+1055,tcp,ansyslmd
+1056,udp,vfo
+1056,tcp,vfo
+1057,udp,startron
+1057,tcp,startron
+1058,udp,nim
+1058,tcp,nim
+1059,udp,nimreg
+1059,tcp,nimreg
+1060,udp,polestar
+1060,tcp,polestar
+1061,udp,kiosk
+1061,tcp,kiosk
+1062,udp,veracity
+1062,tcp,veracity
+1063,udp,kyoceranetdev
+1063,tcp,kyoceranetdev
+1064,udp,jstel
+1064,tcp,jstel
+1065,udp,syscomlan
+1065,tcp,syscomlan
+1066,udp,fpo-fns
+1066,tcp,fpo-fns
+1067,udp,instl_boots
+1067,tcp,instl_boots
+1068,udp,instl_bootc
+1068,tcp,instl_bootc
+1069,udp,cognex-insight
+1069,tcp,cognex-insight
+1070,udp,gmrupdateserv
+1070,tcp,gmrupdateserv
+1071,udp,bsquare-voip
+1071,tcp,bsquare-voip
+1072,udp,cardax
+1072,tcp,cardax
+1073,udp,bridgecontrol
+1073,tcp,bridgecontrol
+1074,udp,fastechnologlm
+1074,tcp,fastechnologlm
+1075,udp,rdrmshc
+1075,tcp,rdrmshc
+1076,udp,dab-sti-c
+1076,tcp,dab-sti-c
+1077,udp,imgames
+1077,tcp,imgames
+1078,udp,avocent-proxy
+1078,tcp,avocent-proxy
+1079,udp,asprovatalk
+1079,tcp,asprovatalk
+1080,udp,socks
+1080,tcp,socks
+1081,udp,pvuniwien
+1081,tcp,pvuniwien
+1082,udp,amt-esd-prot
+1082,tcp,amt-esd-prot
+1083,udp,ansoft-lm-1
+1083,tcp,ansoft-lm-1
+1084,udp,ansoft-lm-2
+1084,tcp,ansoft-lm-2
+1085,udp,webobjects
+1085,tcp,webobjects
+1086,udp,cplscrambler-lg
+1086,tcp,cplscrambler-lg
+1087,udp,cplscrambler-in
+1087,tcp,cplscrambler-in
+1088,udp,cplscrambler-al
+1088,tcp,cplscrambler-al
+1089,udp,ff-annunc
+1089,tcp,ff-annunc
+1090,udp,ff-fms
+1090,tcp,ff-fms
+1091,udp,ff-sm
+1091,tcp,ff-sm
+1092,udp,obrpd
+1092,tcp,obrpd
+1093,udp,proofd
+1093,tcp,proofd
+1094,udp,rootd
+1094,tcp,rootd
+1095,udp,nicelink
+1095,tcp,nicelink
+1096,udp,cnrprotocol
+1096,tcp,cnrprotocol
+1097,udp,sunclustermgr
+1097,tcp,sunclustermgr
+1098,udp,rmiactivation
+1098,tcp,rmiactivation
+1099,udp,rmiregistry
+1099,tcp,rmiregistry
+1100,udp,mctp
+1100,tcp,mctp
+1101,udp,pt2-discover
+1101,tcp,pt2-discover
+1102,udp,adobeserver-1
+1102,tcp,adobeserver-1
+1103,udp,adobeserver-2
+1103,tcp,adobeserver-2
+1104,udp,xrl
+1104,tcp,xrl
+1105,udp,ftranhc
+1105,tcp,ftranhc
+1106,udp,isoipsigport-1
+1106,tcp,isoipsigport-1
+1107,udp,isoipsigport-2
+1107,tcp,isoipsigport-2
+1108,udp,ratio-adp
+1108,tcp,ratio-adp
+1110,udp,nfsd-keepalive
+1110,tcp,nfsd-status
+1111,udp,lmsocialserver
+1111,tcp,lmsocialserver
+1112,udp,icp
+1112,tcp,icp
+1113,tcp,ltp-deepspace
+1113,udp,ltp-deepspace
+1114,udp,mini-sql
+1114,tcp,mini-sql
+1115,udp,ardus-trns
+1115,tcp,ardus-trns
+1116,udp,ardus-cntl
+1116,tcp,ardus-cntl
+1117,udp,ardus-mtrns
+1117,tcp,ardus-mtrns
+1118,tcp,sacred
+1118,udp,sacred
+1119,tcp,bnetgame
+1119,udp,bnetgame
+1120,tcp,bnetfile
+1120,udp,bnetfile
+1121,tcp,rmpp
+1121,udp,rmpp
+1122,udp,availant-mgr
+1122,tcp,availant-mgr
+1123,udp,murray
+1123,tcp,murray
+1124,tcp,hpvmmcontrol
+1124,udp,hpvmmcontrol
+1125,tcp,hpvmmagent
+1125,udp,hpvmmagent
+1126,tcp,hpvmmdata
+1126,udp,hpvmmdata
+1127,tcp,kwdb-commn
+1127,udp,kwdb-commn
+1128,tcp,saphostctrl
+1128,udp,saphostctrl
+1129,tcp,saphostctrls
+1129,udp,saphostctrls
+1130,tcp,casp
+1130,udp,casp
+1131,tcp,caspssl
+1131,udp,caspssl
+1132,tcp,kvm-via-ip
+1132,udp,kvm-via-ip
+1133,tcp,dfn
+1133,udp,dfn
+1134,tcp,aplx
+1134,udp,aplx
+1135,tcp,omnivision
+1135,udp,omnivision
+1136,tcp,hhb-gateway
+1136,udp,hhb-gateway
+1137,tcp,trim
+1137,udp,trim
+1140,tcp,autonoc
+1140,udp,autonoc
+1141,tcp,mxomss
+1141,udp,mxomss
+1142,tcp,edtools
+1142,udp,edtools
+1143,tcp,imyx
+1143,udp,imyx
+1144,tcp,fuscript
+1144,udp,fuscript
+1145,tcp,x9-icue
+1145,udp,x9-icue
+1146,tcp,audit-transfer
+1146,udp,audit-transfer
+1147,tcp,capioverlan
+1147,udp,capioverlan
+1148,tcp,elfiq-repl
+1148,udp,elfiq-repl
+1149,tcp,bvtsonar
+1149,udp,bvtsonar
+1150,tcp,blaze
+1150,udp,blaze
+1151,tcp,unizensus
+1151,udp,unizensus
+1152,tcp,winpoplanmess
+1152,udp,winpoplanmess
+1153,tcp,c1222-acse
+1153,udp,c1222-acse
+1154,tcp,resacommunity
+1154,udp,resacommunity
+1155,udp,nfa
+1155,tcp,nfa
+1156,tcp,iascontrol-oms
+1156,udp,iascontrol-oms
+1157,tcp,iascontrol
+1157,udp,iascontrol
+1158,tcp,dbcontrol-oms
+1158,udp,dbcontrol-oms
+1159,tcp,oracle-oms
+1159,udp,oracle-oms
+1160,tcp,olsv
+1160,udp,olsv
+1161,udp,health-polling
+1161,tcp,health-polling
+1162,udp,health-trap
+1162,tcp,health-trap
+1163,tcp,sddp
+1163,udp,sddp
+1164,tcp,qsm-proxy
+1164,udp,qsm-proxy
+1165,tcp,qsm-gui
+1165,udp,qsm-gui
+1166,tcp,qsm-remote
+1166,udp,qsm-remote
+1167,tcp,cisco-ipsla
+1167,udp,cisco-ipsla
+1168,udp,vchat
+1168,tcp,vchat
+1169,udp,tripwire
+1169,tcp,tripwire
+1170,tcp,atc-lm
+1170,udp,atc-lm
+1171,tcp,atc-appserver
+1171,udp,atc-appserver
+1172,tcp,dnap
+1172,udp,dnap
+1173,tcp,d-cinema-rrp
+1173,udp,d-cinema-rrp
+1174,tcp,fnet-remote-ui
+1174,udp,fnet-remote-ui
+1175,tcp,dossier
+1175,udp,dossier
+1176,tcp,indigo-server
+1176,udp,indigo-server
+1177,tcp,dkmessenger
+1177,udp,dkmessenger
+1178,tcp,sgi-storman
+1178,udp,sgi-storman
+1179,tcp,b2n
+1179,udp,b2n
+1180,udp,mc-client
+1180,tcp,mc-client
+1181,tcp,3comnetman
+1181,udp,3comnetman
+1182,tcp,accelenet
+1182,udp,accelenet
+1183,udp,llsurfup-http
+1183,tcp,llsurfup-http
+1184,udp,llsurfup-https
+1184,tcp,llsurfup-https
+1185,udp,catchpole
+1185,tcp,catchpole
+1186,tcp,mysql-cluster
+1186,udp,mysql-cluster
+1187,tcp,alias
+1187,udp,alias
+1188,udp,hp-webadmin
+1188,tcp,hp-webadmin
+1189,tcp,unet
+1189,udp,unet
+1190,tcp,commlinx-avl
+1190,udp,commlinx-avl
+1191,tcp,gpfs
+1191,udp,gpfs
+1192,tcp,caids-sensor
+1192,udp,caids-sensor
+1193,tcp,fiveacross
+1193,udp,fiveacross
+1194,tcp,openvpn
+1194,udp,openvpn
+1195,tcp,rsf-1
+1195,udp,rsf-1
+1196,tcp,netmagic
+1196,udp,netmagic
+1197,tcp,carrius-rshell
+1197,udp,carrius-rshell
+1198,tcp,cajo-discovery
+1198,udp,cajo-discovery
+1199,udp,dmidi
+1199,tcp,dmidi
+1200,udp,scol
+1200,tcp,scol
+1201,udp,nucleus-sand
+1201,tcp,nucleus-sand
+1202,udp,caiccipc
+1202,tcp,caiccipc
+1203,udp,ssslic-mgr
+1203,tcp,ssslic-mgr
+1204,udp,ssslog-mgr
+1204,tcp,ssslog-mgr
+1205,udp,accord-mgc
+1205,tcp,accord-mgc
+1206,udp,anthony-data
+1206,tcp,anthony-data
+1207,udp,metasage
+1207,tcp,metasage
+1208,udp,seagull-ais
+1208,tcp,seagull-ais
+1209,udp,ipcd3
+1209,tcp,ipcd3
+1210,udp,eoss
+1210,tcp,eoss
+1211,udp,groove-dpp
+1211,tcp,groove-dpp
+1212,udp,lupa
+1212,tcp,lupa
+1213,udp,mpc-lifenet
+1213,tcp,mpc-lifenet
+1214,udp,kazaa
+1214,tcp,kazaa
+1215,udp,scanstat-1
+1215,tcp,scanstat-1
+1216,udp,etebac5
+1216,tcp,etebac5
+1217,udp,hpss-ndapi
+1217,tcp,hpss-ndapi
+1218,udp,aeroflight-ads
+1218,tcp,aeroflight-ads
+1219,udp,aeroflight-ret
+1219,tcp,aeroflight-ret
+1220,udp,qt-serveradmin
+1220,tcp,qt-serveradmin
+1221,udp,sweetware-apps
+1221,tcp,sweetware-apps
+1222,udp,nerv
+1222,tcp,nerv
+1223,udp,tgp
+1223,tcp,tgp
+1224,udp,vpnz
+1224,tcp,vpnz
+1225,udp,slinkysearch
+1225,tcp,slinkysearch
+1226,udp,stgxfws
+1226,tcp,stgxfws
+1227,udp,dns2go
+1227,tcp,dns2go
+1228,udp,florence
+1228,tcp,florence
+1229,udp,novell-zfs
+1229,tcp,novell-zfs
+1230,udp,periscope
+1230,tcp,periscope
+1231,udp,menandmice-lpm
+1231,tcp,menandmice-lpm
+1233,udp,univ-appserver
+1233,tcp,univ-appserver
+1234,udp,search-agent
+1234,tcp,search-agent
+1235,udp,mosaicsyssvc1
+1235,tcp,mosaicsyssvc1
+1236,udp,bvcontrol
+1236,tcp,bvcontrol
+1237,udp,tsdos390
+1237,tcp,tsdos390
+1238,udp,hacl-qs
+1238,tcp,hacl-qs
+1239,udp,nmsd
+1239,tcp,nmsd
+1240,udp,instantia
+1240,tcp,instantia
+1241,udp,nessus
+1241,tcp,nessus
+1242,udp,nmasoverip
+1242,tcp,nmasoverip
+1243,udp,serialgateway
+1243,tcp,serialgateway
+1244,udp,isbconference1
+1244,tcp,isbconference1
+1245,udp,isbconference2
+1245,tcp,isbconference2
+1246,udp,payrouter
+1246,tcp,payrouter
+1247,udp,visionpyramid
+1247,tcp,visionpyramid
+1248,udp,hermes
+1248,tcp,hermes
+1249,udp,mesavistaco
+1249,tcp,mesavistaco
+1250,udp,swldy-sias
+1250,tcp,swldy-sias
+1251,udp,servergraph
+1251,tcp,servergraph
+1252,udp,bspne-pcc
+1252,tcp,bspne-pcc
+1253,udp,q55-pcc
+1253,tcp,q55-pcc
+1254,udp,de-noc
+1254,tcp,de-noc
+1255,udp,de-cache-query
+1255,tcp,de-cache-query
+1256,udp,de-server
+1256,tcp,de-server
+1257,udp,shockwave2
+1257,tcp,shockwave2
+1258,udp,opennl
+1258,tcp,opennl
+1259,udp,opennl-voice
+1259,tcp,opennl-voice
+1260,udp,ibm-ssd
+1260,tcp,ibm-ssd
+1261,udp,mpshrsv
+1261,tcp,mpshrsv
+1262,udp,qnts-orb
+1262,tcp,qnts-orb
+1263,udp,dka
+1263,tcp,dka
+1264,udp,prat
+1264,tcp,prat
+1265,udp,dssiapi
+1265,tcp,dssiapi
+1266,udp,dellpwrappks
+1266,tcp,dellpwrappks
+1267,udp,epc
+1267,tcp,epc
+1268,udp,propel-msgsys
+1268,tcp,propel-msgsys
+1269,udp,watilapp
+1269,tcp,watilapp
+1270,udp,opsmgr
+1270,tcp,opsmgr
+1271,udp,dabew
+1271,tcp,dabew
+1272,udp,cspmlockmgr
+1272,tcp,cspmlockmgr
+1273,udp,emc-gateway
+1273,tcp,emc-gateway
+1274,udp,t1distproc
+1274,tcp,t1distproc
+1275,udp,ivcollector
+1275,tcp,ivcollector
+1276,udp,ivmanager
+1276,tcp,ivmanager
+1277,udp,miva-mqs
+1277,tcp,miva-mqs
+1278,udp,dellwebadmin-1
+1278,tcp,dellwebadmin-1
+1279,udp,dellwebadmin-2
+1279,tcp,dellwebadmin-2
+1280,udp,pictrography
+1280,tcp,pictrography
+1281,udp,healthd
+1281,tcp,healthd
+1282,udp,emperion
+1282,tcp,emperion
+1283,udp,productinfo
+1283,tcp,productinfo
+1284,udp,iee-qfx
+1284,tcp,iee-qfx
+1285,udp,neoiface
+1285,tcp,neoiface
+1286,udp,netuitive
+1286,tcp,netuitive
+1287,tcp,routematch
+1287,udp,routematch
+1288,udp,navbuddy
+1288,tcp,navbuddy
+1289,udp,jwalkserver
+1289,tcp,jwalkserver
+1290,udp,winjaserver
+1290,tcp,winjaserver
+1291,udp,seagulllms
+1291,tcp,seagulllms
+1292,udp,dsdn
+1292,tcp,dsdn
+1293,udp,pkt-krb-ipsec
+1293,tcp,pkt-krb-ipsec
+1294,udp,cmmdriver
+1294,tcp,cmmdriver
+1295,udp,ehtp
+1295,tcp,ehtp
+1296,udp,dproxy
+1296,tcp,dproxy
+1297,udp,sdproxy
+1297,tcp,sdproxy
+1298,udp,lpcp
+1298,tcp,lpcp
+1299,udp,hp-sci
+1299,tcp,hp-sci
+1300,udp,h323hostcallsc
+1300,tcp,h323hostcallsc
+1301,udp,ci3-software-1
+1301,tcp,ci3-software-1
+1302,udp,ci3-software-2
+1302,tcp,ci3-software-2
+1303,udp,sftsrv
+1303,tcp,sftsrv
+1304,udp,boomerang
+1304,tcp,boomerang
+1305,udp,pe-mike
+1305,tcp,pe-mike
+1306,udp,re-conn-proto
+1306,tcp,re-conn-proto
+1307,udp,pacmand
+1307,tcp,pacmand
+1308,udp,odsi
+1308,tcp,odsi
+1309,udp,jtag-server
+1309,tcp,jtag-server
+1310,udp,husky
+1310,tcp,husky
+1311,udp,rxmon
+1311,tcp,rxmon
+1312,udp,sti-envision
+1312,tcp,sti-envision
+1313,udp,bmc_patroldb
+1313,tcp,bmc_patroldb
+1314,udp,pdps
+1314,tcp,pdps
+1315,udp,els
+1315,tcp,els
+1316,udp,exbit-escp
+1316,tcp,exbit-escp
+1317,udp,vrts-ipcserver
+1317,tcp,vrts-ipcserver
+1318,udp,krb5gatekeeper
+1318,tcp,krb5gatekeeper
+1319,udp,panja-icsp
+1319,tcp,panja-icsp
+1320,udp,panja-axbnet
+1320,tcp,panja-axbnet
+1321,udp,pip
+1321,tcp,pip
+1322,udp,novation
+1322,tcp,novation
+1323,udp,brcd
+1323,tcp,brcd
+1324,udp,delta-mcp
+1324,tcp,delta-mcp
+1325,udp,dx-instrument
+1325,tcp,dx-instrument
+1326,udp,wimsic
+1326,tcp,wimsic
+1327,udp,ultrex
+1327,tcp,ultrex
+1328,udp,ewall
+1328,tcp,ewall
+1329,udp,netdb-export
+1329,tcp,netdb-export
+1330,udp,streetperfect
+1330,tcp,streetperfect
+1331,udp,intersan
+1331,tcp,intersan
+1332,udp,pcia-rxp-b
+1332,tcp,pcia-rxp-b
+1333,udp,passwrd-policy
+1333,tcp,passwrd-policy
+1334,udp,writesrv
+1334,tcp,writesrv
+1335,udp,digital-notary
+1335,tcp,digital-notary
+1336,udp,ischat
+1336,tcp,ischat
+1337,udp,menandmice-dns
+1337,tcp,menandmice-dns
+1338,udp,wmc-log-svc
+1338,tcp,wmc-log-svc
+1339,udp,kjtsiteserver
+1339,tcp,kjtsiteserver
+1340,udp,naap
+1340,tcp,naap
+1341,udp,qubes
+1341,tcp,qubes
+1342,udp,esbroker
+1342,tcp,esbroker
+1343,udp,re101
+1343,tcp,re101
+1344,udp,icap
+1344,tcp,icap
+1345,udp,vpjp
+1345,tcp,vpjp
+1346,udp,alta-ana-lm
+1346,tcp,alta-ana-lm
+1347,udp,bbn-mmc
+1347,tcp,bbn-mmc
+1348,udp,bbn-mmx
+1348,tcp,bbn-mmx
+1349,udp,sbook
+1349,tcp,sbook
+1350,udp,editbench
+1350,tcp,editbench
+1351,udp,equationbuilder
+1351,tcp,equationbuilder
+1352,udp,lotusnote
+1352,tcp,lotusnote
+1353,udp,relief
+1353,tcp,relief
+1354,udp,rightbrain
+1354,tcp,rightbrain
+1355,udp,intuitive-edge
+1355,tcp,intuitive-edge
+1356,udp,cuillamartin
+1356,tcp,cuillamartin
+1357,udp,pegboard
+1357,tcp,pegboard
+1358,udp,connlcli
+1358,tcp,connlcli
+1359,udp,ftsrv
+1359,tcp,ftsrv
+1360,udp,mimer
+1360,tcp,mimer
+1361,udp,linx
+1361,tcp,linx
+1362,udp,timeflies
+1362,tcp,timeflies
+1363,udp,ndm-requester
+1363,tcp,ndm-requester
+1364,udp,ndm-server
+1364,tcp,ndm-server
+1365,udp,adapt-sna
+1365,tcp,adapt-sna
+1366,udp,netware-csp
+1366,tcp,netware-csp
+1367,udp,dcs
+1367,tcp,dcs
+1368,udp,screencast
+1368,tcp,screencast
+1369,udp,gv-us
+1369,tcp,gv-us
+1370,udp,us-gv
+1370,tcp,us-gv
+1371,udp,fc-cli
+1371,tcp,fc-cli
+1372,udp,fc-ser
+1372,tcp,fc-ser
+1373,udp,chromagrafx
+1373,tcp,chromagrafx
+1374,udp,molly
+1374,tcp,molly
+1375,udp,bytex
+1375,tcp,bytex
+1376,udp,ibm-pps
+1376,tcp,ibm-pps
+1377,udp,cichlid
+1377,tcp,cichlid
+1378,udp,elan
+1378,tcp,elan
+1379,udp,dbreporter
+1379,tcp,dbreporter
+1380,udp,telesis-licman
+1380,tcp,telesis-licman
+1381,udp,apple-licman
+1381,tcp,apple-licman
+1382,udp,udt_os
+1382,tcp,udt_os
+1383,udp,gwha
+1383,tcp,gwha
+1384,udp,os-licman
+1384,tcp,os-licman
+1385,udp,atex_elmd
+1385,tcp,atex_elmd
+1386,udp,checksum
+1386,tcp,checksum
+1387,udp,cadsi-lm
+1387,tcp,cadsi-lm
+1388,udp,objective-dbc
+1388,tcp,objective-dbc
+1389,udp,iclpv-dm
+1389,tcp,iclpv-dm
+1390,udp,iclpv-sc
+1390,tcp,iclpv-sc
+1391,udp,iclpv-sas
+1391,tcp,iclpv-sas
+1392,udp,iclpv-pm
+1392,tcp,iclpv-pm
+1393,udp,iclpv-nls
+1393,tcp,iclpv-nls
+1394,udp,iclpv-nlc
+1394,tcp,iclpv-nlc
+1395,udp,iclpv-wsm
+1395,tcp,iclpv-wsm
+1396,udp,dvl-activemail
+1396,tcp,dvl-activemail
+1397,udp,audio-activmail
+1397,tcp,audio-activmail
+1398,udp,video-activmail
+1398,tcp,video-activmail
+1399,udp,cadkey-licman
+1399,tcp,cadkey-licman
+1400,udp,cadkey-tablet
+1400,tcp,cadkey-tablet
+1401,udp,goldleaf-licman
+1401,tcp,goldleaf-licman
+1402,udp,prm-sm-np
+1402,tcp,prm-sm-np
+1403,udp,prm-nm-np
+1403,tcp,prm-nm-np
+1404,udp,igi-lm
+1404,tcp,igi-lm
+1405,udp,ibm-res
+1405,tcp,ibm-res
+1406,udp,netlabs-lm
+1406,tcp,netlabs-lm
+1407,udp,dbsa-lm
+1407,tcp,dbsa-lm
+1408,udp,sophia-lm
+1408,tcp,sophia-lm
+1409,udp,here-lm
+1409,tcp,here-lm
+1410,udp,hiq
+1410,tcp,hiq
+1411,udp,af
+1411,tcp,af
+1412,udp,innosys
+1412,tcp,innosys
+1413,udp,innosys-acl
+1413,tcp,innosys-acl
+1414,udp,ibm-mqseries
+1414,tcp,ibm-mqseries
+1415,udp,dbstar
+1415,tcp,dbstar
+1416,udp,novell-lu6.2
+1416,tcp,novell-lu6.2
+1417,udp,timbuktu-srv1
+1417,tcp,timbuktu-srv1
+1418,udp,timbuktu-srv2
+1418,tcp,timbuktu-srv2
+1419,udp,timbuktu-srv3
+1419,tcp,timbuktu-srv3
+1420,udp,timbuktu-srv4
+1420,tcp,timbuktu-srv4
+1421,udp,gandalf-lm
+1421,tcp,gandalf-lm
+1422,udp,autodesk-lm
+1422,tcp,autodesk-lm
+1423,udp,essbase
+1423,tcp,essbase
+1424,udp,hybrid
+1424,tcp,hybrid
+1425,udp,zion-lm
+1425,tcp,zion-lm
+1426,udp,sais
+1426,tcp,sais
+1427,udp,mloadd
+1427,tcp,mloadd
+1428,udp,informatik-lm
+1428,tcp,informatik-lm
+1429,udp,nms
+1429,tcp,nms
+1430,udp,tpdu
+1430,tcp,tpdu
+1431,udp,rgtp
+1431,tcp,rgtp
+1432,udp,blueberry-lm
+1432,tcp,blueberry-lm
+1433,udp,ms-sql-s
+1433,tcp,ms-sql-s
+1434,udp,ms-sql-m
+1434,tcp,ms-sql-m
+1435,udp,ibm-cics
+1435,tcp,ibm-cics
+1436,udp,saism
+1436,tcp,saism
+1437,udp,tabula
+1437,tcp,tabula
+1438,udp,eicon-server
+1438,tcp,eicon-server
+1439,udp,eicon-x25
+1439,tcp,eicon-x25
+1440,udp,eicon-slp
+1440,tcp,eicon-slp
+1441,udp,cadis-1
+1441,tcp,cadis-1
+1442,udp,cadis-2
+1442,tcp,cadis-2
+1443,udp,ies-lm
+1443,tcp,ies-lm
+1444,udp,marcam-lm
+1444,tcp,marcam-lm
+1445,udp,proxima-lm
+1445,tcp,proxima-lm
+1446,udp,ora-lm
+1446,tcp,ora-lm
+1447,udp,apri-lm
+1447,tcp,apri-lm
+1448,udp,oc-lm
+1448,tcp,oc-lm
+1449,udp,peport
+1449,tcp,peport
+1450,udp,dwf
+1450,tcp,dwf
+1451,udp,infoman
+1451,tcp,infoman
+1452,udp,gtegsc-lm
+1452,tcp,gtegsc-lm
+1453,udp,genie-lm
+1453,tcp,genie-lm
+1454,udp,interhdl_elmd
+1454,tcp,interhdl_elmd
+1455,udp,esl-lm
+1455,tcp,esl-lm
+1456,udp,dca
+1456,tcp,dca
+1457,udp,valisys-lm
+1457,tcp,valisys-lm
+1458,udp,nrcabq-lm
+1458,tcp,nrcabq-lm
+1459,udp,proshare1
+1459,tcp,proshare1
+1460,udp,proshare2
+1460,tcp,proshare2
+1461,udp,ibm_wrless_lan
+1461,tcp,ibm_wrless_lan
+1462,udp,world-lm
+1462,tcp,world-lm
+1463,udp,nucleus
+1463,tcp,nucleus
+1464,udp,msl_lmd
+1464,tcp,msl_lmd
+1465,udp,pipes
+1465,tcp,pipes
+1466,udp,oceansoft-lm
+1466,tcp,oceansoft-lm
+1467,udp,csdmbase
+1467,tcp,csdmbase
+1468,udp,csdm
+1468,tcp,csdm
+1469,udp,aal-lm
+1469,tcp,aal-lm
+1470,udp,uaiact
+1470,tcp,uaiact
+1471,udp,csdmbase
+1471,tcp,csdmbase
+1472,udp,csdm
+1472,tcp,csdm
+1473,udp,openmath
+1473,tcp,openmath
+1474,udp,telefinder
+1474,tcp,telefinder
+1475,udp,taligent-lm
+1475,tcp,taligent-lm
+1476,udp,clvm-cfg
+1476,tcp,clvm-cfg
+1477,udp,ms-sna-server
+1477,tcp,ms-sna-server
+1478,udp,ms-sna-base
+1478,tcp,ms-sna-base
+1479,udp,dberegister
+1479,tcp,dberegister
+1480,udp,pacerforum
+1480,tcp,pacerforum
+1481,udp,airs
+1481,tcp,airs
+1482,udp,miteksys-lm
+1482,tcp,miteksys-lm
+1483,udp,afs
+1483,tcp,afs
+1484,udp,confluent
+1484,tcp,confluent
+1485,udp,lansource
+1485,tcp,lansource
+1486,udp,nms_topo_serv
+1486,tcp,nms_topo_serv
+1487,udp,localinfosrvr
+1487,tcp,localinfosrvr
+1488,udp,docstor
+1488,tcp,docstor
+1489,udp,dmdocbroker
+1489,tcp,dmdocbroker
+1490,udp,insitu-conf
+1490,tcp,insitu-conf
+1491,udp,anynetgateway
+1491,tcp,anynetgateway
+1492,udp,stone-design-1
+1492,tcp,stone-design-1
+1493,udp,netmap_lm
+1493,tcp,netmap_lm
+1494,udp,ica
+1494,tcp,ica
+1495,udp,cvc
+1495,tcp,cvc
+1496,udp,liberty-lm
+1496,tcp,liberty-lm
+1497,udp,rfx-lm
+1497,tcp,rfx-lm
+1498,udp,sybase-sqlany
+1498,tcp,sybase-sqlany
+1499,udp,fhc
+1499,tcp,fhc
+1500,udp,vlsi-lm
+1500,tcp,vlsi-lm
+1501,udp,saiscm
+1501,tcp,saiscm
+1502,udp,shivadiscovery
+1502,tcp,shivadiscovery
+1503,udp,imtc-mcs
+1503,tcp,imtc-mcs
+1504,udp,evb-elm
+1504,tcp,evb-elm
+1505,udp,funkproxy
+1505,tcp,funkproxy
+1506,udp,utcd
+1506,tcp,utcd
+1507,udp,symplex
+1507,tcp,symplex
+1508,udp,diagmond
+1508,tcp,diagmond
+1509,udp,robcad-lm
+1509,tcp,robcad-lm
+1510,udp,mvx-lm
+1510,tcp,mvx-lm
+1511,udp,3l-l1
+1511,tcp,3l-l1
+1512,udp,wins
+1512,tcp,wins
+1513,udp,fujitsu-dtc
+1513,tcp,fujitsu-dtc
+1514,udp,fujitsu-dtcns
+1514,tcp,fujitsu-dtcns
+1515,udp,ifor-protocol
+1515,tcp,ifor-protocol
+1516,udp,vpad
+1516,tcp,vpad
+1517,udp,vpac
+1517,tcp,vpac
+1518,udp,vpvd
+1518,tcp,vpvd
+1519,udp,vpvc
+1519,tcp,vpvc
+1520,udp,atm-zip-office
+1520,tcp,atm-zip-office
+1521,udp,ncube-lm
+1521,tcp,ncube-lm
+1522,udp,ricardo-lm
+1522,tcp,ricardo-lm
+1523,udp,cichild-lm
+1523,tcp,cichild-lm
+1524,udp,ingreslock
+1524,tcp,ingreslock
+1525,udp,orasrv
+1525,tcp,orasrv
+1526,udp,pdap-np
+1526,tcp,pdap-np
+1527,udp,tlisrv
+1527,tcp,tlisrv
+1528,udp,mciautoreg
+1528,tcp,mciautoreg
+1529,udp,coauthor
+1529,tcp,coauthor
+1530,udp,rap-service
+1530,tcp,rap-service
+1531,udp,rap-listen
+1531,tcp,rap-listen
+1532,udp,miroconnect
+1532,tcp,miroconnect
+1533,udp,virtual-places
+1533,tcp,virtual-places
+1534,udp,micromuse-lm
+1534,tcp,micromuse-lm
+1535,udp,ampr-info
+1535,tcp,ampr-info
+1536,udp,ampr-inter
+1536,tcp,ampr-inter
+1537,udp,sdsc-lm
+1537,tcp,sdsc-lm
+1538,udp,3ds-lm
+1538,tcp,3ds-lm
+1539,udp,intellistor-lm
+1539,tcp,intellistor-lm
+1540,udp,rds
+1540,tcp,rds
+1541,udp,rds2
+1541,tcp,rds2
+1542,udp,gridgen-elmd
+1542,tcp,gridgen-elmd
+1543,udp,simba-cs
+1543,tcp,simba-cs
+1544,udp,aspeclmd
+1544,tcp,aspeclmd
+1545,udp,vistium-share
+1545,tcp,vistium-share
+1546,udp,abbaccuray
+1546,tcp,abbaccuray
+1547,udp,laplink
+1547,tcp,laplink
+1548,udp,axon-lm
+1548,tcp,axon-lm
+1549,udp,shivasound
+1549,tcp,shivahose
+1550,udp,3m-image-lm
+1550,tcp,3m-image-lm
+1551,udp,hecmtl-db
+1551,tcp,hecmtl-db
+1552,udp,pciarray
+1552,tcp,pciarray
+1553,udp,sna-cs
+1553,tcp,sna-cs
+1554,udp,caci-lm
+1554,tcp,caci-lm
+1555,udp,livelan
+1555,tcp,livelan
+1556,udp,ashwin
+1556,tcp,ashwin
+1557,udp,arbortext-lm
+1557,tcp,arbortext-lm
+1558,udp,xingmpeg
+1558,tcp,xingmpeg
+1559,udp,web2host
+1559,tcp,web2host
+1560,udp,asci-val
+1560,tcp,asci-val
+1561,udp,facilityview
+1561,tcp,facilityview
+1562,udp,pconnectmgr
+1562,tcp,pconnectmgr
+1563,udp,cadabra-lm
+1563,tcp,cadabra-lm
+1564,udp,pay-per-view
+1564,tcp,pay-per-view
+1565,udp,winddlb
+1565,tcp,winddlb
+1566,udp,corelvideo
+1566,tcp,corelvideo
+1567,udp,jlicelmd
+1567,tcp,jlicelmd
+1568,udp,tsspmap
+1568,tcp,tsspmap
+1569,udp,ets
+1569,tcp,ets
+1570,udp,orbixd
+1570,tcp,orbixd
+1571,udp,rdb-dbs-disp
+1571,tcp,rdb-dbs-disp
+1572,udp,chip-lm
+1572,tcp,chip-lm
+1573,udp,itscomm-ns
+1573,tcp,itscomm-ns
+1574,udp,mvel-lm
+1574,tcp,mvel-lm
+1575,udp,oraclenames
+1575,tcp,oraclenames
+1576,udp,moldflow-lm
+1576,tcp,moldflow-lm
+1577,udp,hypercube-lm
+1577,tcp,hypercube-lm
+1578,udp,jacobus-lm
+1578,tcp,jacobus-lm
+1579,udp,ioc-sea-lm
+1579,tcp,ioc-sea-lm
+1580,udp,tn-tl-r2
+1580,tcp,tn-tl-r1
+1581,udp,mil-2045-47001
+1581,tcp,mil-2045-47001
+1582,udp,msims
+1582,tcp,msims
+1583,udp,simbaexpress
+1583,tcp,simbaexpress
+1584,udp,tn-tl-fd2
+1584,tcp,tn-tl-fd2
+1585,udp,intv
+1585,tcp,intv
+1586,udp,ibm-abtact
+1586,tcp,ibm-abtact
+1587,udp,pra_elmd
+1587,tcp,pra_elmd
+1588,udp,triquest-lm
+1588,tcp,triquest-lm
+1589,udp,vqp
+1589,tcp,vqp
+1590,udp,gemini-lm
+1590,tcp,gemini-lm
+1591,udp,ncpm-pm
+1591,tcp,ncpm-pm
+1592,udp,commonspace
+1592,tcp,commonspace
+1593,udp,mainsoft-lm
+1593,tcp,mainsoft-lm
+1594,udp,sixtrak
+1594,tcp,sixtrak
+1595,udp,radio
+1595,tcp,radio
+1596,udp,radio-bc
+1596,tcp,radio-sm
+1597,udp,orbplus-iiop
+1597,tcp,orbplus-iiop
+1598,udp,picknfs
+1598,tcp,picknfs
+1599,udp,simbaservices
+1599,tcp,simbaservices
+1600,udp,issd
+1600,tcp,issd
+1601,udp,aas
+1601,tcp,aas
+1602,udp,inspect
+1602,tcp,inspect
+1603,udp,picodbc
+1603,tcp,picodbc
+1604,udp,icabrowser
+1604,tcp,icabrowser
+1605,udp,slp
+1605,tcp,slp
+1606,udp,slm-api
+1606,tcp,slm-api
+1607,udp,stt
+1607,tcp,stt
+1608,udp,smart-lm
+1608,tcp,smart-lm
+1609,udp,isysg-lm
+1609,tcp,isysg-lm
+1610,udp,taurus-wh
+1610,tcp,taurus-wh
+1611,udp,ill
+1611,tcp,ill
+1612,udp,netbill-trans
+1612,tcp,netbill-trans
+1613,udp,netbill-keyrep
+1613,tcp,netbill-keyrep
+1614,udp,netbill-cred
+1614,tcp,netbill-cred
+1615,udp,netbill-auth
+1615,tcp,netbill-auth
+1616,udp,netbill-prod
+1616,tcp,netbill-prod
+1617,udp,nimrod-agent
+1617,tcp,nimrod-agent
+1618,udp,skytelnet
+1618,tcp,skytelnet
+1619,udp,xs-openstorage
+1619,tcp,xs-openstorage
+1620,udp,faxportwinport
+1620,tcp,faxportwinport
+1621,udp,softdataphone
+1621,tcp,softdataphone
+1622,udp,ontime
+1622,tcp,ontime
+1623,udp,jaleosnd
+1623,tcp,jaleosnd
+1624,udp,udp-sr-port
+1624,tcp,udp-sr-port
+1625,udp,svs-omagent
+1625,tcp,svs-omagent
+1626,udp,shockwave
+1626,tcp,shockwave
+1627,udp,t128-gateway
+1627,tcp,t128-gateway
+1628,udp,lontalk-norm
+1628,tcp,lontalk-norm
+1629,udp,lontalk-urgnt
+1629,tcp,lontalk-urgnt
+1630,udp,oraclenet8cman
+1630,tcp,oraclenet8cman
+1631,udp,visitview
+1631,tcp,visitview
+1632,udp,pammratc
+1632,tcp,pammratc
+1633,udp,pammrpc
+1633,tcp,pammrpc
+1634,udp,loaprobe
+1634,tcp,loaprobe
+1635,udp,edb-server1
+1635,tcp,edb-server1
+1636,udp,cncp
+1636,tcp,cncp
+1637,udp,cnap
+1637,tcp,cnap
+1638,udp,cnip
+1638,tcp,cnip
+1639,udp,cert-initiator
+1639,tcp,cert-initiator
+1640,udp,cert-responder
+1640,tcp,cert-responder
+1641,udp,invision
+1641,tcp,invision
+1642,udp,isis-am
+1642,tcp,isis-am
+1643,udp,isis-ambc
+1643,tcp,isis-ambc
+1644,tcp,saiseh
+1645,udp,sightline
+1645,tcp,sightline
+1646,udp,sa-msg-port
+1646,tcp,sa-msg-port
+1647,udp,rsap
+1647,tcp,rsap
+1648,udp,concurrent-lm
+1648,tcp,concurrent-lm
+1649,udp,kermit
+1649,tcp,kermit
+1650,udp,nkd
+1650,tcp,nkd
+1651,udp,shiva_confsrvr
+1651,tcp,shiva_confsrvr
+1652,udp,xnmp
+1652,tcp,xnmp
+1653,udp,alphatech-lm
+1653,tcp,alphatech-lm
+1654,udp,stargatealerts
+1654,tcp,stargatealerts
+1655,udp,dec-mbadmin
+1655,tcp,dec-mbadmin
+1656,udp,dec-mbadmin-h
+1656,tcp,dec-mbadmin-h
+1657,udp,fujitsu-mmpdc
+1657,tcp,fujitsu-mmpdc
+1658,udp,sixnetudr
+1658,tcp,sixnetudr
+1659,udp,sg-lm
+1659,tcp,sg-lm
+1660,udp,skip-mc-gikreq
+1660,tcp,skip-mc-gikreq
+1661,udp,netview-aix-1
+1661,tcp,netview-aix-1
+1662,udp,netview-aix-2
+1662,tcp,netview-aix-2
+1663,udp,netview-aix-3
+1663,tcp,netview-aix-3
+1664,udp,netview-aix-4
+1664,tcp,netview-aix-4
+1665,udp,netview-aix-5
+1665,tcp,netview-aix-5
+1666,udp,netview-aix-6
+1666,tcp,netview-aix-6
+1667,udp,netview-aix-7
+1667,tcp,netview-aix-7
+1668,udp,netview-aix-8
+1668,tcp,netview-aix-8
+1669,udp,netview-aix-9
+1669,tcp,netview-aix-9
+1670,udp,netview-aix-10
+1670,tcp,netview-aix-10
+1671,udp,netview-aix-11
+1671,tcp,netview-aix-11
+1672,udp,netview-aix-12
+1672,tcp,netview-aix-12
+1673,udp,proshare-mc-1
+1673,tcp,proshare-mc-1
+1674,udp,proshare-mc-2
+1674,tcp,proshare-mc-2
+1675,udp,pdp
+1675,tcp,pdp
+1676,udp,netcomm2
+1676,tcp,netcomm1
+1677,udp,groupwise
+1677,tcp,groupwise
+1678,udp,prolink
+1678,tcp,prolink
+1679,udp,darcorp-lm
+1679,tcp,darcorp-lm
+1680,udp,microcom-sbp
+1680,tcp,microcom-sbp
+1681,udp,sd-elmd
+1681,tcp,sd-elmd
+1682,udp,lanyon-lantern
+1682,tcp,lanyon-lantern
+1683,udp,ncpm-hip
+1683,tcp,ncpm-hip
+1684,udp,snaresecure
+1684,tcp,snaresecure
+1685,udp,n2nremote
+1685,tcp,n2nremote
+1686,udp,cvmon
+1686,tcp,cvmon
+1687,udp,nsjtp-ctrl
+1687,tcp,nsjtp-ctrl
+1688,udp,nsjtp-data
+1688,tcp,nsjtp-data
+1689,udp,firefox
+1689,tcp,firefox
+1690,udp,ng-umds
+1690,tcp,ng-umds
+1691,udp,empire-empuma
+1691,tcp,empire-empuma
+1692,udp,sstsys-lm
+1692,tcp,sstsys-lm
+1693,udp,rrirtr
+1693,tcp,rrirtr
+1694,udp,rrimwm
+1694,tcp,rrimwm
+1695,udp,rrilwm
+1695,tcp,rrilwm
+1696,udp,rrifmm
+1696,tcp,rrifmm
+1697,udp,rrisat
+1697,tcp,rrisat
+1698,udp,rsvp-encap-1
+1698,tcp,rsvp-encap-1
+1699,udp,rsvp-encap-2
+1699,tcp,rsvp-encap-2
+1700,udp,mps-raft
+1700,tcp,mps-raft
+1701,udp,l2f
+1701,tcp,l2f
+1702,udp,deskshare
+1702,tcp,deskshare
+1703,udp,hb-engine
+1703,tcp,hb-engine
+1704,udp,bcs-broker
+1704,tcp,bcs-broker
+1705,udp,slingshot
+1705,tcp,slingshot
+1706,udp,jetform
+1706,tcp,jetform
+1707,udp,vdmplay
+1707,tcp,vdmplay
+1708,udp,gat-lmd
+1708,tcp,gat-lmd
+1709,udp,centra
+1709,tcp,centra
+1710,udp,impera
+1710,tcp,impera
+1711,udp,pptconference
+1711,tcp,pptconference
+1712,udp,registrar
+1712,tcp,registrar
+1713,udp,conferencetalk
+1713,tcp,conferencetalk
+1714,udp,sesi-lm
+1714,tcp,sesi-lm
+1715,udp,houdini-lm
+1715,tcp,houdini-lm
+1716,udp,xmsg
+1716,tcp,xmsg
+1717,udp,fj-hdnet
+1717,tcp,fj-hdnet
+1718,udp,h323gatedisc
+1718,tcp,h323gatedisc
+1719,udp,h323gatestat
+1719,tcp,h323gatestat
+1720,udp,h323hostcall
+1720,tcp,h323hostcall
+1721,udp,caicci
+1721,tcp,caicci
+1722,udp,hks-lm
+1722,tcp,hks-lm
+1723,udp,pptp
+1723,tcp,pptp
+1724,udp,csbphonemaster
+1724,tcp,csbphonemaster
+1725,udp,iden-ralp
+1725,tcp,iden-ralp
+1726,udp,iberiagames
+1726,tcp,iberiagames
+1727,udp,winddx
+1727,tcp,winddx
+1728,udp,telindus
+1728,tcp,telindus
+1729,udp,citynl
+1729,tcp,citynl
+1730,udp,roketz
+1730,tcp,roketz
+1731,udp,msiccp
+1731,tcp,msiccp
+1732,udp,proxim
+1732,tcp,proxim
+1733,udp,siipat
+1733,tcp,siipat
+1734,udp,cambertx-lm
+1734,tcp,cambertx-lm
+1735,udp,privatechat
+1735,tcp,privatechat
+1736,udp,street-stream
+1736,tcp,street-stream
+1737,udp,ultimad
+1737,tcp,ultimad
+1738,udp,gamegen1
+1738,tcp,gamegen1
+1739,udp,webaccess
+1739,tcp,webaccess
+1740,udp,encore
+1740,tcp,encore
+1741,udp,cisco-net-mgmt
+1741,tcp,cisco-net-mgmt
+1742,udp,3Com-nsd
+1742,tcp,3Com-nsd
+1743,udp,cinegrfx-lm
+1743,tcp,cinegrfx-lm
+1744,udp,ncpm-ft
+1744,tcp,ncpm-ft
+1745,udp,remote-winsock
+1745,tcp,remote-winsock
+1746,udp,ftrapid-1
+1746,tcp,ftrapid-1
+1747,udp,ftrapid-2
+1747,tcp,ftrapid-2
+1748,udp,oracle-em1
+1748,tcp,oracle-em1
+1749,udp,aspen-services
+1749,tcp,aspen-services
+1750,udp,sslp
+1750,tcp,sslp
+1751,udp,swiftnet
+1751,tcp,swiftnet
+1752,udp,lofr-lm
+1752,tcp,lofr-lm
+1753,udp,translogic-lm
+1753,tcp,translogic-lm
+1754,udp,oracle-em2
+1754,tcp,oracle-em2
+1755,udp,ms-streaming
+1755,tcp,ms-streaming
+1756,udp,capfast-lmd
+1756,tcp,capfast-lmd
+1757,udp,cnhrp
+1757,tcp,cnhrp
+1758,udp,tftp-mcast
+1758,tcp,tftp-mcast
+1759,udp,spss-lm
+1759,tcp,spss-lm
+1760,udp,www-ldap-gw
+1760,tcp,www-ldap-gw
+1761,udp,cft-0
+1761,tcp,cft-0
+1762,udp,cft-1
+1762,tcp,cft-1
+1763,udp,cft-2
+1763,tcp,cft-2
+1764,udp,cft-3
+1764,tcp,cft-3
+1765,udp,cft-4
+1765,tcp,cft-4
+1766,udp,cft-5
+1766,tcp,cft-5
+1767,udp,cft-6
+1767,tcp,cft-6
+1768,udp,cft-7
+1768,tcp,cft-7
+1769,udp,bmc-net-adm
+1769,tcp,bmc-net-adm
+1770,udp,bmc-net-svc
+1770,tcp,bmc-net-svc
+1771,udp,vaultbase
+1771,tcp,vaultbase
+1772,udp,essweb-gw
+1772,tcp,essweb-gw
+1773,udp,kmscontrol
+1773,tcp,kmscontrol
+1774,udp,global-dtserv
+1774,tcp,global-dtserv
+1776,udp,femis
+1776,tcp,femis
+1777,udp,powerguardian
+1777,tcp,powerguardian
+1778,udp,prodigy-intrnet
+1778,tcp,prodigy-intrnet
+1779,udp,pharmasoft
+1779,tcp,pharmasoft
+1780,udp,dpkeyserv
+1780,tcp,dpkeyserv
+1781,udp,answersoft-lm
+1781,tcp,answersoft-lm
+1782,udp,hp-hcip
+1782,tcp,hp-hcip
+1784,udp,finle-lm
+1784,tcp,finle-lm
+1785,udp,windlm
+1785,tcp,windlm
+1786,udp,funk-logger
+1786,tcp,funk-logger
+1787,udp,funk-license
+1787,tcp,funk-license
+1788,udp,psmond
+1788,tcp,psmond
+1789,udp,hello
+1789,tcp,hello
+1790,udp,nmsp
+1790,tcp,nmsp
+1791,udp,ea1
+1791,tcp,ea1
+1792,udp,ibm-dt-2
+1792,tcp,ibm-dt-2
+1793,udp,rsc-robot
+1793,tcp,rsc-robot
+1794,udp,cera-bcm
+1794,tcp,cera-bcm
+1795,udp,dpi-proxy
+1795,tcp,dpi-proxy
+1796,udp,vocaltec-admin
+1796,tcp,vocaltec-admin
+1797,udp,uma
+1797,tcp,uma
+1798,udp,etp
+1798,tcp,etp
+1799,udp,netrisk
+1799,tcp,netrisk
+1800,udp,ansys-lm
+1800,tcp,ansys-lm
+1801,udp,msmq
+1801,tcp,msmq
+1802,udp,concomp1
+1802,tcp,concomp1
+1803,udp,hp-hcip-gwy
+1803,tcp,hp-hcip-gwy
+1804,udp,enl
+1804,tcp,enl
+1805,udp,enl-name
+1805,tcp,enl-name
+1806,udp,musiconline
+1806,tcp,musiconline
+1807,udp,fhsp
+1807,tcp,fhsp
+1808,udp,oracle-vp2
+1808,tcp,oracle-vp2
+1809,udp,oracle-vp1
+1809,tcp,oracle-vp1
+1810,udp,jerand-lm
+1810,tcp,jerand-lm
+1811,udp,scientia-sdb
+1811,tcp,scientia-sdb
+1812,udp,radius
+1812,tcp,radius
+1813,udp,radius-acct
+1813,tcp,radius-acct
+1814,udp,tdp-suite
+1814,tcp,tdp-suite
+1815,udp,mmpft
+1815,tcp,mmpft
+1816,udp,harp
+1816,tcp,harp
+1817,udp,rkb-oscs
+1817,tcp,rkb-oscs
+1818,udp,etftp
+1818,tcp,etftp
+1819,udp,plato-lm
+1819,tcp,plato-lm
+1820,udp,mcagent
+1820,tcp,mcagent
+1821,udp,donnyworld
+1821,tcp,donnyworld
+1822,udp,es-elmd
+1822,tcp,es-elmd
+1823,udp,unisys-lm
+1823,tcp,unisys-lm
+1824,udp,metrics-pas
+1824,tcp,metrics-pas
+1825,udp,direcpc-video
+1825,tcp,direcpc-video
+1826,udp,ardt
+1826,tcp,ardt
+1827,udp,asi
+1827,tcp,asi
+1828,udp,itm-mcell-u
+1828,tcp,itm-mcell-u
+1829,udp,optika-emedia
+1829,tcp,optika-emedia
+1830,udp,net8-cman
+1830,tcp,net8-cman
+1831,udp,myrtle
+1831,tcp,myrtle
+1832,udp,tht-treasure
+1832,tcp,tht-treasure
+1833,udp,udpradio
+1833,tcp,udpradio
+1834,udp,ardusuni
+1834,tcp,ardusuni
+1835,udp,ardusmul
+1835,tcp,ardusmul
+1836,udp,ste-smsc
+1836,tcp,ste-smsc
+1837,udp,csoft1
+1837,tcp,csoft1
+1838,udp,talnet
+1838,tcp,talnet
+1839,udp,netopia-vo1
+1839,tcp,netopia-vo1
+1840,udp,netopia-vo2
+1840,tcp,netopia-vo2
+1841,udp,netopia-vo3
+1841,tcp,netopia-vo3
+1842,udp,netopia-vo4
+1842,tcp,netopia-vo4
+1843,udp,netopia-vo5
+1843,tcp,netopia-vo5
+1844,udp,direcpc-dll
+1844,tcp,direcpc-dll
+1845,udp,altalink
+1845,tcp,altalink
+1846,udp,tunstall-pnc
+1846,tcp,tunstall-pnc
+1847,udp,slp-notify
+1847,tcp,slp-notify
+1848,udp,fjdocdist
+1848,tcp,fjdocdist
+1849,udp,alpha-sms
+1849,tcp,alpha-sms
+1850,udp,gsi
+1850,tcp,gsi
+1851,udp,ctcd
+1851,tcp,ctcd
+1852,udp,virtual-time
+1852,tcp,virtual-time
+1853,udp,vids-avtp
+1853,tcp,vids-avtp
+1854,udp,buddy-draw
+1854,tcp,buddy-draw
+1855,udp,fiorano-rtrsvc
+1855,tcp,fiorano-rtrsvc
+1856,udp,fiorano-msgsvc
+1856,tcp,fiorano-msgsvc
+1857,udp,datacaptor
+1857,tcp,datacaptor
+1858,udp,privateark
+1858,tcp,privateark
+1859,udp,gammafetchsvr
+1859,tcp,gammafetchsvr
+1860,udp,sunscalar-svc
+1860,tcp,sunscalar-svc
+1861,udp,lecroy-vicp
+1861,tcp,lecroy-vicp
+1862,udp,techra-server
+1862,tcp,techra-server
+1863,udp,msnp
+1863,tcp,msnp
+1864,udp,paradym-31port
+1864,tcp,paradym-31port
+1865,udp,entp
+1865,tcp,entp
+1866,udp,swrmi
+1866,tcp,swrmi
+1867,udp,udrive
+1867,tcp,udrive
+1868,udp,viziblebrowser
+1868,tcp,viziblebrowser
+1869,udp,yestrader
+1869,tcp,yestrader
+1870,udp,sunscalar-dns
+1870,tcp,sunscalar-dns
+1871,udp,canocentral0
+1871,tcp,canocentral0
+1872,udp,canocentral1
+1872,tcp,canocentral1
+1873,udp,fjmpjps
+1873,tcp,fjmpjps
+1874,udp,fjswapsnp
+1874,tcp,fjswapsnp
+1875,udp,westell-stats
+1875,tcp,westell-stats
+1876,udp,ewcappsrv
+1876,tcp,ewcappsrv
+1877,udp,hp-webqosdb
+1877,tcp,hp-webqosdb
+1878,udp,drmsmc
+1878,tcp,drmsmc
+1879,udp,nettgain-nms
+1879,tcp,nettgain-nms
+1880,udp,vsat-control
+1880,tcp,vsat-control
+1881,udp,ibm-mqseries2
+1881,tcp,ibm-mqseries2
+1882,udp,ecsqdmn
+1882,tcp,ecsqdmn
+1883,udp,ibm-mqisdp
+1883,tcp,ibm-mqisdp
+1884,udp,idmaps
+1884,tcp,idmaps
+1885,udp,vrtstrapserver
+1885,tcp,vrtstrapserver
+1886,udp,leoip
+1886,tcp,leoip
+1887,udp,filex-lport
+1887,tcp,filex-lport
+1888,udp,ncconfig
+1888,tcp,ncconfig
+1889,udp,unify-adapter
+1889,tcp,unify-adapter
+1890,udp,wilkenlistener
+1890,tcp,wilkenlistener
+1891,udp,childkey-notif
+1891,tcp,childkey-notif
+1892,udp,childkey-ctrl
+1892,tcp,childkey-ctrl
+1893,udp,elad
+1893,tcp,elad
+1894,udp,o2server-port
+1894,tcp,o2server-port
+1896,udp,b-novative-ls
+1896,tcp,b-novative-ls
+1897,udp,metaagent
+1897,tcp,metaagent
+1898,udp,cymtec-port
+1898,tcp,cymtec-port
+1899,udp,mc2studios
+1899,tcp,mc2studios
+1900,udp,ssdp
+1900,tcp,ssdp
+1901,udp,fjicl-tep-a
+1901,tcp,fjicl-tep-a
+1902,udp,fjicl-tep-b
+1902,tcp,fjicl-tep-b
+1903,udp,linkname
+1903,tcp,linkname
+1904,udp,fjicl-tep-c
+1904,tcp,fjicl-tep-c
+1905,udp,sugp
+1905,tcp,sugp
+1906,udp,tpmd
+1906,tcp,tpmd
+1907,udp,intrastar
+1907,tcp,intrastar
+1908,udp,dawn
+1908,tcp,dawn
+1909,udp,global-wlink
+1909,tcp,global-wlink
+1910,udp,ultrabac
+1910,tcp,ultrabac
+1911,udp,mtp
+1911,tcp,mtp
+1912,udp,rhp-iibp
+1912,tcp,rhp-iibp
+1913,udp,armadp
+1913,tcp,armadp
+1914,udp,elm-momentum
+1914,tcp,elm-momentum
+1915,udp,facelink
+1915,tcp,facelink
+1916,udp,persona
+1916,tcp,persona
+1917,udp,noagent
+1917,tcp,noagent
+1918,udp,can-nds
+1918,tcp,can-nds
+1919,udp,can-dch
+1919,tcp,can-dch
+1920,udp,can-ferret
+1920,tcp,can-ferret
+1921,udp,noadmin
+1921,tcp,noadmin
+1922,udp,tapestry
+1922,tcp,tapestry
+1923,udp,spice
+1923,tcp,spice
+1924,udp,xiip
+1924,tcp,xiip
+1925,udp,discovery-port
+1925,tcp,discovery-port
+1926,udp,egs
+1926,tcp,egs
+1927,udp,videte-cipc
+1927,tcp,videte-cipc
+1928,udp,emsd-port
+1928,tcp,emsd-port
+1929,udp,bandwiz-system
+1929,tcp,bandwiz-system
+1930,udp,driveappserver
+1930,tcp,driveappserver
+1931,udp,amdsched
+1931,tcp,amdsched
+1932,udp,ctt-broker
+1932,tcp,ctt-broker
+1933,udp,xmapi
+1933,tcp,xmapi
+1934,udp,xaapi
+1934,tcp,xaapi
+1935,udp,macromedia-fcs
+1935,tcp,macromedia-fcs
+1936,udp,jetcmeserver
+1936,tcp,jetcmeserver
+1937,udp,jwserver
+1937,tcp,jwserver
+1938,udp,jwclient
+1938,tcp,jwclient
+1939,udp,jvserver
+1939,tcp,jvserver
+1940,udp,jvclient
+1940,tcp,jvclient
+1941,udp,dic-aida
+1941,tcp,dic-aida
+1942,udp,res
+1942,tcp,res
+1943,udp,beeyond-media
+1943,tcp,beeyond-media
+1944,udp,close-combat
+1944,tcp,close-combat
+1945,udp,dialogic-elmd
+1945,tcp,dialogic-elmd
+1946,udp,tekpls
+1946,tcp,tekpls
+1947,udp,hlserver
+1947,tcp,hlserver
+1948,udp,eye2eye
+1948,tcp,eye2eye
+1949,udp,ismaeasdaqlive
+1949,tcp,ismaeasdaqlive
+1950,udp,ismaeasdaqtest
+1950,tcp,ismaeasdaqtest
+1951,udp,bcs-lmserver
+1951,tcp,bcs-lmserver
+1952,udp,mpnjsc
+1952,tcp,mpnjsc
+1953,udp,rapidbase
+1953,tcp,rapidbase
+1954,udp,abr-basic
+1954,tcp,abr-basic
+1955,udp,abr-secure
+1955,tcp,abr-secure
+1956,udp,vrtl-vmf-ds
+1956,tcp,vrtl-vmf-ds
+1957,udp,unix-status
+1957,tcp,unix-status
+1958,udp,dxadmind
+1958,tcp,dxadmind
+1959,udp,simp-all
+1959,tcp,simp-all
+1960,udp,nasmanager
+1960,tcp,nasmanager
+1961,udp,bts-appserver
+1961,tcp,bts-appserver
+1962,udp,biap-mp
+1962,tcp,biap-mp
+1963,udp,webmachine
+1963,tcp,webmachine
+1964,udp,solid-e-engine
+1964,tcp,solid-e-engine
+1965,udp,tivoli-npm
+1965,tcp,tivoli-npm
+1966,udp,slush
+1966,tcp,slush
+1967,udp,sns-quote
+1967,tcp,sns-quote
+1968,udp,lipsinc
+1968,tcp,lipsinc
+1969,udp,lipsinc1
+1969,tcp,lipsinc1
+1970,udp,netop-rc
+1970,tcp,netop-rc
+1971,udp,netop-school
+1971,tcp,netop-school
+1972,udp,intersys-cache
+1972,tcp,intersys-cache
+1973,udp,dlsrap
+1973,tcp,dlsrap
+1974,udp,drp
+1974,tcp,drp
+1975,udp,tcoflashagent
+1975,tcp,tcoflashagent
+1976,udp,tcoregagent
+1976,tcp,tcoregagent
+1977,udp,tcoaddressbook
+1977,tcp,tcoaddressbook
+1978,udp,unisql
+1978,tcp,unisql
+1979,udp,unisql-java
+1979,tcp,unisql-java
+1980,udp,pearldoc-xact
+1980,tcp,pearldoc-xact
+1981,udp,p2pq
+1981,tcp,p2pq
+1982,udp,estamp
+1982,tcp,estamp
+1983,udp,lhtp
+1983,tcp,lhtp
+1984,udp,bb
+1984,tcp,bb
+1985,udp,hsrp
+1985,tcp,hsrp
+1986,udp,licensedaemon
+1986,tcp,licensedaemon
+1987,udp,tr-rsrb-p1
+1987,tcp,tr-rsrb-p1
+1988,udp,tr-rsrb-p2
+1988,tcp,tr-rsrb-p2
+1989,udp,tr-rsrb-p3
+1989,tcp,tr-rsrb-p3
+1989,udp,mshnet
+1989,tcp,mshnet
+1990,udp,stun-p1
+1990,tcp,stun-p1
+1991,udp,stun-p2
+1991,tcp,stun-p2
+1992,udp,stun-p3
+1992,tcp,stun-p3
+1992,udp,ipsendmsg
+1992,tcp,ipsendmsg
+1993,udp,snmp-tcp-port
+1993,tcp,snmp-tcp-port
+1994,udp,stun-port
+1994,tcp,stun-port
+1995,udp,perf-port
+1995,tcp,perf-port
+1996,udp,tr-rsrb-port
+1996,tcp,tr-rsrb-port
+1997,udp,gdp-port
+1997,tcp,gdp-port
+1998,udp,x25-svc-port
+1998,tcp,x25-svc-port
+1999,udp,tcp-id-port
+1999,tcp,tcp-id-port
+2000,udp,callbook
+2000,tcp,callbook
+2001,udp,wizard
+2001,tcp,dc
+2002,udp,globe
+2002,tcp,globe
+2004,udp,emce
+2004,tcp,mailbox
+2005,udp,oracle
+2005,tcp,berknet
+2006,udp,raid-cc
+2006,tcp,invokator
+2007,udp,raid-am
+2007,tcp,dectalk
+2008,udp,terminaldb
+2008,tcp,conf
+2009,udp,whosockami
+2009,tcp,news
+2010,udp,pipe_server
+2010,tcp,search
+2011,udp,servserv
+2011,tcp,raid-cc
+2012,udp,raid-ac
+2012,tcp,ttyinfo
+2013,udp,raid-cd
+2013,tcp,raid-am
+2014,udp,raid-sf
+2014,tcp,troff
+2015,udp,raid-cs
+2015,tcp,cypress
+2016,udp,bootserver
+2016,tcp,bootserver
+2017,udp,bootclient
+2017,tcp,cypress-stat
+2018,udp,rellpack
+2018,tcp,terminaldb
+2019,udp,about
+2019,tcp,whosockami
+2020,udp,xinupageserver
+2020,tcp,xinupageserver
+2021,udp,xinuexpansion1
+2021,tcp,servexec
+2022,udp,xinuexpansion2
+2022,tcp,down
+2023,udp,xinuexpansion3
+2023,tcp,xinuexpansion3
+2024,udp,xinuexpansion4
+2024,tcp,xinuexpansion4
+2025,udp,xribs
+2025,tcp,ellpack
+2026,udp,scrabble
+2026,tcp,scrabble
+2027,udp,shadowserver
+2027,tcp,shadowserver
+2028,udp,submitserver
+2028,tcp,submitserver
+2029,tcp,hsrpv6
+2029,udp,hsrpv6
+2030,udp,device2
+2030,tcp,device2
+2031,tcp,mobrien-chat
+2031,udp,mobrien-chat
+2032,udp,blackboard
+2032,tcp,blackboard
+2033,udp,glogger
+2033,tcp,glogger
+2034,udp,scoremgr
+2034,tcp,scoremgr
+2035,udp,imsldoc
+2035,tcp,imsldoc
+2036,tcp,e-dpnet
+2036,udp,e-dpnet
+2037,udp,p2plus
+2037,tcp,p2plus
+2038,udp,objectmanager
+2038,tcp,objectmanager
+2039,tcp,prizma
+2039,udp,prizma
+2040,udp,lam
+2040,tcp,lam
+2041,udp,interbase
+2041,tcp,interbase
+2042,udp,isis
+2042,tcp,isis
+2043,udp,isis-bcast
+2043,tcp,isis-bcast
+2044,udp,rimsl
+2044,tcp,rimsl
+2045,udp,cdfunc
+2045,tcp,cdfunc
+2046,udp,sdfunc
+2046,tcp,sdfunc
+2047,udp,dls
+2047,tcp,dls
+2048,udp,dls-monitor
+2048,tcp,dls-monitor
+2049,tcp,nfsd
+2049,udp,nfsd
+2050,udp,av-emb-config
+2050,tcp,av-emb-config
+2051,udp,epnsdp
+2051,tcp,epnsdp
+2052,udp,clearvisn
+2052,tcp,clearvisn
+2053,udp,lot105-ds-upd
+2053,tcp,lot105-ds-upd
+2054,udp,weblogin
+2054,tcp,weblogin
+2055,udp,iop
+2055,tcp,iop
+2056,udp,omnisky
+2056,tcp,omnisky
+2057,udp,rich-cp
+2057,tcp,rich-cp
+2058,udp,newwavesearch
+2058,tcp,newwavesearch
+2059,udp,bmc-messaging
+2059,tcp,bmc-messaging
+2060,udp,teleniumdaemon
+2060,tcp,teleniumdaemon
+2061,udp,netmount
+2061,tcp,netmount
+2062,udp,icg-swp
+2062,tcp,icg-swp
+2063,udp,icg-bridge
+2063,tcp,icg-bridge
+2064,udp,icg-iprelay
+2064,tcp,icg-iprelay
+2065,udp,dlsrpn
+2065,tcp,dlsrpn
+2066,tcp,aura
+2066,udp,aura
+2067,udp,dlswpn
+2067,tcp,dlswpn
+2068,udp,avauthsrvprtcl
+2068,tcp,avauthsrvprtcl
+2069,udp,event-port
+2069,tcp,event-port
+2070,udp,ah-esp-encap
+2070,tcp,ah-esp-encap
+2071,udp,acp-port
+2071,tcp,acp-port
+2072,udp,msync
+2072,tcp,msync
+2073,udp,gxs-data-port
+2073,tcp,gxs-data-port
+2074,udp,vrtl-vmf-sa
+2074,tcp,vrtl-vmf-sa
+2075,udp,newlixengine
+2075,tcp,newlixengine
+2076,udp,newlixconfig
+2076,tcp,newlixconfig
+2077,udp,trellisagt
+2077,tcp,trellisagt
+2078,udp,trellissvr
+2078,tcp,trellissvr
+2079,udp,idware-router
+2079,tcp,idware-router
+2080,udp,autodesk-nlm
+2080,tcp,autodesk-nlm
+2081,udp,kme-trap-port
+2081,tcp,kme-trap-port
+2082,udp,infowave
+2082,tcp,infowave
+2083,tcp,radsec
+2083,udp,radsec
+2084,tcp,sunclustergeo
+2084,udp,sunclustergeo
+2085,tcp,ada-cip
+2085,udp,ada-cip
+2086,udp,gnunet
+2086,tcp,gnunet
+2087,udp,eli
+2087,tcp,eli
+2088,tcp,ip-blf
+2088,udp,ip-blf
+2089,udp,sep
+2089,tcp,sep
+2090,udp,lrp
+2090,tcp,lrp
+2091,udp,prp
+2091,tcp,prp
+2092,udp,descent3
+2092,tcp,descent3
+2093,udp,nbx-cc
+2093,tcp,nbx-cc
+2094,udp,nbx-au
+2094,tcp,nbx-au
+2095,udp,nbx-ser
+2095,tcp,nbx-ser
+2096,udp,nbx-dir
+2096,tcp,nbx-dir
+2097,udp,jetformpreview
+2097,tcp,jetformpreview
+2098,udp,dialog-port
+2098,tcp,dialog-port
+2099,udp,h2250-annex-g
+2099,tcp,h2250-annex-g
+2100,udp,amiganetfs
+2100,tcp,amiganetfs
+2101,udp,rtcm-sc104
+2101,tcp,rtcm-sc104
+2102,udp,zephyr-srv
+2102,tcp,zephyr-srv
+2103,udp,zephyr-clt
+2103,tcp,zephyr-clt
+2104,udp,zephyr-hm
+2104,tcp,zephyr-hm
+2105,udp,minipay
+2105,tcp,minipay
+2106,udp,mzap
+2106,tcp,mzap
+2107,udp,bintec-admin
+2107,tcp,bintec-admin
+2108,udp,comcam
+2108,tcp,comcam
+2109,udp,ergolight
+2109,tcp,ergolight
+2110,udp,umsp
+2110,tcp,umsp
+2111,udp,dsatp
+2111,tcp,dsatp
+2112,udp,idonix-metanet
+2112,tcp,idonix-metanet
+2113,udp,hsl-storm
+2113,tcp,hsl-storm
+2114,udp,newheights
+2114,tcp,newheights
+2115,udp,kdm
+2115,tcp,kdm
+2116,udp,ccowcmr
+2116,tcp,ccowcmr
+2117,udp,mentaclient
+2117,tcp,mentaclient
+2118,udp,mentaserver
+2118,tcp,mentaserver
+2119,udp,gsigatekeeper
+2119,tcp,gsigatekeeper
+2120,udp,qencp
+2120,tcp,qencp
+2121,udp,scientia-ssdb
+2121,tcp,scientia-ssdb
+2122,udp,caupc-remote
+2122,tcp,caupc-remote
+2123,udp,gtp-control
+2123,tcp,gtp-control
+2124,udp,elatelink
+2124,tcp,elatelink
+2125,udp,lockstep
+2125,tcp,lockstep
+2126,udp,pktcable-cops
+2126,tcp,pktcable-cops
+2127,udp,index-pc-wb
+2127,tcp,index-pc-wb
+2128,udp,net-steward
+2128,tcp,net-steward
+2129,udp,cs-live
+2129,tcp,cs-live
+2130,udp,swc-xds
+2130,tcp,swc-xds
+2131,udp,avantageb2b
+2131,tcp,avantageb2b
+2132,udp,avail-epmap
+2132,tcp,avail-epmap
+2133,udp,zymed-zpp
+2133,tcp,zymed-zpp
+2134,udp,avenue
+2134,tcp,avenue
+2135,udp,gris
+2135,tcp,gris
+2136,udp,appworxsrv
+2136,tcp,appworxsrv
+2137,udp,connect
+2137,tcp,connect
+2138,udp,unbind-cluster
+2138,tcp,unbind-cluster
+2139,udp,ias-auth
+2139,tcp,ias-auth
+2140,udp,ias-reg
+2140,tcp,ias-reg
+2141,udp,ias-admind
+2141,tcp,ias-admind
+2142,udp,tdm-over-ip
+2142,tcp,tdm-over-ip
+2143,udp,lv-jc
+2143,tcp,lv-jc
+2144,udp,lv-ffx
+2144,tcp,lv-ffx
+2145,udp,lv-pici
+2145,tcp,lv-pici
+2146,udp,lv-not
+2146,tcp,lv-not
+2147,udp,lv-auth
+2147,tcp,lv-auth
+2148,udp,veritas-ucl
+2148,tcp,veritas-ucl
+2149,udp,acptsys
+2149,tcp,acptsys
+2150,udp,dynamic3d
+2150,tcp,dynamic3d
+2151,udp,docent
+2151,tcp,docent
+2152,udp,gtp-user
+2152,tcp,gtp-user
+2159,udp,gdbremote
+2159,tcp,gdbremote
+2160,udp,apc-2160
+2160,tcp,apc-2160
+2161,udp,apc-2161
+2161,tcp,apc-2161
+2162,udp,navisphere
+2162,tcp,navisphere
+2163,udp,navisphere-sec
+2163,tcp,navisphere-sec
+2164,udp,ddns-v3
+2164,tcp,ddns-v3
+2165,udp,x-bone-api
+2165,tcp,x-bone-api
+2166,udp,iwserver
+2166,tcp,iwserver
+2167,udp,raw-serial
+2167,tcp,raw-serial
+2168,tcp,easy-soft-mux
+2168,udp,easy-soft-mux
+2169,tcp,brain
+2169,udp,brain
+2170,tcp,eyetv
+2170,udp,eyetv
+2171,tcp,msfw-storage
+2171,udp,msfw-storage
+2172,tcp,msfw-s-storage
+2172,udp,msfw-s-storage
+2173,tcp,msfw-replica
+2173,udp,msfw-replica
+2174,tcp,msfw-array
+2174,udp,msfw-array
+2175,tcp,airsync
+2175,udp,airsync
+2176,tcp,rapi
+2176,udp,rapi
+2177,tcp,qwave
+2177,udp,qwave
+2178,tcp,bitspeer
+2178,udp,bitspeer
+2180,udp,mc-gt-srv
+2180,tcp,mc-gt-srv
+2181,udp,eforward
+2181,tcp,eforward
+2182,tcp,cgn-stat
+2182,udp,cgn-stat
+2183,tcp,cgn-config
+2183,udp,cgn-config
+2184,tcp,nvd
+2184,udp,nvd
+2185,tcp,onbase-dds
+2185,udp,onbase-dds
+2190,udp,tivoconnect
+2190,tcp,tivoconnect
+2191,udp,tvbus
+2191,tcp,tvbus
+2192,tcp,asdis
+2192,udp,asdis
+2197,tcp,mnp-exchange
+2197,udp,mnp-exchange
+2198,tcp,onehome-remote
+2198,udp,onehome-remote
+2199,tcp,onehome-help
+2199,udp,onehome-help
+2200,udp,ici
+2200,tcp,ici
+2201,udp,ats
+2201,tcp,ats
+2202,udp,imtc-map
+2202,tcp,imtc-map
+2203,tcp,b2-runtime
+2203,udp,b2-runtime
+2204,tcp,b2-license
+2204,udp,b2-license
+2205,tcp,jps
+2205,udp,jps
+2206,tcp,hpocbus
+2206,udp,hpocbus
+2207,tcp,hpssd
+2207,udp,hpssd
+2208,tcp,hpiod
+2208,udp,hpiod
+2213,udp,kali
+2213,tcp,kali
+2214,tcp,rpi
+2214,udp,rpi
+2215,tcp,ipcore
+2215,udp,ipcore
+2216,tcp,vtu-comms
+2216,udp,vtu-comms
+2217,tcp,gotodevice
+2217,udp,gotodevice
+2218,tcp,bounzza
+2218,udp,bounzza
+2219,tcp,netiq-ncap
+2219,udp,netiq-ncap
+2220,udp,netiq
+2220,tcp,netiq
+2221,udp,rockwell-csp1
+2221,tcp,rockwell-csp1
+2222,udp,rockwell-csp2
+2222,tcp,rockwell-csp2
+2223,udp,rockwell-csp3
+2223,tcp,rockwell-csp3
+2224,tcp,efi-mg
+2224,udp,efi-mg
+2225,tcp,rcip-itu
+2226,tcp,di-drm
+2226,udp,di-drm
+2227,tcp,di-msg
+2227,udp,di-msg
+2228,tcp,ehome-ms
+2228,udp,ehome-ms
+2229,tcp,datalens
+2229,udp,datalens
+2230,tcp,queueadm
+2230,udp,queueadm
+2231,tcp,wimaxasncp
+2231,udp,wimaxasncp
+2232,udp,ivs-video
+2232,tcp,ivs-video
+2233,udp,infocrypt
+2233,tcp,infocrypt
+2234,udp,directplay
+2234,tcp,directplay
+2235,udp,sercomm-wlink
+2235,tcp,sercomm-wlink
+2236,udp,nani
+2236,tcp,nani
+2237,udp,optech-port1-lm
+2237,tcp,optech-port1-lm
+2238,udp,aviva-sna
+2238,tcp,aviva-sna
+2239,udp,imagequery
+2239,tcp,imagequery
+2240,udp,recipe
+2240,tcp,recipe
+2241,udp,ivsd
+2241,tcp,ivsd
+2242,udp,foliocorp
+2242,tcp,foliocorp
+2243,udp,magicom
+2243,tcp,magicom
+2244,udp,nmsserver
+2244,tcp,nmsserver
+2245,udp,hao
+2245,tcp,hao
+2246,udp,pc-mta-addrmap
+2246,tcp,pc-mta-addrmap
+2247,tcp,antidotemgrsvr
+2247,udp,antidotemgrsvr
+2248,udp,ums
+2248,tcp,ums
+2249,udp,rfmp
+2249,tcp,rfmp
+2250,udp,remote-collab
+2250,tcp,remote-collab
+2251,udp,dif-port
+2251,tcp,dif-port
+2252,udp,njenet-ssl
+2252,tcp,njenet-ssl
+2253,udp,dtv-chan-req
+2253,tcp,dtv-chan-req
+2254,udp,seispoc
+2254,tcp,seispoc
+2255,udp,vrtp
+2255,tcp,vrtp
+2256,tcp,pcc-mfp
+2256,udp,pcc-mfp
+2257,tcp,simple-tx-rx
+2257,udp,simple-tx-rx
+2258,tcp,rcts
+2258,udp,rcts
+2259,tcp,acd-pm
+2259,udp,acd-pm
+2260,udp,apc-2260
+2260,tcp,apc-2260
+2261,tcp,comotionmaster
+2261,udp,comotionmaster
+2262,tcp,comotionback
+2262,udp,comotionback
+2263,tcp,ecwcfg
+2263,udp,ecwcfg
+2264,tcp,apx500api-1
+2264,udp,apx500api-1
+2265,tcp,apx500api-2
+2265,udp,apx500api-2
+2266,tcp,mfserver
+2266,udp,mfserver
+2267,tcp,ontobroker
+2267,udp,ontobroker
+2268,tcp,amt
+2268,udp,amt
+2269,tcp,mikey
+2269,udp,mikey
+2270,tcp,starschool
+2270,udp,starschool
+2271,tcp,mmcals
+2271,udp,mmcals
+2272,tcp,mmcal
+2272,udp,mmcal
+2273,tcp,mysql-im
+2273,udp,mysql-im
+2274,tcp,pcttunnell
+2274,udp,pcttunnell
+2275,tcp,ibridge-data
+2275,udp,ibridge-data
+2276,tcp,ibridge-mgmt
+2276,udp,ibridge-mgmt
+2277,tcp,bluectrlproxy
+2277,udp,bluectrlproxy
+2278,tcp,s3db
+2278,udp,s3db
+2279,udp,xmquery
+2279,tcp,xmquery
+2280,udp,lnvpoller
+2280,tcp,lnvpoller
+2281,udp,lnvconsole
+2281,tcp,lnvconsole
+2282,udp,lnvalarm
+2282,tcp,lnvalarm
+2283,udp,lnvstatus
+2283,tcp,lnvstatus
+2284,udp,lnvmaps
+2284,tcp,lnvmaps
+2285,udp,lnvmailmon
+2285,tcp,lnvmailmon
+2286,udp,nas-metering
+2286,tcp,nas-metering
+2287,udp,dna
+2287,tcp,dna
+2288,udp,netml
+2288,tcp,netml
+2289,tcp,dict-lookup
+2289,udp,dict-lookup
+2290,tcp,sonus-logging
+2290,udp,sonus-logging
+2291,tcp,eapsp
+2291,udp,eapsp
+2292,tcp,mib-streaming
+2292,udp,mib-streaming
+2293,tcp,npdbgmngr
+2293,udp,npdbgmngr
+2294,udp,konshus-lm
+2294,tcp,konshus-lm
+2295,udp,advant-lm
+2295,tcp,advant-lm
+2296,udp,theta-lm
+2296,tcp,theta-lm
+2297,udp,d2k-datamover1
+2297,tcp,d2k-datamover1
+2298,udp,d2k-datamover2
+2298,tcp,d2k-datamover2
+2299,udp,pc-telecommute
+2299,tcp,pc-telecommute
+2300,udp,cvmmon
+2300,tcp,cvmmon
+2301,udp,cpq-wbem
+2301,tcp,cpq-wbem
+2302,udp,binderysupport
+2302,tcp,binderysupport
+2303,udp,proxy-gateway
+2303,tcp,proxy-gateway
+2304,udp,attachmate-uts
+2304,tcp,attachmate-uts
+2305,udp,mt-scaleserver
+2305,tcp,mt-scaleserver
+2306,udp,tappi-boxnet
+2306,tcp,tappi-boxnet
+2307,udp,pehelp
+2307,tcp,pehelp
+2308,udp,sdhelp
+2308,tcp,sdhelp
+2309,udp,sdserver
+2309,tcp,sdserver
+2310,udp,sdclient
+2310,tcp,sdclient
+2311,udp,messageservice
+2311,tcp,messageservice
+2312,tcp,wanscaler
+2312,udp,wanscaler
+2313,udp,iapp
+2313,tcp,iapp
+2314,udp,cr-websystems
+2314,tcp,cr-websystems
+2315,udp,precise-sft
+2315,tcp,precise-sft
+2316,udp,sent-lm
+2316,tcp,sent-lm
+2317,udp,attachmate-g32
+2317,tcp,attachmate-g32
+2318,udp,cadencecontrol
+2318,tcp,cadencecontrol
+2319,udp,infolibria
+2319,tcp,infolibria
+2320,udp,siebel-ns
+2320,tcp,siebel-ns
+2321,udp,rdlap
+2321,tcp,rdlap
+2322,udp,ofsd
+2322,tcp,ofsd
+2323,udp,3d-nfsd
+2323,tcp,3d-nfsd
+2324,udp,cosmocall
+2324,tcp,cosmocall
+2325,udp,designspace-lm
+2325,tcp,designspace-lm
+2326,udp,idcp
+2326,tcp,idcp
+2327,udp,xingcsm
+2327,tcp,xingcsm
+2328,udp,netrix-sftm
+2328,tcp,netrix-sftm
+2329,udp,nvd
+2329,tcp,nvd
+2330,udp,tscchat
+2330,tcp,tscchat
+2331,udp,agentview
+2331,tcp,agentview
+2332,udp,rcc-host
+2332,tcp,rcc-host
+2333,udp,snapp
+2333,tcp,snapp
+2334,udp,ace-client
+2334,tcp,ace-client
+2335,udp,ace-proxy
+2335,tcp,ace-proxy
+2336,udp,appleugcontrol
+2336,tcp,appleugcontrol
+2337,udp,ideesrv
+2337,tcp,ideesrv
+2338,udp,norton-lambert
+2338,tcp,norton-lambert
+2339,udp,3com-webview
+2339,tcp,3com-webview
+2340,udp,wrs_registry
+2340,tcp,wrs_registry
+2341,udp,xiostatus
+2341,tcp,xiostatus
+2342,udp,manage-exec
+2342,tcp,manage-exec
+2343,udp,nati-logos
+2343,tcp,nati-logos
+2344,udp,fcmsys
+2344,tcp,fcmsys
+2345,udp,dbm
+2345,tcp,dbm
+2346,udp,redstorm_join
+2346,tcp,redstorm_join
+2347,udp,redstorm_find
+2347,tcp,redstorm_find
+2348,udp,redstorm_info
+2348,tcp,redstorm_info
+2349,udp,redstorm_diag
+2349,tcp,redstorm_diag
+2350,udp,psbserver
+2350,tcp,psbserver
+2351,udp,psrserver
+2351,tcp,psrserver
+2352,udp,pslserver
+2352,tcp,pslserver
+2353,udp,pspserver
+2353,tcp,pspserver
+2354,udp,psprserver
+2354,tcp,psprserver
+2355,udp,psdbserver
+2355,tcp,psdbserver
+2356,udp,gxtelmd
+2356,tcp,gxtelmd
+2357,udp,unihub-server
+2357,tcp,unihub-server
+2358,udp,futrix
+2358,tcp,futrix
+2359,udp,flukeserver
+2359,tcp,flukeserver
+2360,udp,nexstorindltd
+2360,tcp,nexstorindltd
+2361,udp,tl1
+2361,tcp,tl1
+2362,udp,digiman
+2362,tcp,digiman
+2363,udp,mediacntrlnfsd
+2363,tcp,mediacntrlnfsd
+2364,udp,oi-2000
+2364,tcp,oi-2000
+2365,udp,dbref
+2365,tcp,dbref
+2366,udp,qip-login
+2366,tcp,qip-login
+2367,udp,service-ctrl
+2367,tcp,service-ctrl
+2368,udp,opentable
+2368,tcp,opentable
+2369,udp,acs2000-dsp
+2369,tcp,acs2000-dsp
+2370,udp,l3-hbmon
+2370,tcp,l3-hbmon
+2371,udp,worldwire
+2371,tcp,worldwire
+2381,udp,compaq-https
+2381,tcp,compaq-https
+2382,udp,ms-olap3
+2382,tcp,ms-olap3
+2383,udp,ms-olap4
+2383,tcp,ms-olap4
+2384,udp,sd-capacity
+2384,tcp,sd-request
+2385,udp,sd-data
+2385,tcp,sd-data
+2386,udp,virtualtape
+2386,tcp,virtualtape
+2387,udp,vsamredirector
+2387,tcp,vsamredirector
+2388,udp,mynahautostart
+2388,tcp,mynahautostart
+2389,udp,ovsessionmgr
+2389,tcp,ovsessionmgr
+2390,udp,rsmtp
+2390,tcp,rsmtp
+2391,udp,3com-net-mgmt
+2391,tcp,3com-net-mgmt
+2392,udp,tacticalauth
+2392,tcp,tacticalauth
+2393,udp,ms-olap1
+2393,tcp,ms-olap1
+2394,udp,ms-olap2
+2394,tcp,ms-olap2
+2395,udp,lan900_remote
+2395,tcp,lan900_remote
+2396,udp,wusage
+2396,tcp,wusage
+2397,udp,ncl
+2397,tcp,ncl
+2398,udp,orbiter
+2398,tcp,orbiter
+2399,udp,fmpro-fdal
+2399,tcp,fmpro-fdal
+2400,udp,opequus-server
+2400,tcp,opequus-server
+2401,udp,cvspserver
+2401,tcp,cvspserver
+2402,udp,taskmaster2000
+2402,tcp,taskmaster2000
+2403,udp,taskmaster2000
+2403,tcp,taskmaster2000
+2404,udp,iec-104
+2404,tcp,iec-104
+2405,udp,trc-netpoll
+2405,tcp,trc-netpoll
+2406,udp,jediserver
+2406,tcp,jediserver
+2407,udp,orion
+2407,tcp,orion
+2408,udp,optimanet
+2408,tcp,optimanet
+2409,udp,sns-protocol
+2409,tcp,sns-protocol
+2410,udp,vrts-registry
+2410,tcp,vrts-registry
+2411,udp,netwave-ap-mgmt
+2411,tcp,netwave-ap-mgmt
+2412,udp,cdn
+2412,tcp,cdn
+2413,udp,orion-rmi-reg
+2413,tcp,orion-rmi-reg
+2414,udp,beeyond
+2414,tcp,beeyond
+2415,udp,codima-rtp
+2415,tcp,codima-rtp
+2416,udp,rmtserver
+2416,tcp,rmtserver
+2417,udp,composit-server
+2417,tcp,composit-server
+2418,udp,cas
+2418,tcp,cas
+2419,udp,attachmate-s2s
+2419,tcp,attachmate-s2s
+2420,udp,dslremote-mgmt
+2420,tcp,dslremote-mgmt
+2421,udp,g-talk
+2421,tcp,g-talk
+2422,udp,crmsbits
+2422,tcp,crmsbits
+2423,udp,rnrp
+2423,tcp,rnrp
+2424,udp,kofax-svr
+2424,tcp,kofax-svr
+2425,udp,fjitsuappmgr
+2425,tcp,fjitsuappmgr
+2427,udp,mgcp-gateway
+2427,tcp,mgcp-gateway
+2428,udp,ott
+2428,tcp,ott
+2429,udp,ft-role
+2429,tcp,ft-role
+2430,udp,venus
+2430,tcp,venus
+2431,udp,venus-se
+2431,tcp,venus-se
+2432,udp,codasrv
+2432,tcp,codasrv
+2433,udp,codasrv-se
+2433,tcp,codasrv-se
+2434,udp,pxc-epmap
+2434,tcp,pxc-epmap
+2435,udp,optilogic
+2435,tcp,optilogic
+2436,udp,topx
+2436,tcp,topx
+2437,udp,unicontrol
+2437,tcp,unicontrol
+2438,udp,msp
+2438,tcp,msp
+2439,udp,sybasedbsynch
+2439,tcp,sybasedbsynch
+2440,udp,spearway
+2440,tcp,spearway
+2441,udp,pvsw-inet
+2441,tcp,pvsw-inet
+2442,udp,netangel
+2442,tcp,netangel
+2443,udp,powerclientcsf
+2443,tcp,powerclientcsf
+2444,udp,btpp2sectrans
+2444,tcp,btpp2sectrans
+2445,udp,dtn1
+2445,tcp,dtn1
+2446,udp,bues_service
+2446,tcp,bues_service
+2447,udp,ovwdb
+2447,tcp,ovwdb
+2448,udp,hpppssvr
+2448,tcp,hpppssvr
+2449,udp,ratl
+2449,tcp,ratl
+2450,udp,netadmin
+2450,tcp,netadmin
+2451,udp,netchat
+2451,tcp,netchat
+2452,udp,snifferclient
+2452,tcp,snifferclient
+2453,udp,madge-om
+2453,tcp,madge-om
+2454,udp,indx-dds
+2454,tcp,indx-dds
+2455,udp,wago-io-system
+2455,tcp,wago-io-system
+2456,udp,altav-remmgt
+2456,tcp,altav-remmgt
+2457,udp,rapido-ip
+2457,tcp,rapido-ip
+2458,udp,griffin
+2458,tcp,griffin
+2459,udp,community
+2459,tcp,community
+2460,udp,ms-theater
+2460,tcp,ms-theater
+2461,udp,qadmifoper
+2461,tcp,qadmifoper
+2462,udp,qadmifevent
+2462,tcp,qadmifevent
+2463,udp,symbios-raid
+2463,tcp,symbios-raid
+2464,udp,direcpc-si
+2464,tcp,direcpc-si
+2465,udp,lbm
+2465,tcp,lbm
+2466,udp,lbf
+2466,tcp,lbf
+2467,udp,high-criteria
+2467,tcp,high-criteria
+2468,udp,qip-msgd
+2468,tcp,qip-msgd
+2469,udp,mti-tcs-comm
+2469,tcp,mti-tcs-comm
+2470,udp,taskman-port
+2470,tcp,taskman-port
+2471,udp,seaodbc
+2471,tcp,seaodbc
+2472,udp,c3
+2472,tcp,c3
+2473,udp,aker-cdp
+2473,tcp,aker-cdp
+2474,udp,vitalanalysis
+2474,tcp,vitalanalysis
+2475,udp,ace-server
+2475,tcp,ace-server
+2476,udp,ace-svr-prop
+2476,tcp,ace-svr-prop
+2477,udp,ssm-cvs
+2477,tcp,ssm-cvs
+2478,udp,ssm-cssps
+2478,tcp,ssm-cssps
+2479,udp,ssm-els
+2479,tcp,ssm-els
+2480,udp,lingwood
+2480,tcp,lingwood
+2481,udp,giop
+2481,tcp,giop
+2482,udp,giop-ssl
+2482,tcp,giop-ssl
+2483,udp,ttc
+2483,tcp,ttc
+2484,udp,ttc-ssl
+2484,tcp,ttc-ssl
+2485,udp,netobjects1
+2485,tcp,netobjects1
+2486,udp,netobjects2
+2486,tcp,netobjects2
+2487,udp,pns
+2487,tcp,pns
+2488,udp,moy-corp
+2488,tcp,moy-corp
+2489,udp,tsilb
+2489,tcp,tsilb
+2490,udp,qip-qdhcp
+2490,tcp,qip-qdhcp
+2491,udp,conclave-cpp
+2491,tcp,conclave-cpp
+2492,udp,groove
+2492,tcp,groove
+2493,udp,talarian-mqs
+2493,tcp,talarian-mqs
+2494,udp,bmc-ar
+2494,tcp,bmc-ar
+2495,udp,fast-rem-serv
+2495,tcp,fast-rem-serv
+2496,udp,dirgis
+2496,tcp,dirgis
+2497,udp,quaddb
+2497,tcp,quaddb
+2498,udp,odn-castraq
+2498,tcp,odn-castraq
+2499,udp,unicontrol
+2499,tcp,unicontrol
+2500,udp,rtsserv
+2500,tcp,rtsserv
+2501,udp,rtsclient
+2501,tcp,rtsclient
+2502,udp,kentrox-prot
+2502,tcp,kentrox-prot
+2503,udp,nms-dpnss
+2503,tcp,nms-dpnss
+2504,udp,wlbs
+2504,tcp,wlbs
+2505,tcp,ppcontrol
+2505,udp,ppcontrol
+2506,udp,jbroker
+2506,tcp,jbroker
+2507,udp,spock
+2507,tcp,spock
+2508,udp,jdatastore
+2508,tcp,jdatastore
+2509,udp,fjmpss
+2509,tcp,fjmpss
+2510,udp,fjappmgrbulk
+2510,tcp,fjappmgrbulk
+2511,udp,metastorm
+2511,tcp,metastorm
+2512,udp,citrixima
+2512,tcp,citrixima
+2513,udp,citrixadmin
+2513,tcp,citrixadmin
+2514,udp,facsys-ntp
+2514,tcp,facsys-ntp
+2515,udp,facsys-router
+2515,tcp,facsys-router
+2516,udp,maincontrol
+2516,tcp,maincontrol
+2517,udp,call-sig-trans
+2517,tcp,call-sig-trans
+2518,udp,willy
+2518,tcp,willy
+2519,udp,globmsgsvc
+2519,tcp,globmsgsvc
+2520,udp,pvsw
+2520,tcp,pvsw
+2521,udp,adaptecmgr
+2521,tcp,adaptecmgr
+2522,udp,windb
+2522,tcp,windb
+2523,udp,qke-llc-v3
+2523,tcp,qke-llc-v3
+2524,udp,optiwave-lm
+2524,tcp,optiwave-lm
+2525,udp,ms-v-worlds
+2525,tcp,ms-v-worlds
+2526,udp,ema-sent-lm
+2526,tcp,ema-sent-lm
+2527,udp,iqserver
+2527,tcp,iqserver
+2528,udp,ncr_ccl
+2528,tcp,ncr_ccl
+2529,udp,utsftp
+2529,tcp,utsftp
+2530,udp,vrcommerce
+2530,tcp,vrcommerce
+2531,udp,ito-e-gui
+2531,tcp,ito-e-gui
+2532,udp,ovtopmd
+2532,tcp,ovtopmd
+2533,udp,snifferserver
+2533,tcp,snifferserver
+2534,udp,combox-web-acc
+2534,tcp,combox-web-acc
+2535,udp,madcap
+2535,tcp,madcap
+2536,udp,btpp2audctr1
+2536,tcp,btpp2audctr1
+2537,udp,upgrade
+2537,tcp,upgrade
+2538,udp,vnwk-prapi
+2538,tcp,vnwk-prapi
+2539,udp,vsiadmin
+2539,tcp,vsiadmin
+2540,udp,lonworks
+2540,tcp,lonworks
+2541,udp,lonworks2
+2541,tcp,lonworks2
+2542,udp,davinci
+2542,tcp,davinci
+2543,udp,reftek
+2543,tcp,reftek
+2544,udp,novell-zen
+2544,tcp,novell-zen
+2545,udp,sis-emt
+2545,tcp,sis-emt
+2546,udp,vytalvaultbrtp
+2546,tcp,vytalvaultbrtp
+2547,udp,vytalvaultvsmp
+2547,tcp,vytalvaultvsmp
+2548,udp,vytalvaultpipe
+2548,tcp,vytalvaultpipe
+2549,udp,ipass
+2549,tcp,ipass
+2550,udp,ads
+2550,tcp,ads
+2551,udp,isg-uda-server
+2551,tcp,isg-uda-server
+2552,udp,call-logging
+2552,tcp,call-logging
+2553,udp,efidiningport
+2553,tcp,efidiningport
+2554,udp,vcnet-link-v10
+2554,tcp,vcnet-link-v10
+2555,udp,compaq-wcp
+2555,tcp,compaq-wcp
+2556,udp,nicetec-nmsvc
+2556,tcp,nicetec-nmsvc
+2557,udp,nicetec-mgmt
+2557,tcp,nicetec-mgmt
+2558,udp,pclemultimedia
+2558,tcp,pclemultimedia
+2559,udp,lstp
+2559,tcp,lstp
+2560,udp,labrat
+2560,tcp,labrat
+2561,udp,mosaixcc
+2561,tcp,mosaixcc
+2562,udp,delibo
+2562,tcp,delibo
+2563,udp,cti-redwood
+2563,tcp,cti-redwood
+2564,tcp,hp-3000-telnet
+2565,udp,coord-svr
+2565,tcp,coord-svr
+2566,udp,pcs-pcw
+2566,tcp,pcs-pcw
+2567,udp,clp
+2567,tcp,clp
+2568,udp,spamtrap
+2568,tcp,spamtrap
+2569,udp,sonuscallsig
+2569,tcp,sonuscallsig
+2570,udp,hs-port
+2570,tcp,hs-port
+2571,udp,cecsvc
+2571,tcp,cecsvc
+2572,udp,ibp
+2572,tcp,ibp
+2573,udp,trustestablish
+2573,tcp,trustestablish
+2574,udp,blockade-bpsp
+2574,tcp,blockade-bpsp
+2575,udp,hl7
+2575,tcp,hl7
+2576,udp,tclprodebugger
+2576,tcp,tclprodebugger
+2577,udp,scipticslsrvr
+2577,tcp,scipticslsrvr
+2578,udp,rvs-isdn-dcp
+2578,tcp,rvs-isdn-dcp
+2579,udp,mpfoncl
+2579,tcp,mpfoncl
+2580,udp,tributary
+2580,tcp,tributary
+2581,udp,argis-te
+2581,tcp,argis-te
+2582,udp,argis-ds
+2582,tcp,argis-ds
+2583,udp,mon
+2583,tcp,mon
+2584,udp,cyaserv
+2584,tcp,cyaserv
+2585,udp,netx-server
+2585,tcp,netx-server
+2586,udp,netx-agent
+2586,tcp,netx-agent
+2587,udp,masc
+2587,tcp,masc
+2588,udp,privilege
+2588,tcp,privilege
+2589,udp,quartus-tcl
+2589,tcp,quartus-tcl
+2590,udp,idotdist
+2590,tcp,idotdist
+2591,udp,maytagshuffle
+2591,tcp,maytagshuffle
+2592,udp,netrek
+2592,tcp,netrek
+2593,udp,mns-mail
+2593,tcp,mns-mail
+2594,udp,dts
+2594,tcp,dts
+2595,udp,worldfusion1
+2595,tcp,worldfusion1
+2596,udp,worldfusion2
+2596,tcp,worldfusion2
+2597,udp,homesteadglory
+2597,tcp,homesteadglory
+2598,udp,citriximaclient
+2598,tcp,citriximaclient
+2599,udp,snapd
+2599,tcp,snapd
+2600,udp,hpstgmgr
+2600,tcp,hpstgmgr
+2601,udp,discp-client
+2601,tcp,discp-client
+2602,udp,discp-server
+2602,tcp,discp-server
+2603,udp,servicemeter
+2603,tcp,servicemeter
+2604,udp,nsc-ccs
+2604,tcp,nsc-ccs
+2605,udp,nsc-posa
+2605,tcp,nsc-posa
+2606,udp,netmon
+2606,tcp,netmon
+2607,udp,connection
+2607,tcp,connection
+2608,udp,wag-service
+2608,tcp,wag-service
+2609,udp,system-monitor
+2609,tcp,system-monitor
+2610,udp,versa-tek
+2610,tcp,versa-tek
+2611,udp,lionhead
+2611,tcp,lionhead
+2612,udp,qpasa-agent
+2612,tcp,qpasa-agent
+2613,udp,smntubootstrap
+2613,tcp,smntubootstrap
+2614,udp,neveroffline
+2614,tcp,neveroffline
+2615,udp,firepower
+2615,tcp,firepower
+2616,udp,appswitch-emp
+2616,tcp,appswitch-emp
+2617,udp,cmadmin
+2617,tcp,cmadmin
+2618,udp,priority-e-com
+2618,tcp,priority-e-com
+2619,udp,bruce
+2619,tcp,bruce
+2620,udp,lpsrecommender
+2620,tcp,lpsrecommender
+2621,udp,miles-apart
+2621,tcp,miles-apart
+2622,udp,metricadbc
+2622,tcp,metricadbc
+2623,udp,lmdp
+2623,tcp,lmdp
+2624,udp,aria
+2624,tcp,aria
+2625,udp,blwnkl-port
+2625,tcp,blwnkl-port
+2626,udp,gbjd816
+2626,tcp,gbjd816
+2627,udp,moshebeeri
+2627,tcp,moshebeeri
+2628,udp,dict
+2628,tcp,dict
+2629,udp,sitaraserver
+2629,tcp,sitaraserver
+2630,udp,sitaramgmt
+2630,tcp,sitaramgmt
+2631,udp,sitaradir
+2631,tcp,sitaradir
+2632,udp,irdg-post
+2632,tcp,irdg-post
+2633,udp,interintelli
+2633,tcp,interintelli
+2634,udp,pk-electronics
+2634,tcp,pk-electronics
+2635,udp,backburner
+2635,tcp,backburner
+2636,udp,solve
+2636,tcp,solve
+2637,udp,imdocsvc
+2637,tcp,imdocsvc
+2638,udp,sybaseanywhere
+2638,tcp,sybaseanywhere
+2639,udp,aminet
+2639,tcp,aminet
+2640,udp,sai_sentlm
+2640,tcp,sai_sentlm
+2641,udp,hdl-srv
+2641,tcp,hdl-srv
+2642,udp,tragic
+2642,tcp,tragic
+2643,udp,gte-samp
+2643,tcp,gte-samp
+2644,udp,travsoft-ipx-t
+2644,tcp,travsoft-ipx-t
+2645,udp,novell-ipx-cmd
+2645,tcp,novell-ipx-cmd
+2646,udp,and-lm
+2646,tcp,and-lm
+2647,udp,syncserver
+2647,tcp,syncserver
+2648,udp,upsnotifyprot
+2648,tcp,upsnotifyprot
+2649,udp,vpsipport
+2649,tcp,vpsipport
+2650,udp,eristwoguns
+2650,tcp,eristwoguns
+2651,udp,ebinsite
+2651,tcp,ebinsite
+2652,udp,interpathpanel
+2652,tcp,interpathpanel
+2653,udp,sonus
+2653,tcp,sonus
+2654,udp,corel_vncadmin
+2654,tcp,corel_vncadmin
+2655,udp,unglue
+2655,tcp,unglue
+2656,udp,kana
+2656,tcp,kana
+2657,udp,sns-dispatcher
+2657,tcp,sns-dispatcher
+2658,udp,sns-admin
+2658,tcp,sns-admin
+2659,udp,sns-query
+2659,tcp,sns-query
+2660,udp,gcmonitor
+2660,tcp,gcmonitor
+2661,udp,olhost
+2661,tcp,olhost
+2662,udp,bintec-capi
+2662,tcp,bintec-capi
+2663,udp,bintec-tapi
+2663,tcp,bintec-tapi
+2664,udp,patrol-mq-gm
+2664,tcp,patrol-mq-gm
+2665,udp,patrol-mq-nm
+2665,tcp,patrol-mq-nm
+2666,udp,extensis
+2666,tcp,extensis
+2667,udp,alarm-clock-s
+2667,tcp,alarm-clock-s
+2668,udp,alarm-clock-c
+2668,tcp,alarm-clock-c
+2669,udp,toad
+2669,tcp,toad
+2670,udp,tve-announce
+2670,tcp,tve-announce
+2671,udp,newlixreg
+2671,tcp,newlixreg
+2672,udp,nhserver
+2672,tcp,nhserver
+2673,udp,firstcall42
+2673,tcp,firstcall42
+2674,udp,ewnn
+2674,tcp,ewnn
+2675,udp,ttc-etap
+2675,tcp,ttc-etap
+2676,udp,simslink
+2676,tcp,simslink
+2677,udp,gadgetgate1way
+2677,tcp,gadgetgate1way
+2678,udp,gadgetgate2way
+2678,tcp,gadgetgate2way
+2679,udp,syncserverssl
+2679,tcp,syncserverssl
+2680,udp,pxc-sapxom
+2680,tcp,pxc-sapxom
+2681,udp,mpnjsomb
+2681,tcp,mpnjsomb
+2683,udp,ncdloadbalance
+2683,tcp,ncdloadbalance
+2684,udp,mpnjsosv
+2684,tcp,mpnjsosv
+2685,udp,mpnjsocl
+2685,tcp,mpnjsocl
+2686,udp,mpnjsomg
+2686,tcp,mpnjsomg
+2687,udp,pq-lic-mgmt
+2687,tcp,pq-lic-mgmt
+2688,udp,md-cg-http
+2688,tcp,md-cg-http
+2689,udp,fastlynx
+2689,tcp,fastlynx
+2690,udp,hp-nnm-data
+2690,tcp,hp-nnm-data
+2691,udp,itinternet
+2691,tcp,itinternet
+2692,udp,admins-lms
+2692,tcp,admins-lms
+2693,udp,belarc-http
+2693,tcp,belarc-http
+2694,udp,pwrsevent
+2694,tcp,pwrsevent
+2695,udp,vspread
+2695,tcp,vspread
+2696,udp,unifyadmin
+2696,tcp,unifyadmin
+2697,udp,oce-snmp-trap
+2697,tcp,oce-snmp-trap
+2698,udp,mck-ivpip
+2698,tcp,mck-ivpip
+2699,udp,csoft-plusclnt
+2699,tcp,csoft-plusclnt
+2700,udp,tqdata
+2700,tcp,tqdata
+2701,udp,sms-rcinfo
+2701,tcp,sms-rcinfo
+2702,udp,sms-xfer
+2702,tcp,sms-xfer
+2703,udp,sms-chat
+2703,tcp,sms-chat
+2704,udp,sms-remctrl
+2704,tcp,sms-remctrl
+2705,udp,sds-admin
+2705,tcp,sds-admin
+2706,udp,ncdmirroring
+2706,tcp,ncdmirroring
+2707,udp,emcsymapiport
+2707,tcp,emcsymapiport
+2708,udp,banyan-net
+2708,tcp,banyan-net
+2709,udp,supermon
+2709,tcp,supermon
+2710,udp,sso-service
+2710,tcp,sso-service
+2711,udp,sso-control
+2711,tcp,sso-control
+2712,udp,aocp
+2712,tcp,aocp
+2713,udp,raven1
+2713,tcp,raven1
+2714,udp,raven2
+2714,tcp,raven2
+2715,udp,hpstgmgr2
+2715,tcp,hpstgmgr2
+2716,udp,inova-ip-disco
+2716,tcp,inova-ip-disco
+2717,udp,pn-requester
+2717,tcp,pn-requester
+2718,udp,pn-requester2
+2718,tcp,pn-requester2
+2719,udp,scan-change
+2719,tcp,scan-change
+2720,udp,wkars
+2720,tcp,wkars
+2721,udp,smart-diagnose
+2721,tcp,smart-diagnose
+2722,udp,proactivesrvr
+2722,tcp,proactivesrvr
+2723,udp,watchdognt
+2723,tcp,watchdognt
+2724,udp,qotps
+2724,tcp,qotps
+2725,udp,msolap-ptp2
+2725,tcp,msolap-ptp2
+2726,udp,tams
+2726,tcp,tams
+2727,udp,mgcp-callagent
+2727,tcp,mgcp-callagent
+2728,udp,sqdr
+2728,tcp,sqdr
+2729,udp,tcim-control
+2729,tcp,tcim-control
+2730,udp,nec-raidplus
+2730,tcp,nec-raidplus
+2731,udp,fyre-messanger
+2731,tcp,fyre-messanger
+2732,udp,g5m
+2732,tcp,g5m
+2733,udp,signet-ctf
+2733,tcp,signet-ctf
+2734,udp,ccs-software
+2734,tcp,ccs-software
+2735,udp,netiq-mc
+2735,tcp,netiq-mc
+2736,udp,radwiz-nms-srv
+2736,tcp,radwiz-nms-srv
+2737,udp,srp-feedback
+2737,tcp,srp-feedback
+2738,udp,ndl-tcp-ois-gw
+2738,tcp,ndl-tcp-ois-gw
+2739,udp,tn-timing
+2739,tcp,tn-timing
+2740,udp,alarm
+2740,tcp,alarm
+2741,udp,tsb
+2741,tcp,tsb
+2742,udp,tsb2
+2742,tcp,tsb2
+2743,udp,murx
+2743,tcp,murx
+2744,udp,honyaku
+2744,tcp,honyaku
+2745,udp,urbisnet
+2745,tcp,urbisnet
+2746,udp,cpudpencap
+2746,tcp,cpudpencap
+2747,udp,fjippol-swrly
+2747,tcp,fjippol-swrly
+2748,udp,fjippol-polsvr
+2748,tcp,fjippol-polsvr
+2749,udp,fjippol-cnsl
+2749,tcp,fjippol-cnsl
+2750,udp,fjippol-port1
+2750,tcp,fjippol-port1
+2751,udp,fjippol-port2
+2751,tcp,fjippol-port2
+2752,udp,rsisysaccess
+2752,tcp,rsisysaccess
+2753,udp,de-spot
+2753,tcp,de-spot
+2754,udp,apollo-cc
+2754,tcp,apollo-cc
+2755,udp,expresspay
+2755,tcp,expresspay
+2756,udp,simplement-tie
+2756,tcp,simplement-tie
+2757,udp,cnrp
+2757,tcp,cnrp
+2758,udp,apollo-status
+2758,tcp,apollo-status
+2759,udp,apollo-gms
+2759,tcp,apollo-gms
+2760,udp,sabams
+2760,tcp,sabams
+2761,udp,dicom-iscl
+2761,tcp,dicom-iscl
+2762,udp,dicom-tls
+2762,tcp,dicom-tls
+2763,udp,desktop-dna
+2763,tcp,desktop-dna
+2764,udp,data-insurance
+2764,tcp,data-insurance
+2765,udp,qip-audup
+2765,tcp,qip-audup
+2766,udp,compaq-scp
+2766,tcp,compaq-scp
+2767,udp,uadtc
+2767,tcp,uadtc
+2768,udp,uacs
+2768,tcp,uacs
+2769,udp,singlept-mvs
+2769,tcp,singlept-mvs
+2770,udp,veronica
+2770,tcp,veronica
+2771,udp,vergencecm
+2771,tcp,vergencecm
+2772,udp,auris
+2772,tcp,auris
+2773,udp,rbakcup1
+2773,tcp,rbakcup1
+2774,udp,rbakcup2
+2774,tcp,rbakcup2
+2775,udp,smpp
+2775,tcp,smpp
+2776,udp,ridgeway1
+2776,tcp,ridgeway1
+2777,udp,ridgeway2
+2777,tcp,ridgeway2
+2778,udp,gwen-sonya
+2778,tcp,gwen-sonya
+2779,udp,lbc-sync
+2779,tcp,lbc-sync
+2780,udp,lbc-control
+2780,tcp,lbc-control
+2781,udp,whosells
+2781,tcp,whosells
+2782,udp,everydayrc
+2782,tcp,everydayrc
+2783,udp,aises
+2783,tcp,aises
+2784,udp,www-dev
+2784,tcp,www-dev
+2785,udp,aic-np
+2785,tcp,aic-np
+2786,udp,aic-oncrpc
+2786,tcp,aic-oncrpc
+2787,udp,piccolo
+2787,tcp,piccolo
+2788,udp,fryeserv
+2788,tcp,fryeserv
+2789,udp,media-agent
+2789,tcp,media-agent
+2790,udp,plgproxy
+2790,tcp,plgproxy
+2791,udp,mtport-regist
+2791,tcp,mtport-regist
+2792,udp,f5-globalsite
+2792,tcp,f5-globalsite
+2793,udp,initlsmsad
+2793,tcp,initlsmsad
+2794,udp,aaftp
+2794,tcp,aaftp
+2795,udp,livestats
+2795,tcp,livestats
+2796,udp,ac-tech
+2796,tcp,ac-tech
+2797,udp,esp-encap
+2797,tcp,esp-encap
+2798,udp,tmesis-upshot
+2798,tcp,tmesis-upshot
+2799,udp,icon-discover
+2799,tcp,icon-discover
+2800,udp,acc-raid
+2800,tcp,acc-raid
+2801,udp,igcp
+2801,tcp,igcp
+2802,udp,veritas-udp1
+2802,tcp,veritas-tcp1
+2803,udp,btprjctrl
+2803,tcp,btprjctrl
+2804,udp,telexis-vtu
+2804,tcp,telexis-vtu
+2805,udp,wta-wsp-s
+2805,tcp,wta-wsp-s
+2806,udp,cspuni
+2806,tcp,cspuni
+2807,udp,cspmulti
+2807,tcp,cspmulti
+2808,udp,j-lan-p
+2808,tcp,j-lan-p
+2809,udp,corbaloc
+2809,tcp,corbaloc
+2810,udp,netsteward
+2810,tcp,netsteward
+2811,udp,gsiftp
+2811,tcp,gsiftp
+2812,udp,atmtcp
+2812,tcp,atmtcp
+2813,udp,llm-pass
+2813,tcp,llm-pass
+2814,udp,llm-csv
+2814,tcp,llm-csv
+2815,udp,lbc-measure
+2815,tcp,lbc-measure
+2816,udp,lbc-watchdog
+2816,tcp,lbc-watchdog
+2817,udp,nmsigport
+2817,tcp,nmsigport
+2818,udp,rmlnk
+2818,tcp,rmlnk
+2819,udp,fc-faultnotify
+2819,tcp,fc-faultnotify
+2820,udp,univision
+2820,tcp,univision
+2821,udp,vrts-at-port
+2821,tcp,vrts-at-port
+2822,udp,ka0wuc
+2822,tcp,ka0wuc
+2823,udp,cqg-netlan
+2823,tcp,cqg-netlan
+2824,udp,cqg-netlan-1
+2824,tcp,cqg-netlan-1
+2826,udp,slc-systemlog
+2826,tcp,slc-systemlog
+2827,udp,slc-ctrlrloops
+2827,tcp,slc-ctrlrloops
+2828,udp,itm-lm
+2828,tcp,itm-lm
+2829,udp,silkp1
+2829,tcp,silkp1
+2830,udp,silkp2
+2830,tcp,silkp2
+2831,udp,silkp3
+2831,tcp,silkp3
+2832,udp,silkp4
+2832,tcp,silkp4
+2833,udp,glishd
+2833,tcp,glishd
+2834,udp,evtp
+2834,tcp,evtp
+2835,udp,evtp-data
+2835,tcp,evtp-data
+2836,udp,catalyst
+2836,tcp,catalyst
+2837,udp,repliweb
+2837,tcp,repliweb
+2838,udp,starbot
+2838,tcp,starbot
+2839,udp,nmsigport
+2839,tcp,nmsigport
+2840,udp,l3-exprt
+2840,tcp,l3-exprt
+2841,udp,l3-ranger
+2841,tcp,l3-ranger
+2842,udp,l3-hawk
+2842,tcp,l3-hawk
+2843,udp,pdnet
+2843,tcp,pdnet
+2844,udp,bpcp-poll
+2844,tcp,bpcp-poll
+2845,udp,bpcp-trap
+2845,tcp,bpcp-trap
+2846,udp,aimpp-hello
+2846,tcp,aimpp-hello
+2847,udp,aimpp-port-req
+2847,tcp,aimpp-port-req
+2848,udp,amt-blc-port
+2848,tcp,amt-blc-port
+2849,udp,fxp
+2849,tcp,fxp
+2850,udp,metaconsole
+2850,tcp,metaconsole
+2851,udp,webemshttp
+2851,tcp,webemshttp
+2852,udp,bears-01
+2852,tcp,bears-01
+2853,udp,ispipes
+2853,tcp,ispipes
+2854,udp,infomover
+2854,tcp,infomover
+2856,udp,cesdinv
+2856,tcp,cesdinv
+2857,udp,simctlp
+2857,tcp,simctlp
+2858,udp,ecnp
+2858,tcp,ecnp
+2859,udp,activememory
+2859,tcp,activememory
+2860,udp,dialpad-voice1
+2860,tcp,dialpad-voice1
+2861,udp,dialpad-voice2
+2861,tcp,dialpad-voice2
+2862,udp,ttg-protocol
+2862,tcp,ttg-protocol
+2863,udp,sonardata
+2863,tcp,sonardata
+2864,udp,astromed-main
+2864,tcp,astromed-main
+2865,udp,pit-vpn
+2865,tcp,pit-vpn
+2866,udp,iwlistener
+2866,tcp,iwlistener
+2867,udp,esps-portal
+2867,tcp,esps-portal
+2868,udp,npep-messaging
+2868,tcp,npep-messaging
+2869,udp,icslap
+2869,tcp,icslap
+2870,udp,daishi
+2870,tcp,daishi
+2871,udp,msi-selectplay
+2871,tcp,msi-selectplay
+2872,udp,radix
+2872,tcp,radix
+2873,udp,paspar2-zoomin
+2873,tcp,paspar2-zoomin
+2874,udp,dxmessagebase1
+2874,tcp,dxmessagebase1
+2875,udp,dxmessagebase2
+2875,tcp,dxmessagebase2
+2876,udp,sps-tunnel
+2876,tcp,sps-tunnel
+2877,udp,bluelance
+2877,tcp,bluelance
+2878,udp,aap
+2878,tcp,aap
+2879,udp,ucentric-ds
+2879,tcp,ucentric-ds
+2880,udp,synapse
+2880,tcp,synapse
+2881,udp,ndsp
+2881,tcp,ndsp
+2882,udp,ndtp
+2882,tcp,ndtp
+2883,udp,ndnp
+2883,tcp,ndnp
+2884,udp,flashmsg
+2884,tcp,flashmsg
+2885,udp,topflow
+2885,tcp,topflow
+2886,udp,responselogic
+2886,tcp,responselogic
+2887,udp,aironetddp
+2887,tcp,aironetddp
+2888,udp,spcsdlobby
+2888,tcp,spcsdlobby
+2889,udp,rsom
+2889,tcp,rsom
+2890,udp,cspclmulti
+2890,tcp,cspclmulti
+2891,udp,cinegrfx-elmd
+2891,tcp,cinegrfx-elmd
+2892,udp,snifferdata
+2892,tcp,snifferdata
+2893,udp,vseconnector
+2893,tcp,vseconnector
+2894,udp,abacus-remote
+2894,tcp,abacus-remote
+2895,udp,natuslink
+2895,tcp,natuslink
+2896,udp,ecovisiong6-1
+2896,tcp,ecovisiong6-1
+2897,udp,citrix-rtmp
+2897,tcp,citrix-rtmp
+2898,udp,appliance-cfg
+2898,tcp,appliance-cfg
+2899,udp,powergemplus
+2899,tcp,powergemplus
+2900,udp,quicksuite
+2900,tcp,quicksuite
+2901,udp,allstorcns
+2901,tcp,allstorcns
+2902,udp,netaspi
+2902,tcp,netaspi
+2903,udp,suitcase
+2903,tcp,suitcase
+2904,sctp,m2ua
+2904,udp,m2ua
+2904,tcp,m2ua
+2905,sctp,m3ua
+2905,udp,m3ua
+2905,tcp,m3ua
+2906,udp,caller9
+2906,tcp,caller9
+2907,udp,webmethods-b2b
+2907,tcp,webmethods-b2b
+2908,udp,mao
+2908,tcp,mao
+2909,udp,funk-dialout
+2909,tcp,funk-dialout
+2910,udp,tdaccess
+2910,tcp,tdaccess
+2911,udp,blockade
+2911,tcp,blockade
+2912,udp,epicon
+2912,tcp,epicon
+2913,udp,boosterware
+2913,tcp,boosterware
+2914,udp,gamelobby
+2914,tcp,gamelobby
+2915,udp,tksocket
+2915,tcp,tksocket
+2916,udp,elvin_server
+2916,tcp,elvin_server
+2917,udp,elvin_client
+2917,tcp,elvin_client
+2918,udp,kastenchasepad
+2918,tcp,kastenchasepad
+2919,udp,roboer
+2919,tcp,roboer
+2920,udp,roboeda
+2920,tcp,roboeda
+2921,udp,cesdcdman
+2921,tcp,cesdcdman
+2922,udp,cesdcdtrn
+2922,tcp,cesdcdtrn
+2923,udp,wta-wsp-wtp-s
+2923,tcp,wta-wsp-wtp-s
+2924,udp,precise-vip
+2924,tcp,precise-vip
+2926,udp,mobile-file-dl
+2926,tcp,mobile-file-dl
+2927,udp,unimobilectrl
+2927,tcp,unimobilectrl
+2928,udp,redstone-cpss
+2928,tcp,redstone-cpss
+2929,udp,amx-webadmin
+2929,tcp,amx-webadmin
+2930,udp,amx-weblinx
+2930,tcp,amx-weblinx
+2931,udp,circle-x
+2931,tcp,circle-x
+2932,udp,incp
+2932,tcp,incp
+2933,udp,4-tieropmgw
+2933,tcp,4-tieropmgw
+2934,udp,4-tieropmcli
+2934,tcp,4-tieropmcli
+2935,udp,qtp
+2935,tcp,qtp
+2936,udp,otpatch
+2936,tcp,otpatch
+2937,udp,pnaconsult-lm
+2937,tcp,pnaconsult-lm
+2938,udp,sm-pas-1
+2938,tcp,sm-pas-1
+2939,udp,sm-pas-2
+2939,tcp,sm-pas-2
+2940,udp,sm-pas-3
+2940,tcp,sm-pas-3
+2941,udp,sm-pas-4
+2941,tcp,sm-pas-4
+2942,udp,sm-pas-5
+2942,tcp,sm-pas-5
+2943,udp,ttnrepository
+2943,tcp,ttnrepository
+2944,udp,megaco-h248
+2944,tcp,megaco-h248
+2945,udp,h248-binary
+2945,tcp,h248-binary
+2946,udp,fjsvmpor
+2946,tcp,fjsvmpor
+2947,udp,gpsd
+2947,tcp,gpsd
+2948,udp,wap-push
+2948,tcp,wap-push
+2949,udp,wap-pushsecure
+2949,tcp,wap-pushsecure
+2950,udp,esip
+2950,tcp,esip
+2951,udp,ottp
+2951,tcp,ottp
+2952,udp,mpfwsas
+2952,tcp,mpfwsas
+2953,udp,ovalarmsrv
+2953,tcp,ovalarmsrv
+2954,udp,ovalarmsrv-cmd
+2954,tcp,ovalarmsrv-cmd
+2955,udp,csnotify
+2955,tcp,csnotify
+2956,udp,ovrimosdbman
+2956,tcp,ovrimosdbman
+2957,udp,jmact5
+2957,tcp,jmact5
+2958,udp,jmact6
+2958,tcp,jmact6
+2959,udp,rmopagt
+2959,tcp,rmopagt
+2960,udp,dfoxserver
+2960,tcp,dfoxserver
+2961,udp,boldsoft-lm
+2961,tcp,boldsoft-lm
+2962,udp,iph-policy-cli
+2962,tcp,iph-policy-cli
+2963,udp,iph-policy-adm
+2963,tcp,iph-policy-adm
+2964,udp,bullant-srap
+2964,tcp,bullant-srap
+2965,udp,bullant-rap
+2965,tcp,bullant-rap
+2966,udp,idp-infotrieve
+2966,tcp,idp-infotrieve
+2967,udp,ssc-agent
+2967,tcp,ssc-agent
+2968,udp,enpp
+2968,tcp,enpp
+2969,udp,essp
+2969,tcp,essp
+2970,udp,index-net
+2970,tcp,index-net
+2971,udp,netclip
+2971,tcp,netclip
+2972,udp,pmsm-webrctl
+2972,tcp,pmsm-webrctl
+2973,udp,svnetworks
+2973,tcp,svnetworks
+2974,udp,signal
+2974,tcp,signal
+2975,udp,fjmpcm
+2975,tcp,fjmpcm
+2976,udp,cns-srv-port
+2976,tcp,cns-srv-port
+2977,udp,ttc-etap-ns
+2977,tcp,ttc-etap-ns
+2978,udp,ttc-etap-ds
+2978,tcp,ttc-etap-ds
+2979,udp,h263-video
+2979,tcp,h263-video
+2980,udp,wimd
+2980,tcp,wimd
+2981,udp,mylxamport
+2981,tcp,mylxamport
+2982,udp,iwb-whiteboard
+2982,tcp,iwb-whiteboard
+2983,udp,netplan
+2983,tcp,netplan
+2984,udp,hpidsadmin
+2984,tcp,hpidsadmin
+2985,udp,hpidsagent
+2985,tcp,hpidsagent
+2986,udp,stonefalls
+2986,tcp,stonefalls
+2987,udp,identify
+2987,tcp,identify
+2988,udp,hippad
+2988,tcp,hippad
+2989,udp,zarkov
+2989,tcp,zarkov
+2990,udp,boscap
+2990,tcp,boscap
+2991,udp,wkstn-mon
+2991,tcp,wkstn-mon
+2992,udp,itb301
+2992,tcp,itb301
+2993,udp,veritas-vis1
+2993,tcp,veritas-vis1
+2994,udp,veritas-vis2
+2994,tcp,veritas-vis2
+2995,udp,idrs
+2995,tcp,idrs
+2996,udp,vsixml
+2996,tcp,vsixml
+2997,udp,rebol
+2997,tcp,rebol
+2998,udp,realsecure
+2998,tcp,realsecure
+2999,udp,remoteware-un
+2999,tcp,remoteware-un
+3000,udp,hbci
+3000,tcp,hbci
+3000,udp,remoteware-cl
+3000,tcp,remoteware-cl
+3001,udp,redwood-broker
+3001,tcp,redwood-broker
+3002,udp,exlm-agent
+3002,tcp,exlm-agent
+3002,udp,remoteware-srv
+3002,tcp,remoteware-srv
+3003,udp,cgms
+3003,tcp,cgms
+3004,udp,csoftragent
+3004,tcp,csoftragent
+3005,udp,geniuslm
+3005,tcp,geniuslm
+3006,udp,ii-admin
+3006,tcp,ii-admin
+3007,udp,lotusmtap
+3007,tcp,lotusmtap
+3008,udp,midnight-tech
+3008,tcp,midnight-tech
+3009,udp,pxc-ntfy
+3009,tcp,pxc-ntfy
+3010,udp,ping-pong
+3010,tcp,gw
+3011,udp,trusted-web
+3011,tcp,trusted-web
+3012,udp,twsdss
+3012,tcp,twsdss
+3013,udp,gilatskysurfer
+3013,tcp,gilatskysurfer
+3014,udp,broker_service
+3014,tcp,broker_service
+3015,udp,nati-dstp
+3015,tcp,nati-dstp
+3016,udp,notify_srvr
+3016,tcp,notify_srvr
+3017,udp,event_listener
+3017,tcp,event_listener
+3018,udp,srvc_registry
+3018,tcp,srvc_registry
+3019,udp,resource_mgr
+3019,tcp,resource_mgr
+3020,udp,cifs
+3020,tcp,cifs
+3021,udp,agriserver
+3021,tcp,agriserver
+3022,udp,csregagent
+3022,tcp,csregagent
+3023,udp,magicnotes
+3023,tcp,magicnotes
+3024,udp,nds_sso
+3024,tcp,nds_sso
+3025,udp,arepa-raft
+3025,tcp,arepa-raft
+3026,udp,agri-gateway
+3026,tcp,agri-gateway
+3027,udp,LiebDevMgmt_C
+3027,tcp,LiebDevMgmt_C
+3028,udp,LiebDevMgmt_DM
+3028,tcp,LiebDevMgmt_DM
+3029,udp,LiebDevMgmt_A
+3029,tcp,LiebDevMgmt_A
+3030,udp,arepa-cas
+3030,tcp,arepa-cas
+3031,udp,eppc
+3031,tcp,eppc
+3032,udp,redwood-chat
+3032,tcp,redwood-chat
+3033,udp,pdb
+3033,tcp,pdb
+3034,udp,osmosis-aeea
+3034,tcp,osmosis-aeea
+3035,udp,fjsv-gssagt
+3035,tcp,fjsv-gssagt
+3036,udp,hagel-dump
+3036,tcp,hagel-dump
+3037,udp,hp-san-mgmt
+3037,tcp,hp-san-mgmt
+3038,udp,santak-ups
+3038,tcp,santak-ups
+3039,udp,cogitate
+3039,tcp,cogitate
+3040,udp,tomato-springs
+3040,tcp,tomato-springs
+3041,udp,di-traceware
+3041,tcp,di-traceware
+3042,udp,journee
+3042,tcp,journee
+3043,udp,brp
+3043,tcp,brp
+3044,udp,epp
+3044,tcp,epp
+3045,udp,responsenet
+3045,tcp,responsenet
+3046,udp,di-ase
+3046,tcp,di-ase
+3047,udp,hlserver
+3047,tcp,hlserver
+3048,udp,pctrader
+3048,tcp,pctrader
+3049,udp,nsws
+3049,tcp,nsws
+3050,udp,gds_db
+3050,tcp,gds_db
+3051,udp,galaxy-server
+3051,tcp,galaxy-server
+3052,udp,apc-3052
+3052,tcp,apc-3052
+3053,udp,dsom-server
+3053,tcp,dsom-server
+3054,udp,amt-cnf-prot
+3054,tcp,amt-cnf-prot
+3055,udp,policyserver
+3055,tcp,policyserver
+3056,udp,cdl-server
+3056,tcp,cdl-server
+3057,udp,goahead-fldup
+3057,tcp,goahead-fldup
+3058,udp,videobeans
+3058,tcp,videobeans
+3059,udp,qsoft
+3059,tcp,qsoft
+3060,udp,interserver
+3060,tcp,interserver
+3061,udp,cautcpd
+3061,tcp,cautcpd
+3062,udp,ncacn-ip-tcp
+3062,tcp,ncacn-ip-tcp
+3063,udp,ncadg-ip-udp
+3063,tcp,ncadg-ip-udp
+3064,udp,rprt
+3064,tcp,rprt
+3065,udp,slinterbase
+3065,tcp,slinterbase
+3066,udp,netattachsdmp
+3066,tcp,netattachsdmp
+3067,udp,fjhpjp
+3067,tcp,fjhpjp
+3068,udp,ls3bcast
+3068,tcp,ls3bcast
+3069,udp,ls3
+3069,tcp,ls3
+3070,udp,mgxswitch
+3070,tcp,mgxswitch
+3071,udp,csd-mgmt-port
+3071,tcp,csd-mgmt-port
+3072,udp,csd-monitor
+3072,tcp,csd-monitor
+3073,udp,vcrp
+3073,tcp,vcrp
+3074,udp,xbox
+3074,tcp,xbox
+3075,udp,orbix-locator
+3075,tcp,orbix-locator
+3076,udp,orbix-config
+3076,tcp,orbix-config
+3077,udp,orbix-loc-ssl
+3077,tcp,orbix-loc-ssl
+3078,udp,orbix-cfg-ssl
+3078,tcp,orbix-cfg-ssl
+3079,udp,lv-frontpanel
+3079,tcp,lv-frontpanel
+3080,udp,stm_pproc
+3080,tcp,stm_pproc
+3081,udp,tl1-lv
+3081,tcp,tl1-lv
+3082,udp,tl1-raw
+3082,tcp,tl1-raw
+3083,udp,tl1-telnet
+3083,tcp,tl1-telnet
+3084,udp,itm-mccs
+3084,tcp,itm-mccs
+3085,udp,pcihreq
+3085,tcp,pcihreq
+3086,udp,jdl-dbkitchen
+3086,tcp,jdl-dbkitchen
+3087,udp,asoki-sma
+3087,tcp,asoki-sma
+3088,udp,xdtp
+3088,tcp,xdtp
+3089,udp,ptk-alink
+3089,tcp,ptk-alink
+3090,udp,rtss
+3090,tcp,rtss
+3091,udp,1ci-smcs
+3091,tcp,1ci-smcs
+3092,udp,njfss
+3092,tcp,njfss
+3093,udp,rapidmq-center
+3093,tcp,rapidmq-center
+3094,udp,rapidmq-reg
+3094,tcp,rapidmq-reg
+3095,udp,panasas
+3095,tcp,panasas
+3096,udp,ndl-aps
+3096,tcp,ndl-aps
+3097,sctp,itu-bicc-stc
+3098,udp,umm-port
+3098,tcp,umm-port
+3099,udp,chmd
+3099,tcp,chmd
+3100,udp,opcon-xps
+3100,tcp,opcon-xps
+3101,udp,hp-pxpib
+3101,tcp,hp-pxpib
+3102,udp,slslavemon
+3102,tcp,slslavemon
+3103,udp,autocuesmi
+3103,tcp,autocuesmi
+3104,udp,autocuetime
+3104,tcp,autocuelog
+3105,udp,cardbox
+3105,tcp,cardbox
+3106,udp,cardbox-http
+3106,tcp,cardbox-http
+3107,udp,business
+3107,tcp,business
+3108,udp,geolocate
+3108,tcp,geolocate
+3109,udp,personnel
+3109,tcp,personnel
+3110,udp,sim-control
+3110,tcp,sim-control
+3111,udp,wsynch
+3111,tcp,wsynch
+3112,udp,ksysguard
+3112,tcp,ksysguard
+3113,udp,cs-auth-svr
+3113,tcp,cs-auth-svr
+3114,udp,ccmad
+3114,tcp,ccmad
+3115,udp,mctet-master
+3115,tcp,mctet-master
+3116,udp,mctet-gateway
+3116,tcp,mctet-gateway
+3117,udp,mctet-jserv
+3117,tcp,mctet-jserv
+3118,udp,pkagent
+3118,tcp,pkagent
+3119,udp,d2000kernel
+3119,tcp,d2000kernel
+3120,udp,d2000webserver
+3120,tcp,d2000webserver
+3121,udp,epp-temp
+3121,tcp,epp-temp
+3122,udp,vtr-emulator
+3122,tcp,vtr-emulator
+3123,udp,edix
+3123,tcp,edix
+3124,udp,beacon-port
+3124,tcp,beacon-port
+3125,udp,a13-an
+3125,tcp,a13-an
+3126,udp,ms-dotnetster
+3126,tcp,ms-dotnetster
+3127,udp,ctx-bridge
+3127,tcp,ctx-bridge
+3128,udp,ndl-aas
+3128,tcp,ndl-aas
+3129,udp,netport-id
+3129,tcp,netport-id
+3130,udp,icpv2
+3130,tcp,icpv2
+3131,udp,netbookmark
+3131,tcp,netbookmark
+3132,udp,ms-rule-engine
+3132,tcp,ms-rule-engine
+3133,udp,prism-deploy
+3133,tcp,prism-deploy
+3134,udp,ecp
+3134,tcp,ecp
+3135,udp,peerbook-port
+3135,tcp,peerbook-port
+3136,udp,grubd
+3136,tcp,grubd
+3137,udp,rtnt-1
+3137,tcp,rtnt-1
+3138,udp,rtnt-2
+3138,tcp,rtnt-2
+3139,udp,incognitorv
+3139,tcp,incognitorv
+3140,udp,ariliamulti
+3140,tcp,ariliamulti
+3141,udp,vmodem
+3141,tcp,vmodem
+3142,udp,rdc-wh-eos
+3142,tcp,rdc-wh-eos
+3143,udp,seaview
+3143,tcp,seaview
+3144,udp,tarantella
+3144,tcp,tarantella
+3145,udp,csi-lfap
+3145,tcp,csi-lfap
+3146,udp,bears-02
+3146,tcp,bears-02
+3147,udp,rfio
+3147,tcp,rfio
+3148,udp,nm-game-admin
+3148,tcp,nm-game-admin
+3149,udp,nm-game-server
+3149,tcp,nm-game-server
+3150,udp,nm-asses-admin
+3150,tcp,nm-asses-admin
+3151,udp,nm-assessor
+3151,tcp,nm-assessor
+3152,udp,feitianrockey
+3152,tcp,feitianrockey
+3153,udp,s8-client-port
+3153,tcp,s8-client-port
+3154,udp,ccmrmi
+3154,tcp,ccmrmi
+3155,udp,jpegmpeg
+3155,tcp,jpegmpeg
+3156,udp,indura
+3156,tcp,indura
+3157,udp,e3consultants
+3157,tcp,e3consultants
+3158,udp,stvp
+3158,tcp,stvp
+3159,udp,navegaweb-port
+3159,tcp,navegaweb-port
+3160,udp,tip-app-server
+3160,tcp,tip-app-server
+3161,udp,doc1lm
+3161,tcp,doc1lm
+3162,udp,sflm
+3162,tcp,sflm
+3163,udp,res-sap
+3163,tcp,res-sap
+3164,udp,imprs
+3164,tcp,imprs
+3165,udp,newgenpay
+3165,tcp,newgenpay
+3166,udp,qrepos
+3166,tcp,qrepos
+3167,udp,poweroncontact
+3167,tcp,poweroncontact
+3168,udp,poweronnud
+3168,tcp,poweronnud
+3169,udp,serverview-as
+3169,tcp,serverview-as
+3170,udp,serverview-asn
+3170,tcp,serverview-asn
+3171,udp,serverview-gf
+3171,tcp,serverview-gf
+3172,udp,serverview-rm
+3172,tcp,serverview-rm
+3173,udp,serverview-icc
+3173,tcp,serverview-icc
+3174,udp,armi-server
+3174,tcp,armi-server
+3175,udp,t1-e1-over-ip
+3175,tcp,t1-e1-over-ip
+3176,udp,ars-master
+3176,tcp,ars-master
+3177,udp,phonex-port
+3177,tcp,phonex-port
+3178,udp,radclientport
+3178,tcp,radclientport
+3179,udp,h2gf-w-2m
+3179,tcp,h2gf-w-2m
+3180,udp,mc-brk-srv
+3180,tcp,mc-brk-srv
+3181,udp,bmcpatrolagent
+3181,tcp,bmcpatrolagent
+3182,udp,bmcpatrolrnvu
+3182,tcp,bmcpatrolrnvu
+3183,udp,cops-tls
+3183,tcp,cops-tls
+3184,udp,apogeex-port
+3184,tcp,apogeex-port
+3185,udp,smpppd
+3185,tcp,smpppd
+3186,udp,iiw-port
+3186,tcp,iiw-port
+3187,udp,odi-port
+3187,tcp,odi-port
+3188,udp,brcm-comm-port
+3188,tcp,brcm-comm-port
+3189,udp,pcle-infex
+3189,tcp,pcle-infex
+3190,udp,csvr-proxy
+3190,tcp,csvr-proxy
+3191,udp,csvr-sslproxy
+3191,tcp,csvr-sslproxy
+3192,udp,firemonrcc
+3192,tcp,firemonrcc
+3193,udp,cordataport
+3193,tcp,cordataport
+3194,udp,magbind
+3194,tcp,magbind
+3195,udp,ncu-1
+3195,tcp,ncu-1
+3196,udp,ncu-2
+3196,tcp,ncu-2
+3197,udp,embrace-dp-s
+3197,tcp,embrace-dp-s
+3198,udp,embrace-dp-c
+3198,tcp,embrace-dp-c
+3199,udp,dmod-workspace
+3199,tcp,dmod-workspace
+3200,udp,tick-port
+3200,tcp,tick-port
+3201,udp,cpq-tasksmart
+3201,tcp,cpq-tasksmart
+3202,udp,intraintra
+3202,tcp,intraintra
+3203,udp,netwatcher-mon
+3203,tcp,netwatcher-mon
+3204,udp,netwatcher-db
+3204,tcp,netwatcher-db
+3205,udp,isns
+3205,tcp,isns
+3206,udp,ironmail
+3206,tcp,ironmail
+3207,udp,vx-auth-port
+3207,tcp,vx-auth-port
+3208,udp,pfu-prcallback
+3208,tcp,pfu-prcallback
+3209,udp,netwkpathengine
+3209,tcp,netwkpathengine
+3210,udp,flamenco-proxy
+3210,tcp,flamenco-proxy
+3211,udp,avsecuremgmt
+3211,tcp,avsecuremgmt
+3212,udp,surveyinst
+3212,tcp,surveyinst
+3213,udp,neon24x7
+3213,tcp,neon24x7
+3214,udp,jmq-daemon-1
+3214,tcp,jmq-daemon-1
+3215,udp,jmq-daemon-2
+3215,tcp,jmq-daemon-2
+3216,udp,ferrari-foam
+3216,tcp,ferrari-foam
+3217,udp,unite
+3217,tcp,unite
+3218,udp,smartpackets
+3218,tcp,smartpackets
+3219,udp,wms-messenger
+3219,tcp,wms-messenger
+3220,udp,xnm-ssl
+3220,tcp,xnm-ssl
+3221,udp,xnm-clear-text
+3221,tcp,xnm-clear-text
+3222,udp,glbp
+3222,tcp,glbp
+3223,udp,digivote
+3223,tcp,digivote
+3224,udp,aes-discovery
+3224,tcp,aes-discovery
+3225,udp,fcip-port
+3225,tcp,fcip-port
+3226,udp,isi-irp
+3226,tcp,isi-irp
+3227,udp,dwnmshttp
+3227,tcp,dwnmshttp
+3228,udp,dwmsgserver
+3228,tcp,dwmsgserver
+3229,udp,global-cd-port
+3229,tcp,global-cd-port
+3230,udp,sftdst-port
+3230,tcp,sftdst-port
+3231,udp,dsnl
+3231,tcp,dsnl
+3232,udp,mdtp
+3232,tcp,mdtp
+3233,udp,whisker
+3233,tcp,whisker
+3234,udp,alchemy
+3234,tcp,alchemy
+3235,udp,mdap-port
+3235,tcp,mdap-port
+3236,udp,apparenet-ts
+3236,tcp,apparenet-ts
+3237,udp,apparenet-tps
+3237,tcp,apparenet-tps
+3238,udp,apparenet-as
+3238,tcp,apparenet-as
+3239,udp,apparenet-ui
+3239,tcp,apparenet-ui
+3240,udp,triomotion
+3240,tcp,triomotion
+3241,udp,sysorb
+3241,tcp,sysorb
+3242,udp,sdp-id-port
+3242,tcp,sdp-id-port
+3243,udp,timelot
+3243,tcp,timelot
+3244,udp,onesaf
+3244,tcp,onesaf
+3245,udp,vieo-fe
+3245,tcp,vieo-fe
+3246,udp,dvt-system
+3246,tcp,dvt-system
+3247,udp,dvt-data
+3247,tcp,dvt-data
+3248,udp,procos-lm
+3248,tcp,procos-lm
+3249,udp,ssp
+3249,tcp,ssp
+3250,udp,hicp
+3250,tcp,hicp
+3251,udp,sysscanner
+3251,tcp,sysscanner
+3252,udp,dhe
+3252,tcp,dhe
+3253,udp,pda-data
+3253,tcp,pda-data
+3254,udp,pda-sys
+3254,tcp,pda-sys
+3255,udp,semaphore
+3255,tcp,semaphore
+3256,udp,cpqrpm-agent
+3256,tcp,cpqrpm-agent
+3257,udp,cpqrpm-server
+3257,tcp,cpqrpm-server
+3258,udp,ivecon-port
+3258,tcp,ivecon-port
+3259,udp,epncdp2
+3259,tcp,epncdp2
+3260,udp,iscsi-target
+3260,tcp,iscsi-target
+3261,udp,winshadow
+3261,tcp,winshadow
+3262,udp,necp
+3262,tcp,necp
+3263,udp,ecolor-imager
+3263,tcp,ecolor-imager
+3264,udp,ccmail
+3264,tcp,ccmail
+3265,udp,altav-tunnel
+3265,tcp,altav-tunnel
+3266,udp,ns-cfg-server
+3266,tcp,ns-cfg-server
+3267,udp,ibm-dial-out
+3267,tcp,ibm-dial-out
+3268,udp,msft-gc
+3268,tcp,msft-gc
+3269,udp,msft-gc-ssl
+3269,tcp,msft-gc-ssl
+3270,udp,verismart
+3270,tcp,verismart
+3271,udp,csoft-prev
+3271,tcp,csoft-prev
+3272,udp,user-manager
+3272,tcp,user-manager
+3273,udp,sxmp
+3273,tcp,sxmp
+3274,udp,ordinox-server
+3274,tcp,ordinox-server
+3275,udp,samd
+3275,tcp,samd
+3276,udp,maxim-asics
+3276,tcp,maxim-asics
+3277,udp,awg-proxy
+3277,tcp,awg-proxy
+3278,udp,lkcmserver
+3278,tcp,lkcmserver
+3279,udp,admind
+3279,tcp,admind
+3280,udp,vs-server
+3280,tcp,vs-server
+3281,udp,sysopt
+3281,tcp,sysopt
+3282,udp,datusorb
+3282,tcp,datusorb
+3283,udp,net-assistant
+3283,tcp,net-assistant
+3284,udp,4talk
+3284,tcp,4talk
+3285,udp,plato
+3285,tcp,plato
+3286,udp,e-net
+3286,tcp,e-net
+3287,udp,directvdata
+3287,tcp,directvdata
+3288,udp,cops
+3288,tcp,cops
+3289,udp,enpc
+3289,tcp,enpc
+3290,udp,caps-lm
+3290,tcp,caps-lm
+3291,udp,sah-lm
+3291,tcp,sah-lm
+3292,udp,cart-o-rama
+3292,tcp,cart-o-rama
+3293,udp,fg-fps
+3293,tcp,fg-fps
+3294,udp,fg-gip
+3294,tcp,fg-gip
+3295,udp,dyniplookup
+3295,tcp,dyniplookup
+3296,udp,rib-slm
+3296,tcp,rib-slm
+3297,udp,cytel-lm
+3297,tcp,cytel-lm
+3298,udp,deskview
+3298,tcp,deskview
+3299,udp,pdrncs
+3299,tcp,pdrncs
+3302,udp,mcs-fastmail
+3302,tcp,mcs-fastmail
+3303,udp,opsession-clnt
+3303,tcp,opsession-clnt
+3304,udp,opsession-srvr
+3304,tcp,opsession-srvr
+3305,udp,odette-ftp
+3305,tcp,odette-ftp
+3306,udp,mysql
+3306,tcp,mysql
+3307,udp,opsession-prxy
+3307,tcp,opsession-prxy
+3308,udp,tns-server
+3308,tcp,tns-server
+3309,udp,tns-adv
+3309,tcp,tns-adv
+3310,udp,dyna-access
+3310,tcp,dyna-access
+3311,udp,mcns-tel-ret
+3311,tcp,mcns-tel-ret
+3312,udp,appman-server
+3312,tcp,appman-server
+3313,udp,uorb
+3313,tcp,uorb
+3314,udp,uohost
+3314,tcp,uohost
+3315,udp,cdid
+3315,tcp,cdid
+3316,udp,aicc-cmi
+3316,tcp,aicc-cmi
+3317,udp,vsaiport
+3317,tcp,vsaiport
+3318,udp,ssrip
+3318,tcp,ssrip
+3319,udp,sdt-lmd
+3319,tcp,sdt-lmd
+3320,udp,officelink2000
+3320,tcp,officelink2000
+3321,udp,vnsstr
+3321,tcp,vnsstr
+3326,udp,sftu
+3326,tcp,sftu
+3327,udp,bbars
+3327,tcp,bbars
+3328,udp,egptlm
+3328,tcp,egptlm
+3329,udp,hp-device-disc
+3329,tcp,hp-device-disc
+3330,udp,mcs-calypsoicf
+3330,tcp,mcs-calypsoicf
+3331,udp,mcs-messaging
+3331,tcp,mcs-messaging
+3332,udp,mcs-mailsvr
+3332,tcp,mcs-mailsvr
+3333,udp,dec-notes
+3333,tcp,dec-notes
+3334,udp,directv-web
+3334,tcp,directv-web
+3335,udp,directv-soft
+3335,tcp,directv-soft
+3336,udp,directv-tick
+3336,tcp,directv-tick
+3337,udp,directv-catlg
+3337,tcp,directv-catlg
+3338,udp,anet-b
+3338,tcp,anet-b
+3339,udp,anet-l
+3339,tcp,anet-l
+3340,udp,anet-m
+3340,tcp,anet-m
+3341,udp,anet-h
+3341,tcp,anet-h
+3342,udp,webtie
+3342,tcp,webtie
+3343,udp,ms-cluster-net
+3343,tcp,ms-cluster-net
+3344,udp,bnt-manager
+3344,tcp,bnt-manager
+3345,udp,influence
+3345,tcp,influence
+3346,udp,trnsprntproxy
+3346,tcp,trnsprntproxy
+3347,udp,phoenix-rpc
+3347,tcp,phoenix-rpc
+3348,udp,pangolin-laser
+3348,tcp,pangolin-laser
+3349,udp,chevinservices
+3349,tcp,chevinservices
+3350,udp,findviatv
+3350,tcp,findviatv
+3351,udp,btrieve
+3351,tcp,btrieve
+3352,udp,ssql
+3352,tcp,ssql
+3353,udp,fatpipe
+3353,tcp,fatpipe
+3354,udp,suitjd
+3354,tcp,suitjd
+3355,udp,ordinox-dbase
+3355,tcp,ordinox-dbase
+3356,udp,upnotifyps
+3356,tcp,upnotifyps
+3357,udp,adtech-test
+3357,tcp,adtech-test
+3358,udp,mpsysrmsvr
+3358,tcp,mpsysrmsvr
+3359,udp,wg-netforce
+3359,tcp,wg-netforce
+3360,udp,kv-server
+3360,tcp,kv-server
+3361,udp,kv-agent
+3361,tcp,kv-agent
+3362,udp,dj-ilm
+3362,tcp,dj-ilm
+3363,udp,nati-vi-server
+3363,tcp,nati-vi-server
+3364,udp,creativeserver
+3364,tcp,creativeserver
+3365,udp,contentserver
+3365,tcp,contentserver
+3366,udp,creativepartnr
+3366,tcp,creativepartnr
+3372,udp,tip2
+3372,tcp,tip2
+3373,udp,lavenir-lm
+3373,tcp,lavenir-lm
+3374,udp,cluster-disc
+3374,tcp,cluster-disc
+3375,udp,vsnm-agent
+3375,tcp,vsnm-agent
+3376,udp,cdbroker
+3376,tcp,cdbroker
+3377,udp,cogsys-lm
+3377,tcp,cogsys-lm
+3378,udp,wsicopy
+3378,tcp,wsicopy
+3379,udp,socorfs
+3379,tcp,socorfs
+3380,udp,sns-channels
+3380,tcp,sns-channels
+3381,udp,geneous
+3381,tcp,geneous
+3382,udp,fujitsu-neat
+3382,tcp,fujitsu-neat
+3383,udp,esp-lm
+3383,tcp,esp-lm
+3384,udp,hp-clic
+3384,tcp,hp-clic
+3385,udp,qnxnetman
+3385,tcp,qnxnetman
+3386,udp,gprs-sig
+3386,tcp,gprs-data
+3387,udp,backroomnet
+3387,tcp,backroomnet
+3388,udp,cbserver
+3388,tcp,cbserver
+3389,udp,ms-wbt-server
+3389,tcp,ms-wbt-server
+3390,udp,dsc
+3390,tcp,dsc
+3391,udp,savant
+3391,tcp,savant
+3392,udp,efi-lm
+3392,tcp,efi-lm
+3393,udp,d2k-tapestry1
+3393,tcp,d2k-tapestry1
+3394,udp,d2k-tapestry2
+3394,tcp,d2k-tapestry2
+3395,udp,dyna-lm
+3395,tcp,dyna-lm
+3396,udp,printer_agent
+3396,tcp,printer_agent
+3397,udp,cloanto-lm
+3397,tcp,cloanto-lm
+3398,udp,mercantile
+3398,tcp,mercantile
+3399,udp,csms
+3399,tcp,csms
+3400,udp,csms2
+3400,tcp,csms2
+3401,udp,filecast
+3401,tcp,filecast
+3402,udp,fxaengine-net
+3402,tcp,fxaengine-net
+3403,udp,copysnap
+3403,tcp,copysnap
+3405,udp,nokia-ann-ch1
+3405,tcp,nokia-ann-ch1
+3406,udp,nokia-ann-ch2
+3406,tcp,nokia-ann-ch2
+3407,udp,ldap-admin
+3407,tcp,ldap-admin
+3408,udp,issapi
+3408,tcp,issapi
+3409,udp,networklens
+3409,tcp,networklens
+3410,udp,networklenss
+3410,tcp,networklenss
+3411,udp,biolink-auth
+3411,tcp,biolink-auth
+3412,udp,xmlblaster
+3412,tcp,xmlblaster
+3413,udp,svnet
+3413,tcp,svnet
+3414,udp,wip-port
+3414,tcp,wip-port
+3415,udp,bcinameservice
+3415,tcp,bcinameservice
+3416,udp,commandport
+3416,tcp,commandport
+3417,udp,csvr
+3417,tcp,csvr
+3418,udp,rnmap
+3418,tcp,rnmap
+3419,udp,softaudit
+3419,tcp,softaudit
+3420,udp,ifcp-port
+3420,tcp,ifcp-port
+3421,udp,bmap
+3421,tcp,bmap
+3422,udp,rusb-sys-port
+3422,tcp,rusb-sys-port
+3423,udp,xtrm
+3423,tcp,xtrm
+3424,udp,xtrms
+3424,tcp,xtrms
+3425,udp,agps-port
+3425,tcp,agps-port
+3426,udp,arkivio
+3426,tcp,arkivio
+3427,udp,websphere-snmp
+3427,tcp,websphere-snmp
+3428,udp,twcss
+3428,tcp,twcss
+3429,udp,gcsp
+3429,tcp,gcsp
+3430,udp,ssdispatch
+3430,tcp,ssdispatch
+3431,udp,ndl-als
+3431,tcp,ndl-als
+3432,udp,osdcp
+3432,tcp,osdcp
+3433,udp,alta-smp
+3433,tcp,alta-smp
+3434,udp,opencm
+3434,tcp,opencm
+3435,udp,pacom
+3435,tcp,pacom
+3436,udp,gc-config
+3436,tcp,gc-config
+3437,udp,autocueds
+3437,tcp,autocueds
+3438,udp,spiral-admin
+3438,tcp,spiral-admin
+3439,udp,hri-port
+3439,tcp,hri-port
+3440,udp,ans-console
+3440,tcp,ans-console
+3441,udp,connect-client
+3441,tcp,connect-client
+3442,udp,connect-server
+3442,tcp,connect-server
+3443,udp,ov-nnm-websrv
+3443,tcp,ov-nnm-websrv
+3444,udp,denali-server
+3444,tcp,denali-server
+3445,udp,monp
+3445,tcp,monp
+3446,udp,3comfaxrpc
+3446,tcp,3comfaxrpc
+3447,udp,cddn
+3447,tcp,cddn
+3448,udp,dnc-port
+3448,tcp,dnc-port
+3449,udp,hotu-chat
+3449,tcp,hotu-chat
+3450,udp,castorproxy
+3450,tcp,castorproxy
+3451,udp,asam
+3451,tcp,asam
+3452,udp,sabp-signal
+3452,tcp,sabp-signal
+3453,udp,pscupd
+3453,tcp,pscupd
+3454,tcp,mira
+3455,udp,prsvp
+3455,tcp,prsvp
+3456,udp,vat
+3456,tcp,vat
+3457,udp,vat-control
+3457,tcp,vat-control
+3458,udp,d3winosfi
+3458,tcp,d3winosfi
+3459,udp,integral
+3459,tcp,integral
+3460,udp,edm-manager
+3460,tcp,edm-manager
+3461,udp,edm-stager
+3461,tcp,edm-stager
+3462,udp,edm-std-notify
+3462,tcp,edm-std-notify
+3463,udp,edm-adm-notify
+3463,tcp,edm-adm-notify
+3464,udp,edm-mgr-sync
+3464,tcp,edm-mgr-sync
+3465,udp,edm-mgr-cntrl
+3465,tcp,edm-mgr-cntrl
+3466,udp,workflow
+3466,tcp,workflow
+3467,udp,rcst
+3467,tcp,rcst
+3468,udp,ttcmremotectrl
+3468,tcp,ttcmremotectrl
+3469,udp,pluribus
+3469,tcp,pluribus
+3470,udp,jt400
+3470,tcp,jt400
+3471,udp,jt400-ssl
+3471,tcp,jt400-ssl
+3472,udp,jaugsremotec-1
+3472,tcp,jaugsremotec-1
+3473,udp,jaugsremotec-2
+3473,tcp,jaugsremotec-2
+3474,udp,ttntspauto
+3474,tcp,ttntspauto
+3475,udp,genisar-port
+3475,tcp,genisar-port
+3476,udp,nppmp
+3476,tcp,nppmp
+3477,udp,ecomm
+3477,tcp,ecomm
+3478,udp,nat-stun-port
+3478,tcp,nat-stun-port
+3479,udp,twrpc
+3479,tcp,twrpc
+3480,udp,plethora
+3480,tcp,plethora
+3481,udp,cleanerliverc
+3481,tcp,cleanerliverc
+3482,udp,vulture
+3482,tcp,vulture
+3483,udp,slim-devices
+3483,tcp,slim-devices
+3484,udp,gbs-stp
+3484,tcp,gbs-stp
+3485,udp,celatalk
+3485,tcp,celatalk
+3486,udp,ifsf-hb-port
+3486,tcp,ifsf-hb-port
+3487,udp,ltcudp
+3487,tcp,ltctcp
+3488,udp,fs-rh-srv
+3488,tcp,fs-rh-srv
+3489,udp,dtp-dia
+3489,tcp,dtp-dia
+3490,udp,colubris
+3490,tcp,colubris
+3491,udp,swr-port
+3491,tcp,swr-port
+3492,udp,tvdumtray-port
+3492,tcp,tvdumtray-port
+3493,udp,nut
+3493,tcp,nut
+3494,udp,ibm3494
+3494,tcp,ibm3494
+3495,udp,seclayer-tcp
+3495,tcp,seclayer-tcp
+3496,udp,seclayer-tls
+3496,tcp,seclayer-tls
+3497,udp,ipether232port
+3497,tcp,ipether232port
+3498,udp,dashpas-port
+3498,tcp,dashpas-port
+3499,udp,sccip-media
+3499,tcp,sccip-media
+3500,udp,rtmp-port
+3500,tcp,rtmp-port
+3501,udp,isoft-p2p
+3501,tcp,isoft-p2p
+3502,udp,avinstalldisc
+3502,tcp,avinstalldisc
+3503,udp,lsp-ping
+3503,tcp,lsp-ping
+3504,udp,ironstorm
+3504,tcp,ironstorm
+3505,udp,ccmcomm
+3505,tcp,ccmcomm
+3506,udp,apc-3506
+3506,tcp,apc-3506
+3507,udp,nesh-broker
+3507,tcp,nesh-broker
+3508,udp,interactionweb
+3508,tcp,interactionweb
+3509,udp,vt-ssl
+3509,tcp,vt-ssl
+3510,udp,xss-port
+3510,tcp,xss-port
+3511,udp,webmail-2
+3511,tcp,webmail-2
+3512,udp,aztec
+3512,tcp,aztec
+3513,udp,arcpd
+3513,tcp,arcpd
+3514,udp,must-p2p
+3514,tcp,must-p2p
+3515,udp,must-backplane
+3515,tcp,must-backplane
+3516,udp,smartcard-port
+3516,tcp,smartcard-port
+3517,udp,802-11-iapp
+3517,tcp,802-11-iapp
+3518,udp,artifact-msg
+3518,tcp,artifact-msg
+3519,udp,galileo
+3519,tcp,nvmsgd
+3520,udp,galileolog
+3520,tcp,galileolog
+3521,udp,mc3ss
+3521,tcp,mc3ss
+3522,udp,nssocketport
+3522,tcp,nssocketport
+3523,udp,odeumservlink
+3523,tcp,odeumservlink
+3524,udp,ecmport
+3524,tcp,ecmport
+3525,udp,eisport
+3525,tcp,eisport
+3526,udp,starquiz-port
+3526,tcp,starquiz-port
+3527,udp,beserver-msg-q
+3527,tcp,beserver-msg-q
+3528,udp,jboss-iiop
+3528,tcp,jboss-iiop
+3529,udp,jboss-iiop-ssl
+3529,tcp,jboss-iiop-ssl
+3530,udp,gf
+3530,tcp,gf
+3531,udp,joltid
+3531,tcp,joltid
+3532,udp,raven-rmp
+3532,tcp,raven-rmp
+3533,udp,raven-rdp
+3533,tcp,raven-rdp
+3534,udp,urld-port
+3534,tcp,urld-port
+3535,udp,ms-la
+3535,tcp,ms-la
+3536,udp,snac
+3536,tcp,snac
+3537,udp,ni-visa-remote
+3537,tcp,ni-visa-remote
+3538,udp,ibm-diradm
+3538,tcp,ibm-diradm
+3539,udp,ibm-diradm-ssl
+3539,tcp,ibm-diradm-ssl
+3540,udp,pnrp-port
+3540,tcp,pnrp-port
+3541,udp,voispeed-port
+3541,tcp,voispeed-port
+3542,udp,hacl-monitor
+3542,tcp,hacl-monitor
+3543,udp,qftest-lookup
+3543,tcp,qftest-lookup
+3544,udp,teredo
+3544,tcp,teredo
+3545,udp,camac
+3545,tcp,camac
+3547,udp,symantec-sim
+3547,tcp,symantec-sim
+3548,udp,interworld
+3548,tcp,interworld
+3549,udp,tellumat-nms
+3549,tcp,tellumat-nms
+3550,udp,ssmpp
+3550,tcp,ssmpp
+3551,udp,apcupsd
+3551,tcp,apcupsd
+3552,udp,taserver
+3552,tcp,taserver
+3553,udp,rbr-discovery
+3553,tcp,rbr-discovery
+3554,udp,questnotify
+3554,tcp,questnotify
+3555,udp,razor
+3555,tcp,razor
+3556,udp,sky-transport
+3556,tcp,sky-transport
+3557,udp,personalos-001
+3557,tcp,personalos-001
+3558,udp,mcp-port
+3558,tcp,mcp-port
+3559,udp,cctv-port
+3559,tcp,cctv-port
+3560,udp,iniserve-port
+3560,tcp,iniserve-port
+3561,udp,bmc-onekey
+3561,tcp,bmc-onekey
+3562,udp,sdbproxy
+3562,tcp,sdbproxy
+3563,udp,watcomdebug
+3563,tcp,watcomdebug
+3564,udp,esimport
+3564,tcp,esimport
+3565,sctp,m2pa
+3565,tcp,m2pa
+3566,udp,quest-launcher
+3566,tcp,quest-launcher
+3567,udp,emware-oft
+3567,tcp,emware-oft
+3568,udp,emware-epss
+3568,tcp,emware-epss
+3569,udp,mbg-ctrl
+3569,tcp,mbg-ctrl
+3570,udp,mccwebsvr-port
+3570,tcp,mccwebsvr-port
+3571,udp,megardsvr-port
+3571,tcp,megardsvr-port
+3572,udp,megaregsvrport
+3572,tcp,megaregsvrport
+3573,udp,tag-ups-1
+3573,tcp,tag-ups-1
+3574,udp,dmaf-caster
+3574,tcp,dmaf-server
+3575,udp,ccm-port
+3575,tcp,ccm-port
+3576,udp,cmc-port
+3576,tcp,cmc-port
+3577,udp,config-port
+3577,tcp,config-port
+3578,udp,data-port
+3578,tcp,data-port
+3579,udp,ttat3lb
+3579,tcp,ttat3lb
+3580,udp,nati-svrloc
+3580,tcp,nati-svrloc
+3581,udp,kfxaclicensing
+3581,tcp,kfxaclicensing
+3582,udp,press
+3582,tcp,press
+3583,udp,canex-watch
+3583,tcp,canex-watch
+3584,udp,u-dbap
+3584,tcp,u-dbap
+3585,udp,emprise-lls
+3585,tcp,emprise-lls
+3586,udp,emprise-lsc
+3586,tcp,emprise-lsc
+3587,udp,p2pgroup
+3587,tcp,p2pgroup
+3588,udp,sentinel
+3588,tcp,sentinel
+3589,udp,isomair
+3589,tcp,isomair
+3590,udp,wv-csp-sms
+3590,tcp,wv-csp-sms
+3591,udp,gtrack-server
+3591,tcp,gtrack-server
+3592,udp,gtrack-ne
+3592,tcp,gtrack-ne
+3593,udp,bpmd
+3593,tcp,bpmd
+3594,udp,mediaspace
+3594,tcp,mediaspace
+3595,udp,shareapp
+3595,tcp,shareapp
+3596,udp,iw-mmogame
+3596,tcp,iw-mmogame
+3597,udp,a14
+3597,tcp,a14
+3598,udp,a15
+3598,tcp,a15
+3599,udp,quasar-server
+3599,tcp,quasar-server
+3600,udp,trap-daemon
+3600,tcp,trap-daemon
+3601,udp,visinet-gui
+3601,tcp,visinet-gui
+3602,udp,infiniswitchcl
+3602,tcp,infiniswitchcl
+3603,udp,int-rcv-cntrl
+3603,tcp,int-rcv-cntrl
+3604,udp,bmc-jmx-port
+3604,tcp,bmc-jmx-port
+3605,udp,comcam-io
+3605,tcp,comcam-io
+3606,udp,splitlock
+3606,tcp,splitlock
+3607,udp,precise-i3
+3607,tcp,precise-i3
+3608,udp,trendchip-dcp
+3608,tcp,trendchip-dcp
+3609,udp,cpdi-pidas-cm
+3609,tcp,cpdi-pidas-cm
+3610,udp,echonet
+3610,tcp,echonet
+3611,udp,six-degrees
+3611,tcp,six-degrees
+3612,udp,hp-dataprotect
+3612,tcp,hp-dataprotect
+3613,udp,alaris-disc
+3613,tcp,alaris-disc
+3614,udp,sigma-port
+3614,tcp,sigma-port
+3615,udp,start-network
+3615,tcp,start-network
+3616,udp,cd3o-protocol
+3616,tcp,cd3o-protocol
+3617,udp,sharp-server
+3617,tcp,sharp-server
+3618,udp,aairnet-1
+3618,tcp,aairnet-1
+3619,udp,aairnet-2
+3619,tcp,aairnet-2
+3620,udp,ep-pcp
+3620,tcp,ep-pcp
+3621,udp,ep-nsp
+3621,tcp,ep-nsp
+3622,udp,ff-lr-port
+3622,tcp,ff-lr-port
+3623,udp,haipe-discover
+3623,tcp,haipe-discover
+3624,udp,dist-upgrade
+3624,tcp,dist-upgrade
+3625,udp,volley
+3625,tcp,volley
+3626,udp,bvcdaemon-port
+3626,tcp,bvcdaemon-port
+3627,udp,jamserverport
+3627,tcp,jamserverport
+3628,udp,ept-machine
+3628,tcp,ept-machine
+3629,udp,escvpnet
+3629,tcp,escvpnet
+3630,udp,cs-remote-db
+3630,tcp,cs-remote-db
+3631,udp,cs-services
+3631,tcp,cs-services
+3632,udp,distcc
+3632,tcp,distcc
+3633,udp,wacp
+3633,tcp,wacp
+3634,udp,hlibmgr
+3634,tcp,hlibmgr
+3635,udp,sdo
+3635,tcp,sdo
+3636,udp,opscenter
+3636,tcp,opscenter
+3637,udp,scservp
+3637,tcp,scservp
+3638,udp,ehp-backup
+3638,tcp,ehp-backup
+3639,udp,xap-ha
+3639,tcp,xap-ha
+3640,udp,netplay-port1
+3640,tcp,netplay-port1
+3641,udp,netplay-port2
+3641,tcp,netplay-port2
+3642,udp,juxml-port
+3642,tcp,juxml-port
+3643,udp,audiojuggler
+3643,tcp,audiojuggler
+3644,udp,ssowatch
+3644,tcp,ssowatch
+3645,udp,cyc
+3645,tcp,cyc
+3646,udp,xss-srv-port
+3646,tcp,xss-srv-port
+3647,udp,splitlock-gw
+3647,tcp,splitlock-gw
+3648,udp,fjcp
+3648,tcp,fjcp
+3649,udp,nmmp
+3649,tcp,nmmp
+3650,udp,prismiq-plugin
+3650,tcp,prismiq-plugin
+3651,udp,xrpc-registry
+3651,tcp,xrpc-registry
+3652,udp,vxcrnbuport
+3652,tcp,vxcrnbuport
+3653,udp,tsp
+3653,tcp,tsp
+3654,udp,vaprtm
+3654,tcp,vaprtm
+3655,udp,abatemgr
+3655,tcp,abatemgr
+3656,udp,abatjss
+3656,tcp,abatjss
+3657,udp,immedianet-bcn
+3657,tcp,immedianet-bcn
+3658,udp,ps-ams
+3658,tcp,ps-ams
+3659,udp,apple-sasl
+3659,tcp,apple-sasl
+3660,udp,can-nds-ssl
+3660,tcp,can-nds-ssl
+3661,udp,can-ferret-ssl
+3661,tcp,can-ferret-ssl
+3662,udp,pserver
+3662,tcp,pserver
+3663,udp,dtp
+3663,tcp,dtp
+3664,udp,ups-engine
+3664,tcp,ups-engine
+3665,udp,ent-engine
+3665,tcp,ent-engine
+3666,udp,eserver-pap
+3666,tcp,eserver-pap
+3667,udp,infoexch
+3667,tcp,infoexch
+3668,udp,dell-rm-port
+3668,tcp,dell-rm-port
+3669,udp,casanswmgmt
+3669,tcp,casanswmgmt
+3670,udp,smile
+3670,tcp,smile
+3671,udp,efcp
+3671,tcp,efcp
+3672,udp,lispworks-orb
+3672,tcp,lispworks-orb
+3673,udp,mediavault-gui
+3673,tcp,mediavault-gui
+3674,udp,wininstall-ipc
+3674,tcp,wininstall-ipc
+3675,udp,calltrax
+3675,tcp,calltrax
+3676,udp,va-pacbase
+3676,tcp,va-pacbase
+3677,udp,roverlog
+3677,tcp,roverlog
+3678,udp,ipr-dglt
+3678,tcp,ipr-dglt
+3679,udp,newton-dock
+3679,tcp,newton-dock
+3680,udp,npds-tracker
+3680,tcp,npds-tracker
+3681,udp,bts-x73
+3681,tcp,bts-x73
+3682,udp,cas-mapi
+3682,tcp,cas-mapi
+3683,udp,bmc-ea
+3683,tcp,bmc-ea
+3684,udp,faxstfx-port
+3684,tcp,faxstfx-port
+3685,udp,dsx-agent
+3685,tcp,dsx-agent
+3686,udp,tnmpv2
+3686,tcp,tnmpv2
+3687,udp,simple-push
+3687,tcp,simple-push
+3688,udp,simple-push-s
+3688,tcp,simple-push-s
+3689,udp,daap
+3689,tcp,daap
+3690,udp,svn
+3690,tcp,svn
+3691,udp,magaya-network
+3691,tcp,magaya-network
+3692,udp,intelsync
+3692,tcp,intelsync
+3693,udp,gttp
+3693,tcp,gttp
+3694,udp,vpncpp
+3694,tcp,vpncpp
+3695,udp,bmc-data-coll
+3695,tcp,bmc-data-coll
+3696,udp,telnetcpcd
+3696,tcp,telnetcpcd
+3697,udp,nw-license
+3697,tcp,nw-license
+3698,udp,sagectlpanel
+3698,tcp,sagectlpanel
+3699,udp,kpn-icw
+3699,tcp,kpn-icw
+3700,udp,lrs-paging
+3700,tcp,lrs-paging
+3701,udp,netcelera
+3701,tcp,netcelera
+3702,udp,upnp-discovery
+3702,tcp,upnp-discovery
+3703,udp,adobeserver-3
+3703,tcp,adobeserver-3
+3704,udp,adobeserver-4
+3704,tcp,adobeserver-4
+3705,udp,adobeserver-5
+3705,tcp,adobeserver-5
+3706,udp,rt-event
+3706,tcp,rt-event
+3707,udp,rt-event-s
+3707,tcp,rt-event-s
+3708,tcp,sun-as-iiops
+3708,udp,sun-as-iiops
+3709,udp,ca-idms
+3709,tcp,ca-idms
+3710,udp,portgate-auth
+3710,tcp,portgate-auth
+3711,udp,edb-server2
+3711,tcp,edb-server2
+3712,udp,sentinel-ent
+3712,tcp,sentinel-ent
+3713,udp,tftps
+3713,tcp,tftps
+3714,udp,delos-dms
+3714,tcp,delos-dms
+3715,udp,anoto-rendezv
+3715,tcp,anoto-rendezv
+3716,udp,wv-csp-sms-cir
+3716,tcp,wv-csp-sms-cir
+3717,udp,wv-csp-udp-cir
+3717,tcp,wv-csp-udp-cir
+3718,udp,opus-services
+3718,tcp,opus-services
+3719,udp,itelserverport
+3719,tcp,itelserverport
+3720,udp,ufastro-instr
+3720,tcp,ufastro-instr
+3721,udp,xsync
+3721,tcp,xsync
+3722,udp,xserveraid
+3722,tcp,xserveraid
+3723,udp,sychrond
+3723,tcp,sychrond
+3724,udp,battlenet
+3724,tcp,battlenet
+3725,udp,na-er-tip
+3725,tcp,na-er-tip
+3726,udp,array-manager
+3726,tcp,array-manager
+3727,udp,e-mdu
+3727,tcp,e-mdu
+3728,udp,e-woa
+3728,tcp,e-woa
+3729,udp,fksp-audit
+3729,tcp,fksp-audit
+3730,udp,client-ctrl
+3730,tcp,client-ctrl
+3731,udp,smap
+3731,tcp,smap
+3732,udp,m-wnn
+3732,tcp,m-wnn
+3733,udp,multip-msg
+3733,tcp,multip-msg
+3734,udp,synel-data
+3734,tcp,synel-data
+3735,udp,pwdis
+3735,tcp,pwdis
+3736,udp,rs-rmi
+3736,tcp,rs-rmi
+3738,udp,versatalk
+3738,tcp,versatalk
+3739,udp,launchbird-lm
+3739,tcp,launchbird-lm
+3740,udp,heartbeat
+3740,tcp,heartbeat
+3741,udp,wysdma
+3741,tcp,wysdma
+3742,udp,cst-port
+3742,tcp,cst-port
+3743,udp,ipcs-command
+3743,tcp,ipcs-command
+3744,udp,sasg
+3744,tcp,sasg
+3745,udp,gw-call-port
+3745,tcp,gw-call-port
+3746,udp,linktest
+3746,tcp,linktest
+3747,udp,linktest-s
+3747,tcp,linktest-s
+3748,udp,webdata
+3748,tcp,webdata
+3749,udp,cimtrak
+3749,tcp,cimtrak
+3750,udp,cbos-ip-port
+3750,tcp,cbos-ip-port
+3751,udp,gprs-cube
+3751,tcp,gprs-cube
+3752,udp,vipremoteagent
+3752,tcp,vipremoteagent
+3753,udp,nattyserver
+3753,tcp,nattyserver
+3754,udp,timestenbroker
+3754,tcp,timestenbroker
+3755,udp,sas-remote-hlp
+3755,tcp,sas-remote-hlp
+3756,udp,canon-capt
+3756,tcp,canon-capt
+3757,udp,grf-port
+3757,tcp,grf-port
+3758,udp,apw-registry
+3758,tcp,apw-registry
+3759,udp,exapt-lmgr
+3759,tcp,exapt-lmgr
+3760,udp,adtempusclient
+3760,tcp,adtempusclient
+3761,udp,gsakmp
+3761,tcp,gsakmp
+3762,udp,gbs-smp
+3762,tcp,gbs-smp
+3763,udp,xo-wave
+3763,tcp,xo-wave
+3764,udp,mni-prot-rout
+3764,tcp,mni-prot-rout
+3765,udp,rtraceroute
+3765,tcp,rtraceroute
+3767,udp,listmgr-port
+3767,tcp,listmgr-port
+3768,udp,rblcheckd
+3768,tcp,rblcheckd
+3769,udp,haipe-otnk
+3769,tcp,haipe-otnk
+3770,udp,cindycollab
+3770,tcp,cindycollab
+3771,udp,paging-port
+3771,tcp,paging-port
+3772,udp,ctp
+3772,tcp,ctp
+3773,udp,ctdhercules
+3773,tcp,ctdhercules
+3774,udp,zicom
+3774,tcp,zicom
+3775,udp,ispmmgr
+3775,tcp,ispmmgr
+3776,tcp,dvcprov-port
+3776,udp,dvcprov-port
+3777,udp,jibe-eb
+3777,tcp,jibe-eb
+3778,udp,c-h-it-port
+3778,tcp,c-h-it-port
+3779,udp,cognima
+3779,tcp,cognima
+3780,udp,nnp
+3780,tcp,nnp
+3781,udp,abcvoice-port
+3781,tcp,abcvoice-port
+3782,udp,iso-tp0s
+3782,tcp,iso-tp0s
+3783,tcp,bim-pem
+3783,udp,bim-pem
+3784,tcp,bfd-control
+3784,udp,bfd-control
+3785,tcp,bfd-echo
+3785,udp,bfd-echo
+3786,tcp,upstriggervsw
+3786,udp,upstriggervsw
+3787,tcp,fintrx
+3787,udp,fintrx
+3788,tcp,isrp-port
+3788,udp,isrp-port
+3789,tcp,remotedeploy
+3789,udp,remotedeploy
+3790,tcp,quickbooksrds
+3790,udp,quickbooksrds
+3791,tcp,tvnetworkvideo
+3791,udp,tvnetworkvideo
+3792,tcp,sitewatch
+3792,udp,sitewatch
+3793,tcp,dcsoftware
+3793,udp,dcsoftware
+3794,tcp,jaus
+3794,udp,jaus
+3795,tcp,myblast
+3795,udp,myblast
+3796,tcp,spw-dialer
+3796,udp,spw-dialer
+3797,tcp,idps
+3797,udp,idps
+3798,tcp,minilock
+3798,udp,minilock
+3799,tcp,radius-dynauth
+3799,udp,radius-dynauth
+3800,udp,pwgpsi
+3800,tcp,pwgpsi
+3801,tcp,ibm-mgr
+3801,udp,ibm-mgr
+3802,udp,vhd
+3802,tcp,vhd
+3803,tcp,soniqsync
+3803,udp,soniqsync
+3804,tcp,iqnet-port
+3804,udp,iqnet-port
+3805,tcp,tcpdataserver
+3805,udp,tcpdataserver
+3806,tcp,wsmlb
+3806,udp,wsmlb
+3807,tcp,spugna
+3807,udp,spugna
+3808,tcp,sun-as-iiops-ca
+3808,udp,sun-as-iiops-ca
+3809,tcp,apocd
+3809,udp,apocd
+3810,tcp,wlanauth
+3810,udp,wlanauth
+3811,tcp,amp
+3811,udp,amp
+3812,tcp,neto-wol-server
+3812,udp,neto-wol-server
+3813,tcp,rap-ip
+3813,udp,rap-ip
+3814,tcp,neto-dcs
+3814,udp,neto-dcs
+3815,tcp,lansurveyorxml
+3815,udp,lansurveyorxml
+3816,tcp,sunlps-http
+3816,udp,sunlps-http
+3817,tcp,tapeware
+3817,udp,tapeware
+3818,tcp,crinis-hb
+3818,udp,crinis-hb
+3819,tcp,epl-slp
+3819,udp,epl-slp
+3820,tcp,scp
+3820,udp,scp
+3821,tcp,pmcp
+3821,udp,pmcp
+3822,tcp,acp-discovery
+3822,udp,acp-discovery
+3823,tcp,acp-conduit
+3823,udp,acp-conduit
+3824,tcp,acp-policy
+3824,udp,acp-policy
+3831,tcp,dvapps
+3831,udp,dvapps
+3832,tcp,xxnetserver
+3832,udp,xxnetserver
+3833,tcp,aipn-auth
+3833,udp,aipn-auth
+3834,tcp,spectardata
+3834,udp,spectardata
+3835,tcp,spectardb
+3835,udp,spectardb
+3836,tcp,markem-dcp
+3836,udp,markem-dcp
+3837,tcp,mkm-discovery
+3837,udp,mkm-discovery
+3838,tcp,sos
+3838,udp,sos
+3839,tcp,amx-rms
+3839,udp,amx-rms
+3840,tcp,flirtmitmir
+3840,udp,flirtmitmir
+3841,tcp,zfirm-shiprush3
+3841,udp,zfirm-shiprush3
+3842,tcp,nhci
+3842,udp,nhci
+3843,tcp,quest-agent
+3843,udp,quest-agent
+3844,tcp,rnm
+3844,udp,rnm
+3845,udp,v-one-spp
+3845,tcp,v-one-spp
+3846,tcp,an-pcp
+3846,udp,an-pcp
+3847,tcp,msfw-control
+3847,udp,msfw-control
+3848,tcp,item
+3848,udp,item
+3849,tcp,spw-dnspreload
+3849,udp,spw-dnspreload
+3850,tcp,qtms-bootstrap
+3850,udp,qtms-bootstrap
+3851,tcp,spectraport
+3851,udp,spectraport
+3852,tcp,sse-app-config
+3852,udp,sse-app-config
+3853,tcp,sscan
+3853,udp,sscan
+3854,tcp,stryker-com
+3854,udp,stryker-com
+3855,tcp,opentrac
+3855,udp,opentrac
+3856,tcp,informer
+3856,udp,informer
+3857,tcp,trap-port
+3857,udp,trap-port
+3858,tcp,trap-port-mom
+3858,udp,trap-port-mom
+3859,tcp,nav-port
+3859,udp,nav-port
+3860,tcp,sasp
+3860,udp,sasp
+3861,udp,winshadow-hd
+3861,tcp,winshadow-hd
+3862,udp,giga-pocket
+3862,tcp,giga-pocket
+3863,tcp,asap-tcp
+3863,udp,asap-udp
+3864,tcp,asap-tcp-tls
+3865,tcp,xpl
+3865,udp,xpl
+3866,tcp,dzdaemon
+3866,udp,dzdaemon
+3867,tcp,dzoglserver
+3867,udp,dzoglserver
+3868,tcp,diameter
+3869,tcp,ovsam-mgmt
+3869,udp,ovsam-mgmt
+3870,tcp,ovsam-d-agent
+3870,udp,ovsam-d-agent
+3871,tcp,avocent-adsap
+3871,udp,avocent-adsap
+3872,tcp,oem-agent
+3872,udp,oem-agent
+3873,tcp,fagordnc
+3873,udp,fagordnc
+3874,tcp,sixxsconfig
+3874,udp,sixxsconfig
+3875,udp,pnbscada
+3875,tcp,pnbscada
+3876,tcp,dl_agent
+3876,udp,dl_agent
+3877,tcp,xmpcr-interface
+3877,udp,xmpcr-interface
+3878,tcp,fotogcad
+3878,udp,fotogcad
+3879,tcp,appss-lm
+3879,udp,appss-lm
+3880,tcp,igrs
+3880,udp,igrs
+3881,tcp,idac
+3881,udp,idac
+3882,tcp,msdts1
+3882,udp,msdts1
+3883,tcp,vrpn
+3883,udp,vrpn
+3884,tcp,softrack-meter
+3884,udp,softrack-meter
+3885,udp,topflow-ssl
+3885,tcp,topflow-ssl
+3886,tcp,nei-management
+3886,udp,nei-management
+3887,tcp,ciphire-data
+3887,udp,ciphire-data
+3888,tcp,ciphire-serv
+3888,udp,ciphire-serv
+3889,tcp,dandv-tester
+3889,udp,dandv-tester
+3890,tcp,ndsconnect
+3890,udp,ndsconnect
+3891,tcp,rtc-pm-port
+3891,udp,rtc-pm-port
+3892,tcp,pcc-image-port
+3892,udp,pcc-image-port
+3893,tcp,cgi-starapi
+3893,udp,cgi-starapi
+3894,tcp,syam-agent
+3894,udp,syam-agent
+3895,tcp,syam-smc
+3895,udp,syam-smc
+3896,tcp,sdo-tls
+3896,udp,sdo-tls
+3897,tcp,sdo-ssh
+3897,udp,sdo-ssh
+3898,tcp,senip
+3898,udp,senip
+3899,tcp,itv-control
+3899,udp,itv-control
+3900,udp,udt_os
+3900,tcp,udt_os
+3901,tcp,nimsh
+3901,udp,nimsh
+3902,tcp,nimaux
+3902,udp,nimaux
+3903,tcp,charsetmgr
+3903,udp,charsetmgr
+3904,tcp,omnilink-port
+3904,udp,omnilink-port
+3905,tcp,mupdate
+3905,udp,mupdate
+3906,tcp,topovista-data
+3906,udp,topovista-data
+3907,tcp,imoguia-port
+3907,udp,imoguia-port
+3908,tcp,hppronetman
+3908,udp,hppronetman
+3909,tcp,surfcontrolcpa
+3909,udp,surfcontrolcpa
+3910,tcp,prnrequest
+3910,udp,prnrequest
+3911,tcp,prnstatus
+3911,udp,prnstatus
+3912,tcp,gbmt-stars
+3912,udp,gbmt-stars
+3913,tcp,listcrt-port
+3913,udp,listcrt-port
+3914,tcp,listcrt-port-2
+3914,udp,listcrt-port-2
+3915,tcp,agcat
+3915,udp,agcat
+3916,tcp,wysdmc
+3916,udp,wysdmc
+3917,tcp,aftmux
+3917,udp,aftmux
+3918,tcp,pktcablemmcops
+3918,udp,pktcablemmcops
+3919,tcp,hyperip
+3919,udp,hyperip
+3920,tcp,exasoftport1
+3920,udp,exasoftport1
+3921,tcp,herodotus-net
+3921,udp,herodotus-net
+3922,tcp,sor-update
+3922,udp,sor-update
+3923,tcp,symb-sb-port
+3923,udp,symb-sb-port
+3924,tcp,mpl-gprs-port
+3924,udp,mpl-gprs-port
+3925,tcp,zmp
+3925,udp,zmp
+3926,tcp,winport
+3926,udp,winport
+3927,tcp,natdataservice
+3927,udp,natdataservice
+3928,tcp,netboot-pxe
+3928,udp,netboot-pxe
+3929,tcp,smauth-port
+3929,udp,smauth-port
+3930,tcp,syam-webserver
+3930,udp,syam-webserver
+3931,tcp,msr-plugin-port
+3931,udp,msr-plugin-port
+3932,tcp,dyn-site
+3932,udp,dyn-site
+3933,tcp,plbserve-port
+3933,udp,plbserve-port
+3934,tcp,sunfm-port
+3934,udp,sunfm-port
+3935,tcp,sdp-portmapper
+3935,udp,sdp-portmapper
+3936,tcp,mailprox
+3936,udp,mailprox
+3937,tcp,dvbservdscport
+3937,udp,dvbservdscport
+3938,tcp,dbcontrol_agent
+3938,udp,dbcontrol_agent
+3939,udp,aamp
+3939,tcp,aamp
+3940,tcp,xecp-node
+3940,udp,xecp-node
+3941,tcp,homeportal-web
+3941,udp,homeportal-web
+3942,tcp,srdp
+3942,udp,srdp
+3943,tcp,tig
+3943,udp,tig
+3944,tcp,sops
+3944,udp,sops
+3945,tcp,emcads
+3945,udp,emcads
+3946,tcp,backupedge
+3946,udp,backupedge
+3947,tcp,ccp
+3947,udp,ccp
+3948,tcp,apdap
+3948,udp,apdap
+3949,tcp,drip
+3949,udp,drip
+3950,tcp,namemunge
+3950,udp,namemunge
+3951,tcp,pwgippfax
+3951,udp,pwgippfax
+3952,tcp,i3-sessionmgr
+3952,udp,i3-sessionmgr
+3953,tcp,xmlink-connect
+3953,udp,xmlink-connect
+3954,tcp,adrep
+3954,udp,adrep
+3955,tcp,p2pcommunity
+3955,udp,p2pcommunity
+3956,tcp,gvcp
+3956,udp,gvcp
+3957,tcp,mqe-broker
+3957,udp,mqe-broker
+3958,tcp,mqe-agent
+3958,udp,mqe-agent
+3959,tcp,treehopper
+3959,udp,treehopper
+3960,tcp,bess
+3960,udp,bess
+3961,tcp,proaxess
+3961,udp,proaxess
+3962,tcp,sbi-agent
+3962,udp,sbi-agent
+3963,tcp,thrp
+3963,udp,thrp
+3964,tcp,sasggprs
+3964,udp,sasggprs
+3965,tcp,ati-ip-to-ncpe
+3965,udp,ati-ip-to-ncpe
+3966,tcp,bflckmgr
+3966,udp,bflckmgr
+3967,tcp,ppsms
+3967,udp,ppsms
+3968,tcp,ianywhere-dbns
+3968,udp,ianywhere-dbns
+3969,tcp,landmarks
+3969,udp,landmarks
+3970,tcp,lanrevagent
+3970,udp,lanrevagent
+3971,tcp,lanrevserver
+3971,udp,lanrevserver
+3972,tcp,iconp
+3972,udp,iconp
+3973,tcp,progistics
+3973,udp,progistics
+3974,tcp,citysearch
+3974,udp,citysearch
+3975,tcp,airshot
+3975,udp,airshot
+3976,tcp,opswagent
+3976,udp,opswagent
+3977,tcp,opswmanager
+3977,udp,opswmanager
+3978,tcp,secure-cfg-svr
+3978,udp,secure-cfg-svr
+3979,tcp,smwan
+3979,udp,smwan
+3980,tcp,acms
+3980,udp,acms
+3981,tcp,starfish
+3981,udp,starfish
+3982,tcp,eis
+3982,udp,eis
+3983,tcp,eisp
+3983,udp,eisp
+3984,udp,mapper-nodemgr
+3984,tcp,mapper-nodemgr
+3985,udp,mapper-mapethd
+3985,tcp,mapper-mapethd
+3986,udp,mapper-ws_ethd
+3986,tcp,mapper-ws_ethd
+3987,udp,centerline
+3987,tcp,centerline
+3988,tcp,dcs-config
+3988,udp,dcs-config
+3989,tcp,bv-queryengine
+3989,udp,bv-queryengine
+3990,tcp,bv-is
+3990,udp,bv-is
+3991,tcp,bv-smcsrv
+3991,udp,bv-smcsrv
+3992,tcp,bv-ds
+3992,udp,bv-ds
+3993,tcp,bv-agent
+3993,udp,bv-agent
+3994,tcp,objserver
+3994,udp,objserver
+3995,tcp,iss-mgmt-ssl
+3995,udp,iss-mgmt-ssl
+3996,tcp,abcsoftware
+3996,udp,abscoftware
+3997,tcp,agentsease-db
+3997,udp,agentsease-db
+4000,udp,terabase
+4000,tcp,terabase
+4001,udp,newoak
+4001,tcp,newoak
+4002,udp,pxc-spvr-ft
+4002,tcp,pxc-spvr-ft
+4003,udp,pxc-splr-ft
+4003,tcp,pxc-splr-ft
+4004,udp,pxc-roid
+4004,tcp,pxc-roid
+4005,udp,pxc-pin
+4005,tcp,pxc-pin
+4006,udp,pxc-spvr
+4006,tcp,pxc-spvr
+4007,udp,pxc-splr
+4007,tcp,pxc-splr
+4008,udp,netcheque
+4008,tcp,netcheque
+4009,udp,chimera-hwm
+4009,tcp,chimera-hwm
+4010,udp,samsung-unidex
+4010,tcp,samsung-unidex
+4011,udp,altserviceboot
+4011,tcp,altserviceboot
+4012,udp,pda-gate
+4012,tcp,pda-gate
+4013,udp,acl-manager
+4013,tcp,acl-manager
+4014,udp,taiclock
+4014,tcp,taiclock
+4015,udp,talarian-mcast1
+4015,tcp,talarian-mcast1
+4016,udp,talarian-mcast2
+4016,tcp,talarian-mcast2
+4017,udp,talarian-mcast3
+4017,tcp,talarian-mcast3
+4018,udp,talarian-mcast4
+4018,tcp,talarian-mcast4
+4019,udp,talarian-mcast5
+4019,tcp,talarian-mcast5
+4020,udp,trap
+4020,tcp,trap
+4021,udp,nexus-portal
+4021,tcp,nexus-portal
+4022,udp,dnox
+4022,tcp,dnox
+4023,udp,esnm-zoning
+4023,tcp,esnm-zoning
+4024,udp,tnp1-port
+4024,tcp,tnp1-port
+4025,udp,partimage
+4025,tcp,partimage
+4026,udp,as-debug
+4026,tcp,as-debug
+4027,udp,bxp
+4027,tcp,bxp
+4028,udp,dtserver-port
+4028,tcp,dtserver-port
+4029,udp,ip-qsig
+4029,tcp,ip-qsig
+4030,udp,jdmn-port
+4030,tcp,jdmn-port
+4031,udp,suucp
+4031,tcp,suucp
+4032,udp,vrts-auth-port
+4032,tcp,vrts-auth-port
+4033,udp,sanavigator
+4033,tcp,sanavigator
+4034,udp,ubxd
+4034,tcp,ubxd
+4035,udp,wap-push-http
+4035,tcp,wap-push-http
+4036,udp,wap-push-https
+4036,tcp,wap-push-https
+4037,tcp,ravehd
+4037,udp,ravehd
+4038,tcp,fazzt-ptp
+4038,udp,fazzt-ptp
+4039,tcp,fazzt-admin
+4039,udp,fazzt-admin
+4040,udp,yo-main
+4040,tcp,yo-main
+4041,udp,houston
+4041,tcp,houston
+4042,udp,ldxp
+4042,tcp,ldxp
+4043,tcp,nirp
+4043,udp,nirp
+4044,tcp,ltp
+4044,udp,ltp
+4045,tcp,npp
+4045,udp,npp
+4046,tcp,acp-proto
+4046,udp,acp-proto
+4047,tcp,ctp-state
+4047,udp,ctp-state
+4048,tcp,objadmin
+4048,udp,objadmin
+4049,tcp,wafs
+4049,udp,wafs
+4050,tcp,cisco-wafs
+4050,udp,cisco-wafs
+4051,tcp,cppdp
+4051,udp,cppdp
+4052,tcp,interact
+4052,udp,interact
+4053,tcp,ccu-comm-1
+4053,udp,ccu-comm-1
+4054,tcp,ccu-comm-2
+4054,udp,ccu-comm-2
+4055,tcp,ccu-comm-3
+4055,udp,ccu-comm-3
+4056,tcp,lms
+4056,udp,lms
+4057,tcp,wfm
+4057,udp,wfm
+4058,tcp,kingfisher
+4058,udp,kingfisher
+4059,tcp,dlms-cosem
+4059,udp,dlms-cosem
+4060,tcp,dsmeter_iatc
+4060,udp,dsmeter_iatc
+4061,tcp,ice-location
+4061,udp,ice-location
+4062,tcp,ice-slocation
+4062,udp,ice-slocation
+4063,tcp,ice-router
+4063,udp,ice-router
+4064,tcp,ice-srouter
+4064,udp,ice-srouter
+4089,tcp,opencore
+4089,udp,opencore
+4090,tcp,omasgport
+4090,udp,omasgport
+4091,tcp,ewinstaller
+4091,udp,ewinstaller
+4092,tcp,ewdgs
+4092,udp,ewdgs
+4093,tcp,pvxpluscs
+4093,udp,pvxpluscs
+4094,tcp,sysrqd
+4094,udp,sysrqd
+4095,tcp,xtgui
+4095,udp,xtgui
+4096,udp,bre
+4096,tcp,bre
+4097,udp,patrolview
+4097,tcp,patrolview
+4098,udp,drmsfsd
+4098,tcp,drmsfsd
+4099,udp,dpcp
+4099,tcp,dpcp
+4100,udp,igo-incognito
+4100,tcp,igo-incognito
+4101,tcp,brlp-0
+4101,udp,brlp-0
+4102,tcp,brlp-1
+4102,udp,brlp-1
+4103,tcp,brlp-2
+4103,udp,brlp-2
+4104,tcp,brlp-3
+4104,udp,brlp-3
+4105,tcp,shofarplayer
+4105,udp,shofarplayer
+4106,tcp,synchronite
+4106,udp,synchronite
+4107,tcp,j-ac
+4107,udp,j-ac
+4108,tcp,accel
+4108,udp,accel
+4111,tcp,xgrid
+4111,udp,xgrid
+4112,tcp,apple-vpns-rp
+4112,udp,apple-vpns-rp
+4113,tcp,aipn-reg
+4113,udp,aipn-reg
+4114,udp,jomamqmonitor
+4114,tcp,jomamqmonitor
+4115,tcp,cds
+4115,udp,cds
+4116,tcp,smartcard-tls
+4116,udp,smartcard-tls
+4117,tcp,xmlivestream
+4117,udp,xmlivestream
+4118,tcp,netscript
+4118,udp,netscript
+4119,tcp,assuria-slm
+4119,udp,assuria-slm
+4120,tcp,xtreamx
+4120,udp,xtreamx
+4121,tcp,e-builder
+4121,udp,e-builder
+4122,tcp,fprams
+4122,udp,fprams
+4132,udp,nuts_dem
+4132,tcp,nuts_dem
+4133,udp,nuts_bootp
+4133,tcp,nuts_bootp
+4134,udp,nifty-hmi
+4134,tcp,nifty-hmi
+4135,tcp,cl-db-attach
+4135,udp,cl-db-attach
+4136,tcp,cl-db-request
+4136,udp,cl-db-request
+4137,tcp,cl-db-remote
+4137,udp,cl-db-remote
+4138,udp,nettest
+4138,tcp,nettest
+4139,tcp,thrtx
+4139,udp,thrtx
+4140,tcp,cedros_fds
+4140,udp,cedros_fds
+4141,udp,oirtgsvc
+4141,tcp,oirtgsvc
+4142,udp,oidocsvc
+4142,tcp,oidocsvc
+4143,udp,oidsr
+4143,tcp,oidsr
+4145,udp,vvr-control
+4145,tcp,vvr-control
+4146,tcp,tgcconnect
+4146,udp,tgcconnect
+4147,tcp,vrxpservman
+4147,udp,vrxpservman
+4154,udp,atlinks
+4154,tcp,atlinks
+4159,tcp,nss
+4159,udp,nss
+4160,udp,jini-discovery
+4160,tcp,jini-discovery
+4161,tcp,omscontact
+4161,udp,omscontact
+4162,tcp,omstopology
+4162,udp,omstopology
+4199,udp,eims-admin
+4199,tcp,eims-admin
+4300,udp,corelccam
+4300,tcp,corelccam
+4301,tcp,d-data
+4301,udp,d-data
+4302,tcp,d-data-control
+4302,udp,d-data-control
+4320,tcp,fdt-rcatp
+4320,udp,fdt-rcatp
+4321,udp,rwhois
+4321,tcp,rwhois
+4325,tcp,geognosisman
+4325,udp,geognosisman
+4326,tcp,geognosis
+4326,udp,geognosis
+4343,udp,unicall
+4343,tcp,unicall
+4344,udp,vinainstall
+4344,tcp,vinainstall
+4345,udp,m4-network-as
+4345,tcp,m4-network-as
+4346,udp,elanlm
+4346,tcp,elanlm
+4347,udp,lansurveyor
+4347,tcp,lansurveyor
+4348,udp,itose
+4348,tcp,itose
+4349,udp,fsportmap
+4349,tcp,fsportmap
+4350,udp,net-device
+4350,tcp,net-device
+4351,udp,plcy-net-svcs
+4351,tcp,plcy-net-svcs
+4352,tcp,pjlink
+4352,udp,pjlink
+4353,udp,f5-iquery
+4353,tcp,f5-iquery
+4354,udp,qsnet-trans
+4354,tcp,qsnet-trans
+4355,udp,qsnet-workst
+4355,tcp,qsnet-workst
+4356,udp,qsnet-assist
+4356,tcp,qsnet-assist
+4357,udp,qsnet-cond
+4357,tcp,qsnet-cond
+4358,udp,qsnet-nucl
+4358,tcp,qsnet-nucl
+4368,tcp,wxbrief
+4368,udp,wxbrief
+4369,tcp,epmd
+4369,udp,epmd
+4400,tcp,ds-srv
+4400,udp,ds-srv
+4401,tcp,ds-srvr
+4401,udp,ds-srvr
+4402,tcp,ds-clnt
+4402,udp,ds-clnt
+4403,tcp,ds-user
+4403,udp,ds-user
+4404,tcp,ds-admin
+4404,udp,ds-admin
+4405,tcp,ds-mail
+4405,udp,ds-mail
+4406,tcp,ds-slp
+4406,udp,ds-slp
+4426,tcp,beacon-port-2
+4426,udp,beacon-port-2
+4442,udp,saris
+4442,tcp,saris
+4443,udp,pharos
+4443,tcp,pharos
+4444,udp,krb524
+4444,tcp,krb524
+4444,udp,nv-video
+4444,tcp,nv-video
+4445,udp,upnotifyp
+4445,tcp,upnotifyp
+4446,udp,n1-fwp
+4446,tcp,n1-fwp
+4447,udp,n1-rmgmt
+4447,tcp,n1-rmgmt
+4448,udp,asc-slmd
+4448,tcp,asc-slmd
+4449,udp,privatewire
+4449,tcp,privatewire
+4450,udp,camp
+4450,tcp,camp
+4451,udp,ctisystemmsg
+4451,tcp,ctisystemmsg
+4452,udp,ctiprogramload
+4452,tcp,ctiprogramload
+4453,udp,nssalertmgr
+4453,tcp,nssalertmgr
+4454,udp,nssagentmgr
+4454,tcp,nssagentmgr
+4455,udp,prchat-user
+4455,tcp,prchat-user
+4456,udp,prchat-server
+4456,tcp,prchat-server
+4457,udp,prRegister
+4457,tcp,prRegister
+4458,tcp,mcp
+4458,udp,mcp
+4484,tcp,hpssmgmt
+4484,udp,hpssmgmt
+4500,udp,ipsec-msft
+4500,tcp,ipsec-msft
+4535,tcp,ehs
+4535,udp,ehs
+4536,tcp,ehs-ssl
+4536,udp,ehs-ssl
+4537,tcp,wssauthsvc
+4537,udp,wssauthsvc
+4538,tcp,isigate
+4538,udp,isigate
+4545,udp,worldscores
+4545,tcp,worldscores
+4546,udp,sf-lm
+4546,tcp,sf-lm
+4547,udp,lanner-lm
+4547,tcp,lanner-lm
+4548,tcp,synchromesh
+4548,udp,synchromesh
+4549,tcp,aegate
+4549,udp,aegate
+4550,tcp,gds-adppiw-db
+4550,udp,gds-adppiw-db
+4554,tcp,msfrs
+4554,udp,msfrs
+4555,udp,rsip
+4555,tcp,rsip
+4556,tcp,dtn-bundle-tcp
+4556,udp,dtn-bundle-udp
+4559,udp,hylafax
+4559,tcp,hylafax
+4566,tcp,kwtc
+4566,udp,kwtc
+4567,udp,tram
+4567,tcp,tram
+4568,udp,bmc-reporting
+4568,tcp,bmc-reporting
+4569,tcp,iax
+4569,udp,iax
+4597,tcp,a21-an-1xbs
+4597,udp,a21-an-1xbs
+4598,tcp,a16-an-an
+4598,udp,a16-an-an
+4599,tcp,a17-an-an
+4599,udp,a17-an-an
+4600,udp,piranha1
+4600,tcp,piranha1
+4601,udp,piranha2
+4601,tcp,piranha2
+4658,tcp,playsta2-app
+4658,udp,playsta2-app
+4659,tcp,playsta2-lob
+4659,udp,playsta2-lob
+4660,udp,smaclmgr
+4660,tcp,smaclmgr
+4661,udp,kar2ouche
+4661,tcp,kar2ouche
+4662,tcp,oms
+4662,udp,oms
+4663,tcp,noteit
+4663,udp,noteit
+4664,tcp,ems
+4664,udp,ems
+4665,tcp,contclientms
+4665,udp,contclientms
+4666,tcp,eportcomm
+4666,udp,eportcomm
+4667,tcp,mmacomm
+4667,udp,mmacomm
+4668,tcp,mmaeds
+4668,udp,mmaeds
+4669,tcp,eportcommdata
+4669,udp,eportcommdata
+4670,tcp,light
+4670,udp,light
+4671,tcp,acter
+4671,udp,acter
+4672,udp,rfa
+4672,tcp,rfa
+4673,tcp,cxws
+4673,udp,cxws
+4674,tcp,appiq-mgmt
+4674,udp,appiq-mgmt
+4675,tcp,dhct-status
+4675,udp,dhct-status
+4676,tcp,dhct-alerts
+4676,udp,dhct-alerts
+4677,tcp,bcs
+4677,udp,bcs
+4678,tcp,traversal
+4678,udp,traversal
+4679,tcp,mgesupervision
+4679,udp,mgesupervision
+4680,tcp,mgemanagement
+4680,udp,mgemanagement
+4681,tcp,parliant
+4681,udp,parliant
+4682,tcp,finisar
+4682,udp,finisar
+4683,tcp,spike
+4683,udp,spike
+4684,tcp,rfid-rp1
+4684,udp,rfid-rp1
+4685,tcp,autopac
+4685,udp,autopac
+4686,tcp,msp-os
+4686,udp,msp-os
+4687,tcp,nst
+4687,udp,nst
+4688,tcp,mobile-p2p
+4688,udp,mobile-p2p
+4689,tcp,altovacentral
+4689,udp,altovacentral
+4690,tcp,prelude
+4690,udp,prelude
+4691,tcp,monotone
+4691,udp,monotone
+4692,tcp,conspiracy
+4692,udp,conspiracy
+4700,tcp,netxms-agent
+4700,udp,netxms-agent
+4701,tcp,netxms-mgmt
+4701,udp,netxms-mgmt
+4702,tcp,netxms-sync
+4702,udp,netxms-sync
+4728,tcp,capmux
+4728,udp,capmux
+4737,tcp,ipdr-sp
+4737,udp,ipdr-sp
+4738,tcp,solera-lpn
+4738,udp,solera-lpn
+4739,tcp,ipfix
+4739,udp,ipfix
+4740,tcp,ipfixs
+4740,udp,ipfixs
+4742,tcp,sicct
+4742,udp,sicct-sdp
+4743,tcp,openhpid
+4743,udp,openhpid
+4749,tcp,profilemac
+4749,udp,profilemac
+4750,tcp,ssad
+4750,udp,ssad
+4751,tcp,spocp
+4751,udp,spocp
+4752,udp,snap
+4752,tcp,snap
+4784,tcp,bfd-multi-ctl
+4784,udp,bfd-multi-ctl
+4800,udp,iims
+4800,tcp,iims
+4801,udp,iwec
+4801,tcp,iwec
+4802,udp,ilss
+4802,tcp,ilss
+4827,udp,htcp
+4827,tcp,htcp
+4837,udp,varadero-0
+4837,tcp,varadero-0
+4838,udp,varadero-1
+4838,tcp,varadero-1
+4839,udp,varadero-2
+4839,tcp,varadero-2
+4840,tcp,opcua-tcp
+4840,udp,opcua-udp
+4841,tcp,quosa
+4841,udp,quosa
+4842,tcp,gw-asv
+4842,udp,gw-asv
+4843,tcp,opcua-tls
+4843,udp,opcua-tls
+4844,tcp,gw-log
+4844,udp,gw-log
+4848,udp,appserv-http
+4848,tcp,appserv-http
+4849,udp,appserv-https
+4849,tcp,appserv-https
+4850,tcp,sun-as-nodeagt
+4850,udp,sun-as-nodeagt
+4867,tcp,unify-debug
+4867,udp,unify-debug
+4868,udp,phrelay
+4868,tcp,phrelay
+4869,udp,phrelaydbg
+4869,tcp,phrelaydbg
+4870,tcp,cc-tracking
+4870,udp,cc-tracking
+4871,tcp,wired
+4871,udp,wired
+4885,udp,abbs
+4885,tcp,abbs
+4894,udp,lyskom
+4894,tcp,lyskom
+4899,udp,radmin-port
+4899,tcp,radmin-port
+4900,tcp,hfcs
+4900,udp,hfcs
+4949,tcp,munin
+4949,udp,munin
+4951,tcp,pwgwims
+4951,udp,pwgwims
+4952,tcp,sagxtsds
+4952,udp,sagxtsds
+4969,tcp,ccss-qmm
+4969,udp,ccss-qmm
+4970,tcp,ccss-qsm
+4970,udp,ccss-qsm
+4983,udp,att-intercom
+4983,tcp,att-intercom
+4986,tcp,mrip
+4986,udp,mrip
+4987,udp,smar-se-port1
+4987,tcp,smar-se-port1
+4988,udp,smar-se-port2
+4988,tcp,smar-se-port2
+4989,udp,parallel
+4989,tcp,parallel
+4999,tcp,hfcs-manager
+4999,udp,hfcs-manager
+5000,udp,commplex-main
+5000,tcp,commplex-main
+5001,udp,commplex-link
+5001,tcp,commplex-link
+5002,udp,rfe
+5002,tcp,rfe
+5003,udp,fmpro-internal
+5003,tcp,fmpro-internal
+5004,udp,avt-profile-1
+5004,tcp,avt-profile-1
+5005,udp,avt-profile-2
+5005,tcp,avt-profile-2
+5006,udp,wsm-server
+5006,tcp,wsm-server
+5007,udp,wsm-server-ssl
+5007,tcp,wsm-server-ssl
+5008,udp,synapsis-edge
+5008,tcp,synapsis-edge
+5009,tcp,winfs
+5009,udp,winfs
+5010,udp,telelpathstart
+5010,tcp,telelpathstart
+5011,udp,telelpathattack
+5011,tcp,telelpathattack
+5020,udp,zenginkyo-1
+5020,tcp,zenginkyo-1
+5021,udp,zenginkyo-2
+5021,tcp,zenginkyo-2
+5022,udp,mice
+5022,tcp,mice
+5023,udp,htuilsrv
+5023,tcp,htuilsrv
+5024,udp,scpi-telnet
+5024,tcp,scpi-telnet
+5025,udp,scpi-raw
+5025,tcp,scpi-raw
+5026,tcp,strexec-d
+5026,udp,strexec-d
+5027,tcp,strexec-s
+5027,udp,strexec-s
+5030,tcp,surfpass
+5030,udp,surfpass
+5042,udp,asnaacceler8db
+5042,tcp,asnaacceler8db
+5043,tcp,swxadmin
+5043,udp,swxadmin
+5044,tcp,lxi-evntsvc
+5044,udp,lxi-evntsvc
+5049,tcp,ivocalize
+5049,udp,ivocalize
+5050,udp,mmcc
+5050,tcp,mmcc
+5051,udp,ita-agent
+5051,tcp,ita-agent
+5052,udp,ita-manager
+5052,tcp,ita-manager
+5055,udp,unot
+5055,tcp,unot
+5056,udp,intecom-ps1
+5056,tcp,intecom-ps1
+5057,udp,intecom-ps2
+5057,tcp,intecom-ps2
+5059,tcp,sds
+5059,udp,sds
+5060,udp,sip
+5060,tcp,sip
+5061,udp,sip-tls
+5061,tcp,sip-tls
+5064,udp,ca-1
+5064,tcp,ca-1
+5065,udp,ca-2
+5065,tcp,ca-2
+5066,udp,stanag-5066
+5066,tcp,stanag-5066
+5067,tcp,authentx
+5067,udp,authentx
+5069,udp,i-net-2000-npr
+5069,tcp,i-net-2000-npr
+5070,tcp,vtsas
+5070,udp,vtsas
+5071,udp,powerschool
+5071,tcp,powerschool
+5072,tcp,ayiya
+5072,udp,ayiya
+5073,tcp,tag-pm
+5073,udp,tag-pm
+5074,tcp,alesquery
+5074,udp,alesquery
+5081,udp,sdl-ets
+5081,tcp,sdl-ets
+5084,tcp,llrp
+5084,udp,llrp
+5085,tcp,encrypted-llrp
+5085,udp,encrypted-llrp
+5093,udp,sentinel-lm
+5093,tcp,sentinel-lm
+5099,udp,sentlm-srv2srv
+5099,tcp,sentlm-srv2srv
+5100,tcp,socalia
+5100,udp,socalia
+5101,udp,talarian-udp
+5101,tcp,talarian-tcp
+5102,tcp,oms-nonsecure
+5102,udp,oms-nonsecure
+5112,tcp,pm-cmdsvr
+5112,udp,pm-cmdsvr
+5133,tcp,nbt-pc
+5133,udp,nbt-pc
+5137,udp,ctsd
+5137,tcp,ctsd
+5145,udp,rmonitor_secure
+5145,tcp,rmonitor_secure
+5150,udp,atmp
+5150,tcp,atmp
+5151,udp,esri_sde
+5151,tcp,esri_sde
+5152,udp,sde-discovery
+5152,tcp,sde-discovery
+5154,tcp,bzflag
+5154,udp,bzflag
+5155,tcp,asctrl-agent
+5155,udp,asctrl-agent
+5165,udp,ife_icorp
+5165,tcp,ife_icorp
+5166,tcp,winpcs
+5166,udp,winpcs
+5167,tcp,scte104
+5167,udp,scte104
+5168,tcp,scte30
+5168,udp,scte30
+5190,udp,aol
+5190,tcp,aol
+5191,udp,aol-1
+5191,tcp,aol-1
+5192,udp,aol-2
+5192,tcp,aol-2
+5193,udp,aol-3
+5193,tcp,aol-3
+5200,udp,targus-getdata
+5200,tcp,targus-getdata
+5201,udp,targus-getdata1
+5201,tcp,targus-getdata1
+5202,udp,targus-getdata2
+5202,tcp,targus-getdata2
+5203,udp,targus-getdata3
+5203,tcp,targus-getdata3
+5222,udp,jabber-client
+5222,tcp,jabber-client
+5225,udp,hp-server
+5225,tcp,hp-server
+5226,udp,hp-status
+5226,tcp,hp-status
+5234,tcp,eenet
+5234,udp,eenet
+5236,udp,padl2sim
+5236,tcp,padl2sim
+5250,udp,igateway
+5250,tcp,igateway
+5251,tcp,caevms
+5251,udp,caevms
+5252,tcp,movaz-ssc
+5252,udp,movaz-ssc
+5264,udp,3com-njack-1
+5264,tcp,3com-njack-1
+5265,udp,3com-njack-2
+5265,tcp,3com-njack-2
+5269,udp,jabber-server
+5269,tcp,jabber-server
+5272,udp,pk
+5272,tcp,pk
+5282,udp,transmit-port
+5282,tcp,transmit-port
+5300,udp,hacl-hb
+5300,tcp,hacl-hb
+5301,udp,hacl-gs
+5301,tcp,hacl-gs
+5302,udp,hacl-cfg
+5302,tcp,hacl-cfg
+5303,udp,hacl-probe
+5303,tcp,hacl-probe
+5304,udp,hacl-local
+5304,tcp,hacl-local
+5305,udp,hacl-test
+5305,tcp,hacl-test
+5306,udp,sun-mc-grp
+5306,tcp,sun-mc-grp
+5307,udp,sco-aip
+5307,tcp,sco-aip
+5308,udp,cfengine
+5308,tcp,cfengine
+5309,udp,jprinter
+5309,tcp,jprinter
+5310,udp,outlaws
+5310,tcp,outlaws
+5312,tcp,permabit-cs
+5312,udp,permabit-cs
+5313,tcp,rrdp
+5313,udp,rrdp
+5314,udp,opalis-rbt-ipc
+5314,tcp,opalis-rbt-ipc
+5315,udp,hacl-poll
+5315,tcp,hacl-poll
+5343,tcp,kfserver
+5343,udp,kfserver
+5344,tcp,xkotodrcp
+5344,udp,xkotodrcp
+5351,tcp,nat-pmp
+5351,udp,nat-pmp
+5352,tcp,dns-llq
+5352,udp,dns-llq
+5353,udp,mdns
+5353,tcp,mdns
+5354,tcp,mdnsresponder
+5354,udp,mdnsresponder
+5355,tcp,llmnr
+5355,udp,llmnr
+5356,tcp,ms-smlbiz
+5356,udp,ms-smlbiz
+5357,tcp,wsdapi
+5357,udp,wsdapi
+5358,tcp,wsdapi-s
+5358,udp,wsdapi-s
+5397,tcp,stresstester
+5397,udp,stresstester
+5398,tcp,elektron-admin
+5398,udp,elektron-admin
+5399,tcp,securitychase
+5399,udp,securitychase
+5400,udp,excerpt
+5400,tcp,excerpt
+5401,udp,excerpts
+5401,tcp,excerpts
+5402,udp,mftp
+5402,tcp,mftp
+5403,udp,hpoms-ci-lstn
+5403,tcp,hpoms-ci-lstn
+5404,udp,hpoms-dps-lstn
+5404,tcp,hpoms-dps-lstn
+5405,udp,netsupport
+5405,tcp,netsupport
+5406,udp,systemics-sox
+5406,tcp,systemics-sox
+5407,udp,foresyte-clear
+5407,tcp,foresyte-clear
+5408,udp,foresyte-sec
+5408,tcp,foresyte-sec
+5409,udp,salient-dtasrv
+5409,tcp,salient-dtasrv
+5410,udp,salient-usrmgr
+5410,tcp,salient-usrmgr
+5411,udp,actnet
+5411,tcp,actnet
+5412,udp,continuus
+5412,tcp,continuus
+5413,udp,wwiotalk
+5413,tcp,wwiotalk
+5414,udp,statusd
+5414,tcp,statusd
+5415,udp,ns-server
+5415,tcp,ns-server
+5416,udp,sns-gateway
+5416,tcp,sns-gateway
+5417,udp,sns-agent
+5417,tcp,sns-agent
+5418,udp,mcntp
+5418,tcp,mcntp
+5419,udp,dj-ice
+5419,tcp,dj-ice
+5420,udp,cylink-c
+5420,tcp,cylink-c
+5421,udp,netsupport2
+5421,tcp,netsupport2
+5422,udp,salient-mux
+5422,tcp,salient-mux
+5423,udp,virtualuser
+5423,tcp,virtualuser
+5424,tcp,beyond-remote
+5424,udp,beyond-remote
+5425,tcp,br-channel
+5425,udp,br-channel
+5426,udp,devbasic
+5426,tcp,devbasic
+5427,udp,sco-peer-tta
+5427,tcp,sco-peer-tta
+5428,udp,telaconsole
+5428,tcp,telaconsole
+5429,udp,base
+5429,tcp,base
+5430,udp,radec-corp
+5430,tcp,radec-corp
+5431,udp,park-agent
+5431,tcp,park-agent
+5432,udp,postgresql
+5432,tcp,postgresql
+5433,tcp,pyrrho
+5433,udp,pyrrho
+5434,tcp,sgi-arrayd
+5434,udp,sgi-arrayd
+5435,udp,dttl
+5435,tcp,dttl
+5453,tcp,surebox
+5453,udp,surebox
+5454,udp,apc-5454
+5454,tcp,apc-5454
+5455,udp,apc-5455
+5455,tcp,apc-5455
+5456,udp,apc-5456
+5456,tcp,apc-5456
+5461,udp,silkmeter
+5461,tcp,silkmeter
+5462,udp,ttl-publisher
+5462,tcp,ttl-publisher
+5463,udp,ttlpriceproxy
+5463,tcp,ttlpriceproxy
+5464,tcp,quailnet
+5464,udp,quailnet
+5465,udp,netops-broker
+5465,tcp,netops-broker
+5500,udp,fcp-addr-srvr1
+5500,tcp,fcp-addr-srvr1
+5501,udp,fcp-addr-srvr2
+5501,tcp,fcp-addr-srvr2
+5502,udp,fcp-srvr-inst1
+5502,tcp,fcp-srvr-inst1
+5503,udp,fcp-srvr-inst2
+5503,tcp,fcp-srvr-inst2
+5504,udp,fcp-cics-gw1
+5504,tcp,fcp-cics-gw1
+5553,udp,sgi-eventmond
+5553,tcp,sgi-eventmond
+5554,udp,sgi-esphttp
+5554,tcp,sgi-esphttp
+5555,udp,personal-agent
+5555,tcp,personal-agent
+5556,tcp,freeciv
+5556,udp,freeciv
+5566,udp,udpplus
+5566,tcp,udpplus
+5567,tcp,m-oap
+5567,udp,m-oap
+5568,tcp,sdt
+5568,udp,sdt
+5580,tcp,tmosms0
+5580,udp,tmosms0
+5581,tcp,tmosms1
+5581,udp,tmosms1
+5584,tcp,bis-web
+5584,udp,bis-web
+5585,tcp,bis-sync
+5585,udp,bis-sync
+5597,tcp,ininmessaging
+5597,udp,ininmessaging
+5598,tcp,mctfeed
+5598,udp,mctfeed
+5599,udp,esinstall
+5599,tcp,esinstall
+5600,udp,esmmanager
+5600,tcp,esmmanager
+5601,udp,esmagent
+5601,tcp,esmagent
+5602,udp,a1-msc
+5602,tcp,a1-msc
+5603,udp,a1-bs
+5603,tcp,a1-bs
+5604,udp,a3-sdunode
+5604,tcp,a3-sdunode
+5605,udp,a4-sdunode
+5605,tcp,a4-sdunode
+5627,tcp,ninaf
+5627,udp,ninaf
+5629,tcp,symantec-sfdb
+5629,udp,symantec-sfdb
+5630,tcp,precise-comm
+5630,udp,precise-comm
+5631,udp,pcanywheredata
+5631,tcp,pcanywheredata
+5632,udp,pcanywherestat
+5632,tcp,pcanywherestat
+5633,tcp,beorl
+5633,udp,beorl
+5672,tcp,amqp
+5672,udp,amqp
+5673,udp,jms
+5673,tcp,jms
+5674,udp,hyperscsi-port
+5674,tcp,hyperscsi-port
+5675,udp,v5ua
+5675,tcp,v5ua
+5676,udp,raadmin
+5676,tcp,raadmin
+5677,udp,questdb2-lnchr
+5677,tcp,questdb2-lnchr
+5678,udp,rrac
+5678,tcp,rrac
+5679,udp,dccm
+5679,tcp,dccm
+5680,tcp,auriga-router
+5680,udp,auriga-router
+5681,tcp,ncxcp
+5681,udp,ncxcp
+5688,udp,ggz
+5688,tcp,ggz
+5689,tcp,qmvideo
+5689,udp,qmvideo
+5713,udp,proshareaudio
+5713,tcp,proshareaudio
+5714,udp,prosharevideo
+5714,tcp,prosharevideo
+5715,udp,prosharedata
+5715,tcp,prosharedata
+5716,udp,prosharerequest
+5716,tcp,prosharerequest
+5717,udp,prosharenotify
+5717,tcp,prosharenotify
+5718,tcp,dpm
+5718,udp,dpm
+5719,tcp,dpm-agent
+5719,udp,dpm-agent
+5720,udp,ms-licensing
+5720,tcp,ms-licensing
+5721,tcp,dtpt
+5721,udp,dtpt
+5722,tcp,msdfsr
+5722,udp,msdfsr
+5723,tcp,omhs
+5723,udp,omhs
+5724,tcp,omsdk
+5724,udp,omsdk
+5729,udp,openmail
+5729,tcp,openmail
+5730,udp,unieng
+5730,tcp,unieng
+5741,udp,ida-discover1
+5741,tcp,ida-discover1
+5742,udp,ida-discover2
+5742,tcp,ida-discover2
+5743,tcp,watchdoc-pod
+5743,udp,watchdoc-pod
+5744,tcp,watchdoc
+5744,udp,watchdoc
+5745,udp,fcopy-server
+5745,tcp,fcopy-server
+5746,udp,fcopys-server
+5746,tcp,fcopys-server
+5747,tcp,tunatic
+5747,udp,tunatic
+5748,tcp,tunalyzer
+5748,udp,tunalyzer
+5755,udp,openmailg
+5755,tcp,openmailg
+5757,udp,x500ms
+5757,tcp,x500ms
+5766,udp,openmailns
+5766,tcp,openmailns
+5767,udp,s-openmail
+5767,tcp,s-openmail
+5768,udp,openmailpxy
+5768,tcp,openmailpxy
+5769,tcp,spramsca
+5769,udp,spramsca
+5770,tcp,spramsd
+5770,udp,spramsd
+5771,udp,netagent
+5771,tcp,netagent
+5777,tcp,dali-port
+5777,udp,dali-port
+5813,udp,icmpd
+5813,tcp,icmpd
+5814,tcp,spt-automation
+5814,udp,spt-automation
+5859,udp,wherehoo
+5859,tcp,wherehoo
+5863,tcp,ppsuitemsg
+5863,udp,ppsuitemsg
+5900,tcp,vnc-server
+5900,udp,vnc-server
+5963,tcp,indy
+5963,udp,indy
+5968,udp,mppolicy-v5
+5968,tcp,mppolicy-v5
+5969,udp,mppolicy-mgr
+5969,tcp,mppolicy-mgr
+5985,tcp,wsman
+5985,udp,wsman
+5986,tcp,wsmans
+5986,udp,wsmans
+5987,udp,wbem-rmi
+5987,tcp,wbem-rmi
+5988,udp,wbem-http
+5988,tcp,wbem-http
+5989,udp,wbem-https
+5989,tcp,wbem-https
+5990,tcp,wbem-exp-https
+5990,udp,wbem-exp-https
+5991,udp,nuxsl
+5991,tcp,nuxsl
+5992,tcp,consul-insight
+5992,udp,consul-insight
+5999,udp,cvsup
+5999,tcp,cvsup
+6064,udp,ndl-ahp-svc
+6064,tcp,ndl-ahp-svc
+6065,udp,winpharaoh
+6065,tcp,winpharaoh
+6066,udp,ewctsp
+6066,tcp,ewctsp
+6067,udp,srb
+6067,tcp,srb
+6068,udp,gsmp
+6068,tcp,gsmp
+6069,udp,trip
+6069,tcp,trip
+6070,udp,messageasap
+6070,tcp,messageasap
+6071,udp,ssdtp
+6071,tcp,ssdtp
+6072,udp,diagnose-proc
+6072,tcp,diagnose-proc
+6073,udp,directplay8
+6073,tcp,directplay8
+6074,tcp,max
+6074,udp,max
+6085,udp,konspire2b
+6085,tcp,konspire2b
+6086,tcp,pdtp
+6086,udp,pdtp
+6087,tcp,ldss
+6087,udp,ldss
+6100,udp,synchronet-db
+6100,tcp,synchronet-db
+6101,udp,synchronet-rtc
+6101,tcp,synchronet-rtc
+6102,udp,synchronet-upd
+6102,tcp,synchronet-upd
+6103,udp,rets
+6103,tcp,rets
+6104,udp,dbdb
+6104,tcp,dbdb
+6105,udp,primaserver
+6105,tcp,primaserver
+6106,udp,mpsserver
+6106,tcp,mpsserver
+6107,udp,etc-control
+6107,tcp,etc-control
+6108,udp,sercomm-scadmin
+6108,tcp,sercomm-scadmin
+6109,udp,globecast-id
+6109,tcp,globecast-id
+6110,udp,softcm
+6110,tcp,softcm
+6111,udp,spc
+6111,tcp,spc
+6112,udp,dtspcd
+6112,tcp,dtspcd
+6122,tcp,bex-webadmin
+6122,udp,bex-webadmin
+6123,udp,backup-express
+6123,tcp,backup-express
+6133,tcp,nbt-wol
+6133,udp,nbt-wol
+6141,udp,meta-corp
+6141,tcp,meta-corp
+6142,udp,aspentec-lm
+6142,tcp,aspentec-lm
+6143,udp,watershed-lm
+6143,tcp,watershed-lm
+6144,udp,statsci1-lm
+6144,tcp,statsci1-lm
+6145,udp,statsci2-lm
+6145,tcp,statsci2-lm
+6146,udp,lonewolf-lm
+6146,tcp,lonewolf-lm
+6147,udp,montage-lm
+6147,tcp,montage-lm
+6148,udp,ricardo-lm
+6148,tcp,ricardo-lm
+6149,udp,tal-pod
+6149,tcp,tal-pod
+6161,tcp,patrol-ism
+6161,udp,patrol-ism
+6162,tcp,patrol-coll
+6162,udp,patrol-coll
+6163,tcp,pscribe
+6163,udp,pscribe
+6200,tcp,lm-x
+6200,udp,lm-x
+6222,tcp,radmind
+6222,udp,radmind
+6253,udp,crip
+6253,tcp,crip
+6268,tcp,grid
+6268,udp,grid
+6269,tcp,grid-alt
+6269,udp,grid-alt
+6300,udp,bmc-grx
+6300,tcp,bmc-grx
+6301,tcp,bmc_ctd_ldap
+6301,udp,bmc_ctd_ldap
+6320,tcp,repsvc
+6320,udp,repsvc
+6321,udp,emp-server1
+6321,tcp,emp-server1
+6322,udp,emp-server2
+6322,tcp,emp-server2
+6343,udp,sflow
+6343,tcp,sflow
+6346,udp,gnutella-svc
+6346,tcp,gnutella-svc
+6347,udp,gnutella-rtr
+6347,tcp,gnutella-rtr
+6382,udp,metatude-mds
+6382,tcp,metatude-mds
+6389,udp,clariion-evr01
+6389,tcp,clariion-evr01
+6417,tcp,faxcomservice
+6417,udp,faxcomservice
+6420,tcp,nim-vdrshell
+6420,udp,nim-vdrshell
+6421,tcp,nim-wan
+6421,udp,nim-wan
+6443,tcp,sun-sr-https
+6443,udp,sun-sr-https
+6444,tcp,sge_qmaster
+6444,udp,sge_qmaster
+6445,tcp,sge_execd
+6445,udp,sge_execd
+6455,tcp,skip-cert-recv
+6456,tcp,skip-cert-send
+6456,udp,skip-cert-send
+6471,udp,lvision-lm
+6471,tcp,lvision-lm
+6480,tcp,sun-sr-http
+6480,udp,sun-sr-http
+6484,tcp,sun-sr-jms
+6484,udp,sun-sr-jms
+6485,tcp,sun-sr-iiop
+6485,udp,sun-sr-iiop
+6486,tcp,sun-sr-iiops
+6486,udp,sun-sr-iiops
+6487,tcp,sun-sr-iiop-aut
+6487,udp,sun-sr-iiop-aut
+6488,tcp,sun-sr-jmx
+6488,udp,sun-sr-jmx
+6489,tcp,sun-sr-admin
+6489,udp,sun-sr-admin
+6500,udp,boks
+6500,tcp,boks
+6501,udp,boks_servc
+6501,tcp,boks_servc
+6502,udp,boks_servm
+6502,tcp,boks_servm
+6503,udp,boks_clntd
+6503,tcp,boks_clntd
+6505,udp,badm_priv
+6505,tcp,badm_priv
+6506,udp,badm_pub
+6506,tcp,badm_pub
+6507,udp,bdir_priv
+6507,tcp,bdir_priv
+6508,udp,bdir_pub
+6508,tcp,bdir_pub
+6509,udp,mgcs-mfp-port
+6509,tcp,mgcs-mfp-port
+6510,udp,mcer-port
+6510,tcp,mcer-port
+6543,udp,lds-distrib
+6543,tcp,lds-distrib
+6544,tcp,lds-dump
+6544,udp,lds-dump
+6547,udp,apc-6547
+6547,tcp,apc-6547
+6548,udp,apc-6548
+6548,tcp,apc-6548
+6549,udp,apc-6549
+6549,tcp,apc-6549
+6550,udp,fg-sysupdate
+6550,tcp,fg-sysupdate
+6558,udp,xdsxdm
+6558,tcp,xdsxdm
+6566,udp,sane-port
+6566,tcp,sane-port
+6579,tcp,affiliate
+6579,udp,affiliate
+6580,udp,parsec-master
+6580,tcp,parsec-master
+6581,udp,parsec-peer
+6581,tcp,parsec-peer
+6582,udp,parsec-game
+6582,tcp,parsec-game
+6583,tcp,joaJewelSuite
+6583,udp,joaJewelSuite
+6619,tcp,odette-ftps
+6619,udp,odette-ftps
+6620,tcp,kftp-data
+6620,udp,kftp-data
+6621,tcp,kftp
+6621,udp,kftp
+6622,tcp,mcftp
+6622,udp,mcftp
+6623,tcp,ktelnet
+6623,udp,ktelnet
+6626,tcp,wago-service
+6626,udp,wago-service
+6627,tcp,nexgen
+6627,udp,nexgen
+6628,udp,afesc-mc
+6628,tcp,afesc-mc
+6631,udp,mach
+6631,tcp,mach
+6670,udp,vocaltec-gold
+6670,tcp,vocaltec-gold
+6672,udp,vision_server
+6672,tcp,vision_server
+6673,udp,vision_elmd
+6673,tcp,vision_elmd
+6701,udp,kti-icad-srvr
+6701,tcp,kti-icad-srvr
+6702,tcp,e-design-net
+6702,udp,e-design-net
+6703,tcp,e-design-web
+6703,udp,e-design-web
+6714,udp,ibprotocol
+6714,tcp,ibprotocol
+6715,tcp,fibotrader-com
+6715,udp,fibotrader-com
+6767,udp,bmc-perf-agent
+6767,tcp,bmc-perf-agent
+6768,udp,bmc-perf-mgrd
+6768,tcp,bmc-perf-mgrd
+6769,tcp,adi-gxp-srvprt
+6769,udp,adi-gxp-srvprt
+6770,tcp,plysrv-http
+6770,udp,plysrv-http
+6771,tcp,plysrv-https
+6771,udp,plysrv-https
+6785,tcp,dgpf-exchg
+6785,udp,dgpf-exchg
+6786,tcp,smc-jmx
+6786,udp,smc-jmx
+6787,tcp,smc-admin
+6787,udp,smc-admin
+6788,udp,smc-http
+6788,tcp,smc-http
+6789,udp,smc-https
+6789,tcp,smc-https
+6790,udp,hnmp
+6790,tcp,hnmp
+6791,tcp,hnm
+6791,udp,hnm
+6831,udp,ambit-lm
+6831,tcp,ambit-lm
+6841,udp,netmo-default
+6841,tcp,netmo-default
+6842,udp,netmo-http
+6842,tcp,netmo-http
+6850,udp,iccrushmore
+6850,tcp,iccrushmore
+6888,udp,muse
+6888,tcp,muse
+6936,tcp,xsmsvc
+6936,udp,xsmsvc
+6946,tcp,bioserver
+6946,udp,bioserver
+6951,tcp,otlp
+6951,udp,otlp
+6961,udp,jmact3
+6961,tcp,jmact3
+6962,udp,jmevt2
+6962,tcp,jmevt2
+6963,udp,swismgr1
+6963,tcp,swismgr1
+6964,udp,swismgr2
+6964,tcp,swismgr2
+6965,udp,swistrap
+6965,tcp,swistrap
+6966,udp,swispol
+6966,tcp,swispol
+6969,udp,acmsoda
+6969,tcp,acmsoda
+6998,udp,iatp-highpri
+6998,tcp,iatp-highpri
+6999,udp,iatp-normalpri
+6999,tcp,iatp-normalpri
+7000,udp,afs3-fileserver
+7000,tcp,afs3-fileserver
+7001,udp,afs3-callback
+7001,tcp,afs3-callback
+7002,udp,afs3-prserver
+7002,tcp,afs3-prserver
+7003,udp,afs3-vlserver
+7003,tcp,afs3-vlserver
+7004,udp,afs3-kaserver
+7004,tcp,afs3-kaserver
+7005,udp,afs3-volser
+7005,tcp,afs3-volser
+7006,udp,afs3-errors
+7006,tcp,afs3-errors
+7007,udp,afs3-bos
+7007,tcp,afs3-bos
+7008,udp,afs3-update
+7008,tcp,afs3-update
+7009,udp,afs3-rmtsys
+7009,tcp,afs3-rmtsys
+7010,udp,ups-onlinet
+7010,tcp,ups-onlinet
+7011,udp,talon-disc
+7011,tcp,talon-disc
+7012,udp,talon-engine
+7012,tcp,talon-engine
+7013,udp,microtalon-dis
+7013,tcp,microtalon-dis
+7014,udp,microtalon-com
+7014,tcp,microtalon-com
+7015,udp,talon-webserver
+7015,tcp,talon-webserver
+7020,udp,dpserve
+7020,tcp,dpserve
+7021,udp,dpserveadmin
+7021,tcp,dpserveadmin
+7022,tcp,ctdp
+7022,udp,ctdp
+7023,tcp,ct2nmcs
+7023,udp,ct2nmcs
+7024,tcp,vmsvc
+7024,udp,vmsvc
+7025,tcp,vmsvc-2
+7025,udp,vmsvc-2
+7030,udp,op-probe
+7030,tcp,op-probe
+7070,udp,arcp
+7070,tcp,arcp
+7099,udp,lazy-ptop
+7099,tcp,lazy-ptop
+7100,udp,font-service
+7100,tcp,font-service
+7121,udp,virprot-lm
+7121,tcp,virprot-lm
+7128,tcp,scenidm
+7128,udp,scenidm
+7129,tcp,scenccs
+7129,udp,scenccs
+7161,tcp,cabsm-comm
+7161,udp,cabsm-comm
+7162,tcp,caistoragemgr
+7162,udp,caistoragemgr
+7163,tcp,cacsambroker
+7163,udp,cacsambroker
+7174,udp,clutild
+7174,tcp,clutild
+7200,udp,fodms
+7200,tcp,fodms
+7201,udp,dlip
+7201,tcp,dlip
+7227,tcp,ramp
+7227,udp,ramp
+7272,tcp,watchme-7272
+7272,udp,watchme-7272
+7273,tcp,oma-rlp
+7273,udp,oma-rlp
+7274,tcp,oma-rlp-s
+7274,udp,oma-rlp-s
+7275,tcp,oma-ulp
+7275,udp,oma-ulp
+7280,udp,itactionserver1
+7280,tcp,itactionserver1
+7281,udp,itactionserver2
+7281,tcp,itactionserver2
+7365,tcp,lcm-server
+7365,udp,lcm-server
+7391,udp,mindfilesys
+7391,tcp,mindfilesys
+7392,udp,mrssrendezvous
+7392,tcp,mrssrendezvous
+7393,tcp,nfoldman
+7393,udp,nfoldman
+7394,tcp,fse
+7394,udp,fse
+7395,udp,winqedit
+7395,tcp,winqedit
+7397,tcp,hexarc
+7397,udp,hexarc
+7400,tcp,rtps-discovery
+7400,udp,rtps-discovery
+7401,tcp,rtps-dd-ut
+7401,udp,rtps-dd-ut
+7402,tcp,rtps-dd-mt
+7402,udp,rtps-dd-mt
+7410,tcp,ionixnetmon
+7410,udp,ionixnetmon
+7421,tcp,mtportmon
+7421,udp,mtportmon
+7426,udp,pmdmgr
+7426,tcp,pmdmgr
+7427,udp,oveadmgr
+7427,tcp,oveadmgr
+7428,udp,ovladmgr
+7428,tcp,ovladmgr
+7429,udp,opi-sock
+7429,tcp,opi-sock
+7430,udp,xmpv7
+7430,tcp,xmpv7
+7431,udp,pmd
+7431,tcp,pmd
+7437,udp,faximum
+7437,tcp,faximum
+7443,tcp,oracleas-https
+7443,udp,oracleas-https
+7491,udp,telops-lmd
+7491,tcp,telops-lmd
+7500,tcp,silhouette
+7500,udp,silhouette
+7501,udp,ovbus
+7501,tcp,ovbus
+7510,udp,ovhpas
+7510,tcp,ovhpas
+7511,udp,pafec-lm
+7511,tcp,pafec-lm
+7543,tcp,atul
+7543,udp,atul
+7544,udp,nta-ds
+7544,tcp,nta-ds
+7545,udp,nta-us
+7545,tcp,nta-us
+7546,tcp,cfs
+7546,udp,cfs
+7547,tcp,cwmp
+7547,udp,cwmp
+7548,tcp,tidp
+7548,udp,tidp
+7549,tcp,nls-tl
+7549,udp,nls-tl
+7560,tcp,sncp
+7560,udp,sncp
+7566,udp,vsi-omega
+7566,tcp,vsi-omega
+7570,udp,aries-kfinder
+7570,tcp,aries-kfinder
+7588,udp,sun-lm
+7588,tcp,sun-lm
+7624,udp,indi
+7624,tcp,indi
+7626,tcp,simco
+7627,tcp,soap-http
+7627,udp,soap-http
+7628,tcp,zen-pawn
+7628,udp,zen-pawn
+7629,tcp,xdas
+7629,udp,xdas
+7633,udp,pmdfmgt
+7633,tcp,pmdfmgt
+7648,tcp,cuseeme
+7648,udp,cuseeme
+7674,udp,imqtunnels
+7674,tcp,imqtunnels
+7675,udp,imqtunnel
+7675,tcp,imqtunnel
+7676,udp,imqbrokerd
+7676,tcp,imqbrokerd
+7677,tcp,sun-user-https
+7677,udp,sun-user-https
+7697,tcp,klio
+7697,udp,klio
+7707,tcp,sync-em7
+7707,udp,sync-em7
+7708,tcp,scinet
+7708,udp,scinet
+7720,tcp,medimageportal
+7720,udp,medimageportal
+7725,tcp,nitrogen
+7725,udp,nitrogen
+7726,tcp,freezexservice
+7726,udp,freezexservice
+7727,tcp,trident-data
+7727,udp,trident-data
+7738,tcp,aiagent
+7738,udp,aiagent
+7743,udp,sstp-1
+7743,tcp,sstp-1
+7744,tcp,raqmon-pdu
+7744,udp,raqmon-pdu
+7777,udp,cbt
+7777,tcp,cbt
+7778,udp,interwise
+7778,tcp,interwise
+7779,udp,vstat
+7779,tcp,vstat
+7781,udp,accu-lmgr
+7781,tcp,accu-lmgr
+7786,udp,minivend
+7786,tcp,minivend
+7787,tcp,popup-reminders
+7787,udp,popup-reminders
+7789,tcp,office-tools
+7789,udp,office-tools
+7794,tcp,q3ade
+7794,udp,q3ade
+7797,udp,pnet-conn
+7797,tcp,pnet-conn
+7798,udp,pnet-enc
+7798,tcp,pnet-enc
+7800,tcp,asr
+7800,udp,asr
+7801,tcp,ssp-client
+7801,udp,ssp-client
+7845,udp,apc-7845
+7845,tcp,apc-7845
+7846,udp,apc-7846
+7846,tcp,apc-7846
+7887,tcp,ubroker
+7887,udp,ubroker
+7900,tcp,mevent
+7900,udp,mevent
+7901,tcp,tnos-sp
+7901,udp,tnos-sp
+7902,tcp,tnos-dp
+7902,udp,tnos-dp
+7903,tcp,tnos-dps
+7903,udp,tnos-dps
+7913,udp,qo-secure
+7913,tcp,qo-secure
+7932,udp,t2-drm
+7932,tcp,t2-drm
+7933,udp,t2-brm
+7933,tcp,t2-brm
+7967,udp,supercell
+7967,tcp,supercell
+7979,udp,micromuse-ncps
+7979,tcp,micromuse-ncps
+7980,udp,quest-vista
+7980,tcp,quest-vista
+7999,udp,irdmi2
+7999,tcp,irdmi2
+8000,udp,irdmi
+8000,tcp,irdmi
+8001,udp,vcom-tunnel
+8001,tcp,vcom-tunnel
+8002,udp,teradataordbms
+8002,tcp,teradataordbms
+8008,udp,http-alt
+8008,tcp,http-alt
+8020,tcp,intu-ec-svcdisc
+8020,udp,intu-ec-svcdisc
+8021,tcp,intu-ec-client
+8021,udp,intu-ec-client
+8022,udp,oa-system
+8022,tcp,oa-system
+8025,tcp,ca-audit-da
+8025,udp,ca-audit-da
+8026,tcp,ca-audit-ds
+8026,udp,ca-audit-ds
+8032,udp,pro-ed
+8032,tcp,pro-ed
+8033,udp,mindprint
+8033,tcp,mindprint
+8052,tcp,senomix01
+8052,udp,senomix01
+8053,tcp,senomix02
+8053,udp,senomix02
+8054,tcp,senomix03
+8054,udp,senomix03
+8055,tcp,senomix04
+8055,udp,senomix04
+8056,tcp,senomix05
+8056,udp,senomix05
+8057,tcp,senomix06
+8057,udp,senomix06
+8058,tcp,senomix07
+8058,udp,senomix07
+8059,tcp,senomix08
+8059,udp,senomix08
+8074,tcp,gadugadu
+8074,udp,gadugadu
+8080,udp,http-alt
+8080,tcp,http-alt
+8081,tcp,sunproxyadmin
+8081,udp,sunproxyadmin
+8082,tcp,us-cli
+8082,udp,us-cli
+8083,tcp,us-srv
+8083,udp,us-srv
+8088,udp,radan-http
+8088,tcp,radan-http
+8097,tcp,sac
+8097,udp,sac
+8100,udp,xprint-server
+8100,tcp,xprint-server
+8115,udp,mtl8000-matrix
+8115,tcp,mtl8000-matrix
+8116,udp,cp-cluster
+8116,tcp,cp-cluster
+8118,udp,privoxy
+8118,tcp,privoxy
+8121,tcp,apollo-data
+8121,udp,apollo-data
+8122,tcp,apollo-admin
+8122,udp,apollo-admin
+8128,tcp,paycash-online
+8128,udp,paycash-online
+8129,tcp,paycash-wbp
+8129,udp,paycash-wbp
+8130,udp,indigo-vrmi
+8130,tcp,indigo-vrmi
+8131,udp,indigo-vbcp
+8131,tcp,indigo-vbcp
+8132,udp,dbabble
+8132,tcp,dbabble
+8148,tcp,isdd
+8148,udp,isdd
+8160,udp,patrol
+8160,tcp,patrol
+8161,udp,patrol-snmp
+8161,tcp,patrol-snmp
+8192,tcp,spytechphone
+8192,udp,spytechphone
+8194,tcp,blp1
+8194,udp,blp1
+8195,tcp,blp2
+8195,udp,blp2
+8199,udp,vvr-data
+8199,tcp,vvr-data
+8200,udp,trivnet1
+8200,tcp,trivnet1
+8201,udp,trivnet2
+8201,tcp,trivnet2
+8204,udp,lm-perfworks
+8204,tcp,lm-perfworks
+8205,udp,lm-instmgr
+8205,tcp,lm-instmgr
+8206,udp,lm-dta
+8206,tcp,lm-dta
+8207,udp,lm-sserver
+8207,tcp,lm-sserver
+8208,udp,lm-webwatcher
+8208,tcp,lm-webwatcher
+8230,tcp,rexecj
+8230,udp,rexecj
+8292,tcp,blp3
+8292,udp,blp3
+8294,tcp,blp4
+8294,udp,blp4
+8300,tcp,tmi
+8300,udp,tmi
+8301,tcp,amberon
+8301,udp,amberon
+8351,udp,server-find
+8351,tcp,server-find
+8376,udp,cruise-enum
+8376,tcp,cruise-enum
+8377,udp,cruise-swroute
+8377,tcp,cruise-swroute
+8378,udp,cruise-config
+8378,tcp,cruise-config
+8379,udp,cruise-diags
+8379,tcp,cruise-diags
+8380,udp,cruise-update
+8380,tcp,cruise-update
+8383,tcp,m2mservices
+8383,udp,m2mservices
+8400,udp,cvd
+8400,tcp,cvd
+8401,udp,sabarsd
+8401,tcp,sabarsd
+8402,udp,abarsd
+8402,tcp,abarsd
+8403,udp,admind
+8403,tcp,admind
+8416,udp,espeech
+8416,tcp,espeech
+8417,udp,espeech-rtp
+8417,tcp,espeech-rtp
+8443,udp,pcsync-https
+8443,tcp,pcsync-https
+8444,udp,pcsync-http
+8444,tcp,pcsync-http
+8450,udp,npmp
+8450,tcp,npmp
+8473,udp,vp2p
+8473,tcp,vp2p
+8474,tcp,noteshare
+8474,udp,noteshare
+8500,tcp,fmtp
+8500,udp,fmtp
+8554,udp,rtsp-alt
+8554,tcp,rtsp-alt
+8555,udp,d-fence
+8555,tcp,d-fence
+8668,divert,natd
+8567,tcp,oap-admin
+8567,udp,oap-admin
+8600,tcp,asterix
+8600,udp,asterix
+8611,tcp,canon-bjnp1
+8611,udp,canon-bjnp1
+8612,tcp,canon-bjnp2
+8612,udp,canon-bjnp2
+8613,tcp,canon-bjnp3
+8613,udp,canon-bjnp3
+8614,tcp,canon-bjnp4
+8614,udp,canon-bjnp4
+8686,tcp,sun-as-jmxrmi
+8686,udp,sun-as-jmxrmi
+8699,tcp,vnyx
+8699,udp,vnyx
+8733,udp,ibus
+8733,tcp,ibus
+8763,udp,mc-appserver
+8763,tcp,mc-appserver
+8764,udp,openqueue
+8764,tcp,openqueue
+8765,udp,ultraseek-http
+8765,tcp,ultraseek-http
+8770,tcp,dpap
+8770,udp,dpap
+8786,udp,msgclnt
+8786,tcp,msgclnt
+8787,udp,msgsrvr
+8787,tcp,msgsrvr
+8800,tcp,sunwebadmin
+8800,udp,sunwebadmin
+8804,udp,truecm
+8804,tcp,truecm
+8873,tcp,dxspider
+8873,udp,dxspider
+8880,udp,cddbp-alt
+8880,tcp,cddbp-alt
+8888,udp,ddi-udp-1
+8888,tcp,ddi-tcp-1
+8889,udp,ddi-udp-2
+8889,tcp,ddi-tcp-2
+8890,udp,ddi-udp-3
+8890,tcp,ddi-tcp-3
+8891,udp,ddi-udp-4
+8891,tcp,ddi-tcp-4
+8892,udp,ddi-udp-5
+8892,tcp,ddi-tcp-5
+8893,udp,ddi-udp-6
+8893,tcp,ddi-tcp-6
+8894,udp,ddi-udp-7
+8894,tcp,ddi-tcp-7
+8900,udp,jmb-cds1
+8900,tcp,jmb-cds1
+8901,udp,jmb-cds2
+8901,tcp,jmb-cds2
+8910,udp,manyone-http
+8910,tcp,manyone-http
+8911,udp,manyone-xml
+8911,tcp,manyone-xml
+8912,tcp,wcbackup
+8912,udp,wcbackup
+8913,tcp,dragonfly
+8913,udp,dragonfly
+8954,udp,cumulus-admin
+8954,tcp,cumulus-admin
+8989,tcp,sunwebadmins
+8989,udp,sunwebadmins
+8999,udp,bctp
+8999,tcp,bctp
+9000,udp,cslistener
+9000,tcp,cslistener
+9001,udp,etlservicemgr
+9001,tcp,etlservicemgr
+9002,udp,dynamid
+9002,tcp,dynamid
+9009,tcp,pichat
+9009,udp,pichat
+9020,udp,tambora
+9020,tcp,tambora
+9021,udp,panagolin-ident
+9021,tcp,panagolin-ident
+9022,udp,paragent
+9022,tcp,paragent
+9023,udp,swa-1
+9023,tcp,swa-1
+9024,udp,swa-2
+9024,tcp,swa-2
+9025,udp,swa-3
+9025,tcp,swa-3
+9026,udp,swa-4
+9026,tcp,swa-4
+9080,udp,glrpc
+9080,tcp,glrpc
+9088,tcp,sqlexec
+9088,udp,sqlexec
+9089,tcp,sqlexec-ssl
+9089,udp,sqlexec-ssl
+9090,udp,websm
+9090,tcp,websm
+9091,udp,xmltec-xmlmail
+9091,tcp,xmltec-xmlmail
+9092,tcp,XmlIpcRegSvc
+9092,udp,XmlIpcRegSvc
+9100,udp,hp-pdl-datastr
+9100,tcp,hp-pdl-datastr
+9100,udp,pdl-datastream
+9100,tcp,pdl-datastream
+9101,udp,bacula-dir
+9101,tcp,bacula-dir
+9102,udp,bacula-fd
+9102,tcp,bacula-fd
+9103,udp,bacula-sd
+9103,tcp,bacula-sd
+9104,tcp,peerwire
+9104,udp,peerwire
+9119,tcp,mxit
+9119,udp,mxit
+9131,tcp,dddp
+9131,udp,dddp
+9160,udp,netlock1
+9160,tcp,netlock1
+9161,udp,netlock2
+9161,tcp,netlock2
+9162,udp,netlock3
+9162,tcp,netlock3
+9163,udp,netlock4
+9163,tcp,netlock4
+9164,udp,netlock5
+9164,tcp,netlock5
+9191,tcp,sun-as-jpda
+9191,udp,sun-as-jpda
+9200,udp,wap-wsp
+9200,tcp,wap-wsp
+9201,udp,wap-wsp-wtp
+9201,tcp,wap-wsp-wtp
+9202,udp,wap-wsp-s
+9202,tcp,wap-wsp-s
+9203,udp,wap-wsp-wtp-s
+9203,tcp,wap-wsp-wtp-s
+9204,udp,wap-vcard
+9204,tcp,wap-vcard
+9205,udp,wap-vcal
+9205,tcp,wap-vcal
+9206,udp,wap-vcard-s
+9206,tcp,wap-vcard-s
+9207,udp,wap-vcal-s
+9207,tcp,wap-vcal-s
+9208,tcp,rjcdb-vcards
+9208,udp,rjcdb-vcards
+9209,tcp,almobile-system
+9209,udp,almobile-system
+9210,udp,lif-mlp
+9210,tcp,lif-mlp
+9211,udp,lif-mlp-s
+9211,tcp,lif-mlp-s
+9212,tcp,serverviewdbms
+9212,udp,serverviewdbms
+9213,tcp,serverstart
+9213,udp,serverstart
+9214,tcp,ipdcesgbs
+9214,udp,ipdcesgbs
+9215,tcp,insis
+9215,udp,insis
+9216,tcp,acme
+9216,udp,acme
+9217,udp,fsc-port
+9217,tcp,fsc-port
+9222,tcp,teamcoherence
+9222,udp,teamcoherence
+9281,udp,swtp-port1
+9281,tcp,swtp-port1
+9282,udp,swtp-port2
+9282,tcp,swtp-port2
+9283,udp,callwaveiam
+9283,tcp,callwaveiam
+9284,udp,visd
+9284,tcp,visd
+9285,udp,n2h2server
+9285,tcp,n2h2server
+9287,udp,cumulus
+9287,tcp,cumulus
+9292,udp,armtechdaemon
+9292,tcp,armtechdaemon
+9293,tcp,storview
+9293,udp,storview
+9294,tcp,armcenterhttp
+9294,udp,armcenterhttp
+9295,tcp,armcenterhttps
+9295,udp,armcenterhttps
+9300,tcp,vrace
+9300,udp,vrace
+9318,tcp,secure-ts
+9318,udp,secure-ts
+9321,udp,guibase
+9321,tcp,guibase
+9343,udp,mpidcmgr
+9343,tcp,mpidcmgr
+9344,udp,mphlpdmc
+9344,tcp,mphlpdmc
+9346,udp,ctechlicensing
+9346,tcp,ctechlicensing
+9374,udp,fjdmimgr
+9374,tcp,fjdmimgr
+9396,udp,fjinvmgr
+9396,tcp,fjinvmgr
+9397,udp,mpidcagt
+9397,tcp,mpidcagt
+9418,tcp,git
+9418,udp,git
+9443,tcp,tungsten-https
+9443,udp,tungsten-https
+9500,udp,ismserver
+9500,tcp,ismserver
+9535,udp,mngsuite
+9535,tcp,mngsuite
+9555,tcp,trispen-sra
+9555,udp,trispen-sra
+9592,tcp,ldgateway
+9592,udp,ldgateway
+9593,tcp,cba8
+9593,udp,cba8
+9594,udp,msgsys
+9594,tcp,msgsys
+9595,udp,pds
+9595,tcp,pds
+9596,tcp,mercury-disc
+9596,udp,mercury-disc
+9597,tcp,pd-admin
+9597,udp,pd-admin
+9598,tcp,vscp
+9598,udp,vscp
+9599,tcp,robix
+9599,udp,robix
+9600,udp,micromuse-ncpw
+9600,tcp,micromuse-ncpw
+9612,udp,streamcomm-ds
+9612,tcp,streamcomm-ds
+9700,tcp,board-roar
+9700,udp,board-roar
+9747,udp,l5nas-parchan
+9747,tcp,l5nas-parchan
+9750,tcp,board-voip
+9750,udp,board-voip
+9753,udp,rasadv
+9753,tcp,rasadv
+9762,tcp,tungsten-http
+9762,udp,tungsten-http
+9800,udp,davsrc
+9800,tcp,davsrc
+9801,udp,sstp-2
+9801,tcp,sstp-2
+9802,tcp,davsrcs
+9802,udp,davsrcs
+9875,udp,sapv1
+9875,tcp,sapv1
+9876,udp,sd
+9876,tcp,sd
+9888,udp,cyborg-systems
+9888,tcp,cyborg-systems
+9898,udp,monkeycom
+9898,tcp,monkeycom
+9899,udp,sctp-tunneling
+9899,tcp,sctp-tunneling
+9900,sctp,iua
+9900,udp,iua
+9900,tcp,iua
+9901,udp,enrp
+9909,udp,domaintime
+9909,tcp,domaintime
+9911,udp,sype-transport
+9911,tcp,sype-transport
+9950,udp,apc-9950
+9950,tcp,apc-9950
+9951,udp,apc-9951
+9951,tcp,apc-9951
+9952,udp,apc-9952
+9952,tcp,apc-9952
+9953,tcp,acis
+9953,udp,acis
+9966,tcp,odnsp
+9966,udp,odnsp
+9987,tcp,dsm-scm-target
+9987,udp,dsm-scm-target
+9990,tcp,osm-appsrvr
+9990,udp,osm-appsrvr
+9991,tcp,osm-oev
+9991,udp,osm-oev
+9992,udp,palace-1
+9992,tcp,palace-1
+9993,udp,palace-2
+9993,tcp,palace-2
+9994,udp,palace-3
+9994,tcp,palace-3
+9995,udp,palace-4
+9995,tcp,palace-4
+9996,udp,palace-5
+9996,tcp,palace-5
+9997,udp,palace-6
+9997,tcp,palace-6
+9998,udp,distinct32
+9998,tcp,distinct32
+9999,udp,distinct
+9999,tcp,distinct
+10000,udp,ndmp
+10000,tcp,ndmp
+10001,udp,scp-config
+10001,tcp,scp-config
+10007,udp,mvs-capacity
+10007,tcp,mvs-capacity
+10008,udp,octopus
+10008,tcp,octopus
+10009,tcp,swdtp-sv
+10009,udp,swdtp-sv
+10050,tcp,zabbix-agent
+10050,udp,zabbix-agent
+10051,tcp,zabbix-trapper
+10051,udp,zabbix-trapper
+10080,udp,amanda
+10080,tcp,amanda
+10081,tcp,famdc
+10081,udp,famdc
+10100,tcp,itap-ddtp
+10100,udp,itap-ddtp
+10101,udp,ezmeeting-2
+10101,tcp,ezmeeting-2
+10102,udp,ezproxy-2
+10102,tcp,ezproxy-2
+10103,udp,ezrelay
+10103,tcp,ezrelay
+10104,tcp,swdtp
+10104,udp,swdtp
+10107,tcp,bctp-server
+10107,udp,bctp-server
+10113,udp,netiq-endpoint
+10113,tcp,netiq-endpoint
+10114,udp,netiq-qcheck
+10114,tcp,netiq-qcheck
+10115,udp,netiq-endpt
+10115,tcp,netiq-endpt
+10116,udp,netiq-voipa
+10116,tcp,netiq-voipa
+10128,udp,bmc-perf-sd
+10128,tcp,bmc-perf-sd
+10160,tcp,qb-db-server
+10160,udp,qb-db-server
+10200,tcp,trisoap
+10200,udp,trisoap
+10252,tcp,apollo-relay
+10252,udp,apollo-relay
+10260,udp,axis-wimp-port
+10260,tcp,axis-wimp-port
+10288,udp,blocks
+10288,tcp,blocks
+10800,tcp,gap
+10800,udp,gap
+10805,tcp,lpdg
+10805,udp,lpdg
+10990,udp,rmiaux
+10990,tcp,rmiaux
+11000,udp,irisa
+11000,tcp,irisa
+11001,udp,metasys
+11001,tcp,metasys
+11111,udp,vce
+11111,tcp,vce
+11112,tcp,dicom
+11112,udp,dicom
+11161,tcp,suncacao-snmp
+11161,udp,suncacao-snmp
+11162,tcp,suncacao-jmxmp
+11162,udp,suncacao-jmxmp
+11163,tcp,suncacao-rmi
+11163,udp,suncacao-rmi
+11164,tcp,suncacao-csa
+11164,udp,suncacao-csa
+11165,tcp,suncacao-websvc
+11165,udp,suncacao-websvc
+11201,udp,smsqp
+11201,tcp,smsqp
+11208,tcp,wifree
+11208,udp,wifree
+11319,udp,imip
+11319,tcp,imip
+11320,udp,imip-channels
+11320,tcp,imip-channels
+11321,udp,arena-server
+11321,tcp,arena-server
+11367,udp,atm-uhas
+11367,tcp,atm-uhas
+11371,udp,hkp
+11371,tcp,hkp
+11600,udp,tempest-port
+11600,tcp,tempest-port
+11720,udp,h323callsigalt
+11720,tcp,h323callsigalt
+11751,udp,intrepid-ssl
+11751,tcp,intrepid-ssl
+11967,udp,sysinfo-sp
+11967,tcp,sysinfo-sp
+12000,udp,entextxid
+12000,tcp,entextxid
+12001,udp,entextnetwk
+12001,tcp,entextnetwk
+12002,udp,entexthigh
+12002,tcp,entexthigh
+12003,udp,entextmed
+12003,tcp,entextmed
+12004,udp,entextlow
+12004,tcp,entextlow
+12005,udp,dbisamserver1
+12005,tcp,dbisamserver1
+12006,udp,dbisamserver2
+12006,tcp,dbisamserver2
+12007,tcp,accuracer
+12007,udp,accuracer
+12008,tcp,accuracer-dbms
+12008,udp,accuracer-dbms
+12012,tcp,vipera
+12012,udp,vipera
+12109,udp,rets-ssl
+12109,tcp,rets-ssl
+12121,tcp,nupaper-ss
+12121,udp,nupaper-ss
+12168,tcp,cawas
+12168,udp,cawas
+12172,udp,hivep
+12172,tcp,hivep
+12300,tcp,linogridengine
+12300,udp,linogridengine
+12321,tcp,warehouse-sss
+12321,udp,warehouse-sss
+12322,tcp,warehouse
+12322,udp,warehouse
+12345,udp,italk
+12345,tcp,italk
+12753,udp,tsaf
+12753,tcp,tsaf
+13160,udp,i-zipqd
+13160,tcp,i-zipqd
+13223,udp,powwow-client
+13223,tcp,powwow-client
+13224,udp,powwow-server
+13224,tcp,powwow-server
+13720,udp,bprd
+13720,tcp,bprd
+13721,udp,bpdbm
+13721,tcp,bpdbm
+13722,udp,bpjava-msvc
+13722,tcp,bpjava-msvc
+13724,udp,vnetd
+13724,tcp,vnetd
+13782,udp,bpcd
+13782,tcp,bpcd
+13783,udp,vopied
+13783,tcp,vopied
+13785,tcp,nbdb
+13785,udp,nbdb
+13786,tcp,nomdb
+13786,udp,nomdb
+13818,udp,dsmcc-config
+13818,tcp,dsmcc-config
+13819,udp,dsmcc-session
+13819,tcp,dsmcc-session
+13820,udp,dsmcc-passthru
+13820,tcp,dsmcc-passthru
+13821,udp,dsmcc-download
+13821,tcp,dsmcc-download
+13822,udp,dsmcc-ccp
+13822,tcp,dsmcc-ccp
+14001,sctp,sua
+14001,udp,sua
+14001,tcp,sua
+14033,udp,sage-best-com1
+14033,tcp,sage-best-com1
+14034,udp,sage-best-com2
+14034,tcp,sage-best-com2
+14141,udp,vcs-app
+14141,tcp,vcs-app
+14142,tcp,icpp
+14142,udp,icpp
+14145,udp,gcm-app
+14145,tcp,gcm-app
+14149,udp,vrts-tdd
+14149,tcp,vrts-tdd
+14154,tcp,vad
+14154,udp,vad
+14414,tcp,ca-web-update
+14414,udp,ca-web-update
+14936,udp,hde-lcesrvr-1
+14936,tcp,hde-lcesrvr-1
+14937,udp,hde-lcesrvr-2
+14937,tcp,hde-lcesrvr-2
+15000,udp,hydap
+15000,tcp,hydap
+15345,udp,xpilot
+15345,tcp,xpilot
+15363,udp,3link
+15363,tcp,3link
+15555,tcp,cisco-snat
+15555,udp,cisco-snat
+15740,tcp,ptp
+15740,udp,ptp
+16161,tcp,sun-sea-port
+16161,udp,sun-sea-port
+16309,tcp,etb4j
+16309,udp,etb4j
+16310,tcp,pduncs
+16310,udp,pduncs
+16360,udp,netserialext1
+16360,tcp,netserialext1
+16361,udp,netserialext2
+16361,tcp,netserialext2
+16367,udp,netserialext3
+16367,tcp,netserialext3
+16368,udp,netserialext4
+16368,tcp,netserialext4
+16384,tcp,connected
+16384,udp,connected
+16991,udp,intel-rci-mp
+16991,tcp,intel-rci-mp
+16992,tcp,amt-soap-http
+16992,udp,amt-soap-http
+16993,tcp,amt-soap-https
+16993,udp,amt-soap-https
+16994,tcp,amt-redir-tcp
+16994,udp,amt-redir-tcp
+16995,tcp,amt-redir-tls
+16995,udp,amt-redir-tls
+17007,udp,isode-dua
+17007,tcp,isode-dua
+17185,udp,soundsvirtual
+17185,tcp,soundsvirtual
+17219,udp,chipper
+17219,tcp,chipper
+17235,tcp,ssh-mgmt
+17235,udp,ssh-mgmt
+17729,tcp,ea
+17729,udp,ea
+17754,tcp,zep
+17754,udp,zep
+17755,tcp,zigbee-ip
+17755,udp,zigbee-ip
+17756,tcp,zigbee-ips
+17756,udp,zigbee-ips
+18000,udp,biimenu
+18000,tcp,biimenu
+18181,udp,opsec-cvp
+18181,tcp,opsec-cvp
+18182,udp,opsec-ufp
+18182,tcp,opsec-ufp
+18183,udp,opsec-sam
+18183,tcp,opsec-sam
+18184,udp,opsec-lea
+18184,tcp,opsec-lea
+18185,udp,opsec-omi
+18185,tcp,opsec-omi
+18186,tcp,ohsc
+18186,udp,ohsc
+18187,udp,opsec-ela
+18187,tcp,opsec-ela
+18241,udp,checkpoint-rtm
+18241,tcp,checkpoint-rtm
+18463,udp,ac-cluster
+18463,tcp,ac-cluster
+18769,udp,ique
+18769,tcp,ique
+18881,tcp,infotos
+18881,udp,infotos
+18888,udp,apc-necmp
+18888,tcp,apc-necmp
+19000,tcp,igrid
+19000,udp,igrid
+19191,udp,opsec-uaa
+19191,tcp,opsec-uaa
+19194,udp,ua-secureagent
+19194,tcp,ua-secureagent
+19283,udp,keysrvr
+19283,tcp,keysrvr
+19315,udp,keyshadow
+19315,tcp,keyshadow
+19398,udp,mtrgtrans
+19398,tcp,mtrgtrans
+19410,udp,hp-sco
+19410,tcp,hp-sco
+19411,udp,hp-sca
+19411,tcp,hp-sca
+19412,udp,hp-sessmon
+19412,tcp,hp-sessmon
+19539,tcp,fxuptp
+19539,udp,fxuptp
+19540,udp,sxuptp
+19540,tcp,sxuptp
+19541,udp,jcp
+19541,tcp,jcp
+20000,udp,dnp
+20000,tcp,dnp
+20001,tcp,microsan
+20001,udp,microsan
+20002,tcp,commtact-http
+20002,udp,commtact-http
+20003,tcp,commtact-https
+20003,udp,commtact-https
+20014,tcp,opendeploy
+20014,udp,opendeploy
+20034,tcp,nburn_id
+20034,udp,nburn_id
+20167,tcp,tolfab
+20167,udp,tolfab
+20202,udp,ipdtp-port
+20202,tcp,ipdtp-port
+20222,udp,ipulse-ics
+20222,tcp,ipulse-ics
+20670,udp,track
+20670,tcp,track
+20999,udp,athand-mmp
+20999,tcp,athand-mmp
+21000,tcp,irtrans
+21000,udp,irtrans
+21554,tcp,dfserver
+21554,udp,dfserver
+21590,udp,vofr-gateway
+21590,tcp,vofr-gateway
+21800,udp,tvpm
+21800,tcp,tvpm
+21845,udp,webphone
+21845,tcp,webphone
+21846,udp,netspeak-is
+21846,tcp,netspeak-is
+21847,udp,netspeak-cs
+21847,tcp,netspeak-cs
+21848,udp,netspeak-acd
+21848,tcp,netspeak-acd
+21849,udp,netspeak-cps
+21849,tcp,netspeak-cps
+22000,udp,snapenetio
+22000,tcp,snapenetio
+22001,udp,optocontrol
+22001,tcp,optocontrol
+22002,tcp,optohost002
+22002,udp,optohost002
+22003,tcp,optohost003
+22003,udp,optohost003
+22004,tcp,optohost004
+22004,udp,optohost004
+22005,tcp,optohost004
+22005,udp,optohost004
+22273,udp,wnn6
+22273,tcp,wnn6
+22555,udp,vocaltec-phone
+22555,tcp,vocaltec-wconf
+22763,tcp,talikaserver
+22763,udp,talikaserver
+22800,udp,aws-brf
+22800,tcp,aws-brf
+22951,udp,brf-gw
+22951,tcp,brf-gw
+23000,tcp,inovaport1
+23000,udp,inovaport1
+23001,tcp,inovaport2
+23001,udp,inovaport2
+23002,tcp,inovaport3
+23002,udp,inovaport3
+23003,tcp,inovaport4
+23003,udp,inovaport4
+23004,tcp,inovaport5
+23004,udp,inovaport5
+23005,tcp,inovaport6
+23005,udp,inovaport6
+23400,tcp,novar-dbase
+23400,udp,novar-dbase
+23401,tcp,novar-alarm
+23401,udp,novar-alarm
+23402,tcp,novar-global
+23402,udp,novar-global
+24000,udp,med-ltp
+24000,tcp,med-ltp
+24001,udp,med-fsp-rx
+24001,tcp,med-fsp-rx
+24002,udp,med-fsp-tx
+24002,tcp,med-fsp-tx
+24003,udp,med-supp
+24003,tcp,med-supp
+24004,udp,med-ovw
+24004,tcp,med-ovw
+24005,udp,med-ci
+24005,tcp,med-ci
+24006,udp,med-net-svc
+24006,tcp,med-net-svc
+24242,udp,filesphere
+24242,tcp,filesphere
+24249,udp,vista-4gl
+24249,tcp,vista-4gl
+24321,tcp,ild
+24321,udp,ild
+24386,udp,intel_rci
+24386,tcp,intel_rci
+24554,udp,binkp
+24554,tcp,binkp
+24677,udp,flashfiler
+24677,tcp,flashfiler
+24678,udp,proactivate
+24678,tcp,proactivate
+24680,tcp,tcc-http
+24680,udp,tcc-http
+24922,udp,snip
+24922,tcp,snip
+25000,udp,icl-twobase1
+25000,tcp,icl-twobase1
+25001,udp,icl-twobase2
+25001,tcp,icl-twobase2
+25002,udp,icl-twobase3
+25002,tcp,icl-twobase3
+25003,udp,icl-twobase4
+25003,tcp,icl-twobase4
+25004,udp,icl-twobase5
+25004,tcp,icl-twobase5
+25005,udp,icl-twobase6
+25005,tcp,icl-twobase6
+25006,udp,icl-twobase7
+25006,tcp,icl-twobase7
+25007,udp,icl-twobase8
+25007,tcp,icl-twobase8
+25008,udp,icl-twobase9
+25008,tcp,icl-twobase9
+25009,udp,icl-twobase10
+25009,tcp,icl-twobase10
+25793,udp,vocaltec-hos
+25793,tcp,vocaltec-hos
+25900,tcp,tasp-net
+25900,udp,tasp-net
+25901,udp,niobserver
+25901,tcp,niobserver
+25903,udp,niprobe
+25903,tcp,niprobe
+26000,udp,quake
+26000,tcp,quake
+26208,udp,wnn6-ds
+26208,tcp,wnn6-ds
+26260,udp,ezproxy
+26260,tcp,ezproxy
+26261,udp,ezmeeting
+26261,tcp,ezmeeting
+26262,udp,k3software-svr
+26262,tcp,k3software-svr
+26263,udp,k3software-cli
+26263,tcp,k3software-cli
+26264,udp,gserver
+26264,tcp,gserver
+26486,tcp,exoline-tcp
+26486,udp,exoline-udp
+26487,tcp,exoconfig
+26487,udp,exoconfig
+26489,tcp,exonet
+26489,udp,exonet
+27345,udp,imagepump
+27345,tcp,imagepump
+27442,tcp,jesmsjc
+27442,udp,jesmsjc
+27504,udp,kopek-httphead
+27504,tcp,kopek-httphead
+27782,tcp,ars-vista
+27782,udp,ars-vista
+27999,udp,tw-auth-key
+27999,tcp,tw-auth-key
+28000,tcp,nxlmd
+28000,udp,nxlmd
+28240,tcp,siemensgsm
+28240,udp,siemensgsm
+29167,tcp,otmp
+29167,udp,otmp
+30001,udp,pago-services1
+30001,tcp,pago-services1
+30002,udp,pago-services2
+30002,tcp,pago-services2
+30999,tcp,ovobs
+30999,udp,ovobs
+31416,udp,xqosd
+31416,tcp,xqosd
+31457,tcp,tetrinet
+31457,udp,tetrinet
+31620,udp,lm-mon
+31620,tcp,lm-mon
+31765,udp,gamesmith-port
+31765,tcp,gamesmith-port
+31948,tcp,iceedcp_tx
+31948,udp,iceedcp_tx
+31949,tcp,iceedcp_rx
+31949,udp,iceedcp_rx
+32249,tcp,t1distproc60
+32249,udp,t1distproc60
+32483,tcp,apm-link
+32483,udp,apm-link
+32635,tcp,sec-ntb-clnt
+32635,udp,sec-ntb-clnt
+32767,tcp,filenet-powsrm
+32767,udp,filenet-powsrm
+32768,udp,filenet-tms
+32768,tcp,filenet-tms
+32769,udp,filenet-rpc
+32769,tcp,filenet-rpc
+32770,udp,filenet-nch
+32770,tcp,filenet-nch
+32771,udp,filenet-rmi
+32771,tcp,filenet-rmi
+32772,udp,filenet-pa
+32772,tcp,filenet-pa
+32773,tcp,filenet-cm
+32773,udp,filenet-cm
+32774,tcp,filenet-re
+32774,udp,filenet-re
+32775,tcp,filenet-pch
+32775,udp,filenet-pch
+32776,tcp,filenet-peior
+32776,udp,filenet-peior
+32777,tcp,filenet-obrok
+32777,udp,filenet-obrok
+32896,udp,idmgratm
+32896,tcp,idmgratm
+33331,udp,diamondport
+33331,tcp,diamondport
+33434,udp,traceroute
+33434,tcp,traceroute
+33656,tcp,snip-slave
+33656,udp,snip-slave
+34249,udp,turbonote-2
+34249,tcp,turbonote-2
+34378,tcp,p-net-local
+34378,udp,p-net-local
+34379,tcp,p-net-remote
+34379,udp,p-net-remote
+34962,tcp,profinet-rt
+34962,udp,profinet-rt
+34963,tcp,profinet-rtm
+34963,udp,profinet-rtm
+34964,tcp,profinet-cm
+34964,udp,profinet-cm
+34980,tcp,ethercat
+34980,udp,ethercat
+36865,udp,kastenxpipe
+36865,tcp,kastenxpipe
+37475,udp,neckar
+37475,tcp,neckar
+37654,tcp,unisys-eportal
+37654,udp,unisys-eportal
+38201,udp,galaxy7-data
+38201,tcp,galaxy7-data
+38202,tcp,fairview
+38202,udp,fairview
+38203,tcp,agpolicy
+38203,udp,agpolicy
+39681,udp,turbonote-1
+39681,tcp,turbonote-1
+40000,tcp,safetynetp
+40000,udp,safetynetp
+40841,udp,cscp
+40841,tcp,cscp
+40842,udp,csccredir
+40842,tcp,csccredir
+40843,udp,csccfirewall
+40843,tcp,csccfirewall
+41111,udp,fs-qos
+41111,tcp,fs-qos
+41794,udp,crestron-cip
+41794,tcp,crestron-cip
+41795,udp,crestron-ctp
+41795,tcp,crestron-ctp
+42508,tcp,candp
+42508,udp,candp
+42509,tcp,candrp
+42509,udp,candrp
+42510,tcp,caerpc
+42510,udp,caerpc
+43188,udp,reachout
+43188,tcp,reachout
+43189,udp,ndm-agent-port
+43189,tcp,ndm-agent-port
+43190,udp,ip-provision
+43190,tcp,ip-provision
+43441,tcp,ciscocsdb
+43441,udp,ciscocsdb
+44321,udp,pmcd
+44321,tcp,pmcd
+44322,tcp,pmcdproxy
+44322,udp,pmcdproxy
+44553,tcp,rbr-debug
+44553,udp,rbr-debug
+44818,udp,rockwell-encap
+44818,tcp,rockwell-encap
+45054,udp,invision-ag
+45054,tcp,invision-ag
+45678,udp,eba
+45678,tcp,eba
+45966,udp,ssr-servermgr
+45966,tcp,ssr-servermgr
+46999,tcp,mediabox
+46999,udp,mediabox
+47000,udp,mbus
+47000,tcp,mbus
+47557,udp,dbbrowse
+47557,tcp,dbbrowse
+47624,udp,directplaysrvr
+47624,tcp,directplaysrvr
+47806,udp,ap
+47806,tcp,ap
+47808,udp,bacnet
+47808,tcp,bacnet
+48000,udp,nimcontroller
+48000,tcp,nimcontroller
+48001,udp,nimspooler
+48001,tcp,nimspooler
+48002,udp,nimhub
+48002,tcp,nimhub
+48003,udp,nimgtw
+48003,tcp,nimgtw
+48128,tcp,isnetserv
+48128,udp,isnetserv
+48129,tcp,blp5
+48129,udp,blp5
+48556,udp,com-bardac-dw
+48556,tcp,com-bardac-dw
From 577ab644654fcff02f5d8798a1f8b1034d9b2df8 Mon Sep 17 00:00:00 2001
From: Brian Torres-Gil
Date: Wed, 24 Jul 2013 13:19:02 -0700
Subject: [PATCH 02/12] Clean up app setup page.
---
appserver/static/nfi_about.html | 13 +++----
default/data/ui/views/nfi_about.xml | 2 +-
default/setup.xml | 57 ++++++++++++++---------------
3 files changed, 35 insertions(+), 37 deletions(-)
diff --git a/appserver/static/nfi_about.html b/appserver/static/nfi_about.html
index 35cf6da6..fe8502c0 100644
--- a/appserver/static/nfi_about.html
+++ b/appserver/static/nfi_about.html
@@ -1,14 +1,13 @@
-About these views
+About NetFlow
-These views are based on NetFlow data produced by Palo Alto Network devices and processed and converted to syslog messages by 3rd party software - NetFlow Integrator. Download a 30-day free trial of NetFlow Integrator here https://www.netflowlogic.com/downloads
+NetFlow views are based on NetFlow data produced by Palo Alto Networks devices and converted to syslog messages by 3rd party software - NetFlow Integrator. Download a 30-day free trial of NetFlow Integrator here https://www.netflowlogic.com/downloads
-
+Steps to configure:
Install NetFlow Integrator on a separate server or together with Splunk Forwarder
-Point Palo Alto Network NetFlow to NetFlow Integrator server, port 9995
+Point Palo Alto Networks NetFlow to NetFlow Integrator server, port 9995
Add NetFlow Integrator output pointing to Splunk UDP port 10514
Create Splunk UDP data input sourcetype=flowintegrator, which receives syslog messages on UDP port 10514, and index=flowintegrator.
-Enable NetFlow Integrator Palo Alto Network Rules (10030 through 10035) and Converter (20093)
+ Enable NetFlow Integrator Palo Alto Networks Rules (10030 through 10035) and Converter (20093)
-If you have any questions, or require any assistance with configuration please contact us at https://netflowlogic.zendesk.com/home
-
+If you have any questions, or require any assistance with configuration please contact NetFlow Logic at https://netflowlogic.zendesk.com/home
diff --git a/default/data/ui/views/nfi_about.xml b/default/data/ui/views/nfi_about.xml
index 067a5a37..615160e6 100644
--- a/default/data/ui/views/nfi_about.xml
+++ b/default/data/ui/views/nfi_about.xml
@@ -1,5 +1,5 @@
- About these views
+ About Netflow
diff --git a/default/setup.xml b/default/setup.xml
index 65976a2b..03edba6b 100644
--- a/default/setup.xml
+++ b/default/setup.xml
@@ -1,14 +1,14 @@
-
-
- These are the credentials that will be used to communicate with your Palo Alto Networks Firewall or Panorama.
-
-
- Username
- text
-
-
- Password
- password
+
+
+ These are the credentials that will be used to communicate with your Palo Alto Networks Firewall or Panorama.
+
+
+ Username
+ text
+
+
+ Password
+ password
@@ -22,20 +22,15 @@
WildFire API Key
text
-
- $(function(){
- var username_div = $('#item-\\/storage\\/passwords\\/_new\\/name');
- username_div.hide();
- var username_input = $('#\\/storage\\/passwords\\/_new\\/name_id');
- username_input.val('wildfire_api_key');
- });
- ]]>
+
+ NetFlow requires 3rd party software called NetFlow Integrator. More Information]]>
+
+
+ bool
+
+
- Note: To change the Credentials or WildFire API Key later, first remove the entry from SPLUNK_HOME/etc/apps/SplunkforPaloAltoNetworks/local/app.conf and restart Splunk.
-
-
-
function NFIPages(eventObject)
@@ -55,13 +50,17 @@
$(document).ready(function()
{
- $('#eaiform').submit(NFIPages);
+ $(function(){
+ var username_div = $('#item-\\/storage\\/passwords\\/_new\\/name');
+ username_div.hide();
+ var username_input = $('#\\/storage\\/passwords\\/_new\\/name_id');
+ username_input.val('wildfire_api_key');
+ });
+ $('#eaiform').submit(NFIPages);
});
]]>
-
- NetFlow views enabled by this option are based on NetFlow data produced by Palo Alto Networks Next Generation Firewalls which are processed and converted to syslog (CIM) messages by 3rd party software - NetFlow Integrator. (Restart Splunk after you Save your changes) ]]>
- bool
-
-
+ Note: To change the Credentials or WildFire API Key later, first remove the entry from SPLUNK_HOME/etc/apps/SplunkforPaloAltoNetworks/local/app.conf and restart Splunk.
+
+
From 0f9755bfb073fa0e7be9d150fbec5d59c01f8a0e Mon Sep 17 00:00:00 2001
From: Brian Torres-Gil
Date: Wed, 24 Jul 2013 14:20:05 -0700
Subject: [PATCH 03/12] Modified names of NetFlow specific files to make their
purpose more clear.
---
appserver/controllers/get_version.py | 2 +-
appserver/controllers/nfi_nav_handler.py | 4 ++--
.../ui/nav/{default.xml.disabled => default.xml.nfi_disabled} | 0
.../ui/nav/{default.xml.enabled => default.xml.nfi_enabled} | 0
default/{version.conf => nfi_version.conf} | 0
5 files changed, 3 insertions(+), 3 deletions(-)
rename default/data/ui/nav/{default.xml.disabled => default.xml.nfi_disabled} (100%)
rename default/data/ui/nav/{default.xml.enabled => default.xml.nfi_enabled} (100%)
rename default/{version.conf => nfi_version.conf} (100%)
diff --git a/appserver/controllers/get_version.py b/appserver/controllers/get_version.py
index 78cbe356..4da7fd4a 100644
--- a/appserver/controllers/get_version.py
+++ b/appserver/controllers/get_version.py
@@ -3,7 +3,7 @@
from splunk.appserver.mrsparkle.lib.decorators import expose_page
APP = 'SplunkforPaloAltoNetworks'
-VERSION_CONF = os.path.join(os.environ['SPLUNK_HOME'], 'etc', 'apps', APP, 'default', 'version.conf')
+VERSION_CONF = os.path.join(os.environ['SPLUNK_HOME'], 'etc', 'apps', APP, 'default', 'nfi_version.conf')
class GetVersion(controllers.BaseController):
@expose_page(must_login=True, methods=['GET'])
diff --git a/appserver/controllers/nfi_nav_handler.py b/appserver/controllers/nfi_nav_handler.py
index 5ad8adb1..f6eed4ed 100644
--- a/appserver/controllers/nfi_nav_handler.py
+++ b/appserver/controllers/nfi_nav_handler.py
@@ -4,8 +4,8 @@
from splunk.appserver.mrsparkle.lib.decorators import expose_page
APP = 'SplunkforPaloAltoNetworks'
-ENABLED_NAV = os.path.join(os.environ['SPLUNK_HOME'], 'etc', 'apps', APP, 'default', 'data', 'ui', 'nav', 'default.xml.enabled')
-DISABLED_NAV = os.path.join(os.environ['SPLUNK_HOME'], 'etc', 'apps', APP, 'default', 'data', 'ui', 'nav', 'default.xml.disabled')
+ENABLED_NAV = os.path.join(os.environ['SPLUNK_HOME'], 'etc', 'apps', APP, 'default', 'data', 'ui', 'nav', 'default.xml.nfi_enabled')
+DISABLED_NAV = os.path.join(os.environ['SPLUNK_HOME'], 'etc', 'apps', APP, 'default', 'data', 'ui', 'nav', 'default.xml.nfi_disabled')
NAV = os.path.join(os.environ['SPLUNK_HOME'], 'etc', 'apps', APP, 'default', 'data', 'ui', 'nav', 'default.xml')
class NAVHANDLER(controllers.BaseController):
diff --git a/default/data/ui/nav/default.xml.disabled b/default/data/ui/nav/default.xml.nfi_disabled
similarity index 100%
rename from default/data/ui/nav/default.xml.disabled
rename to default/data/ui/nav/default.xml.nfi_disabled
diff --git a/default/data/ui/nav/default.xml.enabled b/default/data/ui/nav/default.xml.nfi_enabled
similarity index 100%
rename from default/data/ui/nav/default.xml.enabled
rename to default/data/ui/nav/default.xml.nfi_enabled
diff --git a/default/version.conf b/default/nfi_version.conf
similarity index 100%
rename from default/version.conf
rename to default/nfi_version.conf
From 8f39edcacacddd8c0838fa07fb2417f4b9f6d12e Mon Sep 17 00:00:00 2001
From: Brian Torres-Gil
Date: Wed, 24 Jul 2013 15:44:33 -0700
Subject: [PATCH 04/12] Set NetFlow Logic external links to open in a new
window
---
appserver/static/nfi_about.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/appserver/static/nfi_about.html b/appserver/static/nfi_about.html
index fe8502c0..baf0b3d4 100644
--- a/appserver/static/nfi_about.html
+++ b/appserver/static/nfi_about.html
@@ -1,6 +1,6 @@
About NetFlow
-NetFlow views are based on NetFlow data produced by Palo Alto Networks devices and converted to syslog messages by 3rd party software - NetFlow Integrator. Download a 30-day free trial of NetFlow Integrator here https://www.netflowlogic.com/downloads
+NetFlow views are based on NetFlow data produced by Palo Alto Networks devices and converted to syslog messages by 3rd party software - NetFlow Integrator. Download a 30-day free trial of NetFlow Integrator here https://www.netflowlogic.com/downloads
Steps to configure:
Install NetFlow Integrator on a separate server or together with Splunk Forwarder
@@ -10,4 +10,4 @@
Enable NetFlow Integrator Palo Alto Networks Rules (10030 through 10035) and Converter (20093)
-If you have any questions, or require any assistance with configuration please contact NetFlow Logic at https://netflowlogic.zendesk.com/home
+If you have any questions, or require any assistance with configuration please contact NetFlow Logic at https://netflowlogic.zendesk.com/home
From 0953186cc42b342a60f9162ea97beb848058a2d5 Mon Sep 17 00:00:00 2001
From: Brian Torres-Gil
Date: Wed, 24 Jul 2013 16:03:25 -0700
Subject: [PATCH 05/12] Corrected and updated navigation with and without
NetFlow
---
default/data/ui/nav/default.xml.nfi_disabled | 161 ++++++++-------
default/data/ui/nav/default.xml.nfi_enabled | 206 ++++++++++---------
2 files changed, 197 insertions(+), 170 deletions(-)
diff --git a/default/data/ui/nav/default.xml.nfi_disabled b/default/data/ui/nav/default.xml.nfi_disabled
index de0381c6..081147a0 100755
--- a/default/data/ui/nav/default.xml.nfi_disabled
+++ b/default/data/ui/nav/default.xml.nfi_disabled
@@ -1,74 +1,87 @@
-
-
-
-
- Search
- Threat Data
- Traffic Logs
- Config Messages
- System Logs
-
-
- Configuration
-
- Send Feedback
-
-
-
-
-
-
-
-
- Search Traffic Data
-
-
-
-
-
-
-
-
-
-
- Search Threat Data
-
-
-
-
-
-
-
-
-
-
-
- Search Threat Data
-
-
-
-
-
-
-
-
-
-
- Search System Messages
-
-
-
-
- Search Config Changes
-
-
-
-
-
-
-
-
-
+
+
+
+
+ Search
+ Threat Data
+ Traffic Logs
+ Config Messages
+ System Logs
+
+
+ Configuration
+
+ Send Feedback
+
+
+
+
+
+
+
+
+ Search Traffic Data
+
+
+
+
+
+
+
+
+
+
+ Search Threat Data
+
+
+
+
+
+
+
+
+
+
+
+ Search URL Data
+ Search Data Filtering Data
+
+
+
+
+
+
+
+
+
+
+ Search WildFire Log Data
+ Search WildFire Report Data
+
+
+
+
+
+
+
+
+
+
+ Search System Messages
+
+
+
+
+ Search Config Changes
+
+
+
+
+
+
+
+
+
diff --git a/default/data/ui/nav/default.xml.nfi_enabled b/default/data/ui/nav/default.xml.nfi_enabled
index 33b6b9d4..62fa3e80 100755
--- a/default/data/ui/nav/default.xml.nfi_enabled
+++ b/default/data/ui/nav/default.xml.nfi_enabled
@@ -1,96 +1,110 @@
-
-
-
-
- Search
- Threat Data
- Traffic Logs
- Config Messages
- System Logs
-
-
- Configuration
-
- Send Feedback
-
-
-
-
-
-
-
-
- Search Traffic Data
-
-
-
-
-
-
-
-
-
-
- Search Threat Data
-
-
-
-
-
-
-
-
-
-
-
- Search Threat Data
-
-
-
-
-
-
-
-
-
-
- Search System Messages
-
-
-
-
- Search Config Changes
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- Timeline
-
-
+
+
+
+
+ Search
+ Threat Data
+ Traffic Logs
+ Config Messages
+ System Logs
+
+
+ Configuration
+
+ Send Feedback
+
+
+
+
+
+
+
+
+ Search Traffic Data
+
+
+
+
+
+
+
+
+
+
+ Search Threat Data
+
+
+
+
+
+
+
+
+
+
+
+ Search URL Data
+ Search Data Filtering Data
+
+
+
+
+
+
+
+
+
+
+ Search WildFire Log Data
+ Search WildFire Report Data
+
+
+
+
+
+
+
+
+
+
+ Search System Messages
+
+
+
+
+ Search Config Changes
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Timeline
+
+
+
+
+
+
From be0f13e49e0d13e59b3b1a72d17317b2d37c8b9e Mon Sep 17 00:00:00 2001
From: Brian Torres-Gil
Date: Tue, 3 Sep 2013 11:52:01 -0700
Subject: [PATCH 06/12] Modified some help text in Netflow pages
---
appserver/static/nfi_about.html | 5 +++--
default/data/ui/views/nfi_top_apps_users.xml | 5 +++++
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/appserver/static/nfi_about.html b/appserver/static/nfi_about.html
index baf0b3d4..e55b59f0 100644
--- a/appserver/static/nfi_about.html
+++ b/appserver/static/nfi_about.html
@@ -2,9 +2,10 @@ About NetFlow
NetFlow views are based on NetFlow data produced by Palo Alto Networks devices and converted to syslog messages by 3rd party software - NetFlow Integrator. Download a 30-day free trial of NetFlow Integrator here https://www.netflowlogic.com/downloads
-Steps to configure:
+Steps to configure:
+
Install NetFlow Integrator on a separate server or together with Splunk Forwarder
-Point Palo Alto Networks NetFlow to NetFlow Integrator server, port 9995
+Point Palo Alto Networks NetFlow to NetFlow Integrator server, default port 9995 with PAN-OS Field Types enabled (see Administrator's Guide )
Add NetFlow Integrator output pointing to Splunk UDP port 10514
Create Splunk UDP data input sourcetype=flowintegrator, which receives syslog messages on UDP port 10514, and index=flowintegrator.
Enable NetFlow Integrator Palo Alto Networks Rules (10030 through 10035) and Converter (20093)
diff --git a/default/data/ui/views/nfi_top_apps_users.xml b/default/data/ui/views/nfi_top_apps_users.xml
index 5f7720d5..854f619e 100644
--- a/default/data/ui/views/nfi_top_apps_users.xml
+++ b/default/data/ui/views/nfi_top_apps_users.xml
@@ -177,6 +177,11 @@
+
+
+ Click an entry to view user statistics
+
+
From 65a2d996111215b92b71451aa3ae48f4b88dfa29 Mon Sep 17 00:00:00 2001
From: Brian Torres-Gil
Date: Tue, 3 Sep 2013 11:58:02 -0700
Subject: [PATCH 07/12] Fix NetFlow More Information link on setup page
---
default/setup.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/default/setup.xml b/default/setup.xml
index 0f316c5f..682fdd28 100644
--- a/default/setup.xml
+++ b/default/setup.xml
@@ -24,7 +24,7 @@
- NetFlow requires 3rd party software called NetFlow Integrator. More Information]]>
+ NetFlow requires 3rd party software called NetFlow Integrator. More Information]]>
bool
From e66ae761156374266c4818a3a2d0dddb66e9ebaf Mon Sep 17 00:00:00 2001
From: Brian Torres-Gil
Date: Thu, 5 Sep 2013 10:19:00 -0700
Subject: [PATCH 08/12] Fixed search menu changes after NetFlow enabled
---
default/data/ui/nav/default.xml.nfi_disabled | 5 ++++-
default/data/ui/nav/default.xml.nfi_enabled | 5 ++++-
2 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/default/data/ui/nav/default.xml.nfi_disabled b/default/data/ui/nav/default.xml.nfi_disabled
index 081147a0..97a40985 100755
--- a/default/data/ui/nav/default.xml.nfi_disabled
+++ b/default/data/ui/nav/default.xml.nfi_disabled
@@ -3,8 +3,11 @@
Search
- Threat Data
Traffic Logs
+ Threat Data
+ URL Logs
+ Data Filtering Logs
+ WildFire Logs
Config Messages
System Logs
diff --git a/default/data/ui/nav/default.xml.nfi_enabled b/default/data/ui/nav/default.xml.nfi_enabled
index 62fa3e80..cd2a81c0 100755
--- a/default/data/ui/nav/default.xml.nfi_enabled
+++ b/default/data/ui/nav/default.xml.nfi_enabled
@@ -3,8 +3,11 @@
Search
- Threat Data
Traffic Logs
+ Threat Data
+ URL Logs
+ Data Filtering Logs
+ WildFire Logs
Config Messages
System Logs
From b353dac5fca7747419b2d9dd2056d638ae61048f Mon Sep 17 00:00:00 2001
From: Brian Torres-Gil
Date: Thu, 12 Sep 2013 11:02:02 -0700
Subject: [PATCH 09/12] Updated some NetFlow related help text.
---
appserver/static/nfi_about.html | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/appserver/static/nfi_about.html b/appserver/static/nfi_about.html
index e55b59f0..5661cedf 100644
--- a/appserver/static/nfi_about.html
+++ b/appserver/static/nfi_about.html
@@ -1,11 +1,11 @@
About NetFlow
-NetFlow views are based on NetFlow data produced by Palo Alto Networks devices and converted to syslog messages by 3rd party software - NetFlow Integrator. Download a 30-day free trial of NetFlow Integrator here https://www.netflowlogic.com/downloads
+NetFlow views are based on NetFlow data produced by Palo Alto Networks devices and converted to syslog messages by 3rd party software - NetFlow Integrator. Download a 30-day free trial of NetFlow Integrator at https://www.netflowlogic.com/downloads
Steps to configure:
Install NetFlow Integrator on a separate server or together with Splunk Forwarder
-Point Palo Alto Networks NetFlow to NetFlow Integrator server, default port 9995 with PAN-OS Field Types enabled (see Administrator's Guide )
+Point Palo Alto Networks device NetFlow settings to NetFlow Integrator server, default port 9995 with PAN-OS Field Types enabled (see Administrator's Guide )
Add NetFlow Integrator output pointing to Splunk UDP port 10514
Create Splunk UDP data input sourcetype=flowintegrator, which receives syslog messages on UDP port 10514, and index=flowintegrator.
Enable NetFlow Integrator Palo Alto Networks Rules (10030 through 10035) and Converter (20093)
From 54564230853726ac786e38bc617204a1b7f26070 Mon Sep 17 00:00:00 2001
From: Brian Torres-Gil
Date: Thu, 12 Sep 2013 11:02:35 -0700
Subject: [PATCH 10/12] Updated version numbers to v3.4 and updated README
file.
---
README.md | 50 ++++++++++++++++++++++++++++++------------------
default/app.conf | 2 +-
2 files changed, 32 insertions(+), 20 deletions(-)
diff --git a/README.md b/README.md
index 84af0876..56ee8f09 100755
--- a/README.md
+++ b/README.md
@@ -11,7 +11,7 @@ Networks Firewall
#### Version ####
* Splunk Version: 5.x
-* App Version: 3.3.2
+* App Version: 3.4
* Last Modified: Sept 2013
* Authors:
* Monzy Merza - Splunk, Inc.
@@ -117,6 +117,28 @@ Log can be further filtered by type during search by using predefined macros. T
Use these macros in the search bar by surrounding them with back-ticks.
+### WildFire Cloud Integration ###
+
+WildFire analysis reports can be retrieved dynamically from the WildFire cloud after each analysis. This retrieval requires a WildFire API Key from https://wildfire.paloaltonetworks.com
+
+Malware analysis reports from the WildFire Cloud are dynamically downloaded and indexed when a WildFire log is received from a firewall.
+
+### NetFlow ###
+
+NetFlow graphs and charts are based on NetFlow data produced by Palo Alto Networks devices and converted to syslog messages by 3rd party software - NetFlow Integrator. Download a 30-day free trial of NetFlow Integrator at https://www.netflowlogic.com/downloads
+
+Steps to configure:
+
+- Install NetFlow Integrator on a separate server or together with Splunk Forwarder
+- Point Palo Alto Networks device NetFlow settings to NetFlow Integrator server, default port 9995 with PAN-OS Field Types enabled (see [Administrator's Guide] (https://live.paloaltonetworks.com/community/documentation/content?filterID=contentstatus[published]~category[administrators-guide]&filterID=contentstatus[published]~objecttype~objecttype[document]&itemView=detail))
+- Enable NetFlow in the Splunk for Palo Alto Networks app setup page
+- Restart Splunk for the previous change to take effect
+- Add NetFlow Integrator output pointing to Splunk UDP port 10514
+- Create Splunk UDP data input `sourcetype=flowintegrator`, which receives syslog messages on UDP port 10514, and `index=flowintegrator`.
+- Enable NetFlow Integrator Palo Alto Networks Rules (10030 through 10035) and Converter (20093)
+
+If you have any questions, or require any assistance with configuration please contact NetFlow Logic at https://netflowlogic.zendesk.com/home
+
### High Performance Value Store (HPVS) ###
The app uses the HPVS feature introduced in Splunk 5.0. This feature provides a tremendous performance improvement for dashboards and views. The views and dashboards make use of saved searches that store data on your search head. This means that disk storage on your search head will be consumed as a result of these searches. If you turn off these saved searches, your dashboards will not render. Or dashboard rendering will be really, really slow. Please post a question to answers.splunk.com if you'd like to explore alternatives.
@@ -133,28 +155,18 @@ Keep in mind that searches that have longer time ranges may take a little longer
## What's new in this version ##
-Version 3.3.2
-- Fix: URL in WildFire dashboard corrected
-- Fix: Overview dashboard colors were gray on some servers, set back to white
-- Fix: Corrected description fields in commands.conf that resulted in log errors
-- Fix: Corrected sourcetype in inputs.conf.sample
-
-Version 3.3.1
-- Fix: App setup screen allows blank values
-- Fix: Several GUI fixes and enhancements
+Version 3.4
-Version 3.3
-- Malware analysis reports from the WildFire Cloud are dynamically downloaded and indexed when a WildFire log is received from a firewall.
-- WildFire dashboard
- - Recent WildFire events
- - Graphs of WildFire statistical data
- - Detect compromised hosts using malware behavior to traffic log correlation
+- NetFlow support using NetFlow Integrator, a 3rd party program from NetFlow Logic
+ - New set of dashboards, charts and graphs centered around NetFlow records from Palo Alto Networks devices
+ - App-ID and User-ID information is available in NetFlow records
-Note: Malware analysis report retrieval requires a WildFire API Key from https://wildfire.paloaltonetworks.com
+Download a 30-day free trial of NetFlow Integrator at https://www.netflowlogic.com/downloads
+Steps to configure NetFlow are available in the Hints and Tips section above.
## Installing from Git ##
-This app is available on [Splunkbase](http://splunk-base.splunk.com/apps/22327/splunk-for-palo-alto-networks) and [Github](https://github.com/PaloAltoNetworks-BD/SplunkforPaloAltoNetworks). Optionally, you can clone the github repository to install the app.
+This app is available on [Splunk Apps](http://apps.splunk.com/app/491) and [Github](https://github.com/PaloAltoNetworks-BD/SplunkforPaloAltoNetworks). Optionally, you can clone the github repository to install the app.
From the directory `$SPLUNK_HOME/etc/apps/`, type the following command:
- git clone https://github.com/PaloAltoNetworks-BD/SplunkforPaloAltoNetworks.git
+ git clone https://github.com/PaloAltoNetworks-BD/SplunkforPaloAltoNetworks.git SplunkforPaloAltoNetworks
diff --git a/default/app.conf b/default/app.conf
index fd252dab..96d636ef 100755
--- a/default/app.conf
+++ b/default/app.conf
@@ -5,7 +5,7 @@ label = Splunk for Palo Alto Networks
[launcher]
author= btorres-gil@paloaltonetworks.com
description= The Splunk for Palo Alto Networks app is a set of field extractions, reports, lookups and dashboards which provide visibility into the Palo Alto Networks Firewall data.
-version = 3.3.2
+version = 3.4
[package]
id= SplunkforPaloAltoNetworks
From 3d39fba27d5ab6c0b3ec6f4e0c8ec54992c37533 Mon Sep 17 00:00:00 2001
From: Brian Torres-Gil
Date: Mon, 16 Sep 2013 13:40:13 -0700
Subject: [PATCH 11/12] Changes to props and transforms to improve recognition
of config logs
---
default/props.conf | 1 +
default/transforms.conf | 12 ++++++++----
2 files changed, 9 insertions(+), 4 deletions(-)
diff --git a/default/props.conf b/default/props.conf
index b346e0a1..3765bfaa 100755
--- a/default/props.conf
+++ b/default/props.conf
@@ -65,6 +65,7 @@ FIELDALIAS-dest_for_pan_system = host as dest_ip, host as dest
[pan_config]
REPORT-search = extract_config
+REPORT-configsubtype = extract_configsubtype
SHOULD_LINEMERGE = false
FIELDALIAS_config = "virtual_system" AS "vsys" "command" AS "cmd" "configuration_path" AS "path"
# Field Aliases to map palo alto fields to the Splunk Common Information Model
diff --git a/default/transforms.conf b/default/transforms.conf
index 0794200d..c0192b12 100755
--- a/default/transforms.conf
+++ b/default/transforms.conf
@@ -6,7 +6,6 @@ filename = pan_vendor_info.csv
[pan_threat]
DEST_KEY = MetaData:Sourcetype
REGEX = ([^,]+,[^,]+,[^,]+,THREAT,)
-#REGEX = (,THREAT,)
FORMAT = sourcetype::pan_threat
[pan_threat-2050]
@@ -16,17 +15,17 @@ FORMAT = sourcetype::pan_threat-2050
[pan_traffic]
DEST_KEY = MetaData:Sourcetype
-REGEX = (,TRAFFIC,)
+REGEX = ([^,]+,[^,]+,[^,]+,TRAFFIC,)
FORMAT = sourcetype::pan_traffic
[pan_system]
DEST_KEY = MetaData:Sourcetype
-REGEX = (,SYSTEM,)
+REGEX = ([^,]+,[^,]+,[^,]+,SYSTEM,)
FORMAT = sourcetype::pan_system
[pan_config]
DEST_KEY = MetaData:Sourcetype
-REGEX = (,CONFIG,)
+REGEX = ([^,]+,[^,]+,[^,]+,CONFIG,)
FORMAT = sourcetype::pan_config
[threat_lookup]
@@ -70,6 +69,11 @@ FORMAT = report_id::$1
REGEX = (?:[^:]*:){2}\d+ (\d+.\d+.\d+.\d+)
FORMAT = domain::$1
+[extract_configsubtype]
+#SOURCE_KEY = type
+REGEX = ([^,]+,[^,]+,[^,]+,CONFIG,)
+FORMAT = log_subtype::config
+
[extract_wildfire_report]
MV_ADD = true
From 5f0fcf4a36e224bc4b43971e578df76517afb27b Mon Sep 17 00:00:00 2001
From: Brian Torres-Gil
Date: Thu, 19 Sep 2013 13:33:05 -0700
Subject: [PATCH 12/12] Small change to read me file
---
README.md | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/README.md b/README.md
index 56ee8f09..fdae63b1 100755
--- a/README.md
+++ b/README.md
@@ -162,7 +162,7 @@ Version 3.4
- App-ID and User-ID information is available in NetFlow records
Download a 30-day free trial of NetFlow Integrator at https://www.netflowlogic.com/downloads
-Steps to configure NetFlow are available in the Hints and Tips section above.
+Steps to configure NetFlow are available in the **NetFlow** section above.
## Installing from Git ##