Many hyperlinks are disabled.
Use anonymous login
to enable hyperlinks.
Changes In Branch hypnotoad Excluding Merge-Ins
This is equivalent to a diff from a4c2f4227c to 4f943a9660
2020-02-17
| ||
14:41 | Closing fork check-in: b9b9ff9c74 user: hypnotoad tags: trunk | |
14:33 | Merging changes from Trunk Leaf check-in: 4f943a9660 user: hypnotoad tags: hypnotoad | |
14:25 | Bumping the version on Markdown check-in: a4c2f4227c user: hypnotoad tags: trunk | |
14:23 | Applying bug fix to the Markdown package per ticket [ab0fdf9aead96e7a58d2c7330274a7250e2f8764] check-in: 177191e32e user: hypnotoad tags: trunk | |
2020-01-28
| ||
22:25 | Added a coroutine guard for file locking in nettool check-in: 9b67fcc749 user: hypnotoad tags: hypnotoad | |
Changes to modules/clay/clay.test.
3053 3054 3055 3056 3057 3058 3059 | set obj [tip479class new] test tip479-001 {Test that a later ensemble definition trumps a more primitive one} { $obj newitem id 1 color orange shape round } {id 1 color orange shape round} # Fail because we left off a mandatory argument | | | | 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 | set obj [tip479class new] test tip479-001 {Test that a later ensemble definition trumps a more primitive one} { $obj newitem id 1 color orange shape round } {id 1 color orange shape round} # Fail because we left off a mandatory argument test tip479-002 {Test that a later ensemble definition trumps a more primitive one} -errorCode NONE -body { $obj newitem id 2 } -result {shape is required} ### # Leave off a value that has a default # note: Method had special handling for color, but not flavor ### test tip479-003 {Test that a later ensemble definition trumps a more primitive one} { $obj newitem id 3 shape round |
3103 3104 3105 3106 3107 3108 3109 | set obj [tip479classE new] test tip479-001 {Test that a later ensemble definition trumps a more primitive one} { $obj item new id 1 color orange shape round } {id 1 color orange shape round} # Fail because we left off a mandatory argument | | | | 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 | set obj [tip479classE new] test tip479-001 {Test that a later ensemble definition trumps a more primitive one} { $obj item new id 1 color orange shape round } {id 1 color orange shape round} # Fail because we left off a mandatory argument test tip479-002 {Test that a later ensemble definition trumps a more primitive one} -errorCode NONE -body { $obj item new id 2 } -result {shape is required} ### # Leave off a value that has a default # note: Method had special handling for color, but not flavor ### test tip479-003 {Test that a later ensemble definition trumps a more primitive one} { $obj item new id 3 shape round |
6194 6195 6196 6197 6198 6199 6200 | set obj [tip479class new] test tip479-001 {Test that a later ensemble definition trumps a more primitive one} { $obj newitem id 1 color orange shape round } {id 1 color orange shape round} # Fail because we left off a mandatory argument | | | | 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 | set obj [tip479class new] test tip479-001 {Test that a later ensemble definition trumps a more primitive one} { $obj newitem id 1 color orange shape round } {id 1 color orange shape round} # Fail because we left off a mandatory argument test tip479-002 {Test that a later ensemble definition trumps a more primitive one} -errorCode NONE -body { $obj newitem id 2 } -result {shape is required} ### # Leave off a value that has a default # note: Method had special handling for color, but not flavor ### test tip479-003 {Test that a later ensemble definition trumps a more primitive one} { $obj newitem id 3 shape round |
6244 6245 6246 6247 6248 6249 6250 | set obj [tip479classE new] test tip479-001 {Test that a later ensemble definition trumps a more primitive one} { $obj item new id 1 color orange shape round } {id 1 color orange shape round} # Fail because we left off a mandatory argument | | | | 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 | set obj [tip479classE new] test tip479-001 {Test that a later ensemble definition trumps a more primitive one} { $obj item new id 1 color orange shape round } {id 1 color orange shape round} # Fail because we left off a mandatory argument test tip479-002 {Test that a later ensemble definition trumps a more primitive one} -errorCode NONE -body { $obj item new id 2 } -result {shape is required} ### # Leave off a value that has a default # note: Method had special handling for color, but not flavor ### test tip479-003 {Test that a later ensemble definition trumps a more primitive one} { $obj item new id 3 shape round |
Changes to modules/httpd/build/cgi.tcl.
81 82 83 84 85 86 87 | } method ProxyRequest {chana chanb} { chan event $chanb writable {} my log ProxyRequest {} set length [my request get CONTENT_LENGTH] if {$length} { | | | | 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 | } method ProxyRequest {chana chanb} { chan event $chanb writable {} my log ProxyRequest {} set length [my request get CONTENT_LENGTH] if {$length} { chan configure $chana -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 chan configure $chanb -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 ### # Send any POST/PUT/etc content ### my ChannelCopy $chana $chanb -size $length } else { chan flush $chanb } |
113 114 115 116 117 118 119 | ### # Convert the Status: header from the CGI process to # a standard service reply line from a web server, but # otherwise spit out the rest of the headers verbatim ### set replybuffer "HTTP/1.0 [dict get $replydat Status]\n" append replybuffer $replyhead | | | | | 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 | ### # Convert the Status: header from the CGI process to # a standard service reply line from a web server, but # otherwise spit out the rest of the headers verbatim ### set replybuffer "HTTP/1.0 [dict get $replydat Status]\n" append replybuffer $replyhead chan configure $chanb -encoding utf-8 -translation {auto crlf} -blocking 0 -buffering full -buffersize 4096 chan puts $chanb $replybuffer ### # Output the body. With no -size flag, channel will copy until EOF ### chan configure $chana -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 chan configure $chanb -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 my ChannelCopy $chana $chanb -chunk 4096 my clay refcount_decr } ### # For most CGI applications a directory list is vorboten ### method DirectoryListing {local_file} { my error 403 {Not Allowed} tailcall my DoOutput } } |
Changes to modules/httpd/build/core.tcl.
137 138 139 140 141 142 143 | # a flag which will terminate the vwait. # # We do this rather than entering blocking mode to prevent the process # from locking up if it's starved for input. (Or in the case of the test # suite, when we are opening a blocking channel on the other side of the # socket back to ourselves.) ### | | | 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 | # a flag which will terminate the vwait. # # We do this rather than entering blocking mode to prevent the process # from locking up if it's starved for input. (Or in the case of the test # suite, when we are opening a blocking channel on the other side of the # socket back to ourselves.) ### chan configure $sock -encoding utf-8 -translation {auto crlf} -blocking 0 -buffering line while 1 { set readCount [::coroutine::util::gets_safety $sock $LIMIT line] if {$readCount<=0} break append result $line \n if {[string length $result] > $LIMIT} { error {Headers too large} } |
Changes to modules/httpd/build/dispatch.tcl.
26 27 28 29 30 31 32 | } ::clay::define ::httpd::content.cache { method Dispatch {} { my variable chan my wait writable $chan | | | 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 | } ::clay::define ::httpd::content.cache { method Dispatch {} { my variable chan my wait writable $chan chan configure $chan -encoding binary -translation {binary binary} chan puts -nonewline $chan [my clay get cache/ data] } } ::clay::define ::httpd::content.template { method content {} { |
Changes to modules/httpd/build/file.tcl.
58 59 60 61 62 63 64 | } } my puts "</TABLE>" my puts [my html_footer] } method content {} { | | > | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 | } } my puts "</TABLE>" my puts [my html_footer] } method content {} { my variable reply_file is_binary set local_file [my FileName] set is_binary 0 if {$local_file eq {} || ![file exist $local_file]} { my log httpNotFound [my request get REQUEST_PATH] my error 404 {File Not Found} tailcall my DoOutput } if {[file isdirectory $local_file] || [file tail $local_file] in {index index.html index.tml index.md}} { my request set PREFIX_URI [my request get REQUEST_PATH] |
95 96 97 98 99 100 101 | tailcall my DirectoryListing $local_file } } else { my request set PREFIX_URI [file dirname [my request get REQUEST_PATH]] my request set LOCAL_DIR [file dirname $local_file] } my request set LOCAL_FILE $local_file | < > > > > > > > > > | | > | > > > | | 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 | tailcall my DirectoryListing $local_file } } else { my request set PREFIX_URI [file dirname [my request get REQUEST_PATH]] my request set LOCAL_DIR [file dirname $local_file] } my request set LOCAL_FILE $local_file switch [file extension $local_file] { .apng { set is_binary 1 my reply set Content-Type {image/apng} set reply_file $local_file } .bmp { set is_binary 1 my reply set Content-Type {image/bmp} set reply_file $local_file } .css { my reply set Content-Type {text/css} set reply_file $local_file } .gif { set is_binary 1 my reply set Content-Type {image/gif} set reply_file $local_file } .cur - .ico { set is_binary 1 my reply set Content-Type {image/x-icon} set reply_file $local_file } .jpg - .jpeg - .jfif - .pjpeg - .pjp { set is_binary 1 my reply set Content-Type {image/jpg} set reply_file $local_file } .js { my reply set Content-Type {text/javascript} set reply_file $local_file } .md { package require Markdown my reply set Content-Type {text/html; charset=UTF-8} set mdtxt [::fileutil::cat $local_file] my puts [::Markdown::convert $mdtxt] } .png { set is_binary 1 my reply set Content-Type {image/png} set reply_file $local_file } .svgz - .svg { # FU magic screws it up my reply set Content-Type {image/svg+xml} set reply_file $local_file } .tcl { my reply set Content-Type {text/html; charset=UTF-8} try { source $local_file } on error {err errdat} { my error 500 {Internal Error} [dict get $errdat -errorinfo] } } .tiff { set is_binary 1 my reply set Content-Type {image/tiff} set reply_file $local_file } .tml { my reply set Content-Type {text/html; charset=UTF-8} set tmltxt [::fileutil::cat $local_file] set headers [my request dump] dict with headers {} my puts [subst $tmltxt] } .txt { my reply set Content-Type {text/plain} set reply_file $local_file } .webp { set is_binary 1 my reply set Content-Type {image/webp} set reply_file $local_file } default { ### # Assume we are returning a binary file ### set is_binary 1 my reply set Content-Type [::fileutil::magic::filetype $local_file] set reply_file $local_file } } } method Dispatch {} { my variable reply_body reply_file reply_chan chan is_binary try { my reset # Invoke the URL implementation. my content } on error {err errdat} { my error 500 $err [dict get $errdat -errorinfo] catch { tailcall my DoOutput } } if {$chan eq {}} return catch { # Causing random issues. Technically a socket is always open for read and write # anyway #my wait writable $chan if {![info exists reply_file]} { tailcall my DoOutput } chan configure $chan -encoding binary -translation {binary binary} my log HttpAccess {} ### # Return a stream of data from a file ### set size [file size $reply_file] my reply set Content-Length $size append result [my reply output] \n chan puts -nonewline $chan $result set reply_chan [open $reply_file r] my ChannelRegister $reply_chan my log SendReply [list length $size] ### # Output the file contents. With no -size flag, channel will copy until EOF ### if {$is_binary} { chan configure $reply_chan -encoding binary -translation {binary binary} -buffersize 4096 -buffering full -blocking 0 } else { chan configure $reply_chan -encoding utf-8 -translation {binary binary} -buffersize 4096 -buffering full -blocking 0 } if {$size < 409600} { # Raw copy small files chan copy $reply_chan $chan } else { my ChannelCopy $reply_chan $chan -chunk 4096 } } } } |
Changes to modules/httpd/build/plugin.tcl.
151 152 153 154 155 156 157 | # the server is one side of the link and the reply is another ### method Connect_Local {uuid sock args} { chan event $sock readable {} chan configure $sock \ -blocking 0 \ | | | 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 | # the server is one side of the link and the reply is another ### method Connect_Local {uuid sock args} { chan event $sock readable {} chan configure $sock \ -blocking 0 \ -translation {auto crlf} -encoding utf-8 \ -buffering line set ip 127.0.0.1 dict set query UUID $uuid dict set query http UUID $uuid dict set query http HTTP_HOST localhost dict set query http REMOTE_ADDR 127.0.0.1 dict set query http REMOTE_HOST localhost |
Changes to modules/httpd/build/proxy.tcl.
106 107 108 109 110 111 112 | chan event $chanb writable {} my log ProxyRequest {} chan puts $chanb "[my request get REQUEST_METHOD] [my proxy_path]" set mimetxt [my clay get mimetxt] chan puts $chanb [my clay get mimetxt] set length [my request get CONTENT_LENGTH] if {$length} { | | | | 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | chan event $chanb writable {} my log ProxyRequest {} chan puts $chanb "[my request get REQUEST_METHOD] [my proxy_path]" set mimetxt [my clay get mimetxt] chan puts $chanb [my clay get mimetxt] set length [my request get CONTENT_LENGTH] if {$length} { chan configure $chana -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 chan configure $chanb -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 ### # Send any POST/PUT/etc content ### my ChannelCopy $chana $chanb -size $length } else { chan flush $chanb } |
132 133 134 135 136 137 138 | ### # Read the first incoming line as the HTTP reply status # Return the rest of the headers verbatim ### set replybuffer "$reply_status\n" append replybuffer $replyhead | | | | | 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 | ### # Read the first incoming line as the HTTP reply status # Return the rest of the headers verbatim ### set replybuffer "$reply_status\n" append replybuffer $replyhead chan configure $chanb -encoding utf-8 -translation {auto crlf} -blocking 0 -buffering full -buffersize 4096 chan puts $chanb $replybuffer ### # Output the body. With no -size flag, channel will copy until EOF ### chan configure $chana -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 chan configure $chanb -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 my ChannelCopy $chana $chanb -chunk 4096 } method Dispatch {} { my variable sock chan if {[catch {my proxy_channel} sock errdat]} { my error 504 {Service Temporarily Unavailable} [dict get $errdat -errorinfo] |
Changes to modules/httpd/build/reply.tcl.
204 205 206 207 208 209 210 | method dispatch {newsock datastate} { my variable chan request try { my clay refcount_incr set chan $newsock my ChannelRegister $chan chan event $chan readable {} | | | 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 | method dispatch {newsock datastate} { my variable chan request try { my clay refcount_incr set chan $newsock my ChannelRegister $chan chan event $chan readable {} chan configure $chan -encoding utf-8 -translation {auto crlf} -buffering line if {[dict exists $datastate mixin]} { set mixinmap [dict get $datastate mixin] } else { set mixinmap {} } foreach item [dict keys $datastate MIXIN_*] { set slot [string range $item 6 end] |
342 343 344 345 346 347 348 | method DoOutput {} { my variable reply_body chan if {$chan eq {}} return catch { # Causing random issues. Technically a socket is always open for read and write # anyway #my wait writable $chan | | < > > | | > | | | | 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 | method DoOutput {} { my variable reply_body chan if {$chan eq {}} return catch { # Causing random issues. Technically a socket is always open for read and write # anyway #my wait writable $chan chan configure $chan -encoding utf-8 -translation {auto crlf} ### # Return dynamic content ### set length [string length $reply_body] if {${length} > 0} { # Causing issues with Safari. When transmitting UTF-8 encoded data there seems # to be a disagreement about the actual length, and text files are being truncated #my reply set Content-Length $length chan puts $chan [my reply output] chan configure $chan -encoding utf-8 -translation binary chan puts $chan [encoding convertto utf-8 $reply_body] } else { chan puts $chan [my reply output] } catch {chan flush $chan} my log HttpAccess {} } } ### # For GET requests, converts the QUERY_DATA header into a key/value list. # |
433 434 435 436 437 438 439 | # Run this only once if {[info exists postdata]} { return $postdata } set postdata {} if {[my request get REQUEST_METHOD] in {"POST" "PUSH"}} { my variable chan | | | 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 | # Run this only once if {[info exists postdata]} { return $postdata } set postdata {} if {[my request get REQUEST_METHOD] in {"POST" "PUSH"}} { my variable chan chan configure $chan -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 set postdata [::coroutine::util::read $chan $length] } return $postdata } # Manage session data method Session_Load {} {} |
Changes to modules/httpd/build/scgi.tcl.
36 37 38 39 40 41 42 | } return [::socket $scgihost $scgiport] } method ProxyRequest {chana chanb} { chan event $chanb writable {} my log ProxyRequest {} | | | | | | 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | } return [::socket $scgihost $scgiport] } method ProxyRequest {chana chanb} { chan event $chanb writable {} my log ProxyRequest {} chan configure $chana -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 chan configure $chanb -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 set info [dict create CONTENT_LENGTH 0 SCGI 1.0 SCRIPT_NAME [my clay get SCRIPT_NAME]] foreach {f v} [my request dump] { dict set info $f $v } set length [dict get $info CONTENT_LENGTH] set block {} foreach {f v} $info { append block [string toupper $f] \x00 $v \x00 } chan puts -nonewline $chanb "[string length $block]:$block," # Light off another coroutine #set cmd [list coroutine [my CoroName] {*}[namespace code [list my ProxyReply $chanb $chana]]] if {$length} { chan configure $chana -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 chan configure $chanb -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 ### # Send any POST/PUT/etc content ### my ChannelCopy $chana $chanb -size $length #chan copy $chana $chanb -size $length -command [info coroutine] } else { chan flush $chanb |
77 78 79 80 81 82 83 | ### # Convert the Status: header from the CGI process to # a standard service reply line from a web server, but # otherwise spit out the rest of the headers verbatim ### set replybuffer "HTTP/1.0 [dict get $replydat Status]\n" append replybuffer $replyhead | | | | | 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 | ### # Convert the Status: header from the CGI process to # a standard service reply line from a web server, but # otherwise spit out the rest of the headers verbatim ### set replybuffer "HTTP/1.0 [dict get $replydat Status]\n" append replybuffer $replyhead chan configure $chanb -encoding utf-8 -translation {auto crlf} -blocking 0 -buffering full -buffersize 4096 chan puts $chanb $replybuffer ### # Output the body. With no -size flag, channel will copy until EOF ### chan configure $chana -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 chan configure $chanb -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 my ChannelCopy $chana $chanb -chunk 4096 } } ### # Act as an SCGI Server ### |
107 108 109 110 111 112 113 | } method Connect {uuid sock ip} { yield [info coroutine] chan event $sock readable {} chan configure $sock \ -blocking 1 \ | | | 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 | } method Connect {uuid sock ip} { yield [info coroutine] chan event $sock readable {} chan configure $sock \ -blocking 1 \ -encoding binary -translation {binary binary} \ -buffersize 4096 \ -buffering none my counter url_hit try { # Read the SCGI request on byte at a time until we reach a ":" dict set query http HTTP_HOST {} dict set query http CONTENT_LENGTH 0 |
130 131 132 133 134 135 136 | return } if {$char eq ":"} break append size $char } # With length in hand, read the netstring encoded headers set inbuffer [::coroutine::util::read $sock [expr {$size+1}]] | | | 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 | return } if {$char eq ":"} break append size $char } # With length in hand, read the netstring encoded headers set inbuffer [::coroutine::util::read $sock [expr {$size+1}]] chan configure $sock -encoding utf-8 -translation {auto crlf} -blocking 0 -buffersize 4096 -buffering full foreach {f v} [lrange [split [string range $inbuffer 0 end-1] \0] 0 end-1] { dict set query http $f $v } if {![dict exists $query http REQUEST_PATH]} { set uri [dict get $query http REQUEST_URI] set uriinfo [::uri::split $uri] dict set query http REQUEST_PATH [dict get $uriinfo path] |
Changes to modules/httpd/build/server.tcl.
115 116 117 118 119 120 121 | ### method Connect {uuid sock ip} { ::clay::cleanup yield [info coroutine] chan event $sock readable {} chan configure $sock \ -blocking 0 \ | | | 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 | ### method Connect {uuid sock ip} { ::clay::cleanup yield [info coroutine] chan event $sock readable {} chan configure $sock \ -blocking 0 \ -encoding utf-8 -translation {auto crlf} \ -buffering line my counter url_hit try { set readCount [::coroutine::util::gets_safety $sock 4096 http_request] set mimetxt [my HttpHeaders $sock] dict set query UUID $uuid dict set query mimetxt $mimetxt |
Changes to modules/httpd/httpd.tcl.
127 128 129 130 131 132 133 | # a flag which will terminate the vwait. # # We do this rather than entering blocking mode to prevent the process # from locking up if it's starved for input. (Or in the case of the test # suite, when we are opening a blocking channel on the other side of the # socket back to ourselves.) ### | | | 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 | # a flag which will terminate the vwait. # # We do this rather than entering blocking mode to prevent the process # from locking up if it's starved for input. (Or in the case of the test # suite, when we are opening a blocking channel on the other side of the # socket back to ourselves.) ### chan configure $sock -encoding utf-8 -translation {auto crlf} -blocking 0 -buffering line while 1 { set readCount [::coroutine::util::gets_safety $sock $LIMIT line] if {$readCount<=0} break append result $line \n if {[string length $result] > $LIMIT} { error {Headers too large} } |
371 372 373 374 375 376 377 | method dispatch {newsock datastate} { my variable chan request try { my clay refcount_incr set chan $newsock my ChannelRegister $chan chan event $chan readable {} | | | 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 | method dispatch {newsock datastate} { my variable chan request try { my clay refcount_incr set chan $newsock my ChannelRegister $chan chan event $chan readable {} chan configure $chan -encoding utf-8 -translation {auto crlf} -buffering line if {[dict exists $datastate mixin]} { set mixinmap [dict get $datastate mixin] } else { set mixinmap {} } foreach item [dict keys $datastate MIXIN_*] { set slot [string range $item 6 end] |
486 487 488 489 490 491 492 | method DoOutput {} { my variable reply_body chan if {$chan eq {}} return catch { # Causing random issues. Technically a socket is always open for read and write # anyway #my wait writable $chan | | < > > | | > | | | | 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 | method DoOutput {} { my variable reply_body chan if {$chan eq {}} return catch { # Causing random issues. Technically a socket is always open for read and write # anyway #my wait writable $chan chan configure $chan -encoding utf-8 -translation {auto crlf} ### # Return dynamic content ### set length [string length $reply_body] if {${length} > 0} { # Causing issues with Safari. When transmitting UTF-8 encoded data there seems # to be a disagreement about the actual length, and text files are being truncated #my reply set Content-Length $length chan puts $chan [my reply output] chan configure $chan -encoding utf-8 -translation binary chan puts $chan [encoding convertto utf-8 $reply_body] } else { chan puts $chan [my reply output] } catch {chan flush $chan} my log HttpAccess {} } } method FormData {} { my variable chan formdata # Run this only once if {[info exists formdata]} { |
564 565 566 567 568 569 570 | # Run this only once if {[info exists postdata]} { return $postdata } set postdata {} if {[my request get REQUEST_METHOD] in {"POST" "PUSH"}} { my variable chan | | | 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 | # Run this only once if {[info exists postdata]} { return $postdata } set postdata {} if {[my request get REQUEST_METHOD] in {"POST" "PUSH"}} { my variable chan chan configure $chan -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 set postdata [::coroutine::util::read $chan $length] } return $postdata } method Session_Load {} {} method puts line { my variable reply_body |
804 805 806 807 808 809 810 | } method Connect {uuid sock ip} { ::clay::cleanup yield [info coroutine] chan event $sock readable {} chan configure $sock \ -blocking 0 \ | | | 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 | } method Connect {uuid sock ip} { ::clay::cleanup yield [info coroutine] chan event $sock readable {} chan configure $sock \ -blocking 0 \ -encoding utf-8 -translation {auto crlf} \ -buffering line my counter url_hit try { set readCount [::coroutine::util::gets_safety $sock 4096 http_request] set mimetxt [my HttpHeaders $sock] dict set query UUID $uuid dict set query mimetxt $mimetxt |
1108 1109 1110 1111 1112 1113 1114 | my puts [subst $msg] } } ::clay::define ::httpd::content.cache { method Dispatch {} { my variable chan my wait writable $chan | | | 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 | my puts [subst $msg] } } ::clay::define ::httpd::content.cache { method Dispatch {} { my variable chan my wait writable $chan chan configure $chan -encoding binary -translation {binary binary} chan puts -nonewline $chan [my clay get cache/ data] } } ::clay::define ::httpd::content.template { method content {} { if {[my request get HTTP_STATUS] ne {}} { my reply set Status [my request get HTTP_STATUS] |
1185 1186 1187 1188 1189 1190 1191 | my puts "<TR><TD><a href=\"[file join / $uri [file tail $file]]\">[file tail $file]</a></TD><TD>[file size $file]</TD></TR>" } } my puts "</TABLE>" my puts [my html_footer] } method content {} { | | > | 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 | my puts "<TR><TD><a href=\"[file join / $uri [file tail $file]]\">[file tail $file]</a></TD><TD>[file size $file]</TD></TR>" } } my puts "</TABLE>" my puts [my html_footer] } method content {} { my variable reply_file is_binary set local_file [my FileName] set is_binary 0 if {$local_file eq {} || ![file exist $local_file]} { my log httpNotFound [my request get REQUEST_PATH] my error 404 {File Not Found} tailcall my DoOutput } if {[file isdirectory $local_file] || [file tail $local_file] in {index index.html index.tml index.md}} { my request set PREFIX_URI [my request get REQUEST_PATH] |
1222 1223 1224 1225 1226 1227 1228 | tailcall my DirectoryListing $local_file } } else { my request set PREFIX_URI [file dirname [my request get REQUEST_PATH]] my request set LOCAL_DIR [file dirname $local_file] } my request set LOCAL_FILE $local_file | < > > > > > > > > > | | > | > > > | | 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 | tailcall my DirectoryListing $local_file } } else { my request set PREFIX_URI [file dirname [my request get REQUEST_PATH]] my request set LOCAL_DIR [file dirname $local_file] } my request set LOCAL_FILE $local_file switch [file extension $local_file] { .apng { set is_binary 1 my reply set Content-Type {image/apng} set reply_file $local_file } .bmp { set is_binary 1 my reply set Content-Type {image/bmp} set reply_file $local_file } .css { my reply set Content-Type {text/css} set reply_file $local_file } .gif { set is_binary 1 my reply set Content-Type {image/gif} set reply_file $local_file } .cur - .ico { set is_binary 1 my reply set Content-Type {image/x-icon} set reply_file $local_file } .jpg - .jpeg - .jfif - .pjpeg - .pjp { set is_binary 1 my reply set Content-Type {image/jpg} set reply_file $local_file } .js { my reply set Content-Type {text/javascript} set reply_file $local_file } .md { package require Markdown my reply set Content-Type {text/html; charset=UTF-8} set mdtxt [::fileutil::cat $local_file] my puts [::Markdown::convert $mdtxt] } .png { set is_binary 1 my reply set Content-Type {image/png} set reply_file $local_file } .svgz - .svg { # FU magic screws it up my reply set Content-Type {image/svg+xml} set reply_file $local_file } .tcl { my reply set Content-Type {text/html; charset=UTF-8} try { source $local_file } on error {err errdat} { my error 500 {Internal Error} [dict get $errdat -errorinfo] } } .tiff { set is_binary 1 my reply set Content-Type {image/tiff} set reply_file $local_file } .tml { my reply set Content-Type {text/html; charset=UTF-8} set tmltxt [::fileutil::cat $local_file] set headers [my request dump] dict with headers {} my puts [subst $tmltxt] } .txt { my reply set Content-Type {text/plain} set reply_file $local_file } .webp { set is_binary 1 my reply set Content-Type {image/webp} set reply_file $local_file } default { ### # Assume we are returning a binary file ### set is_binary 1 my reply set Content-Type [::fileutil::magic::filetype $local_file] set reply_file $local_file } } } method Dispatch {} { my variable reply_body reply_file reply_chan chan is_binary try { my reset # Invoke the URL implementation. my content } on error {err errdat} { my error 500 $err [dict get $errdat -errorinfo] catch { tailcall my DoOutput } } if {$chan eq {}} return catch { # Causing random issues. Technically a socket is always open for read and write # anyway #my wait writable $chan if {![info exists reply_file]} { tailcall my DoOutput } chan configure $chan -encoding binary -translation {binary binary} my log HttpAccess {} ### # Return a stream of data from a file ### set size [file size $reply_file] my reply set Content-Length $size append result [my reply output] \n chan puts -nonewline $chan $result set reply_chan [open $reply_file r] my ChannelRegister $reply_chan my log SendReply [list length $size] ### # Output the file contents. With no -size flag, channel will copy until EOF ### if {$is_binary} { chan configure $reply_chan -encoding binary -translation {binary binary} -buffersize 4096 -buffering full -blocking 0 } else { chan configure $reply_chan -encoding utf-8 -translation {binary binary} -buffersize 4096 -buffering full -blocking 0 } if {$size < 409600} { # Raw copy small files chan copy $reply_chan $chan } else { my ChannelCopy $reply_chan $chan -chunk 4096 } } } |
1459 1460 1461 1462 1463 1464 1465 | chan event $chanb writable {} my log ProxyRequest {} chan puts $chanb "[my request get REQUEST_METHOD] [my proxy_path]" set mimetxt [my clay get mimetxt] chan puts $chanb [my clay get mimetxt] set length [my request get CONTENT_LENGTH] if {$length} { | | | | 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 | chan event $chanb writable {} my log ProxyRequest {} chan puts $chanb "[my request get REQUEST_METHOD] [my proxy_path]" set mimetxt [my clay get mimetxt] chan puts $chanb [my clay get mimetxt] set length [my request get CONTENT_LENGTH] if {$length} { chan configure $chana -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 chan configure $chanb -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 ### # Send any POST/PUT/etc content ### my ChannelCopy $chana $chanb -size $length } else { chan flush $chanb } |
1484 1485 1486 1487 1488 1489 1490 | ### # Read the first incoming line as the HTTP reply status # Return the rest of the headers verbatim ### set replybuffer "$reply_status\n" append replybuffer $replyhead | | | | | 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 | ### # Read the first incoming line as the HTTP reply status # Return the rest of the headers verbatim ### set replybuffer "$reply_status\n" append replybuffer $replyhead chan configure $chanb -encoding utf-8 -translation {auto crlf} -blocking 0 -buffering full -buffersize 4096 chan puts $chanb $replybuffer ### # Output the body. With no -size flag, channel will copy until EOF ### chan configure $chana -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 chan configure $chanb -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 my ChannelCopy $chana $chanb -chunk 4096 } method Dispatch {} { my variable sock chan if {[catch {my proxy_channel} sock errdat]} { my error 504 {Service Temporarily Unavailable} [dict get $errdat -errorinfo] tailcall my DoOutput |
1602 1603 1604 1605 1606 1607 1608 | return $pipe } method ProxyRequest {chana chanb} { chan event $chanb writable {} my log ProxyRequest {} set length [my request get CONTENT_LENGTH] if {$length} { | | | | 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 | return $pipe } method ProxyRequest {chana chanb} { chan event $chanb writable {} my log ProxyRequest {} set length [my request get CONTENT_LENGTH] if {$length} { chan configure $chana -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 chan configure $chanb -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 ### # Send any POST/PUT/etc content ### my ChannelCopy $chana $chanb -size $length } else { chan flush $chanb } |
1632 1633 1634 1635 1636 1637 1638 | ### # Convert the Status: header from the CGI process to # a standard service reply line from a web server, but # otherwise spit out the rest of the headers verbatim ### set replybuffer "HTTP/1.0 [dict get $replydat Status]\n" append replybuffer $replyhead | | | | | 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 | ### # Convert the Status: header from the CGI process to # a standard service reply line from a web server, but # otherwise spit out the rest of the headers verbatim ### set replybuffer "HTTP/1.0 [dict get $replydat Status]\n" append replybuffer $replyhead chan configure $chanb -encoding utf-8 -translation {auto crlf} -blocking 0 -buffering full -buffersize 4096 chan puts $chanb $replybuffer ### # Output the body. With no -size flag, channel will copy until EOF ### chan configure $chana -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 chan configure $chanb -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 my ChannelCopy $chana $chanb -chunk 4096 my clay refcount_decr } method DirectoryListing {local_file} { my error 403 {Not Allowed} tailcall my DoOutput } |
1687 1688 1689 1690 1691 1692 1693 | tailcall my DoOutput } return [::socket $scgihost $scgiport] } method ProxyRequest {chana chanb} { chan event $chanb writable {} my log ProxyRequest {} | | | | | | 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 | tailcall my DoOutput } return [::socket $scgihost $scgiport] } method ProxyRequest {chana chanb} { chan event $chanb writable {} my log ProxyRequest {} chan configure $chana -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 chan configure $chanb -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 set info [dict create CONTENT_LENGTH 0 SCGI 1.0 SCRIPT_NAME [my clay get SCRIPT_NAME]] foreach {f v} [my request dump] { dict set info $f $v } set length [dict get $info CONTENT_LENGTH] set block {} foreach {f v} $info { append block [string toupper $f] \x00 $v \x00 } chan puts -nonewline $chanb "[string length $block]:$block," # Light off another coroutine #set cmd [list coroutine [my CoroName] {*}[namespace code [list my ProxyReply $chanb $chana]]] if {$length} { chan configure $chana -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 chan configure $chanb -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 ### # Send any POST/PUT/etc content ### my ChannelCopy $chana $chanb -size $length #chan copy $chana $chanb -size $length -command [info coroutine] } else { chan flush $chanb |
1727 1728 1729 1730 1731 1732 1733 | ### # Convert the Status: header from the CGI process to # a standard service reply line from a web server, but # otherwise spit out the rest of the headers verbatim ### set replybuffer "HTTP/1.0 [dict get $replydat Status]\n" append replybuffer $replyhead | | | | | | 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 | ### # Convert the Status: header from the CGI process to # a standard service reply line from a web server, but # otherwise spit out the rest of the headers verbatim ### set replybuffer "HTTP/1.0 [dict get $replydat Status]\n" append replybuffer $replyhead chan configure $chanb -encoding utf-8 -translation {auto crlf} -blocking 0 -buffering full -buffersize 4096 chan puts $chanb $replybuffer ### # Output the body. With no -size flag, channel will copy until EOF ### chan configure $chana -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 chan configure $chanb -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 my ChannelCopy $chana $chanb -chunk 4096 } } ::clay::define ::httpd::server.scgi { superclass ::httpd::server clay set socket/ buffersize 32768 clay set socket/ blocking 0 clay set socket/ translation {binary binary} method debug args { puts $args } method Connect {uuid sock ip} { yield [info coroutine] chan event $sock readable {} chan configure $sock \ -blocking 1 \ -encoding binary -translation {binary binary} \ -buffersize 4096 \ -buffering none my counter url_hit try { # Read the SCGI request on byte at a time until we reach a ":" dict set query http HTTP_HOST {} dict set query http CONTENT_LENGTH 0 |
1773 1774 1775 1776 1777 1778 1779 | return } if {$char eq ":"} break append size $char } # With length in hand, read the netstring encoded headers set inbuffer [::coroutine::util::read $sock [expr {$size+1}]] | | | 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 | return } if {$char eq ":"} break append size $char } # With length in hand, read the netstring encoded headers set inbuffer [::coroutine::util::read $sock [expr {$size+1}]] chan configure $sock -encoding utf-8 -translation {auto crlf} -blocking 0 -buffersize 4096 -buffering full foreach {f v} [lrange [split [string range $inbuffer 0 end-1] \0] 0 end-1] { dict set query http $f $v } if {![dict exists $query http REQUEST_PATH]} { set uri [dict get $query http REQUEST_URI] set uriinfo [::uri::split $uri] dict set query http REQUEST_PATH [dict get $uriinfo path] |
1928 1929 1930 1931 1932 1933 1934 | } } method Connect_Local {uuid sock args} { chan event $sock readable {} chan configure $sock \ -blocking 0 \ | | | 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 | } } method Connect_Local {uuid sock args} { chan event $sock readable {} chan configure $sock \ -blocking 0 \ -translation {auto crlf} -encoding utf-8 \ -buffering line set ip 127.0.0.1 dict set query UUID $uuid dict set query http UUID $uuid dict set query http HTTP_HOST localhost dict set query http REMOTE_ADDR 127.0.0.1 dict set query http REMOTE_HOST localhost |
Changes to modules/nettool/build/available_ports.tcl.
751 752 753 754 755 756 757 | lappend ::nettool::blocks 47810 47999 lappend ::nettool::blocks 48006 48048 lappend ::nettool::blocks 48051 48127 lappend ::nettool::blocks 48130 48555 lappend ::nettool::blocks 48557 48618 lappend ::nettool::blocks 48620 48652 lappend ::nettool::blocks 48654 48999 | | > | 751 752 753 754 755 756 757 758 759 760 | lappend ::nettool::blocks 47810 47999 lappend ::nettool::blocks 48006 48048 lappend ::nettool::blocks 48051 48127 lappend ::nettool::blocks 48130 48555 lappend ::nettool::blocks 48557 48618 lappend ::nettool::blocks 48620 48652 lappend ::nettool::blocks 48654 48999 lappend ::nettool::blocks 49001 50999 lappend ::nettool::blocks 51009 65535 |
Changes to modules/nettool/build/build.tcl.
1 2 3 | set srcdir [file dirname [file normalize [file join [pwd] [info script]]]] set moddir [file dirname $srcdir] | | | 1 2 3 4 5 6 7 8 9 10 11 | set srcdir [file dirname [file normalize [file join [pwd] [info script]]]] set moddir [file dirname $srcdir] set version 0.5.4 set tclversion 8.5 set module [file tail $moddir] proc ::ladd {varname args} { upvar 1 $varname var if ![info exists var] { set var {} |
43 44 45 46 47 48 49 | lappend ::busy_port($port) $type $usage #puts [list busy $service $port $type $usage] } for {set x 0} {$x < 65536} {incr x} { set ::available_port($x) {} } | | > | | 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | lappend ::busy_port($port) $type $usage #puts [list busy $service $port $type $usage] } for {set x 0} {$x < 65536} {incr x} { set ::available_port($x) {} } source [file join $moddir .. dicttool dicttool.tcl] source [file join $moddir .. csv csv.tcl] set fin [open [file join $srcdir service-names-port-numbers.csv] r] set headers [gets $fin] set thisline {} while {[gets $fin line]>=0} { append thisline \n$line if {![csv::iscomplete $line]} continue set lline [csv::split $line] |
Changes to modules/nettool/build/core.tcl.
1 2 3 4 5 6 7 8 | # @mdgen OWNER: generic.tcl # @mdgen OWNER: available_ports.tcl # @mdgen OWNER: locateport.tcl # @mdgen OWNER: platform_unix_linux.tcl # @mdgen OWNER: platform_unix_macosx.tcl # @mdgen OWNER: platform_unix.tcl # @mdgen OWNER: platform_windows.tcl | < < < | < < | < < < < < < < < | < < < | < < < < | | | | | | < < < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | # @mdgen OWNER: generic.tcl # @mdgen OWNER: available_ports.tcl # @mdgen OWNER: locateport.tcl # @mdgen OWNER: platform_unix_linux.tcl # @mdgen OWNER: platform_unix_macosx.tcl # @mdgen OWNER: platform_unix.tcl # @mdgen OWNER: platform_windows.tcl package require platform # Uses the "ip" package from tcllib package require ip set here [file dirname [file normalize [info script]]] ::namespace eval ::nettool {} proc ::nettool::cat filename { set fin [open $filename r] set dat [read $fin] close $fin return $dat } set genus [lindex [split [::platform::generic] -] 0] dict set ::nettool::platform tcl_os $::tcl_platform(os) dict set ::nettool::platform odie_class $::tcl_platform(platform) dict set ::nettool::platform odie_genus $genus dict set ::nettool::platform odie_target [::platform::generic] dict set ::nettool::platform odie_species [::platform::identify] |
Changes to modules/nettool/build/generic.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 13 | ::namespace eval ::nettool {} ### # topic: 825cd25953c2cc896a96006b7f454e00 # title: Return pairings of MAC numbers to IP addresses on the local network ### proc ::nettool::arp_table {} {} ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 | ::namespace eval ::nettool {} ### # topic: 825cd25953c2cc896a96006b7f454e00 # title: Return pairings of MAC numbers to IP addresses on the local network ### proc ::nettool::arp_table {} {} ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { return {} } ### # topic: 15d9bc96ec6ce31d4c8f99a425a9c02c # description: Return Processor utilization ### proc ::nettool::busy {} {} |
Changes to modules/nettool/build/locateport.tcl.
8 9 10 11 12 13 14 | if { $end <= $startingport } continue if { $start > $startingport } { set i $start } else { set i $startingport } for {} {$i <= $end} {incr i} { | | | > > > > | > | > > > | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | > > > > > > > > > > > > > > > > | > > | | > > > > > > > > > | 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 | if { $end <= $startingport } continue if { $start > $startingport } { set i $start } else { set i $startingport } for {} {$i <= $end} {incr i} { if {[port_busy $i]} continue if {[catch {socket -server NOOP $i} chan]} { dict set ::nettool::used_ports $port mtime [clock seconds] dict set ::nettool::used_ports $port pid 1 continue } close $chan claim_port $i return $i } } error "Could not locate a port" } ### # topic: 3286fdbd0a3fdebbb26414475754bcf3dea67b0f ### proc ::nettool::claim_port {port {protocol tcp}} { dict set ::nettool::used_ports $port mtime [clock seconds] dict set ::nettool::used_ports $port pid [pid] if {[info exists ::nettool::syncfile]} { ::nettool::_sync_db $::nettool::syncfile } } ### # topic: 1d1f8a65a9aef8765c9b4f2b0ee0ebaf42e99d46 ### proc ::nettool::find_port startingport { foreach {start end} $::nettool::blocks { if { $end <= $startingport } continue if { $start > $startingport } { set i $start } else { set i $startingport } for {} {$i <= $end} {incr i} { if {[port_busy $i]} continue return $i } } error "Could not locate a port" } proc ::nettool::sleep delay { if {[info coroutine] ne {}} { ::after $delay [list [info coroutine]] yield return } after $delay {set ::nettool::pause 0} vwait ::nettool::pause return } proc ::nettool::_sync_db {filename} { set mypid [pid] set now [clock seconds] if {[file exists $filename]} { for {set x 0} {$x < 30} {incr x} { if {![file exists $filename.lock]} break set pid [string trim [cat $filename.lock]] if {$pid==$mypid} break ::nettool::sleep 250 } set fout [open $filename.lock w] puts $fout $mypid close $fout set fin [open $filename r] while {[gets $fin line]>=0} { lassign $line port info # Ignore file entries attributed to my process id if {[dict exists $info pid] && [dict get $info pid] == $mypid} continue # Ignore attempts to update usage on ports I have allocated if {[dict exists $::nettool::used_ports $port pid] && [dict get $::nettool::used_ports $port pid] == $mypid} continue # Ignore entries more than a week old if {[dict exists $info mtime] && ($now-[dict get $info mtime]) > 604800} continue dict set ::nettool::used_ports $port $info } close $fin } set fout [open $filename w] set ports [lsort -integer [dict keys $::nettool::used_ports]] foreach port $ports { if {[dict get $::nettool::used_ports $port pid]==$mypid} { dict set ::nettool::used_ports $port mtime $now } puts $fout [list $port [dict get $::nettool::used_ports $port]] } close $fout catch {file delete $filename.lock} } ### # topic: ded1c51260e009effb1f77044f8d0dec3d030b91 ### proc ::nettool::port_busy port { if {[info exists ::nettool::syncfile] && [file exists $::nettool::syncfile]} { ::nettool::_sync_db $::nettool::syncfile } ### # Check our private list of used ports ### if {[dict exists $::nettool::used_ports $port pid] && [dict get $::nettool::used_ports $port pid] > 0} { return 1 } foreach {start end} $::nettool::blocks { if { $port >= $start && $port <= $end } { return 0 } } return 1 } # Called when a process is closing proc ::nettool::release_all {} { set mypid [pid] set now [clock seconds] dict for {port info} $::nettool::used_ports { if {[dict exists $info pid] && [dict get $info pid]==$mypid} { dict set ::nettool::used_ports $port pid 0 dict set ::nettool::used_ports $port mtime $now } } if {[info exists ::nettool::syncfile]} { ::nettool::_sync_db $::nettool::syncfile } } ### # topic: b5407b084aa09f9efa4f58a337af6186418fddf2 ### proc ::nettool::release_port {port {protocol tcp}} { dict set ::nettool::used_ports $port mtime [clock seconds] dict set ::nettool::used_ports $port pid 0 if {[info exists ::nettool::syncfile]} { ::nettool::_sync_db $::nettool::syncfile } } proc ::nettool::set_sync_file {filename} { file mkdir [file dirname $filename] set ::nettool::syncfile $filename } if {![info exists ::nettool::used_ports]} { set ::nettool::used_ports {} } |
Changes to modules/nettool/build/platform_unix_linux.tcl.
1 2 3 4 5 6 7 8 | if {$::tcl_platform(platform) eq "unix" && $genus eq "linux"} { ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} | < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | if {$::tcl_platform(platform) eq "unix" && $genus eq "linux"} { ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} foreach {iface info} [dump] { if {[dict exists $info ipv4 Bcast:]} { lappend result [dict get $info ipv4 Bcast:] } } return [lsort -unique -dictionary $result] } |
Changes to modules/nettool/build/platform_unix_macosx.tcl.
19 20 21 22 23 24 25 | ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} | < | 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} foreach {iface info} [dump] { if {[dict exists $info broadcast:]} { lappend result [dict get $info broadcast:] } } return [lsort -unique -dictionary $result] } |
Changes to modules/nettool/build/platform_windows.tcl.
13 14 15 16 17 18 19 | ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} | < | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 | ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} foreach net [network_list] { if {$net in {224.0.0.0/4 127.0.0.0/8}} continue lappend result [::ip::broadcastAddress $net] } return [lsort -unique -dictionary $result] } |
Changes to modules/nettool/build/service-names-port-numbers.csv.
|
| | | 1 2 3 4 5 6 7 8 | Service Name,Port Number,Transport Protocol,Description,Assignee,Contact,Registration Date,Modification Date,Reference,Service Code,Unauthorized Use Reported,Assignment Notes ,0,tcp,Reserved,[Jon_Postel],[Jon_Postel],,,,,, ,0,udp,Reserved,[Jon_Postel],[Jon_Postel],,,,,, tcpmux,1,tcp,TCP Port Service Multiplexer,[Mark_Lottor],[Mark_Lottor],,,,,, tcpmux,1,udp,TCP Port Service Multiplexer,[Mark_Lottor],[Mark_Lottor],,,,,, compressnet,2,tcp,Management Utility,,,,,,,, compressnet,2,udp,Management Utility,,,,,,,, compressnet,3,tcp,Compression Process,[Bernie_Volz],[Bernie_Volz],,,,,, |
40 41 42 43 44 45 46 | msp,18,tcp,Message Send Protocol (historic),[Rina_Nethaniel],[Rina_Nethaniel],,,,,, msp,18,udp,Message Send Protocol (historic),[Rina_Nethaniel],[Rina_Nethaniel],,,,,, chargen,19,tcp,Character Generator,,,,,,,, chargen,19,udp,Character Generator,,,,,,,, ftp-data,20,tcp,File Transfer [Default Data],[Jon_Postel],[Jon_Postel],,,,,, ftp-data,20,udp,File Transfer [Default Data],[Jon_Postel],[Jon_Postel],,,,,, ftp-data,20,sctp,FTP,[Randall_Stewart],[Randall_Stewart],,,[RFC4960],,, | | | | | | 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 | msp,18,tcp,Message Send Protocol (historic),[Rina_Nethaniel],[Rina_Nethaniel],,,,,, msp,18,udp,Message Send Protocol (historic),[Rina_Nethaniel],[Rina_Nethaniel],,,,,, chargen,19,tcp,Character Generator,,,,,,,, chargen,19,udp,Character Generator,,,,,,,, ftp-data,20,tcp,File Transfer [Default Data],[Jon_Postel],[Jon_Postel],,,,,, ftp-data,20,udp,File Transfer [Default Data],[Jon_Postel],[Jon_Postel],,,,,, ftp-data,20,sctp,FTP,[Randall_Stewart],[Randall_Stewart],,,[RFC4960],,, ftp,21,tcp,File Transfer Protocol [Control],[Jon_Postel],[Jon_Postel],,,[RFC959],,,Defined TXT keys: u=<username> p=<password> path=<path> ftp,21,udp,File Transfer Protocol [Control],[Jon_Postel],[Jon_Postel],,,[RFC959],,,Defined TXT keys: u=<username> p=<password> path=<path> ftp,21,sctp,FTP,[Randall_Stewart],[Randall_Stewart],,,[RFC4960],,,Defined TXT keys: u=<username> p=<password> path=<path> ssh,22,tcp,The Secure Shell (SSH) Protocol,,,,,[RFC4251],,,Defined TXT keys: u=<username> p=<password> ssh,22,udp,The Secure Shell (SSH) Protocol,,,,,[RFC4251],,,Defined TXT keys: u=<username> p=<password> ssh,22,sctp,SSH,[Randall_Stewart],[Randall_Stewart],,,[RFC4960],,,Defined TXT keys: u=<username> p=<password> telnet,23,tcp,Telnet,[Jon_Postel],[Jon_Postel],,,[RFC854],,,Defined TXT keys: u=<username> p=<password> telnet,23,udp,Telnet,[Jon_Postel],[Jon_Postel],,,[RFC854],,,Defined TXT keys: u=<username> p=<password> ,24,tcp,any private mail system,[Rick_Adams],[Rick_Adams],,,,,, ,24,udp,any private mail system,[Rick_Adams],[Rick_Adams],,,,,, smtp,25,tcp,Simple Mail Transfer,[IESG],[IETF_Chair],,2017-06-05,[RFC5321],,, smtp,25,udp,Simple Mail Transfer,[IESG],[IETF_Chair],,2017-06-05,[RFC5321],,, ,26,tcp,Unassigned,,,,,,,, ,26,udp,Unassigned,,,,,,,, nsw-fe,27,tcp,NSW User System FE,[Robert_Thomas],[Robert_Thomas],,,,,, nsw-fe,27,udp,NSW User System FE,[Robert_Thomas],[Robert_Thomas],,,,,, ,28,tcp,Unassigned,,,,,,,, ,28,udp,Unassigned,,,,,,,, msg-icp,29,tcp,MSG ICP,[Robert_Thomas],[Robert_Thomas],,,,,, |
96 97 98 99 100 101 102 | nicname,43,udp,Who Is,,,,,,,, mpm-flags,44,tcp,MPM FLAGS Protocol,,,,,,,, mpm-flags,44,udp,MPM FLAGS Protocol,,,,,,,, mpm,45,tcp,Message Processing Module [recv],,,,,,,, mpm,45,udp,Message Processing Module [recv],,,,,,,, mpm-snd,46,tcp,MPM [default send],[Jon_Postel],[Jon_Postel],,,,,, mpm-snd,46,udp,MPM [default send],[Jon_Postel],[Jon_Postel],,,,,, | | | | 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 | nicname,43,udp,Who Is,,,,,,,, mpm-flags,44,tcp,MPM FLAGS Protocol,,,,,,,, mpm-flags,44,udp,MPM FLAGS Protocol,,,,,,,, mpm,45,tcp,Message Processing Module [recv],,,,,,,, mpm,45,udp,Message Processing Module [recv],,,,,,,, mpm-snd,46,tcp,MPM [default send],[Jon_Postel],[Jon_Postel],,,,,, mpm-snd,46,udp,MPM [default send],[Jon_Postel],[Jon_Postel],,,,,, ,47,tcp,Reserved,,,,2017-05-18,,,,This entry has been removed on 2017-05-18. ,47,udp,Reserved,,,,2017-05-18,,,,This entry has been removed on 2017-05-18. auditd,48,tcp,Digital Audit Daemon,[Larry_Scott],[Larry_Scott],,,,,, auditd,48,udp,Digital Audit Daemon,[Larry_Scott],[Larry_Scott],,,,,, tacacs,49,tcp,Login Host Protocol (TACACS),[Pieter_Ditmars],[Pieter_Ditmars],,,,,, tacacs,49,udp,Login Host Protocol (TACACS),[Pieter_Ditmars],[Pieter_Ditmars],,,,,, re-mail-ck,50,tcp,Remote Mail Checking Protocol,[Steve_Dorner],[Steve_Dorner],,,,,, re-mail-ck,50,udp,Remote Mail Checking Protocol,[Steve_Dorner],[Steve_Dorner],,,,,, ,51,,Reserved,,,,2013-05-24,,,,This entry is being removed on 2013-05-24. |
123 124 125 126 127 128 129 | ,57,udp,any private terminal access,[Jon_Postel],[Jon_Postel],,,,,, xns-mail,58,tcp,XNS Mail,[Susie_Armstrong],[Susie_Armstrong],,,,,, xns-mail,58,udp,XNS Mail,[Susie_Armstrong],[Susie_Armstrong],,,,,, ,59,tcp,any private file service,[Jon_Postel],[Jon_Postel],,,,,, ,59,udp,any private file service,[Jon_Postel],[Jon_Postel],,,,,, ,60,tcp,Unassigned,,,,,,,, ,60,udp,Unassigned,,,,,,,, | | | > > > > > > > > | 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 | ,57,udp,any private terminal access,[Jon_Postel],[Jon_Postel],,,,,, xns-mail,58,tcp,XNS Mail,[Susie_Armstrong],[Susie_Armstrong],,,,,, xns-mail,58,udp,XNS Mail,[Susie_Armstrong],[Susie_Armstrong],,,,,, ,59,tcp,any private file service,[Jon_Postel],[Jon_Postel],,,,,, ,59,udp,any private file service,[Jon_Postel],[Jon_Postel],,,,,, ,60,tcp,Unassigned,,,,,,,, ,60,udp,Unassigned,,,,,,,, ,61,tcp,Reserved,,,,2017-05-18,,,,This entry has been removed on 2017-05-18. ,61,udp,Reserved,,,,2017-05-18,,,,This entry has been removed on 2017-05-18. acas,62,tcp,ACA Services,[E_Wald],[E_Wald],,,,,, acas,62,udp,ACA Services,[E_Wald],[E_Wald],,,,,, whoispp,63,tcp,"whois++ IANA assigned this well-formed service name as a replacement for ""whois++"".",[Rickard_Schoultz],[Rickard_Schoultz],,,,,, whois++,63,tcp,whois++,[Rickard_Schoultz],[Rickard_Schoultz],,,,,,"This entry is an alias to ""whoispp"". This entry is now historic, not usable for use with many common service discovery mechanisms." whoispp,63,udp,"whois++ IANA assigned this well-formed service name as a replacement for ""whois++"".",[Rickard_Schoultz],[Rickard_Schoultz],,,,,, whois++,63,udp,whois++,[Rickard_Schoultz],[Rickard_Schoultz],,,,,,"This entry is an alias to ""whoispp"". This entry is now historic, not usable for use with many common service discovery mechanisms." covia,64,tcp,Communications Integrator (CI),[Dan_Smith],[Dan_Smith],,,,,, covia,64,udp,Communications Integrator (CI),[Dan_Smith],[Dan_Smith],,,,,, tacacs-ds,65,tcp,TACACS-Database Service,[Kathy_Huber],[Kathy_Huber],,,,,, tacacs-ds,65,udp,TACACS-Database Service,[Kathy_Huber],[Kathy_Huber],,,,,, sql-net,66,tcp,"Oracle SQL*NET IANA assigned this well-formed service name as a replacement for ""sql*net"".",[Jack_Haverty],[Jack_Haverty],,,,,, sql*net,66,tcp,Oracle SQL*NET,[Jack_Haverty],[Jack_Haverty],,,,,,"This entry is an alias to ""sql-net"". This entry is now historic, not usable for use with many common service discovery mechanisms." sql-net,66,udp,"Oracle SQL*NET IANA assigned this well-formed service name as a replacement for ""sql*net"".",[Jack_Haverty],[Jack_Haverty],,,,,, sql*net,66,udp,Oracle SQL*NET,[Jack_Haverty],[Jack_Haverty],,,,,,"This entry is an alias to ""sql-net"". This entry is now historic, not usable for use with many common service discovery mechanisms." bootps,67,tcp,Bootstrap Protocol Server,[Bill_Croft],[Bill_Croft],,,[RFC951],,,Defined TXT keys: None bootps,67,udp,Bootstrap Protocol Server,,,,,,,, bootpc,68,tcp,Bootstrap Protocol Client,[Bill_Croft],[Bill_Croft],,,,,, |
300 301 302 303 304 305 306 | sftp,115,udp,Simple File Transfer Protocol,[Mark_Lottor],[Mark_Lottor],,,,,, ansanotify,116,tcp,ANSA REX Notify,[Nicola_J_Howarth],[Nicola_J_Howarth],,,,,, ansanotify,116,udp,ANSA REX Notify,[Nicola_J_Howarth],[Nicola_J_Howarth],,,,,, uucp-path,117,tcp,UUCP Path Service,,,,,,,, uucp-path,117,udp,UUCP Path Service,,,,,,,, sqlserv,118,tcp,SQL Services,[Larry_Barnes],[Larry_Barnes],,,,,, sqlserv,118,udp,SQL Services,[Larry_Barnes],[Larry_Barnes],,,,,, | | | | 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 | sftp,115,udp,Simple File Transfer Protocol,[Mark_Lottor],[Mark_Lottor],,,,,, ansanotify,116,tcp,ANSA REX Notify,[Nicola_J_Howarth],[Nicola_J_Howarth],,,,,, ansanotify,116,udp,ANSA REX Notify,[Nicola_J_Howarth],[Nicola_J_Howarth],,,,,, uucp-path,117,tcp,UUCP Path Service,,,,,,,, uucp-path,117,udp,UUCP Path Service,,,,,,,, sqlserv,118,tcp,SQL Services,[Larry_Barnes],[Larry_Barnes],,,,,, sqlserv,118,udp,SQL Services,[Larry_Barnes],[Larry_Barnes],,,,,, nntp,119,tcp,Network News Transfer Protocol,[IESG],[IETF_Chair],,2018-07-06,[RFC3977],,, nntp,119,udp,Network News Transfer Protocol,[IESG],[IETF_Chair],,2018-07-06,[RFC3977],,, cfdptkt,120,tcp,CFDPTKT,[John_Ioannidis],[John_Ioannidis],,,,,, cfdptkt,120,udp,CFDPTKT,[John_Ioannidis],[John_Ioannidis],,,,,, erpc,121,tcp,Encore Expedited Remote Pro.Call,[Jack_ONeil],[Jack_ONeil],,,,,, erpc,121,udp,Encore Expedited Remote Pro.Call,[Jack_ONeil],[Jack_ONeil],,,,,, smakynet,122,tcp,SMAKYNET,[Pierre_Arnaud],[Pierre_Arnaud],,,,,, smakynet,122,udp,SMAKYNET,[Pierre_Arnaud],[Pierre_Arnaud],,,,,, ntp,123,tcp,Network Time Protocol,[Dave_Mills],[Dave_Mills],,,[RFC5905],,, |
356 357 358 359 360 361 362 | netbios-ssn,139,udp,NETBIOS Session Service,[Jon_Postel],[Jon_Postel],,,,,, emfis-data,140,tcp,EMFIS Data Service,,,,,,,, emfis-data,140,udp,EMFIS Data Service,,,,,,,, emfis-cntl,141,tcp,EMFIS Control Service,[Gerd_Beling],[Gerd_Beling],,,,,, emfis-cntl,141,udp,EMFIS Control Service,[Gerd_Beling],[Gerd_Beling],,,,,, bl-idm,142,tcp,Britton-Lee IDM,[Susie_Snitzer],[Susie_Snitzer],,,,,, bl-idm,142,udp,Britton-Lee IDM,[Susie_Snitzer],[Susie_Snitzer],,,,,, | | | | 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 | netbios-ssn,139,udp,NETBIOS Session Service,[Jon_Postel],[Jon_Postel],,,,,, emfis-data,140,tcp,EMFIS Data Service,,,,,,,, emfis-data,140,udp,EMFIS Data Service,,,,,,,, emfis-cntl,141,tcp,EMFIS Control Service,[Gerd_Beling],[Gerd_Beling],,,,,, emfis-cntl,141,udp,EMFIS Control Service,[Gerd_Beling],[Gerd_Beling],,,,,, bl-idm,142,tcp,Britton-Lee IDM,[Susie_Snitzer],[Susie_Snitzer],,,,,, bl-idm,142,udp,Britton-Lee IDM,[Susie_Snitzer],[Susie_Snitzer],,,,,, imap,143,tcp,Internet Message Access Protocol,[IESG],[IETF_Chair],,2017-06-05,[RFC3501],,, imap,143,udp,Internet Message Access Protocol,[IESG],[IETF_Chair],,2017-06-05,[RFC3501],,, uma,144,tcp,Universal Management Architecture,[Jay_Whitney],[Jay_Whitney],,,,,, uma,144,udp,Universal Management Architecture,[Jay_Whitney],[Jay_Whitney],,,,,, uaac,145,tcp,UAAC Protocol,[David_A_Gomberg],[David_A_Gomberg],,,,,, uaac,145,udp,UAAC Protocol,[David_A_Gomberg],[David_A_Gomberg],,,,,, iso-tp0,146,tcp,ISO-IP0,,,,,,,, iso-tp0,146,udp,ISO-IP0,,,,,,,, iso-ip,147,tcp,ISO-IP,[Marshall_Rose],[Marshall_Rose],,,,,, |
408 409 410 411 412 413 414 | xns-courier,165,udp,Xerox,[Susie_Armstrong_2],[Susie_Armstrong_2],,,,,, s-net,166,tcp,Sirius Systems,[Brian_Lloyd],[Brian_Lloyd],,,,,, s-net,166,udp,Sirius Systems,[Brian_Lloyd],[Brian_Lloyd],,,,,, namp,167,tcp,NAMP,[Marty_Schoffstahl],[Marty_Schoffstahl],,,,,, namp,167,udp,NAMP,[Marty_Schoffstahl],[Marty_Schoffstahl],,,,,, rsvd,168,tcp,RSVD,[Alan_Sandell],[Alan_Sandell],,2008-05-01,,,, rsvd,168,udp,RSVD,[Alan_Sandell],[Alan_Sandell],,2008-05-01,,,, | | | > > > > | 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 | xns-courier,165,udp,Xerox,[Susie_Armstrong_2],[Susie_Armstrong_2],,,,,, s-net,166,tcp,Sirius Systems,[Brian_Lloyd],[Brian_Lloyd],,,,,, s-net,166,udp,Sirius Systems,[Brian_Lloyd],[Brian_Lloyd],,,,,, namp,167,tcp,NAMP,[Marty_Schoffstahl],[Marty_Schoffstahl],,,,,, namp,167,udp,NAMP,[Marty_Schoffstahl],[Marty_Schoffstahl],,,,,, rsvd,168,tcp,RSVD,[Alan_Sandell],[Alan_Sandell],,2008-05-01,,,, rsvd,168,udp,RSVD,[Alan_Sandell],[Alan_Sandell],,2008-05-01,,,, send,169,tcp,SEND,[William_Oldwin],[William_Oldwin],,2019-04-22,,,, send,169,udp,SEND,[William_Oldwin],[William_Oldwin],,2019-04-22,,,, print-srv,170,tcp,Network PostScript,[Brian_Reid],[Brian_Reid],,,,,, print-srv,170,udp,Network PostScript,[Brian_Reid],[Brian_Reid],,,,,, multiplex,171,tcp,Network Innovations Multiplex,,,,,,,, multiplex,171,udp,Network Innovations Multiplex,,,,,,,, cl-1,172,tcp,"Network Innovations CL/1 IANA assigned this well-formed service name as a replacement for ""cl/1"".",[Kevin_DeVault],[Kevin_DeVault],,,,,, cl/1,172,tcp,Network Innovations CL/1,[Kevin_DeVault],[Kevin_DeVault],,,,,,"This entry is an alias to ""cl-1"". This entry is now historic, not usable for use with many common service discovery mechanisms." cl-1,172,udp,"Network Innovations CL/1 IANA assigned this well-formed service name as a replacement for ""cl/1"".",[Kevin_DeVault],[Kevin_DeVault],,,,,, cl/1,172,udp,Network Innovations CL/1,[Kevin_DeVault],[Kevin_DeVault],,,,,,"This entry is an alias to ""cl-1"". This entry is now historic, not usable for use with many common service discovery mechanisms." xyplex-mux,173,tcp,Xyplex,[Bob_Stewart],[Bob_Stewart],,,,,, xyplex-mux,173,udp,Xyplex,[Bob_Stewart],[Bob_Stewart],,,,,, mailq,174,tcp,MAILQ,[Rayan_Zachariassen],[Rayan_Zachariassen],,,,,, |
497 498 499 500 501 502 503 | at-5,205,udp,AppleTalk Unused,,,,,,,, at-zis,206,tcp,AppleTalk Zone Information,,,,,,,, at-zis,206,udp,AppleTalk Zone Information,,,,,,,, at-7,207,tcp,AppleTalk Unused,,,,,,,, at-7,207,udp,AppleTalk Unused,,,,,,,, at-8,208,tcp,AppleTalk Unused,[Rob_Chandhok],[Rob_Chandhok],,,,,, at-8,208,udp,AppleTalk Unused,[Rob_Chandhok],[Rob_Chandhok],,,,,, | | | > > > > > > > > | 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 | at-5,205,udp,AppleTalk Unused,,,,,,,, at-zis,206,tcp,AppleTalk Zone Information,,,,,,,, at-zis,206,udp,AppleTalk Zone Information,,,,,,,, at-7,207,tcp,AppleTalk Unused,,,,,,,, at-7,207,udp,AppleTalk Unused,,,,,,,, at-8,208,tcp,AppleTalk Unused,[Rob_Chandhok],[Rob_Chandhok],,,,,, at-8,208,udp,AppleTalk Unused,[Rob_Chandhok],[Rob_Chandhok],,,,,, qmtp,209,tcp,The Quick Mail Transfer Protocol,[D_J_Bernstein],[D_J_Bernstein],,2018-04-05,,,, qmtp,209,udp,The Quick Mail Transfer Protocol,[D_J_Bernstein],[D_J_Bernstein],,2018-04-05,,,, z39-50,210,tcp,"ANSI Z39.50 IANA assigned this well-formed service name as a replacement for ""z39.50"".",[Mark_H_Needleman],[Mark_H_Needleman],,,,,, z39.50,210,tcp,ANSI Z39.50,[Mark_H_Needleman],[Mark_H_Needleman],,,,,,"This entry is an alias to ""z39-50"". This entry is now historic, not usable for use with many common service discovery mechanisms." z39-50,210,udp,"ANSI Z39.50 IANA assigned this well-formed service name as a replacement for ""z39.50"".",[Mark_H_Needleman],[Mark_H_Needleman],,,,,, z39.50,210,udp,ANSI Z39.50,[Mark_H_Needleman],[Mark_H_Needleman],,,,,,"This entry is an alias to ""z39-50"". This entry is now historic, not usable for use with many common service discovery mechanisms." 914c-g,211,tcp,"Texas Instruments 914C/G Terminal IANA assigned this well-formed service name as a replacement for ""914c/g"".",[Bill_Harrell],[Bill_Harrell],,,,,, 914c/g,211,tcp,Texas Instruments 914C/G Terminal,[Bill_Harrell],[Bill_Harrell],,,,,,"This entry is an alias to ""914c-g"". This entry is now historic, not usable for use with many common service discovery mechanisms." 914c-g,211,udp,"Texas Instruments 914C/G Terminal IANA assigned this well-formed service name as a replacement for ""914c/g"".",[Bill_Harrell],[Bill_Harrell],,,,,, 914c/g,211,udp,Texas Instruments 914C/G Terminal,[Bill_Harrell],[Bill_Harrell],,,,,,"This entry is an alias to ""914c-g"". This entry is now historic, not usable for use with many common service discovery mechanisms." anet,212,tcp,ATEXSSTR,[Jim_Taylor],[Jim_Taylor],,,,,, anet,212,udp,ATEXSSTR,[Jim_Taylor],[Jim_Taylor],,,,,, ipx,213,tcp,IPX,[Don_Provan],[Don_Provan],,,,,, |
546 547 548 549 550 551 552 | rsh-spx,222,tcp,Berkeley rshd with SPX auth,,,,,,,, rsh-spx,222,udp,Berkeley rshd with SPX auth,,,,,,,, cdc,223,tcp,Certificate Distribution Center,[Kannan_Alagappan],[Kannan_Alagappan],,,,,, cdc,223,udp,Certificate Distribution Center,[Kannan_Alagappan],[Kannan_Alagappan],,,,,, masqdialer,224,tcp,masqdialer,[Charles_Wright],[Charles_Wright],,,,,,"Possible Conflict of Port 222 with ""Masqdialer""" masqdialer,224,udp,masqdialer,[Charles_Wright],[Charles_Wright],,,,,,"Possible Conflict of Port 222 with ""Masqdialer""" ,225-241,,Reserved,[Jon_Postel],[Jon_Postel],,,,,, | | | > > > > | 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 | rsh-spx,222,tcp,Berkeley rshd with SPX auth,,,,,,,, rsh-spx,222,udp,Berkeley rshd with SPX auth,,,,,,,, cdc,223,tcp,Certificate Distribution Center,[Kannan_Alagappan],[Kannan_Alagappan],,,,,, cdc,223,udp,Certificate Distribution Center,[Kannan_Alagappan],[Kannan_Alagappan],,,,,, masqdialer,224,tcp,masqdialer,[Charles_Wright],[Charles_Wright],,,,,,"Possible Conflict of Port 222 with ""Masqdialer""" masqdialer,224,udp,masqdialer,[Charles_Wright],[Charles_Wright],,,,,,"Possible Conflict of Port 222 with ""Masqdialer""" ,225-241,,Reserved,[Jon_Postel],[Jon_Postel],,,,,, direct,242,tcp,Direct,[Herb_Sutter],[Paul_Horton],,,,,, direct,242,udp,Direct,[Herb_Sutter],[Paul_Horton],,,,,, sur-meas,243,tcp,Survey Measurement,[Dave_Clark],[Dave_Clark],,,,,, sur-meas,243,udp,Survey Measurement,[Dave_Clark],[Dave_Clark],,,,,, inbusiness,244,tcp,inbusiness,[Derrick_Hisatake],[Derrick_Hisatake],,,,,, inbusiness,244,udp,inbusiness,[Derrick_Hisatake],[Derrick_Hisatake],,,,,, link,245,tcp,LINK,,,,,,,, link,245,udp,LINK,,,,,,,, dsp3270,246,tcp,Display Systems Protocol,[Weldon_J_Showalter],[Weldon_J_Showalter],,,,,, dsp3270,246,udp,Display Systems Protocol,[Weldon_J_Showalter],[Weldon_J_Showalter],,,,,, subntbcst-tftp,247,tcp,"SUBNTBCST_TFTP IANA assigned this well-formed service name as a replacement for ""subntbcst_tftp"".",[John_Fake],[John_Fake],,,,,, subntbcst_tftp,247,tcp,SUBNTBCST_TFTP,[John_Fake],[John_Fake],,,,,,"This entry is an alias to ""subntbcst-tftp"". This entry is now historic, not usable for use with many common service discovery mechanisms." subntbcst-tftp,247,udp,"SUBNTBCST_TFTP IANA assigned this well-formed service name as a replacement for ""subntbcst_tftp"".",[John_Fake],[John_Fake],,,,,, subntbcst_tftp,247,udp,SUBNTBCST_TFTP,[John_Fake],[John_Fake],,,,,,"This entry is an alias to ""subntbcst-tftp"". This entry is now historic, not usable for use with many common service discovery mechanisms." bhfhs,248,tcp,bhfhs,[John_Kelly],[John_Kelly],,,,,, bhfhs,248,udp,bhfhs,[John_Kelly],[John_Kelly],,,,,, ,249-255,,Reserved,[Jon_Postel],[Jon_Postel],,,,,, |
702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 | scoi2odialog,360,tcp,scoi2odialog,[Keith_Petley],[Keith_Petley],,,,,, scoi2odialog,360,udp,scoi2odialog,[Keith_Petley],[Keith_Petley],,,,,, semantix,361,tcp,Semantix,[Semantix],[Semantix],,,,,, semantix,361,udp,Semantix,[Semantix],[Semantix],,,,,, srssend,362,tcp,SRS Send,[Curt_Mayer],[Curt_Mayer],,,,,, srssend,362,udp,SRS Send,[Curt_Mayer],[Curt_Mayer],,,,,, rsvp-tunnel,363,tcp,"RSVP Tunnel IANA assigned this well-formed service name as a replacement for ""rsvp_tunnel"".",[Andreas_Terzis],[Andreas_Terzis],,,,,, rsvp_tunnel,363,tcp,RSVP Tunnel,[Andreas_Terzis],[Andreas_Terzis],,,,,,"This entry is an alias to ""rsvp-tunnel"". This entry is now historic, not usable for use with many common service discovery mechanisms." rsvp-tunnel,363,udp,"RSVP Tunnel IANA assigned this well-formed service name as a replacement for ""rsvp_tunnel"".",[Andreas_Terzis],[Andreas_Terzis],,,,,, rsvp_tunnel,363,udp,RSVP Tunnel,[Andreas_Terzis],[Andreas_Terzis],,,,,,"This entry is an alias to ""rsvp-tunnel"". This entry is now historic, not usable for use with many common service discovery mechanisms." aurora-cmgr,364,tcp,Aurora CMGR,[Philip_Budne],[Philip_Budne],,,,,, aurora-cmgr,364,udp,Aurora CMGR,[Philip_Budne],[Philip_Budne],,,,,, dtk,365,tcp,DTK,[Fred_Cohen],[Fred_Cohen],,,,,, | > > > > | 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 | scoi2odialog,360,tcp,scoi2odialog,[Keith_Petley],[Keith_Petley],,,,,, scoi2odialog,360,udp,scoi2odialog,[Keith_Petley],[Keith_Petley],,,,,, semantix,361,tcp,Semantix,[Semantix],[Semantix],,,,,, semantix,361,udp,Semantix,[Semantix],[Semantix],,,,,, srssend,362,tcp,SRS Send,[Curt_Mayer],[Curt_Mayer],,,,,, srssend,362,udp,SRS Send,[Curt_Mayer],[Curt_Mayer],,,,,, rsvp-tunnel,363,tcp,"RSVP Tunnel IANA assigned this well-formed service name as a replacement for ""rsvp_tunnel"".",[Andreas_Terzis],[Andreas_Terzis],,,,,, rsvp_tunnel,363,tcp,RSVP Tunnel,[Andreas_Terzis],[Andreas_Terzis],,,,,,"This entry is an alias to ""rsvp-tunnel"". This entry is now historic, not usable for use with many common service discovery mechanisms." rsvp-tunnel,363,udp,"RSVP Tunnel IANA assigned this well-formed service name as a replacement for ""rsvp_tunnel"".",[Andreas_Terzis],[Andreas_Terzis],,,,,, rsvp_tunnel,363,udp,RSVP Tunnel,[Andreas_Terzis],[Andreas_Terzis],,,,,,"This entry is an alias to ""rsvp-tunnel"". This entry is now historic, not usable for use with many common service discovery mechanisms." aurora-cmgr,364,tcp,Aurora CMGR,[Philip_Budne],[Philip_Budne],,,,,, aurora-cmgr,364,udp,Aurora CMGR,[Philip_Budne],[Philip_Budne],,,,,, dtk,365,tcp,DTK,[Fred_Cohen],[Fred_Cohen],,,,,, |
840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 | icad-el,425,tcp,ICAD,[Larry_Stone],[Larry_Stone],,,,,, icad-el,425,udp,ICAD,[Larry_Stone],[Larry_Stone],,,,,, smartsdp,426,tcp,smartsdp,[Marie_Pierre_Belange],[Marie_Pierre_Belange],,,,,, smartsdp,426,udp,smartsdp,[Marie_Pierre_Belange],[Marie_Pierre_Belange],,,,,, svrloc,427,tcp,Server Location,[Veizades],[Veizades],,,,,, svrloc,427,udp,Server Location,[Veizades],[Veizades],,,,,, ocs-cmu,428,tcp,"OCS_CMU IANA assigned this well-formed service name as a replacement for ""ocs_cmu"".",,,,,,,, ocs_cmu,428,tcp,OCS_CMU,,,,,,,,"This entry is an alias to ""ocs-cmu"". This entry is now historic, not usable for use with many common service discovery mechanisms." ocs-cmu,428,udp,"OCS_CMU IANA assigned this well-formed service name as a replacement for ""ocs_cmu"".",,,,,,,, ocs_cmu,428,udp,OCS_CMU,,,,,,,,"This entry is an alias to ""ocs-cmu"". This entry is now historic, not usable for use with many common service discovery mechanisms." ocs-amu,429,tcp,"OCS_AMU IANA assigned this well-formed service name as a replacement for ""ocs_amu"".",[Florence_Wyman],[Florence_Wyman],,,,,, ocs_amu,429,tcp,OCS_AMU,[Florence_Wyman],[Florence_Wyman],,,,,,"This entry is an alias to ""ocs-amu"". This entry is now historic, not usable for use with many common service discovery mechanisms." ocs-amu,429,udp,"OCS_AMU IANA assigned this well-formed service name as a replacement for ""ocs_amu"".",[Florence_Wyman],[Florence_Wyman],,,,,, ocs_amu,429,udp,OCS_AMU,[Florence_Wyman],[Florence_Wyman],,,,,,"This entry is an alias to ""ocs-amu"". This entry is now historic, not usable for use with many common service discovery mechanisms." utmpsd,430,tcp,UTMPSD,,,,,,,, utmpsd,430,udp,UTMPSD,,,,,,,, utmpcd,431,tcp,UTMPCD,,,,,,,, utmpcd,431,udp,UTMPCD,,,,,,,, iasd,432,tcp,IASD,[Nir_Baroz],[Nir_Baroz],,,,,, iasd,432,udp,IASD,[Nir_Baroz],[Nir_Baroz],,,,,, | > > > > > > > > | | > > > > | | | 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 | icad-el,425,tcp,ICAD,[Larry_Stone],[Larry_Stone],,,,,, icad-el,425,udp,ICAD,[Larry_Stone],[Larry_Stone],,,,,, smartsdp,426,tcp,smartsdp,[Marie_Pierre_Belange],[Marie_Pierre_Belange],,,,,, smartsdp,426,udp,smartsdp,[Marie_Pierre_Belange],[Marie_Pierre_Belange],,,,,, svrloc,427,tcp,Server Location,[Veizades],[Veizades],,,,,, svrloc,427,udp,Server Location,[Veizades],[Veizades],,,,,, ocs-cmu,428,tcp,"OCS_CMU IANA assigned this well-formed service name as a replacement for ""ocs_cmu"".",,,,,,,, ocs_cmu,428,tcp,OCS_CMU,,,,,,,,"This entry is an alias to ""ocs-cmu"". This entry is now historic, not usable for use with many common service discovery mechanisms." ocs-cmu,428,udp,"OCS_CMU IANA assigned this well-formed service name as a replacement for ""ocs_cmu"".",,,,,,,, ocs_cmu,428,udp,OCS_CMU,,,,,,,,"This entry is an alias to ""ocs-cmu"". This entry is now historic, not usable for use with many common service discovery mechanisms." ocs-amu,429,tcp,"OCS_AMU IANA assigned this well-formed service name as a replacement for ""ocs_amu"".",[Florence_Wyman],[Florence_Wyman],,,,,, ocs_amu,429,tcp,OCS_AMU,[Florence_Wyman],[Florence_Wyman],,,,,,"This entry is an alias to ""ocs-amu"". This entry is now historic, not usable for use with many common service discovery mechanisms." ocs-amu,429,udp,"OCS_AMU IANA assigned this well-formed service name as a replacement for ""ocs_amu"".",[Florence_Wyman],[Florence_Wyman],,,,,, ocs_amu,429,udp,OCS_AMU,[Florence_Wyman],[Florence_Wyman],,,,,,"This entry is an alias to ""ocs-amu"". This entry is now historic, not usable for use with many common service discovery mechanisms." utmpsd,430,tcp,UTMPSD,,,,,,,, utmpsd,430,udp,UTMPSD,,,,,,,, utmpcd,431,tcp,UTMPCD,,,,,,,, utmpcd,431,udp,UTMPCD,,,,,,,, iasd,432,tcp,IASD,[Nir_Baroz],[Nir_Baroz],,,,,, iasd,432,udp,IASD,[Nir_Baroz],[Nir_Baroz],,,,,, nnsp,433,tcp,NNTP for transit servers (NNSP),[IESG],[IETF_Chair],,2018-07-06,[RFC3977],,, nnsp,433,udp,NNTP for transit servers (NNSP),[IESG],[IETF_Chair],,2018-07-06,[RFC3977],,, mobileip-agent,434,tcp,MobileIP-Agent,,,,,,,, mobileip-agent,434,udp,MobileIP-Agent,,,,,,,, mobilip-mn,435,tcp,MobilIP-MN,[Kannan_Alagappan_2],[Kannan_Alagappan_2],,,,,, mobilip-mn,435,udp,MobilIP-MN,[Kannan_Alagappan_2],[Kannan_Alagappan_2],,,,,, dna-cml,436,tcp,DNA-CML,[Dan_Flowers],[Dan_Flowers],,,,,, dna-cml,436,udp,DNA-CML,[Dan_Flowers],[Dan_Flowers],,,,,, comscm,437,tcp,comscm,[Jim_Teague],[Jim_Teague],,,,,, comscm,437,udp,comscm,[Jim_Teague],[Jim_Teague],,,,,, dsfgw,438,tcp,dsfgw,[Andy_McKeen],[Andy_McKeen],,,,,, dsfgw,438,udp,dsfgw,[Andy_McKeen],[Andy_McKeen],,,,,, dasp,439,tcp,dasp,[Thomas_Obermair],[Thomas_Obermair],,,,,, dasp,439,udp,dasp,[Thomas_Obermair],[Thomas_Obermair],,,,,, sgcp,440,tcp,sgcp,[Marshall_Rose],[Marshall_Rose],,,,,, sgcp,440,udp,sgcp,[Marshall_Rose],[Marshall_Rose],,,,,, decvms-sysmgt,441,tcp,decvms-sysmgt,[Lee_Barton],[Lee_Barton],,,,,, decvms-sysmgt,441,udp,decvms-sysmgt,[Lee_Barton],[Lee_Barton],,,,,, cvc-hostd,442,tcp,"cvc_hostd IANA assigned this well-formed service name as a replacement for ""cvc_hostd"".",[Bill_Davidson],[Bill_Davidson],,,,,, cvc_hostd,442,tcp,cvc_hostd,[Bill_Davidson],[Bill_Davidson],,,,,,"This entry is an alias to ""cvc-hostd"". This entry is now historic, not usable for use with many common service discovery mechanisms." cvc-hostd,442,udp,"cvc_hostd IANA assigned this well-formed service name as a replacement for ""cvc_hostd"".",[Bill_Davidson],[Bill_Davidson],,,,,, cvc_hostd,442,udp,cvc_hostd,[Bill_Davidson],[Bill_Davidson],,,,,,"This entry is an alias to ""cvc-hostd"". This entry is now historic, not usable for use with many common service discovery mechanisms." https,443,tcp,http protocol over TLS/SSL,[IESG],[IETF_Chair],,2018-07-06,,,, https,443,udp,http protocol over TLS/SSL,[IESG],[IETF_Chair],,2018-07-06,,,, https,443,sctp,HTTPS,[Randall_Stewart],[Randall_Stewart],,,[RFC4960],,, snpp,444,tcp,Simple Network Paging Protocol,,,,,[RFC1568],,, snpp,444,udp,Simple Network Paging Protocol,,,,,[RFC1568],,, microsoft-ds,445,tcp,Microsoft-DS,[Pradeep_Bahl],[Pradeep_Bahl],,,,,, microsoft-ds,445,udp,Microsoft-DS,[Pradeep_Bahl],[Pradeep_Bahl],,,,,, ddm-rdb,446,tcp,DDM-Remote Relational Database Access,,,,,,,, ddm-rdb,446,udp,DDM-Remote Relational Database Access,,,,,,,, |
938 939 940 941 942 943 944 | datasurfsrv,461,udp,DataRampSrv,,,,,,,, datasurfsrvsec,462,tcp,DataRampSrvSec,[Diane_Downie],[Diane_Downie],,,,,, datasurfsrvsec,462,udp,DataRampSrvSec,[Diane_Downie],[Diane_Downie],,,,,, alpes,463,tcp,alpes,[Alain_Durand],[Alain_Durand],,,,,, alpes,463,udp,alpes,[Alain_Durand],[Alain_Durand],,,,,, kpasswd,464,tcp,kpasswd,[Theodore_Ts_o],[Theodore_Ts_o],,,,,, kpasswd,464,udp,kpasswd,[Theodore_Ts_o],[Theodore_Ts_o],,,,,, | | > | 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 | datasurfsrv,461,udp,DataRampSrv,,,,,,,, datasurfsrvsec,462,tcp,DataRampSrvSec,[Diane_Downie],[Diane_Downie],,,,,, datasurfsrvsec,462,udp,DataRampSrvSec,[Diane_Downie],[Diane_Downie],,,,,, alpes,463,tcp,alpes,[Alain_Durand],[Alain_Durand],,,,,, alpes,463,udp,alpes,[Alain_Durand],[Alain_Durand],,,,,, kpasswd,464,tcp,kpasswd,[Theodore_Ts_o],[Theodore_Ts_o],,,,,, kpasswd,464,udp,kpasswd,[Theodore_Ts_o],[Theodore_Ts_o],,,,,, urd,465,tcp,URL Rendezvous Directory for SSM,[Toerless_Eckert],[Toerless_Eckert],,,,,, submissions,465,tcp,Message Submission over TLS protocol,[IESG],[IETF_Chair],2017-12-12,,[RFC8314],,, igmpv3lite,465,udp,IGMP over UDP for SSM,[Toerless_Eckert],[Toerless_Eckert],,,,,, digital-vrc,466,tcp,digital-vrc,[Peter_Higginson],[Peter_Higginson],,,,,, digital-vrc,466,udp,digital-vrc,[Peter_Higginson],[Peter_Higginson],,,,,, mylex-mapd,467,tcp,mylex-mapd,[Gary_Lewis],[Gary_Lewis],,,,,, mylex-mapd,467,udp,mylex-mapd,[Gary_Lewis],[Gary_Lewis],,,,,, photuris,468,tcp,proturis,[Bill_Simpson_2],[Bill_Simpson_2],,,,,, photuris,468,udp,proturis,[Bill_Simpson_2],[Bill_Simpson_2],,,,,, |
1102 1103 1104 1105 1106 1107 1108 | klogin,543,tcp,,,,,,,,, klogin,543,udp,,,,,,,,, kshell,544,tcp,krcmd,,,,,,,, kshell,544,udp,krcmd,,,,,,,, appleqtcsrvr,545,tcp,appleqtcsrvr,[Murali_Ranganathan],[Murali_Ranganathan],,,,,, appleqtcsrvr,545,udp,appleqtcsrvr,[Murali_Ranganathan],[Murali_Ranganathan],,,,,, dhcpv6-client,546,tcp,DHCPv6 Client,,,,,,,, | | | | | 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 | klogin,543,tcp,,,,,,,,, klogin,543,udp,,,,,,,,, kshell,544,tcp,krcmd,,,,,,,, kshell,544,udp,krcmd,,,,,,,, appleqtcsrvr,545,tcp,appleqtcsrvr,[Murali_Ranganathan],[Murali_Ranganathan],,,,,, appleqtcsrvr,545,udp,appleqtcsrvr,[Murali_Ranganathan],[Murali_Ranganathan],,,,,, dhcpv6-client,546,tcp,DHCPv6 Client,,,,,,,, dhcpv6-client,546,udp,DHCPv6 Client,[IESG],[IETF_Chair],,2018-05-21,[RFC8415],,, dhcpv6-server,547,tcp,DHCPv6 Server,[IESG],[IETF_Chair],,2018-05-21,[RFC5460],,, dhcpv6-server,547,udp,DHCPv6 Server,[IESG],[IETF_Chair],,2018-05-21,[RFC8415],,, afpovertcp,548,tcp,AFP over TCP,[Leland_Wallace],[Leland_Wallace],,,,,,Defined TXT keys: u=<username> p=<password> path=<path> afpovertcp,548,udp,AFP over TCP,[Leland_Wallace],[Leland_Wallace],,,,,,Defined TXT keys: u=<username> p=<password> path=<path> idfp,549,tcp,IDFP,[Ramana_Kovi],[Ramana_Kovi],,,,,, idfp,549,udp,IDFP,[Ramana_Kovi],[Ramana_Kovi],,,,,, new-rwho,550,tcp,new-who,,,,,[n/a],,, new-rwho,550,udp,new-who,,,,,[n/a],,, cybercash,551,tcp,cybercash,[Donald_E_Eastlake],[Donald_E_Eastlake],,,[RFC1898],,, |
1135 1136 1137 1138 1139 1140 1141 | teedtap,559,udp,TEEDTAP,[Charlie_Limoges],[Charlie_Limoges],,,,,, rmonitor,560,tcp,rmonitord,,,,,,,, rmonitor,560,udp,rmonitord,,,,,,,, monitor,561,tcp,,,,,,,,, monitor,561,udp,,,,,,,,, chshell,562,tcp,chcmd,,,,,,,, chshell,562,udp,chcmd,,,,,,,, | | | | 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 | teedtap,559,udp,TEEDTAP,[Charlie_Limoges],[Charlie_Limoges],,,,,, rmonitor,560,tcp,rmonitord,,,,,,,, rmonitor,560,udp,rmonitord,,,,,,,, monitor,561,tcp,,,,,,,,, monitor,561,udp,,,,,,,,, chshell,562,tcp,chcmd,,,,,,,, chshell,562,udp,chcmd,,,,,,,, nntps,563,tcp,nntp protocol over TLS/SSL (was snntp),[IESG],[IETF_Chair],,2018-07-06,[RFC4642],,, nntps,563,udp,nntp protocol over TLS/SSL (was snntp),[IESG],[IETF_Chair],,2018-07-06,[RFC4642],,, 9pfs,564,tcp,plan 9 file service,,,,,,,, 9pfs,564,udp,plan 9 file service,,,,,,,, whoami,565,tcp,whoami,,,,,,,, whoami,565,udp,whoami,,,,,,,, streettalk,566,tcp,streettalk,,,,,,,, streettalk,566,udp,streettalk,,,,,,,, banyan-rpc,567,tcp,banyan-rpc,[Tom_Lemaire],[Tom_Lemaire],,,,,, |
1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 | collaborator,622,tcp,Collaborator,[Johnson_Davis],[Johnson_Davis],,,,,, collaborator,622,udp,Collaborator,[Johnson_Davis],[Johnson_Davis],,,,,, oob-ws-http,623,tcp,DMTF out-of-band web services management protocol,[Jim_Davis],[Jim_Davis],2007-06,,,,, asf-rmcp,623,udp,ASF Remote Management and Control Protocol,[Carl_First],[Carl_First],,,,,, cryptoadmin,624,tcp,Crypto Admin,[Tony_Walker],[Tony_Walker],,,,,, cryptoadmin,624,udp,Crypto Admin,[Tony_Walker],[Tony_Walker],,,,,, dec-dlm,625,tcp,"DEC DLM IANA assigned this well-formed service name as a replacement for ""dec_dlm"".",[Rudi_Martin_2],[Rudi_Martin_2],,,,,, dec_dlm,625,tcp,DEC DLM,[Rudi_Martin_2],[Rudi_Martin_2],,,,,,"This entry is an alias to ""dec-dlm"". This entry is now historic, not usable for use with many common service discovery mechanisms." dec-dlm,625,udp,"DEC DLM IANA assigned this well-formed service name as a replacement for ""dec_dlm"".",[Rudi_Martin_2],[Rudi_Martin_2],,,,,, dec_dlm,625,udp,DEC DLM,[Rudi_Martin_2],[Rudi_Martin_2],,,,,,"This entry is an alias to ""dec-dlm"". This entry is now historic, not usable for use with many common service discovery mechanisms." asia,626,tcp,ASIA,[Michael_Dasenbrock],[Michael_Dasenbrock],,,,,, asia,626,udp,ASIA,[Michael_Dasenbrock],[Michael_Dasenbrock],,,,,, passgo-tivoli,627,tcp,PassGo Tivoli,[John_Rainford_2],[John_Rainford_2],,,,,, passgo-tivoli,627,udp,PassGo Tivoli,[John_Rainford_2],[John_Rainford_2],,,,,, | > > > > | | | | > | 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 | collaborator,622,tcp,Collaborator,[Johnson_Davis],[Johnson_Davis],,,,,, collaborator,622,udp,Collaborator,[Johnson_Davis],[Johnson_Davis],,,,,, oob-ws-http,623,tcp,DMTF out-of-band web services management protocol,[Jim_Davis],[Jim_Davis],2007-06,,,,, asf-rmcp,623,udp,ASF Remote Management and Control Protocol,[Carl_First],[Carl_First],,,,,, cryptoadmin,624,tcp,Crypto Admin,[Tony_Walker],[Tony_Walker],,,,,, cryptoadmin,624,udp,Crypto Admin,[Tony_Walker],[Tony_Walker],,,,,, dec-dlm,625,tcp,"DEC DLM IANA assigned this well-formed service name as a replacement for ""dec_dlm"".",[Rudi_Martin_2],[Rudi_Martin_2],,,,,, dec_dlm,625,tcp,DEC DLM,[Rudi_Martin_2],[Rudi_Martin_2],,,,,,"This entry is an alias to ""dec-dlm"". This entry is now historic, not usable for use with many common service discovery mechanisms." dec-dlm,625,udp,"DEC DLM IANA assigned this well-formed service name as a replacement for ""dec_dlm"".",[Rudi_Martin_2],[Rudi_Martin_2],,,,,, dec_dlm,625,udp,DEC DLM,[Rudi_Martin_2],[Rudi_Martin_2],,,,,,"This entry is an alias to ""dec-dlm"". This entry is now historic, not usable for use with many common service discovery mechanisms." asia,626,tcp,ASIA,[Michael_Dasenbrock],[Michael_Dasenbrock],,,,,, asia,626,udp,ASIA,[Michael_Dasenbrock],[Michael_Dasenbrock],,,,,, passgo-tivoli,627,tcp,PassGo Tivoli,[John_Rainford_2],[John_Rainford_2],,,,,, passgo-tivoli,627,udp,PassGo Tivoli,[John_Rainford_2],[John_Rainford_2],,,,,, qmqp,628,tcp,QMQP,[D_J_Bernstein],[D_J_Bernstein],,2018-04-05,,,, qmqp,628,udp,QMQP,[D_J_Bernstein],[D_J_Bernstein],,2018-04-05,,,, 3com-amp3,629,tcp,3Com AMP3,[Prakash_Banthia],[Prakash_Banthia],,,,,, 3com-amp3,629,udp,3Com AMP3,[Prakash_Banthia],[Prakash_Banthia],,,,,, rda,630,tcp,RDA,[John_Hadjioannou],[John_Hadjioannou],,,,,, rda,630,udp,RDA,[John_Hadjioannou],[John_Hadjioannou],,,,,, ipp,631,tcp,IPP (Internet Printing Protocol),[IESG],[IETF_Chair],,2018-07-06,[RFC8011],,,Defined TXT keys: See BonjourPrinting.pdf. ipp,631,udp,IPP (Internet Printing Protocol),[IESG],[IETF_Chair],,2018-07-06,[RFC8011],,,Defined TXT keys: See BonjourPrinting.pdf. ipps,631,tcp,Internet Printing Protocol over HTTPS,[IESG],[IETF_Chair],2018-07-06,,[RFC8011],,, bmpp,632,tcp,bmpp,[Troy_Rollo],[Troy_Rollo],,,,,, bmpp,632,udp,bmpp,[Troy_Rollo],[Troy_Rollo],,,,,, servstat,633,tcp,Service Status update (Sterling Software),[Greg_Rose],[Greg_Rose],,,,,, servstat,633,udp,Service Status update (Sterling Software),[Greg_Rose],[Greg_Rose],,,,,, ginad,634,tcp,ginad,[Mark_Crother],[Mark_Crother],,,,,, ginad,634,udp,ginad,[Mark_Crother],[Mark_Crother],,,,,, rlzdbase,635,tcp,RLZ DBase,[Michael_Ginn],[Michael_Ginn],,,,,, |
1310 1311 1312 1313 1314 1315 1316 | sanity,643,udp,SANity,[Peter_Viscarola],[Peter_Viscarola],,,,,, dwr,644,tcp,dwr,[Bill_Fenner],[Bill_Fenner],,,,,, dwr,644,udp,dwr,[Bill_Fenner],[Bill_Fenner],,,,,, pssc,645,tcp,PSSC,[Egon_Meier_Engelen],[Egon_Meier_Engelen],,,,,, pssc,645,udp,PSSC,[Egon_Meier_Engelen],[Egon_Meier_Engelen],,,,,, ldp,646,tcp,LDP,[Bob_Thomas],[Bob_Thomas],,,,,, ldp,646,udp,LDP,[Bob_Thomas],[Bob_Thomas],,,,,, | | | 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 | sanity,643,udp,SANity,[Peter_Viscarola],[Peter_Viscarola],,,,,, dwr,644,tcp,dwr,[Bill_Fenner],[Bill_Fenner],,,,,, dwr,644,udp,dwr,[Bill_Fenner],[Bill_Fenner],,,,,, pssc,645,tcp,PSSC,[Egon_Meier_Engelen],[Egon_Meier_Engelen],,,,,, pssc,645,udp,PSSC,[Egon_Meier_Engelen],[Egon_Meier_Engelen],,,,,, ldp,646,tcp,LDP,[Bob_Thomas],[Bob_Thomas],,,,,, ldp,646,udp,LDP,[Bob_Thomas],[Bob_Thomas],,,,,, dhcp-failover,647,tcp,DHCP Failover,[IESG],[IETF_Chair],,2018-05-21,[RFC8156],,, dhcp-failover,647,udp,DHCP Failover,[Bernard_Volz],[Bernard_Volz],,,,,, rrp,648,tcp,Registry Registrar Protocol (RRP),[Scott_Hollenbeck],[Scott_Hollenbeck],,,,,, rrp,648,udp,Registry Registrar Protocol (RRP),[Scott_Hollenbeck],[Scott_Hollenbeck],,,,,, cadview-3d,649,tcp,Cadview-3d - streaming 3d models over the internet,[David_Cooper],[David_Cooper],,,,,, cadview-3d,649,udp,Cadview-3d - streaming 3d models over the internet,[David_Cooper],[David_Cooper],,,,,, obex,650,tcp,OBEX,[Jeff_Garbers],[Jeff_Garbers],,,,,, obex,650,udp,OBEX,[Jeff_Garbers],[Jeff_Garbers],,,,,, |
1397 1398 1399 1400 1401 1402 1403 | hcp-wismar,686,udp,Hardware Control Protocol Wismar,[David_Merchant],[David_Merchant],,,,,, asipregistry,687,tcp,asipregistry,[Erik_Sea],[Erik_Sea],,,,,, asipregistry,687,udp,asipregistry,[Erik_Sea],[Erik_Sea],,,,,, realm-rusd,688,tcp,ApplianceWare managment protocol,[Stacy_Kenworthy],[Stacy_Kenworthy],,,,,, realm-rusd,688,udp,ApplianceWare managment protocol,[Stacy_Kenworthy],[Stacy_Kenworthy],,,,,, nmap,689,tcp,NMAP,[Peter_Dennis_Bartok],[Peter_Dennis_Bartok],,,,,, nmap,689,udp,NMAP,[Peter_Dennis_Bartok],[Peter_Dennis_Bartok],,,,,, | | | | 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 | hcp-wismar,686,udp,Hardware Control Protocol Wismar,[David_Merchant],[David_Merchant],,,,,, asipregistry,687,tcp,asipregistry,[Erik_Sea],[Erik_Sea],,,,,, asipregistry,687,udp,asipregistry,[Erik_Sea],[Erik_Sea],,,,,, realm-rusd,688,tcp,ApplianceWare managment protocol,[Stacy_Kenworthy],[Stacy_Kenworthy],,,,,, realm-rusd,688,udp,ApplianceWare managment protocol,[Stacy_Kenworthy],[Stacy_Kenworthy],,,,,, nmap,689,tcp,NMAP,[Peter_Dennis_Bartok],[Peter_Dennis_Bartok],,,,,, nmap,689,udp,NMAP,[Peter_Dennis_Bartok],[Peter_Dennis_Bartok],,,,,, vatp,690,tcp,Velneo Application Transfer Protocol,[Velneo],[David_Gutierrez],,2015-02-03,,,, vatp,690,udp,Velneo Application Transfer Protocol,[Velneo],[David_Gutierrez],,2015-02-03,,,, msexch-routing,691,tcp,MS Exchange Routing,[David_Lemson],[David_Lemson],,,,,, msexch-routing,691,udp,MS Exchange Routing,[David_Lemson],[David_Lemson],,,,,, hyperwave-isp,692,tcp,Hyperwave-ISP,[Gerald_Mesaric],[Gerald_Mesaric],,,,,, hyperwave-isp,692,udp,Hyperwave-ISP,[Gerald_Mesaric],[Gerald_Mesaric],,,,,, connendp,693,tcp,almanid Connection Endpoint,[Ronny_Bremer],[Ronny_Bremer],,,,,, connendp,693,udp,almanid Connection Endpoint,[Ronny_Bremer],[Ronny_Bremer],,,,,, ha-cluster,694,tcp,ha-cluster,[Alan_Robertson],[Alan_Robertson],,,,,, |
1481 1482 1483 1484 1485 1486 1487 | pump,751,udp,,,,,,,,, qrh,752,tcp,,,,,,,,, qrh,752,udp,,,,,,,,, rrh,753,tcp,,,,,,,,, rrh,753,udp,,,,,,,,, tell,754,tcp,send,[Josyula_R_Rao],[Josyula_R_Rao],,,,,, tell,754,udp,send,[Josyula_R_Rao],[Josyula_R_Rao],,,,,, | | | 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 | pump,751,udp,,,,,,,,, qrh,752,tcp,,,,,,,,, qrh,752,udp,,,,,,,,, rrh,753,tcp,,,,,,,,, rrh,753,udp,,,,,,,,, tell,754,tcp,send,[Josyula_R_Rao],[Josyula_R_Rao],,,,,, tell,754,udp,send,[Josyula_R_Rao],[Josyula_R_Rao],,,,,, ,755-757,,Unassigned,,,,,,,, nlogin,758,tcp,,,,,,,,, nlogin,758,udp,,,,,,,,, con,759,tcp,,,,,,,,, con,759,udp,,,,,,,,, ns,760,tcp,,,,,,,,, ns,760,udp,,,,,,,,, rxe,761,tcp,,,,,,,,, |
1566 1567 1568 1569 1570 1571 1572 | netconfsoapbeep,833,tcp,NETCONF for SOAP over BEEP,,,,,[RFC4743],,, netconfsoapbeep,833,udp,NETCONF for SOAP over BEEP,,,,,[RFC4743],,, ,834-846,,Unassigned,,,,,,,, dhcp-failover2,847,tcp,dhcp-failover 2,[Bernard_Volz],[Bernard_Volz],,,,,, dhcp-failover2,847,udp,dhcp-failover 2,[Bernard_Volz],[Bernard_Volz],,,,,, gdoi,848,tcp,GDOI,,,,,[RFC3547],,, gdoi,848,udp,GDOI,,,,,[RFC3547],,, | > > > > > | | | | | > > > > | 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 | netconfsoapbeep,833,tcp,NETCONF for SOAP over BEEP,,,,,[RFC4743],,, netconfsoapbeep,833,udp,NETCONF for SOAP over BEEP,,,,,[RFC4743],,, ,834-846,,Unassigned,,,,,,,, dhcp-failover2,847,tcp,dhcp-failover 2,[Bernard_Volz],[Bernard_Volz],,,,,, dhcp-failover2,847,udp,dhcp-failover 2,[Bernard_Volz],[Bernard_Volz],,,,,, gdoi,848,tcp,GDOI,,,,,[RFC3547],,, gdoi,848,udp,GDOI,,,,,[RFC3547],,, ,849-852,,Unassigned,,,,,,,, domain-s,853,tcp,DNS query-response protocol run over TLS/DTLS,[IESG],[IETF_Chair],2015-10-08,2017-01-23,[RFC7858][RFC8094],,, domain-s,853,udp,DNS query-response protocol run over TLS/DTLS,[IESG],[IETF_Chair],2015-10-08,2017-01-23,[RFC7858][RFC8094],,, dlep,854,tcp,Dynamic Link Exchange Protocol (DLEP),[IESG],[IETF_Chair],2017-04-03,,[RFC8175],,, dlep,854,udp,Dynamic Link Exchange Protocol (DLEP),[IESG],[IETF_Chair],2017-04-03,,[RFC8175],,, ,855-859,,Unassigned,,,,,,,, iscsi,860,tcp,iSCSI,[IESG],[IETF_Chair],,2013-08-27,[RFC7143],,, iscsi,860,udp,iSCSI,[IESG],[IETF_Chair],,2013-08-27,[RFC7143],,, owamp-control,861,tcp,OWAMP-Control,[IESG],[IETF_Chair],,,[RFC4656],,, owamp-test,861,udp,OWAMP-Test,[IESG],[IETF_Chair],,2018-12-21,[RFC8545],,, twamp-control,862,tcp,TWAMP-Control,[IESG],[IETF_Chair],,,[RFC5357],,, twamp-test,862,udp,TWAMP-Test Receiver Port,[IESG],[IETF_Chair],,2018-12-21,[RFC8545],,, ,863-872,,Unassigned,,,,,,,, rsync,873,tcp,rsync,[Andrew_Tridgell],[Andrew_Tridgell],,,,,, rsync,873,udp,rsync,[Andrew_Tridgell],[Andrew_Tridgell],,,,,, ,874-885,,Unassigned,,,,,,,, iclcnet-locate,886,tcp,ICL coNETion locate server,[Bob_Lyon],[Bob_Lyon],,,,,, iclcnet-locate,886,udp,ICL coNETion locate server,[Bob_Lyon],[Bob_Lyon],,,,,, iclcnet-svinfo,887,tcp,"ICL coNETion server info IANA assigned this well-formed service name as a replacement for ""iclcnet_svinfo"".",[Bob_Lyon],[Bob_Lyon],,,,,, iclcnet_svinfo,887,tcp,ICL coNETion server info,[Bob_Lyon],[Bob_Lyon],,,,,,"This entry is an alias to ""iclcnet-svinfo"". This entry is now historic, not usable for use with many common service discovery mechanisms." iclcnet-svinfo,887,udp,"ICL coNETion server info IANA assigned this well-formed service name as a replacement for ""iclcnet_svinfo"".",[Bob_Lyon],[Bob_Lyon],,,,,, iclcnet_svinfo,887,udp,ICL coNETion server info,[Bob_Lyon],[Bob_Lyon],,,,,,"This entry is an alias to ""iclcnet-svinfo"". This entry is now historic, not usable for use with many common service discovery mechanisms." accessbuilder,888,tcp,AccessBuilder,[Steve_Sweeney],[Steve_Sweeney],,,,,, accessbuilder,888,udp,AccessBuilder,[Steve_Sweeney],[Steve_Sweeney],,,,,, cddbp,888,tcp,CD Database Protocol,[Steve_Scherf],[Steve_Scherf],,,,,,This entry records an unassigned but widespread use |
1610 1611 1612 1613 1614 1615 1616 | kink,910,udp,Kerberized Internet Negotiation of Keys (KINK),,,,,[RFC4430],,, xact-backup,911,tcp,xact-backup,[Bill_Carroll],[Bill_Carroll],,,,,, xact-backup,911,udp,xact-backup,[Bill_Carroll],[Bill_Carroll],,,,,, apex-mesh,912,tcp,APEX relay-relay service,,,,,,,, apex-mesh,912,udp,APEX relay-relay service,,,,,,,, apex-edge,913,tcp,APEX endpoint-relay service,,,,,[RFC3340],,, apex-edge,913,udp,APEX endpoint-relay service,,,,,[RFC3340],,, | > > > | | | | | > > | > | 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 | kink,910,udp,Kerberized Internet Negotiation of Keys (KINK),,,,,[RFC4430],,, xact-backup,911,tcp,xact-backup,[Bill_Carroll],[Bill_Carroll],,,,,, xact-backup,911,udp,xact-backup,[Bill_Carroll],[Bill_Carroll],,,,,, apex-mesh,912,tcp,APEX relay-relay service,,,,,,,, apex-mesh,912,udp,APEX relay-relay service,,,,,,,, apex-edge,913,tcp,APEX endpoint-relay service,,,,,[RFC3340],,, apex-edge,913,udp,APEX endpoint-relay service,,,,,[RFC3340],,, ,914-952,,Unassigned,,,,,,,, rndc,953,tcp,BIND9 remote name daemon controller,[Internet_Systems_Consortium_Inc],[Ray_Bellis],2017-06-08,,,,, ,953,udp,Reserved,,,,,,,, ,954-988,,Unassigned,,,,,,,, ftps-data,989,tcp,"ftp protocol, data, over TLS/SSL",,,,,,,, ftps-data,989,udp,"ftp protocol, data, over TLS/SSL",,,,,,,, ftps,990,tcp,"ftp protocol, control, over TLS/SSL",[Christopher_Allen],[Christopher_Allen],,,,,, ftps,990,udp,"ftp protocol, control, over TLS/SSL",[Christopher_Allen],[Christopher_Allen],,,,,, nas,991,tcp,Netnews Administration System,[Vera_Heinau][Heiko_Schlichting],[Vera_Heinau][Heiko_Schlichting],,2017-02-10,[RFC4707],,, nas,991,udp,Netnews Administration System,[Vera_Heinau][Heiko_Schlichting],[Vera_Heinau][Heiko_Schlichting],,2017-02-10,[RFC4707],,, telnets,992,tcp,telnet protocol over TLS/SSL,,,,,,,, telnets,992,udp,telnet protocol over TLS/SSL,,,,,,,, imaps,993,tcp,IMAP over TLS protocol,[IESG],[IETF_Chair],,2017-12-12,[RFC8314],,, imaps,993,udp,imap4 protocol over TLS/SSL,,,,,,,, ,994,tcp,Reserved,,,,2011-08-31,,,,(previous contact was[Christopher_Allen]) ,994,udp,Reserved,,,,,,,, pop3s,995,tcp,POP3 over TLS protocol,[IESG],[IETF_Chair],,2017-12-12,[RFC8314],,, pop3s,995,udp,pop3 protocol over TLS/SSL (was spop3),[Gordon_Mangione],[Gordon_Mangione],,,,,, vsinet,996,tcp,vsinet,[Rob_Juergens],[Rob_Juergens],,,,,, vsinet,996,udp,vsinet,[Rob_Juergens],[Rob_Juergens],,,,,, maitrd,997,tcp,,,,,,,,, maitrd,997,udp,,,,,,,,, busboy,998,tcp,,,,,,,,, puparp,998,udp,,,,,,,,, garcon,999,tcp,,,,,,,,, applix,999,udp,Applix ac,,,,,,,, puprouter,999,tcp,,,,,,,,, puprouter,999,udp,,,,,,,,, cadlock2,1000,tcp,,,,,,,,, cadlock2,1000,udp,,,,,,,,, webpush,1001,tcp,HTTP Web Push,[IESG],[IETF_Chair],2016-11-01,,[RFC8030],,, ,1001,udp,Reserved,,,,,,,, ,1002-1007,,Unassigned,,,,,,,, ,1008,udp,Possibly used by Sun Solaris????,,,,,,,, ,1009,,Unassigned,,,,,,,, surf,1010,tcp,surf,[Joseph_Geer],[Joseph_Geer],,,,,, surf,1010,udp,surf,[Joseph_Geer],[Joseph_Geer],,,,,, ,1011-1020,,Reserved,,,,,,,, exp1,1021,tcp,RFC3692-style Experiment 1,[IESG],[IETF_Chair],,,[1][RFC4727][RFC6335],,, exp1,1021,udp,RFC3692-style Experiment 1,[IESG],[IETF_Chair],,,[1][RFC4727][RFC6335],,, exp1,1021,sctp,RFC3692-style Experiment 1,[IESG],[IETF_Chair],,,[1][RFC4727][RFC6335],,, exp1,1021,dccp,RFC3692-style Experiment 1,[IESG],[IETF_Chair],,,[1][RFC4727][RFC6335],,, |
1670 1671 1672 1673 1674 1675 1676 | ,1030,,Reserved,,,,2013-05-24,,,,This entry is being removed on 2013-05-24. ,1031,,Reserved,,,,2013-05-24,,,,This entry is being removed on 2013-05-24. ,1032,,Reserved,,,,2013-05-24,,,,This entry is being removed on 2013-05-24. netinfo-local,1033,tcp,local netinfo port,[Marc_Majka],[Marc_Majka],2002-08,,,,, netinfo-local,1033,udp,local netinfo port,[Marc_Majka],[Marc_Majka],2002-08,,,,, activesync,1034,tcp,ActiveSync Notifications,[Sandra_Vargas],[Sandra_Vargas],2003-03,,,,, activesync,1034,udp,ActiveSync Notifications,[Sandra_Vargas],[Sandra_Vargas],2003-03,,,,, | | | | 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 | ,1030,,Reserved,,,,2013-05-24,,,,This entry is being removed on 2013-05-24. ,1031,,Reserved,,,,2013-05-24,,,,This entry is being removed on 2013-05-24. ,1032,,Reserved,,,,2013-05-24,,,,This entry is being removed on 2013-05-24. netinfo-local,1033,tcp,local netinfo port,[Marc_Majka],[Marc_Majka],2002-08,,,,, netinfo-local,1033,udp,local netinfo port,[Marc_Majka],[Marc_Majka],2002-08,,,,, activesync,1034,tcp,ActiveSync Notifications,[Sandra_Vargas],[Sandra_Vargas],2003-03,,,,, activesync,1034,udp,ActiveSync Notifications,[Sandra_Vargas],[Sandra_Vargas],2003-03,,,,, mxxrlogin,1035,tcp,MX-XR RPC,[Valassis],[John_Eckert],2003-04,2015-05-05,,,, mxxrlogin,1035,udp,MX-XR RPC,[Valassis],[John_Eckert],2003-04,2015-05-05,,,, nsstp,1036,tcp,Nebula Secure Segment Transfer Protocol,[Steve_Ravida],[Steve_Ravida],,,,,, nsstp,1036,udp,Nebula Secure Segment Transfer Protocol,[Steve_Ravida],[Steve_Ravida],,,,,, ams,1037,tcp,AMS,[Ronald_R_Ohmer],[Ronald_R_Ohmer],2004-02,,,,, ams,1037,udp,AMS,[Ronald_R_Ohmer],[Ronald_R_Ohmer],2004-02,,,,, mtqp,1038,tcp,Message Tracking Query Protocol,,,,,[RFC3887],,, mtqp,1038,udp,Message Tracking Query Protocol,,,,,[RFC3887],,, sbl,1039,tcp,Streamlined Blackhole,[Jonathan_A_Zdziaras],[Jonathan_A_Zdziaras],2004-11,,,,, |
1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 | jstel,1064,tcp,JSTEL,[Duane_Kiser],[Duane_Kiser],,,,,, jstel,1064,udp,JSTEL,[Duane_Kiser],[Duane_Kiser],,,,,, syscomlan,1065,tcp,SYSCOMLAN,[Alexandre_Lechenne],[Alexandre_Lechenne],2008-12-10,,,,, syscomlan,1065,udp,SYSCOMLAN,[Alexandre_Lechenne],[Alexandre_Lechenne],2008-12-10,,,,, fpo-fns,1066,tcp,FPO-FNS,[Jens_Klose],[Jens_Klose],,,,,, fpo-fns,1066,udp,FPO-FNS,[Jens_Klose],[Jens_Klose],,,,,, instl-boots,1067,tcp,"Installation Bootstrap Proto. Serv. IANA assigned this well-formed service name as a replacement for ""instl_boots"".",,,,,,,, instl_boots,1067,tcp,Installation Bootstrap Proto. Serv.,,,,,,,,"This entry is an alias to ""instl-boots"". This entry is now historic, not usable for use with many common service discovery mechanisms." instl-boots,1067,udp,"Installation Bootstrap Proto. Serv. IANA assigned this well-formed service name as a replacement for ""instl_boots"".",,,,,,,, instl_boots,1067,udp,Installation Bootstrap Proto. Serv.,,,,,,,,"This entry is an alias to ""instl-boots"". This entry is now historic, not usable for use with many common service discovery mechanisms." instl-bootc,1068,tcp,"Installation Bootstrap Proto. Cli. IANA assigned this well-formed service name as a replacement for ""instl_bootc"".",[David_Arko],[David_Arko],,,,,, instl_bootc,1068,tcp,Installation Bootstrap Proto. Cli.,[David_Arko],[David_Arko],,,,,,"This entry is an alias to ""instl-bootc"". This entry is now historic, not usable for use with many common service discovery mechanisms." instl-bootc,1068,udp,"Installation Bootstrap Proto. Cli. IANA assigned this well-formed service name as a replacement for ""instl_bootc"".",[David_Arko],[David_Arko],,,,,, instl_bootc,1068,udp,Installation Bootstrap Proto. Cli.,[David_Arko],[David_Arko],,,,,,"This entry is an alias to ""instl-bootc"". This entry is now historic, not usable for use with many common service discovery mechanisms." cognex-insight,1069,tcp,COGNEX-INSIGHT,[Steve_Olson],[Steve_Olson],,,,,, cognex-insight,1069,udp,COGNEX-INSIGHT,[Steve_Olson],[Steve_Olson],,,,,, gmrupdateserv,1070,tcp,GMRUpdateSERV,[Steve_Kellogg],[Steve_Kellogg],,,,,, | > > > > > > > > | 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 | jstel,1064,tcp,JSTEL,[Duane_Kiser],[Duane_Kiser],,,,,, jstel,1064,udp,JSTEL,[Duane_Kiser],[Duane_Kiser],,,,,, syscomlan,1065,tcp,SYSCOMLAN,[Alexandre_Lechenne],[Alexandre_Lechenne],2008-12-10,,,,, syscomlan,1065,udp,SYSCOMLAN,[Alexandre_Lechenne],[Alexandre_Lechenne],2008-12-10,,,,, fpo-fns,1066,tcp,FPO-FNS,[Jens_Klose],[Jens_Klose],,,,,, fpo-fns,1066,udp,FPO-FNS,[Jens_Klose],[Jens_Klose],,,,,, instl-boots,1067,tcp,"Installation Bootstrap Proto. Serv. IANA assigned this well-formed service name as a replacement for ""instl_boots"".",,,,,,,, instl_boots,1067,tcp,Installation Bootstrap Proto. Serv.,,,,,,,,"This entry is an alias to ""instl-boots"". This entry is now historic, not usable for use with many common service discovery mechanisms." instl-boots,1067,udp,"Installation Bootstrap Proto. Serv. IANA assigned this well-formed service name as a replacement for ""instl_boots"".",,,,,,,, instl_boots,1067,udp,Installation Bootstrap Proto. Serv.,,,,,,,,"This entry is an alias to ""instl-boots"". This entry is now historic, not usable for use with many common service discovery mechanisms." instl-bootc,1068,tcp,"Installation Bootstrap Proto. Cli. IANA assigned this well-formed service name as a replacement for ""instl_bootc"".",[David_Arko],[David_Arko],,,,,, instl_bootc,1068,tcp,Installation Bootstrap Proto. Cli.,[David_Arko],[David_Arko],,,,,,"This entry is an alias to ""instl-bootc"". This entry is now historic, not usable for use with many common service discovery mechanisms." instl-bootc,1068,udp,"Installation Bootstrap Proto. Cli. IANA assigned this well-formed service name as a replacement for ""instl_bootc"".",[David_Arko],[David_Arko],,,,,, instl_bootc,1068,udp,Installation Bootstrap Proto. Cli.,[David_Arko],[David_Arko],,,,,,"This entry is an alias to ""instl-bootc"". This entry is now historic, not usable for use with many common service discovery mechanisms." cognex-insight,1069,tcp,COGNEX-INSIGHT,[Steve_Olson],[Steve_Olson],,,,,, cognex-insight,1069,udp,COGNEX-INSIGHT,[Steve_Olson],[Steve_Olson],,,,,, gmrupdateserv,1070,tcp,GMRUpdateSERV,[Steve_Kellogg],[Steve_Kellogg],,,,,, |
1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 | omnivision,1135,tcp,OmniVision Communication Service,[Serge_Vacquier],[Serge_Vacquier],2006-02,,,,, omnivision,1135,udp,OmniVision Communication Service,[Serge_Vacquier],[Serge_Vacquier],2006-02,,,,, hhb-gateway,1136,tcp,HHB Gateway Control,[Richard_Harwell],[Richard_Harwell],2006-02,,,,, hhb-gateway,1136,udp,HHB Gateway Control,[Richard_Harwell],[Richard_Harwell],2006-02,,,,, trim,1137,tcp,TRIM Workgroup Service,[Siva_Poobalasingam],[Siva_Poobalasingam],2006-03,,,,, trim,1137,udp,TRIM Workgroup Service,[Siva_Poobalasingam],[Siva_Poobalasingam],2006-03,,,,, encrypted-admin,1138,tcp,"encrypted admin requests IANA assigned this well-formed service name as a replacement for ""encrypted_admin"".",[Michael_Elizarov],[Michael_Elizarov],2007-01,,,,, encrypted_admin,1138,tcp,encrypted admin requests,[Michael_Elizarov],[Michael_Elizarov],2007-01,,,,,"This entry is an alias to ""encrypted-admin"". This entry is now historic, not usable for use with many common service discovery mechanisms." encrypted-admin,1138,udp,"encrypted admin requests IANA assigned this well-formed service name as a replacement for ""encrypted_admin"".",[Michael_Elizarov],[Michael_Elizarov],2007-01,,,,, encrypted_admin,1138,udp,encrypted admin requests,[Michael_Elizarov],[Michael_Elizarov],2007-01,,,,,"This entry is an alias to ""encrypted-admin"". This entry is now historic, not usable for use with many common service discovery mechanisms." evm,1139,tcp,Enterprise Virtual Manager,[Thomas_Hennessy],[Thomas_Hennessy],2007-10-04,,,,, evm,1139,udp,Enterprise Virtual Manager,[Thomas_Hennessy],[Thomas_Hennessy],2007-10-04,,,,, autonoc,1140,tcp,AutoNOC Network Operations Protocol,[Kyle_Lussier],[Kyle_Lussier],2005-12,,,,, | > > > > | 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 | omnivision,1135,tcp,OmniVision Communication Service,[Serge_Vacquier],[Serge_Vacquier],2006-02,,,,, omnivision,1135,udp,OmniVision Communication Service,[Serge_Vacquier],[Serge_Vacquier],2006-02,,,,, hhb-gateway,1136,tcp,HHB Gateway Control,[Richard_Harwell],[Richard_Harwell],2006-02,,,,, hhb-gateway,1136,udp,HHB Gateway Control,[Richard_Harwell],[Richard_Harwell],2006-02,,,,, trim,1137,tcp,TRIM Workgroup Service,[Siva_Poobalasingam],[Siva_Poobalasingam],2006-03,,,,, trim,1137,udp,TRIM Workgroup Service,[Siva_Poobalasingam],[Siva_Poobalasingam],2006-03,,,,, encrypted-admin,1138,tcp,"encrypted admin requests IANA assigned this well-formed service name as a replacement for ""encrypted_admin"".",[Michael_Elizarov],[Michael_Elizarov],2007-01,,,,, encrypted_admin,1138,tcp,encrypted admin requests,[Michael_Elizarov],[Michael_Elizarov],2007-01,,,,,"This entry is an alias to ""encrypted-admin"". This entry is now historic, not usable for use with many common service discovery mechanisms." encrypted-admin,1138,udp,"encrypted admin requests IANA assigned this well-formed service name as a replacement for ""encrypted_admin"".",[Michael_Elizarov],[Michael_Elizarov],2007-01,,,,, encrypted_admin,1138,udp,encrypted admin requests,[Michael_Elizarov],[Michael_Elizarov],2007-01,,,,,"This entry is an alias to ""encrypted-admin"". This entry is now historic, not usable for use with many common service discovery mechanisms." evm,1139,tcp,Enterprise Virtual Manager,[Thomas_Hennessy],[Thomas_Hennessy],2007-10-04,,,,, evm,1139,udp,Enterprise Virtual Manager,[Thomas_Hennessy],[Thomas_Hennessy],2007-10-04,,,,, autonoc,1140,tcp,AutoNOC Network Operations Protocol,[Kyle_Lussier],[Kyle_Lussier],2005-12,,,,, |
2079 2080 2081 2082 2083 2084 2085 | tgp,1223,udp,TrulyGlobal Protocol,[Gur_Kimchi],[Gur_Kimchi],2008-05-20,,,,, vpnz,1224,tcp,VPNz,[Tom_Strack],[Tom_Strack],,,,,, vpnz,1224,udp,VPNz,[Tom_Strack],[Tom_Strack],,,,,, slinkysearch,1225,tcp,SLINKYSEARCH,[Desmond_Chan],[Desmond_Chan],,,,,, slinkysearch,1225,udp,SLINKYSEARCH,[Desmond_Chan],[Desmond_Chan],,,,,, stgxfws,1226,tcp,STGXFWS,[Tetsuya_Shioda],[Tetsuya_Shioda],,,,,, stgxfws,1226,udp,STGXFWS,[Tetsuya_Shioda],[Tetsuya_Shioda],,,,,, | | | | 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 | tgp,1223,udp,TrulyGlobal Protocol,[Gur_Kimchi],[Gur_Kimchi],2008-05-20,,,,, vpnz,1224,tcp,VPNz,[Tom_Strack],[Tom_Strack],,,,,, vpnz,1224,udp,VPNz,[Tom_Strack],[Tom_Strack],,,,,, slinkysearch,1225,tcp,SLINKYSEARCH,[Desmond_Chan],[Desmond_Chan],,,,,, slinkysearch,1225,udp,SLINKYSEARCH,[Desmond_Chan],[Desmond_Chan],,,,,, stgxfws,1226,tcp,STGXFWS,[Tetsuya_Shioda],[Tetsuya_Shioda],,,,,, stgxfws,1226,udp,STGXFWS,[Tetsuya_Shioda],[Tetsuya_Shioda],,,,,, dns2go,1227,tcp,DNS2Go,[Deerfield_Communications_Inc],[Mike_Courterier],,2015-07-15,,,, dns2go,1227,udp,DNS2Go,[Deerfield_Communications_Inc],[Mike_Courterier],,2015-07-15,,,, florence,1228,tcp,FLORENCE,[Brian_Trammell],[Brian_Trammell],,,,,, florence,1228,udp,FLORENCE,[Brian_Trammell],[Brian_Trammell],,,,,, zented,1229,tcp,ZENworks Tiered Electronic Distribution,[Ty_Ellis],[Ty_Ellis],,,,,, zented,1229,udp,ZENworks Tiered Electronic Distribution,[Ty_Ellis],[Ty_Ellis],,,,,, periscope,1230,tcp,Periscope,[Kevin_Madden],[Kevin_Madden],,,,,, periscope,1230,udp,Periscope,[Kevin_Madden],[Kevin_Madden],,,,,, menandmice-lpm,1231,tcp,menandmice-lpm,[Sigfus_Magnusson],[Sigfus_Magnusson],,,,,, |
2141 2142 2143 2144 2145 2146 2147 | de-noc,1254,udp,de-noc,,,,,,,, de-cache-query,1255,tcp,de-cache-query,,,,,,,, de-cache-query,1255,udp,de-cache-query,,,,,,,, de-server,1256,tcp,de-server,[Jeff_Burdette],[Jeff_Burdette],,,,,, de-server,1256,udp,de-server,[Jeff_Burdette],[Jeff_Burdette],,,,,, shockwave2,1257,tcp,Shockwave 2,[Dave_Simmons],[Dave_Simmons],,,,,, shockwave2,1257,udp,Shockwave 2,[Dave_Simmons],[Dave_Simmons],,,,,, | | | | 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 | de-noc,1254,udp,de-noc,,,,,,,, de-cache-query,1255,tcp,de-cache-query,,,,,,,, de-cache-query,1255,udp,de-cache-query,,,,,,,, de-server,1256,tcp,de-server,[Jeff_Burdette],[Jeff_Burdette],,,,,, de-server,1256,udp,de-server,[Jeff_Burdette],[Jeff_Burdette],,,,,, shockwave2,1257,tcp,Shockwave 2,[Dave_Simmons],[Dave_Simmons],,,,,, shockwave2,1257,udp,Shockwave 2,[Dave_Simmons],[Dave_Simmons],,,,,, opennl,1258,tcp,Open Network Library,[Phil_Frisbie],[Phil_Frisbie],,,,,, opennl,1258,udp,Open Network Library,[Phil_Frisbie],[Phil_Frisbie],,,,,, opennl-voice,1259,tcp,Open Network Library Voice,[Phil_Frisbie],[Phil_Frisbie],,,,,, opennl-voice,1259,udp,Open Network Library Voice,[Phil_Frisbie],[Phil_Frisbie],,,,,, ibm-ssd,1260,tcp,ibm-ssd,[Barry_Whyte],[Barry_Whyte],,,,,, ibm-ssd,1260,udp,ibm-ssd,[Barry_Whyte],[Barry_Whyte],,,,,, mpshrsv,1261,tcp,mpshrsv,[Makoto_Ikeyama],[Makoto_Ikeyama],,,,,, mpshrsv,1261,udp,mpshrsv,[Makoto_Ikeyama],[Makoto_Ikeyama],,,,,, qnts-orb,1262,tcp,QNTS-ORB,[Raghurama_Bhat],[Raghurama_Bhat],,,,,, |
2181 2182 2183 2184 2185 2186 2187 | t1distproc,1274,udp,t1distproc,[Julian_Biddle],[Julian_Biddle],,,,,, ivcollector,1275,tcp,ivcollector,,,,,,,, ivcollector,1275,udp,ivcollector,,,,,,,, ,1276,tcp,Reserved,,,,2014-05-23,,,,This entry has been removed on 2014-05-23. ,1276,udp,Reserved,,,,2014-05-23,,,,This entry has been removed on 2014-05-23. miva-mqs,1277,tcp,mqs,[Miva_Corporation],[Miva_Corporation],,,,,, miva-mqs,1277,udp,mqs,[Miva_Corporation],[Miva_Corporation],,,,,, | | | | 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 | t1distproc,1274,udp,t1distproc,[Julian_Biddle],[Julian_Biddle],,,,,, ivcollector,1275,tcp,ivcollector,,,,,,,, ivcollector,1275,udp,ivcollector,,,,,,,, ,1276,tcp,Reserved,,,,2014-05-23,,,,This entry has been removed on 2014-05-23. ,1276,udp,Reserved,,,,2014-05-23,,,,This entry has been removed on 2014-05-23. miva-mqs,1277,tcp,mqs,[Miva_Corporation],[Miva_Corporation],,,,,, miva-mqs,1277,udp,mqs,[Miva_Corporation],[Miva_Corporation],,,,,, dellwebadmin-1,1278,tcp,Dell Web Admin 1,[Bridget_Navoda],[Bridget_Navoda],,,,,, dellwebadmin-1,1278,udp,Dell Web Admin 1,[Bridget_Navoda],[Bridget_Navoda],,,,,, dellwebadmin-2,1279,tcp,Dell Web Admin 2,[Bridget_Navoda],[Bridget_Navoda],,,,,, dellwebadmin-2,1279,udp,Dell Web Admin 2,[Bridget_Navoda],[Bridget_Navoda],,,,,, pictrography,1280,tcp,Pictrography,[Takashi_Hoshino],[Takashi_Hoshino],,,,,, pictrography,1280,udp,Pictrography,[Takashi_Hoshino],[Takashi_Hoshino],,,,,, healthd,1281,tcp,healthd,[James_E_Housley],[James_E_Housley],,,,,, healthd,1281,udp,healthd,[James_E_Housley],[James_E_Housley],,,,,, emperion,1282,tcp,Emperion,[Claus_Thor_Barth],[Claus_Thor_Barth],,,,,, |
2227 2228 2229 2230 2231 2232 2233 | sdproxy,1297,udp,sdproxy,[Raimond_Diederik],[Raimond_Diederik],,,,,, lpcp,1298,tcp,lpcp,[Christian_Stredicke],[Christian_Stredicke],,,,,, lpcp,1298,udp,lpcp,[Christian_Stredicke],[Christian_Stredicke],,,,,, hp-sci,1299,tcp,hp-sci,[Kim_Scott],[Kim_Scott],,,,,, hp-sci,1299,udp,hp-sci,[Kim_Scott],[Kim_Scott],,,,,, h323hostcallsc,1300,tcp,H.323 Secure Call Control Signalling,[ITU-T],[ITU-T_TSB],,2013-01-31,,,, h323hostcallsc,1300,udp,H.323 Secure Call Control Signalling,[ITU-T],[ITU-T_TSB],,2013-01-31,,,, | | | | | | 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 | sdproxy,1297,udp,sdproxy,[Raimond_Diederik],[Raimond_Diederik],,,,,, lpcp,1298,tcp,lpcp,[Christian_Stredicke],[Christian_Stredicke],,,,,, lpcp,1298,udp,lpcp,[Christian_Stredicke],[Christian_Stredicke],,,,,, hp-sci,1299,tcp,hp-sci,[Kim_Scott],[Kim_Scott],,,,,, hp-sci,1299,udp,hp-sci,[Kim_Scott],[Kim_Scott],,,,,, h323hostcallsc,1300,tcp,H.323 Secure Call Control Signalling,[ITU-T],[ITU-T_TSB],,2013-01-31,,,, h323hostcallsc,1300,udp,H.323 Secure Call Control Signalling,[ITU-T],[ITU-T_TSB],,2013-01-31,,,, ,1301,tcp,Reserved,,,,2019-10-30,,,,De-Assigned on 2019-10-30 ,1301,udp,Reserved,,,,2019-10-30,,,,De-Assigned on 2019-10-30 ,1302,tcp,Reserved,,,,2019-10-30,,,,De-Assigned on 2019-10-30 ,1302,udp,Reserved,,,,2019-10-30,,,,De-Assigned on 2019-10-30 sftsrv,1303,tcp,sftsrv,[Robert_Frazier],[Robert_Frazier],,,,,, sftsrv,1303,udp,sftsrv,[Robert_Frazier],[Robert_Frazier],,,,,, boomerang,1304,tcp,Boomerang,[Bruce_Lueckenhoff],[Bruce_Lueckenhoff],,,,,, boomerang,1304,udp,Boomerang,[Bruce_Lueckenhoff],[Bruce_Lueckenhoff],,,,,, pe-mike,1305,tcp,pe-mike,[Stephen_Hemminger],[Stephen_Hemminger],,,,,, pe-mike,1305,udp,pe-mike,[Stephen_Hemminger],[Stephen_Hemminger],,,,,, re-conn-proto,1306,tcp,RE-Conn-Proto,[Sandeep_Singhal],[Sandeep_Singhal],,,,,, |
2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 | husky,1310,tcp,Husky,[Mark_Zang],[Mark_Zang],,,,,, husky,1310,udp,Husky,[Mark_Zang],[Mark_Zang],,,,,, rxmon,1311,tcp,RxMon,[Javier_Jiminez],[Javier_Jiminez],,,,,, rxmon,1311,udp,RxMon,[Javier_Jiminez],[Javier_Jiminez],,,,,, sti-envision,1312,tcp,STI Envision,[Don_Stedman],[Don_Stedman],,,,,, sti-envision,1312,udp,STI Envision,[Don_Stedman],[Don_Stedman],,,,,, bmc-patroldb,1313,tcp,"BMC_PATROLDB IANA assigned this well-formed service name as a replacement for ""bmc_patroldb"".",[Portnoy_Boxman],[Portnoy_Boxman],,,,,, bmc_patroldb,1313,tcp,BMC_PATROLDB,[Portnoy_Boxman],[Portnoy_Boxman],,,,,,"This entry is an alias to ""bmc-patroldb"". This entry is now historic, not usable for use with many common service discovery mechanisms." bmc-patroldb,1313,udp,"BMC_PATROLDB IANA assigned this well-formed service name as a replacement for ""bmc_patroldb"".",[Portnoy_Boxman],[Portnoy_Boxman],,,,,, bmc_patroldb,1313,udp,BMC_PATROLDB,[Portnoy_Boxman],[Portnoy_Boxman],,,,,,"This entry is an alias to ""bmc-patroldb"". This entry is now historic, not usable for use with many common service discovery mechanisms." pdps,1314,tcp,Photoscript Distributed Printing System,[Les_Klein],[Les_Klein],,,,,, pdps,1314,udp,Photoscript Distributed Printing System,[Les_Klein],[Les_Klein],,,,,, els,1315,tcp,"E.L.S., Event Listener Service",[Jim_Cleppe],[Jim_Cleppe],,,,,, | > > > > | 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 | husky,1310,tcp,Husky,[Mark_Zang],[Mark_Zang],,,,,, husky,1310,udp,Husky,[Mark_Zang],[Mark_Zang],,,,,, rxmon,1311,tcp,RxMon,[Javier_Jiminez],[Javier_Jiminez],,,,,, rxmon,1311,udp,RxMon,[Javier_Jiminez],[Javier_Jiminez],,,,,, sti-envision,1312,tcp,STI Envision,[Don_Stedman],[Don_Stedman],,,,,, sti-envision,1312,udp,STI Envision,[Don_Stedman],[Don_Stedman],,,,,, bmc-patroldb,1313,tcp,"BMC_PATROLDB IANA assigned this well-formed service name as a replacement for ""bmc_patroldb"".",[Portnoy_Boxman],[Portnoy_Boxman],,,,,, bmc_patroldb,1313,tcp,BMC_PATROLDB,[Portnoy_Boxman],[Portnoy_Boxman],,,,,,"This entry is an alias to ""bmc-patroldb"". This entry is now historic, not usable for use with many common service discovery mechanisms." bmc-patroldb,1313,udp,"BMC_PATROLDB IANA assigned this well-formed service name as a replacement for ""bmc_patroldb"".",[Portnoy_Boxman],[Portnoy_Boxman],,,,,, bmc_patroldb,1313,udp,BMC_PATROLDB,[Portnoy_Boxman],[Portnoy_Boxman],,,,,,"This entry is an alias to ""bmc-patroldb"". This entry is now historic, not usable for use with many common service discovery mechanisms." pdps,1314,tcp,Photoscript Distributed Printing System,[Les_Klein],[Les_Klein],,,,,, pdps,1314,udp,Photoscript Distributed Printing System,[Les_Klein],[Les_Klein],,,,,, els,1315,tcp,"E.L.S., Event Listener Service",[Jim_Cleppe],[Jim_Cleppe],,,,,, |
2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 | dbreporter,1379,tcp,Integrity Solutions,[Tim_Dawson],[Tim_Dawson],,,,,, dbreporter,1379,udp,Integrity Solutions,[Tim_Dawson],[Tim_Dawson],,,,,, telesis-licman,1380,tcp,Telesis Network License Manager,[Karl_Schendel_Jr],[Karl_Schendel_Jr],,,,,, telesis-licman,1380,udp,Telesis Network License Manager,[Karl_Schendel_Jr],[Karl_Schendel_Jr],,,,,, apple-licman,1381,tcp,Apple Network License Manager,[Earl_Wallace],[Earl_Wallace],,,,,, apple-licman,1381,udp,Apple Network License Manager,[Earl_Wallace],[Earl_Wallace],,,,,, udt-os,1382,tcp,"udt_os IANA assigned this well-formed service name as a replacement for ""udt_os"".",,,,,,,, udt_os,1382,tcp,udt_os,,,,,,,,"This entry is an alias to ""udt-os"". This entry is now historic, not usable for use with many common service discovery mechanisms." udt-os,1382,udp,"udt_os IANA assigned this well-formed service name as a replacement for ""udt_os"".",,,,,,,, udt_os,1382,udp,udt_os,,,,,,,,"This entry is an alias to ""udt-os"". This entry is now historic, not usable for use with many common service discovery mechanisms." gwha,1383,tcp,GW Hannaway Network License Manager,[J_Gabriel_Foster],[J_Gabriel_Foster],,,,,, gwha,1383,udp,GW Hannaway Network License Manager,[J_Gabriel_Foster],[J_Gabriel_Foster],,,,,, os-licman,1384,tcp,Objective Solutions License Manager,[Donald_Cornwell],[Donald_Cornwell],,,,,, os-licman,1384,udp,Objective Solutions License Manager,[Donald_Cornwell],[Donald_Cornwell],,,,,, atex-elmd,1385,tcp,"Atex Publishing License Manager IANA assigned this well-formed service name as a replacement for ""atex_elmd"".",[Brett_Sorenson],[Brett_Sorenson],,,,,, atex_elmd,1385,tcp,Atex Publishing License Manager,[Brett_Sorenson],[Brett_Sorenson],,,,,,"This entry is an alias to ""atex-elmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." atex-elmd,1385,udp,"Atex Publishing License Manager IANA assigned this well-formed service name as a replacement for ""atex_elmd"".",[Brett_Sorenson],[Brett_Sorenson],,,,,, atex_elmd,1385,udp,Atex Publishing License Manager,[Brett_Sorenson],[Brett_Sorenson],,,,,,"This entry is an alias to ""atex-elmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." checksum,1386,tcp,CheckSum License Manager,[Andreas_Glocker],[Andreas_Glocker],,,,,, checksum,1386,udp,CheckSum License Manager,[Andreas_Glocker],[Andreas_Glocker],,,,,, cadsi-lm,1387,tcp,Computer Aided Design Software Inc LM,[Sulistio_Muljadi],[Sulistio_Muljadi],,,,,, | > > > > > > > > | 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 | dbreporter,1379,tcp,Integrity Solutions,[Tim_Dawson],[Tim_Dawson],,,,,, dbreporter,1379,udp,Integrity Solutions,[Tim_Dawson],[Tim_Dawson],,,,,, telesis-licman,1380,tcp,Telesis Network License Manager,[Karl_Schendel_Jr],[Karl_Schendel_Jr],,,,,, telesis-licman,1380,udp,Telesis Network License Manager,[Karl_Schendel_Jr],[Karl_Schendel_Jr],,,,,, apple-licman,1381,tcp,Apple Network License Manager,[Earl_Wallace],[Earl_Wallace],,,,,, apple-licman,1381,udp,Apple Network License Manager,[Earl_Wallace],[Earl_Wallace],,,,,, udt-os,1382,tcp,"udt_os IANA assigned this well-formed service name as a replacement for ""udt_os"".",,,,,,,, udt_os,1382,tcp,udt_os,,,,,,,,"This entry is an alias to ""udt-os"". This entry is now historic, not usable for use with many common service discovery mechanisms." udt-os,1382,udp,"udt_os IANA assigned this well-formed service name as a replacement for ""udt_os"".",,,,,,,, udt_os,1382,udp,udt_os,,,,,,,,"This entry is an alias to ""udt-os"". This entry is now historic, not usable for use with many common service discovery mechanisms." gwha,1383,tcp,GW Hannaway Network License Manager,[J_Gabriel_Foster],[J_Gabriel_Foster],,,,,, gwha,1383,udp,GW Hannaway Network License Manager,[J_Gabriel_Foster],[J_Gabriel_Foster],,,,,, os-licman,1384,tcp,Objective Solutions License Manager,[Donald_Cornwell],[Donald_Cornwell],,,,,, os-licman,1384,udp,Objective Solutions License Manager,[Donald_Cornwell],[Donald_Cornwell],,,,,, atex-elmd,1385,tcp,"Atex Publishing License Manager IANA assigned this well-formed service name as a replacement for ""atex_elmd"".",[Brett_Sorenson],[Brett_Sorenson],,,,,, atex_elmd,1385,tcp,Atex Publishing License Manager,[Brett_Sorenson],[Brett_Sorenson],,,,,,"This entry is an alias to ""atex-elmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." atex-elmd,1385,udp,"Atex Publishing License Manager IANA assigned this well-formed service name as a replacement for ""atex_elmd"".",[Brett_Sorenson],[Brett_Sorenson],,,,,, atex_elmd,1385,udp,Atex Publishing License Manager,[Brett_Sorenson],[Brett_Sorenson],,,,,,"This entry is an alias to ""atex-elmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." checksum,1386,tcp,CheckSum License Manager,[Andreas_Glocker],[Andreas_Glocker],,,,,, checksum,1386,udp,CheckSum License Manager,[Andreas_Glocker],[Andreas_Glocker],,,,,, cadsi-lm,1387,tcp,Computer Aided Design Software Inc LM,[Sulistio_Muljadi],[Sulistio_Muljadi],,,,,, |
2463 2464 2465 2466 2467 2468 2469 | prm-nm-np,1403,udp,Prospero Resource Manager,[B_Clifford_Neuman],[B_Clifford_Neuman],,,,,, igi-lm,1404,tcp,Infinite Graphics License Manager,,,,,,,, igi-lm,1404,udp,Infinite Graphics License Manager,,,,,,,, ibm-res,1405,tcp,IBM Remote Execution Starter,,,,,,,, ibm-res,1405,udp,IBM Remote Execution Starter,,,,,,,, netlabs-lm,1406,tcp,NetLabs License Manager,,,,,,,, netlabs-lm,1406,udp,NetLabs License Manager,,,,,,,, | | | > > > > | 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 | prm-nm-np,1403,udp,Prospero Resource Manager,[B_Clifford_Neuman],[B_Clifford_Neuman],,,,,, igi-lm,1404,tcp,Infinite Graphics License Manager,,,,,,,, igi-lm,1404,udp,Infinite Graphics License Manager,,,,,,,, ibm-res,1405,tcp,IBM Remote Execution Starter,,,,,,,, ibm-res,1405,udp,IBM Remote Execution Starter,,,,,,,, netlabs-lm,1406,tcp,NetLabs License Manager,,,,,,,, netlabs-lm,1406,udp,NetLabs License Manager,,,,,,,, tibet-server,1407,tcp,TIBET Data Server,[Technical_Pursuit_Inc],[Scott_Shattuck],2015-06-16,,,,,This port has been retasked on 2015-06-16. ,1407,udp,Reserved,,,,,,,,This port has been removed on 2015-06-16. sophia-lm,1408,tcp,Sophia License Manager,[Eric_Brown],[Eric_Brown],,,,,, sophia-lm,1408,udp,Sophia License Manager,[Eric_Brown],[Eric_Brown],,,,,, here-lm,1409,tcp,Here License Manager,[David_Ison],[David_Ison],,,,,, here-lm,1409,udp,Here License Manager,[David_Ison],[David_Ison],,,,,, hiq,1410,tcp,HiQ License Manager,[Rick_Pugh],[Rick_Pugh],,,,,, hiq,1410,udp,HiQ License Manager,[Rick_Pugh],[Rick_Pugh],,,,,, af,1411,tcp,AudioFile,[Jim_Gettys],[Jim_Gettys],,,,,, af,1411,udp,AudioFile,[Jim_Gettys],[Jim_Gettys],,,,,, innosys,1412,tcp,InnoSys,,,,,,,, innosys,1412,udp,InnoSys,,,,,,,, innosys-acl,1413,tcp,Innosys-ACL,[Eric_Welch],[Eric_Welch],,,,,, innosys-acl,1413,udp,Innosys-ACL,[Eric_Welch],[Eric_Welch],,,,,, ibm-mqseries,1414,tcp,IBM MQSeries,[Roger_Meli],[Roger_Meli],,,,,, ibm-mqseries,1414,udp,IBM MQSeries,[Roger_Meli],[Roger_Meli],,,,,, dbstar,1415,tcp,DBStar,[Jeffrey_Millman],[Jeffrey_Millman],,,,,, dbstar,1415,udp,DBStar,[Jeffrey_Millman],[Jeffrey_Millman],,,,,, novell-lu6-2,1416,tcp,"Novell LU6.2 IANA assigned this well-formed service name as a replacement for ""novell-lu6.2"".",[Peter_Liu],[Peter_Liu],,,,,, novell-lu6.2,1416,tcp,Novell LU6.2,[Peter_Liu],[Peter_Liu],,,,,,"This entry is an alias to ""novell-lu6-2"". This entry is now historic, not usable for use with many common service discovery mechanisms." novell-lu6-2,1416,udp,"Novell LU6.2 IANA assigned this well-formed service name as a replacement for ""novell-lu6.2"".",[Peter_Liu],[Peter_Liu],,,,,, novell-lu6.2,1416,udp,Novell LU6.2,[Peter_Liu],[Peter_Liu],,,,,,"This entry is an alias to ""novell-lu6-2"". This entry is now historic, not usable for use with many common service discovery mechanisms." timbuktu-srv1,1417,tcp,Timbuktu Service 1 Port,,,,,,,, timbuktu-srv1,1417,udp,Timbuktu Service 1 Port,,,,,,,, timbuktu-srv2,1418,tcp,Timbuktu Service 2 Port,,,,,,,, |
2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 | infoman,1451,tcp,IBM Information Management,[Karen_Burns],[Karen_Burns],,,,,, infoman,1451,udp,IBM Information Management,[Karen_Burns],[Karen_Burns],,,,,, gtegsc-lm,1452,tcp,GTE Government Systems License Man,[Mike_Gregory],[Mike_Gregory],,,,,, gtegsc-lm,1452,udp,GTE Government Systems License Man,[Mike_Gregory],[Mike_Gregory],,,,,, genie-lm,1453,tcp,Genie License Manager,[Paul_Applegate],[Paul_Applegate],,,,,, genie-lm,1453,udp,Genie License Manager,[Paul_Applegate],[Paul_Applegate],,,,,, interhdl-elmd,1454,tcp,"interHDL License Manager IANA assigned this well-formed service name as a replacement for ""interhdl_elmd"".",[Eli_Sternheim],[Eli_Sternheim],,,,,, interhdl_elmd,1454,tcp,interHDL License Manager,[Eli_Sternheim],[Eli_Sternheim],,,,,,"This entry is an alias to ""interhdl-elmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." interhdl-elmd,1454,udp,"interHDL License Manager IANA assigned this well-formed service name as a replacement for ""interhdl_elmd"".",[Eli_Sternheim],[Eli_Sternheim],,,,,, interhdl_elmd,1454,udp,interHDL License Manager,[Eli_Sternheim],[Eli_Sternheim],,,,,,"This entry is an alias to ""interhdl-elmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." esl-lm,1455,tcp,ESL License Manager,[Abel_Chou],[Abel_Chou],,,,,, esl-lm,1455,udp,ESL License Manager,[Abel_Chou],[Abel_Chou],,,,,, dca,1456,tcp,DCA,[Jeff_Garbers_2],[Jeff_Garbers_2],,,,,, dca,1456,udp,DCA,[Jeff_Garbers_2],[Jeff_Garbers_2],,,,,, valisys-lm,1457,tcp,Valisys License Manager,[Leslie_Lincoln],[Leslie_Lincoln],,,,,, valisys-lm,1457,udp,Valisys License Manager,[Leslie_Lincoln],[Leslie_Lincoln],,,,,, nrcabq-lm,1458,tcp,Nichols Research Corp.,[Howard_Cole],[Howard_Cole],,,,,, nrcabq-lm,1458,udp,Nichols Research Corp.,[Howard_Cole],[Howard_Cole],,,,,, proshare1,1459,tcp,Proshare Notebook Application,,,,,,,, proshare1,1459,udp,Proshare Notebook Application,,,,,,,, proshare2,1460,tcp,Proshare Notebook Application,[Robin_Kar],[Robin_Kar],,,,,, proshare2,1460,udp,Proshare Notebook Application,[Robin_Kar],[Robin_Kar],,,,,, ibm-wrless-lan,1461,tcp,"IBM Wireless LAN IANA assigned this well-formed service name as a replacement for ""ibm_wrless_lan"".",[flanne],[flanne],,,,,, ibm_wrless_lan,1461,tcp,IBM Wireless LAN,[flanne],[flanne],,,,,,"This entry is an alias to ""ibm-wrless-lan"". This entry is now historic, not usable for use with many common service discovery mechanisms." ibm-wrless-lan,1461,udp,"IBM Wireless LAN IANA assigned this well-formed service name as a replacement for ""ibm_wrless_lan"".",[flanne],[flanne],,,,,, ibm_wrless_lan,1461,udp,IBM Wireless LAN,[flanne],[flanne],,,,,,"This entry is an alias to ""ibm-wrless-lan"". This entry is now historic, not usable for use with many common service discovery mechanisms." world-lm,1462,tcp,World License Manager,[Michael_S_Amirault],[Michael_S_Amirault],,,,,, world-lm,1462,udp,World License Manager,[Michael_S_Amirault],[Michael_S_Amirault],,,,,, nucleus,1463,tcp,Nucleus,[Venky_Nagar],[Venky_Nagar],,,,,, nucleus,1463,udp,Nucleus,[Venky_Nagar],[Venky_Nagar],,,,,, msl-lmd,1464,tcp,"MSL License Manager IANA assigned this well-formed service name as a replacement for ""msl_lmd"".",[Matt_Timmermans],[Matt_Timmermans],,,,,, msl_lmd,1464,tcp,MSL License Manager,[Matt_Timmermans],[Matt_Timmermans],,,,,,"This entry is an alias to ""msl-lmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." msl-lmd,1464,udp,"MSL License Manager IANA assigned this well-formed service name as a replacement for ""msl_lmd"".",[Matt_Timmermans],[Matt_Timmermans],,,,,, msl_lmd,1464,udp,MSL License Manager,[Matt_Timmermans],[Matt_Timmermans],,,,,,"This entry is an alias to ""msl-lmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." pipes,1465,tcp,Pipes Platform,[Mark_Farlin],[Mark_Farlin],,,,,, pipes,1465,udp,Pipes Platform,[Mark_Farlin],[Mark_Farlin],,,,,, oceansoft-lm,1466,tcp,Ocean Software License Manager,[Randy_Leonard],[Randy_Leonard],,,,,, | > > > > > > > > > > > > | 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 | infoman,1451,tcp,IBM Information Management,[Karen_Burns],[Karen_Burns],,,,,, infoman,1451,udp,IBM Information Management,[Karen_Burns],[Karen_Burns],,,,,, gtegsc-lm,1452,tcp,GTE Government Systems License Man,[Mike_Gregory],[Mike_Gregory],,,,,, gtegsc-lm,1452,udp,GTE Government Systems License Man,[Mike_Gregory],[Mike_Gregory],,,,,, genie-lm,1453,tcp,Genie License Manager,[Paul_Applegate],[Paul_Applegate],,,,,, genie-lm,1453,udp,Genie License Manager,[Paul_Applegate],[Paul_Applegate],,,,,, interhdl-elmd,1454,tcp,"interHDL License Manager IANA assigned this well-formed service name as a replacement for ""interhdl_elmd"".",[Eli_Sternheim],[Eli_Sternheim],,,,,, interhdl_elmd,1454,tcp,interHDL License Manager,[Eli_Sternheim],[Eli_Sternheim],,,,,,"This entry is an alias to ""interhdl-elmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." interhdl-elmd,1454,udp,"interHDL License Manager IANA assigned this well-formed service name as a replacement for ""interhdl_elmd"".",[Eli_Sternheim],[Eli_Sternheim],,,,,, interhdl_elmd,1454,udp,interHDL License Manager,[Eli_Sternheim],[Eli_Sternheim],,,,,,"This entry is an alias to ""interhdl-elmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." esl-lm,1455,tcp,ESL License Manager,[Abel_Chou],[Abel_Chou],,,,,, esl-lm,1455,udp,ESL License Manager,[Abel_Chou],[Abel_Chou],,,,,, dca,1456,tcp,DCA,[Jeff_Garbers_2],[Jeff_Garbers_2],,,,,, dca,1456,udp,DCA,[Jeff_Garbers_2],[Jeff_Garbers_2],,,,,, valisys-lm,1457,tcp,Valisys License Manager,[Leslie_Lincoln],[Leslie_Lincoln],,,,,, valisys-lm,1457,udp,Valisys License Manager,[Leslie_Lincoln],[Leslie_Lincoln],,,,,, nrcabq-lm,1458,tcp,Nichols Research Corp.,[Howard_Cole],[Howard_Cole],,,,,, nrcabq-lm,1458,udp,Nichols Research Corp.,[Howard_Cole],[Howard_Cole],,,,,, proshare1,1459,tcp,Proshare Notebook Application,,,,,,,, proshare1,1459,udp,Proshare Notebook Application,,,,,,,, proshare2,1460,tcp,Proshare Notebook Application,[Robin_Kar],[Robin_Kar],,,,,, proshare2,1460,udp,Proshare Notebook Application,[Robin_Kar],[Robin_Kar],,,,,, ibm-wrless-lan,1461,tcp,"IBM Wireless LAN IANA assigned this well-formed service name as a replacement for ""ibm_wrless_lan"".",[flanne],[flanne],,,,,, ibm_wrless_lan,1461,tcp,IBM Wireless LAN,[flanne],[flanne],,,,,,"This entry is an alias to ""ibm-wrless-lan"". This entry is now historic, not usable for use with many common service discovery mechanisms." ibm-wrless-lan,1461,udp,"IBM Wireless LAN IANA assigned this well-formed service name as a replacement for ""ibm_wrless_lan"".",[flanne],[flanne],,,,,, ibm_wrless_lan,1461,udp,IBM Wireless LAN,[flanne],[flanne],,,,,,"This entry is an alias to ""ibm-wrless-lan"". This entry is now historic, not usable for use with many common service discovery mechanisms." world-lm,1462,tcp,World License Manager,[Michael_S_Amirault],[Michael_S_Amirault],,,,,, world-lm,1462,udp,World License Manager,[Michael_S_Amirault],[Michael_S_Amirault],,,,,, nucleus,1463,tcp,Nucleus,[Venky_Nagar],[Venky_Nagar],,,,,, nucleus,1463,udp,Nucleus,[Venky_Nagar],[Venky_Nagar],,,,,, msl-lmd,1464,tcp,"MSL License Manager IANA assigned this well-formed service name as a replacement for ""msl_lmd"".",[Matt_Timmermans],[Matt_Timmermans],,,,,, msl_lmd,1464,tcp,MSL License Manager,[Matt_Timmermans],[Matt_Timmermans],,,,,,"This entry is an alias to ""msl-lmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." msl-lmd,1464,udp,"MSL License Manager IANA assigned this well-formed service name as a replacement for ""msl_lmd"".",[Matt_Timmermans],[Matt_Timmermans],,,,,, msl_lmd,1464,udp,MSL License Manager,[Matt_Timmermans],[Matt_Timmermans],,,,,,"This entry is an alias to ""msl-lmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." pipes,1465,tcp,Pipes Platform,[Mark_Farlin],[Mark_Farlin],,,,,, pipes,1465,udp,Pipes Platform,[Mark_Farlin],[Mark_Farlin],,,,,, oceansoft-lm,1466,tcp,Ocean Software License Manager,[Randy_Leonard],[Randy_Leonard],,,,,, |
2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 | afs,1483,tcp,AFS License Manager,[Michael_R_Pizolato],[Michael_R_Pizolato],,,,,, afs,1483,udp,AFS License Manager,[Michael_R_Pizolato],[Michael_R_Pizolato],,,,,, confluent,1484,tcp,Confluent License Manager,[James_Greenfiel],[James_Greenfiel],,,,,, confluent,1484,udp,Confluent License Manager,[James_Greenfiel],[James_Greenfiel],,,,,, lansource,1485,tcp,LANSource,[Christopher_Wells],[Christopher_Wells],,,,,, lansource,1485,udp,LANSource,[Christopher_Wells],[Christopher_Wells],,,,,, nms-topo-serv,1486,tcp,"nms_topo_serv IANA assigned this well-formed service name as a replacement for ""nms_topo_serv"".",[Sylvia_Siu],[Sylvia_Siu],,,,,, nms_topo_serv,1486,tcp,nms_topo_serv,[Sylvia_Siu],[Sylvia_Siu],,,,,,"This entry is an alias to ""nms-topo-serv"". This entry is now historic, not usable for use with many common service discovery mechanisms." nms-topo-serv,1486,udp,"nms_topo_serv IANA assigned this well-formed service name as a replacement for ""nms_topo_serv"".",[Sylvia_Siu],[Sylvia_Siu],,,,,, nms_topo_serv,1486,udp,nms_topo_serv,[Sylvia_Siu],[Sylvia_Siu],,,,,,"This entry is an alias to ""nms-topo-serv"". This entry is now historic, not usable for use with many common service discovery mechanisms." localinfosrvr,1487,tcp,LocalInfoSrvr,[Brian_Matthews_2],[Brian_Matthews_2],,,,,, localinfosrvr,1487,udp,LocalInfoSrvr,[Brian_Matthews_2],[Brian_Matthews_2],,,,,, docstor,1488,tcp,DocStor,[Brian_Spears],[Brian_Spears],,,,,, docstor,1488,udp,DocStor,[Brian_Spears],[Brian_Spears],,,,,, dmdocbroker,1489,tcp,dmdocbroker,[Razmik_Abnous],[Razmik_Abnous],,,,,, dmdocbroker,1489,udp,dmdocbroker,[Razmik_Abnous],[Razmik_Abnous],,,,,, insitu-conf,1490,tcp,insitu-conf,[Paul_Blacknell],[Paul_Blacknell],,,,,, insitu-conf,1490,udp,insitu-conf,[Paul_Blacknell],[Paul_Blacknell],,,,,, ,1491,,Unassigned,,,,2009-08-05,,,Unauthorized Use Known on port 1491, stone-design-1,1492,tcp,stone-design-1,[Andrew_Stone],[Andrew_Stone],,,,,, stone-design-1,1492,udp,stone-design-1,[Andrew_Stone],[Andrew_Stone],,,,,, netmap-lm,1493,tcp,"netmap_lm IANA assigned this well-formed service name as a replacement for ""netmap_lm"".",[Phillip_Magson],[Phillip_Magson],,,,,, netmap_lm,1493,tcp,netmap_lm,[Phillip_Magson],[Phillip_Magson],,,,,,"This entry is an alias to ""netmap-lm"". This entry is now historic, not usable for use with many common service discovery mechanisms." netmap-lm,1493,udp,"netmap_lm IANA assigned this well-formed service name as a replacement for ""netmap_lm"".",[Phillip_Magson],[Phillip_Magson],,,,,, netmap_lm,1493,udp,netmap_lm,[Phillip_Magson],[Phillip_Magson],,,,,,"This entry is an alias to ""netmap-lm"". This entry is now historic, not usable for use with many common service discovery mechanisms." ica,1494,tcp,ica,[John_Richardson],[John_Richardson],,,,,, ica,1494,udp,ica,[John_Richardson],[John_Richardson],,,,,, cvc,1495,tcp,cvc,[Bill_Davidson],[Bill_Davidson],,,,,, | > > > > > > > > | 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 | afs,1483,tcp,AFS License Manager,[Michael_R_Pizolato],[Michael_R_Pizolato],,,,,, afs,1483,udp,AFS License Manager,[Michael_R_Pizolato],[Michael_R_Pizolato],,,,,, confluent,1484,tcp,Confluent License Manager,[James_Greenfiel],[James_Greenfiel],,,,,, confluent,1484,udp,Confluent License Manager,[James_Greenfiel],[James_Greenfiel],,,,,, lansource,1485,tcp,LANSource,[Christopher_Wells],[Christopher_Wells],,,,,, lansource,1485,udp,LANSource,[Christopher_Wells],[Christopher_Wells],,,,,, nms-topo-serv,1486,tcp,"nms_topo_serv IANA assigned this well-formed service name as a replacement for ""nms_topo_serv"".",[Sylvia_Siu],[Sylvia_Siu],,,,,, nms_topo_serv,1486,tcp,nms_topo_serv,[Sylvia_Siu],[Sylvia_Siu],,,,,,"This entry is an alias to ""nms-topo-serv"". This entry is now historic, not usable for use with many common service discovery mechanisms." nms-topo-serv,1486,udp,"nms_topo_serv IANA assigned this well-formed service name as a replacement for ""nms_topo_serv"".",[Sylvia_Siu],[Sylvia_Siu],,,,,, nms_topo_serv,1486,udp,nms_topo_serv,[Sylvia_Siu],[Sylvia_Siu],,,,,,"This entry is an alias to ""nms-topo-serv"". This entry is now historic, not usable for use with many common service discovery mechanisms." localinfosrvr,1487,tcp,LocalInfoSrvr,[Brian_Matthews_2],[Brian_Matthews_2],,,,,, localinfosrvr,1487,udp,LocalInfoSrvr,[Brian_Matthews_2],[Brian_Matthews_2],,,,,, docstor,1488,tcp,DocStor,[Brian_Spears],[Brian_Spears],,,,,, docstor,1488,udp,DocStor,[Brian_Spears],[Brian_Spears],,,,,, dmdocbroker,1489,tcp,dmdocbroker,[Razmik_Abnous],[Razmik_Abnous],,,,,, dmdocbroker,1489,udp,dmdocbroker,[Razmik_Abnous],[Razmik_Abnous],,,,,, insitu-conf,1490,tcp,insitu-conf,[Paul_Blacknell],[Paul_Blacknell],,,,,, insitu-conf,1490,udp,insitu-conf,[Paul_Blacknell],[Paul_Blacknell],,,,,, ,1491,,Unassigned,,,,2009-08-05,,,Unauthorized Use Known on port 1491, stone-design-1,1492,tcp,stone-design-1,[Andrew_Stone],[Andrew_Stone],,,,,, stone-design-1,1492,udp,stone-design-1,[Andrew_Stone],[Andrew_Stone],,,,,, netmap-lm,1493,tcp,"netmap_lm IANA assigned this well-formed service name as a replacement for ""netmap_lm"".",[Phillip_Magson],[Phillip_Magson],,,,,, netmap_lm,1493,tcp,netmap_lm,[Phillip_Magson],[Phillip_Magson],,,,,,"This entry is an alias to ""netmap-lm"". This entry is now historic, not usable for use with many common service discovery mechanisms." netmap-lm,1493,udp,"netmap_lm IANA assigned this well-formed service name as a replacement for ""netmap_lm"".",[Phillip_Magson],[Phillip_Magson],,,,,, netmap_lm,1493,udp,netmap_lm,[Phillip_Magson],[Phillip_Magson],,,,,,"This entry is an alias to ""netmap-lm"". This entry is now historic, not usable for use with many common service discovery mechanisms." ica,1494,tcp,ica,[John_Richardson],[John_Richardson],,,,,, ica,1494,udp,ica,[John_Richardson],[John_Richardson],,,,,, cvc,1495,tcp,cvc,[Bill_Davidson],[Bill_Davidson],,,,,, |
2754 2755 2756 2757 2758 2759 2760 | orasrv,1525,udp,oracle,,,,,,,, prospero-np,1525,tcp,Prospero Directory Service non-priv,,,,,,,, prospero-np,1525,udp,Prospero Directory Service non-priv,,,,,,,, pdap-np,1526,tcp,Prospero Data Access Prot non-priv,[B_Clifford_Neuman],[B_Clifford_Neuman],,,,,, pdap-np,1526,udp,Prospero Data Access Prot non-priv,[B_Clifford_Neuman],[B_Clifford_Neuman],,,,,, tlisrv,1527,tcp,oracle,,,,,,,, tlisrv,1527,udp,oracle,,,,,,,, | | > | 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 | orasrv,1525,udp,oracle,,,,,,,, prospero-np,1525,tcp,Prospero Directory Service non-priv,,,,,,,, prospero-np,1525,udp,Prospero Directory Service non-priv,,,,,,,, pdap-np,1526,tcp,Prospero Data Access Prot non-priv,[B_Clifford_Neuman],[B_Clifford_Neuman],,,,,, pdap-np,1526,udp,Prospero Data Access Prot non-priv,[B_Clifford_Neuman],[B_Clifford_Neuman],,,,,, tlisrv,1527,tcp,oracle,,,,,,,, tlisrv,1527,udp,oracle,,,,,,,, ,1528,tcp,Reserved,,,,,,,, ngr-t,1528,udp,NGR transport protocol for mobile ad-hoc networks,[nyantec],[Mikael_Voss],2016-09-13,,,,, coauthor,1529,tcp,oracle,,,,,,,, coauthor,1529,udp,oracle,,,,,,,, rap-service,1530,tcp,rap-service,,,,,,,, rap-service,1530,udp,rap-service,,,,,,,, rap-listen,1531,tcp,rap-listen,[Phil_Servita],[Phil_Servita],,,,,, rap-listen,1531,udp,rap-listen,[Phil_Servita],[Phil_Servita],,,,,, miroconnect,1532,tcp,miroconnect,[Michael_Fischer_2],[Michael_Fischer_2],,,,,, |
2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 | sna-cs,1553,tcp,sna-cs,[Tony_Sowter],[Tony_Sowter],,,,,, sna-cs,1553,udp,sna-cs,[Tony_Sowter],[Tony_Sowter],,,,,, caci-lm,1554,tcp,CACI Products Company License Manager,[Erik_Blume],[Erik_Blume],,,,,, caci-lm,1554,udp,CACI Products Company License Manager,[Erik_Blume],[Erik_Blume],,,,,, livelan,1555,tcp,livelan,[Kaynam_Hedayat],[Kaynam_Hedayat],,,,,, livelan,1555,udp,livelan,[Kaynam_Hedayat],[Kaynam_Hedayat],,,,,, veritas-pbx,1556,tcp,"VERITAS Private Branch Exchange IANA assigned this well-formed service name as a replacement for ""veritas_pbx"".",[Stefan_Winkel],[Stefan_Winkel],2004-04,,,,, veritas_pbx,1556,tcp,VERITAS Private Branch Exchange,[Stefan_Winkel],[Stefan_Winkel],2004-04,,,,,"This entry is an alias to ""veritas-pbx"". This entry is now historic, not usable for use with many common service discovery mechanisms." veritas-pbx,1556,udp,"VERITAS Private Branch Exchange IANA assigned this well-formed service name as a replacement for ""veritas_pbx"".",[Stefan_Winkel],[Stefan_Winkel],2004-04,,,,, veritas_pbx,1556,udp,VERITAS Private Branch Exchange,[Stefan_Winkel],[Stefan_Winkel],2004-04,,,,,"This entry is an alias to ""veritas-pbx"". This entry is now historic, not usable for use with many common service discovery mechanisms." arbortext-lm,1557,tcp,ArborText License Manager,[David_J_Wilson],[David_J_Wilson],,,,,, arbortext-lm,1557,udp,ArborText License Manager,[David_J_Wilson],[David_J_Wilson],,,,,, xingmpeg,1558,tcp,xingmpeg,[Howard_Gordon],[Howard_Gordon],,,,,, | > > > > | 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 | sna-cs,1553,tcp,sna-cs,[Tony_Sowter],[Tony_Sowter],,,,,, sna-cs,1553,udp,sna-cs,[Tony_Sowter],[Tony_Sowter],,,,,, caci-lm,1554,tcp,CACI Products Company License Manager,[Erik_Blume],[Erik_Blume],,,,,, caci-lm,1554,udp,CACI Products Company License Manager,[Erik_Blume],[Erik_Blume],,,,,, livelan,1555,tcp,livelan,[Kaynam_Hedayat],[Kaynam_Hedayat],,,,,, livelan,1555,udp,livelan,[Kaynam_Hedayat],[Kaynam_Hedayat],,,,,, veritas-pbx,1556,tcp,"VERITAS Private Branch Exchange IANA assigned this well-formed service name as a replacement for ""veritas_pbx"".",[Stefan_Winkel],[Stefan_Winkel],2004-04,,,,, veritas_pbx,1556,tcp,VERITAS Private Branch Exchange,[Stefan_Winkel],[Stefan_Winkel],2004-04,,,,,"This entry is an alias to ""veritas-pbx"". This entry is now historic, not usable for use with many common service discovery mechanisms." veritas-pbx,1556,udp,"VERITAS Private Branch Exchange IANA assigned this well-formed service name as a replacement for ""veritas_pbx"".",[Stefan_Winkel],[Stefan_Winkel],2004-04,,,,, veritas_pbx,1556,udp,VERITAS Private Branch Exchange,[Stefan_Winkel],[Stefan_Winkel],2004-04,,,,,"This entry is an alias to ""veritas-pbx"". This entry is now historic, not usable for use with many common service discovery mechanisms." arbortext-lm,1557,tcp,ArborText License Manager,[David_J_Wilson],[David_J_Wilson],,,,,, arbortext-lm,1557,udp,ArborText License Manager,[David_J_Wilson],[David_J_Wilson],,,,,, xingmpeg,1558,tcp,xingmpeg,[Howard_Gordon],[Howard_Gordon],,,,,, |
2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 | tn-tl-fd2,1584,tcp,tn-tl-fd2,[Ed_Kress],[Ed_Kress],,,,,, tn-tl-fd2,1584,udp,tn-tl-fd2,[Ed_Kress],[Ed_Kress],,,,,, intv,1585,tcp,intv,[Dermot_Tynand],[Dermot_Tynand],,,,,, intv,1585,udp,intv,[Dermot_Tynand],[Dermot_Tynand],,,,,, ibm-abtact,1586,tcp,ibm-abtact,[Sandeep_K_Singhal],[Sandeep_K_Singhal],,,,,, ibm-abtact,1586,udp,ibm-abtact,[Sandeep_K_Singhal],[Sandeep_K_Singhal],,,,,, pra-elmd,1587,tcp,"pra_elmd IANA assigned this well-formed service name as a replacement for ""pra_elmd"".",[Dennis_Mastin],[Dennis_Mastin],,,,,, pra_elmd,1587,tcp,pra_elmd,[Dennis_Mastin],[Dennis_Mastin],,,,,,"This entry is an alias to ""pra-elmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." pra-elmd,1587,udp,"pra_elmd IANA assigned this well-formed service name as a replacement for ""pra_elmd"".",[Dennis_Mastin],[Dennis_Mastin],,,,,, pra_elmd,1587,udp,pra_elmd,[Dennis_Mastin],[Dennis_Mastin],,,,,,"This entry is an alias to ""pra-elmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." triquest-lm,1588,tcp,triquest-lm,[Nand_Kumar],[Nand_Kumar],,,,,, triquest-lm,1588,udp,triquest-lm,[Nand_Kumar],[Nand_Kumar],,,,,, vqp,1589,tcp,VQP,[Keith_McCloghrie],[Keith_McCloghrie],,,,,, | > > > > | 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 | tn-tl-fd2,1584,tcp,tn-tl-fd2,[Ed_Kress],[Ed_Kress],,,,,, tn-tl-fd2,1584,udp,tn-tl-fd2,[Ed_Kress],[Ed_Kress],,,,,, intv,1585,tcp,intv,[Dermot_Tynand],[Dermot_Tynand],,,,,, intv,1585,udp,intv,[Dermot_Tynand],[Dermot_Tynand],,,,,, ibm-abtact,1586,tcp,ibm-abtact,[Sandeep_K_Singhal],[Sandeep_K_Singhal],,,,,, ibm-abtact,1586,udp,ibm-abtact,[Sandeep_K_Singhal],[Sandeep_K_Singhal],,,,,, pra-elmd,1587,tcp,"pra_elmd IANA assigned this well-formed service name as a replacement for ""pra_elmd"".",[Dennis_Mastin],[Dennis_Mastin],,,,,, pra_elmd,1587,tcp,pra_elmd,[Dennis_Mastin],[Dennis_Mastin],,,,,,"This entry is an alias to ""pra-elmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." pra-elmd,1587,udp,"pra_elmd IANA assigned this well-formed service name as a replacement for ""pra_elmd"".",[Dennis_Mastin],[Dennis_Mastin],,,,,, pra_elmd,1587,udp,pra_elmd,[Dennis_Mastin],[Dennis_Mastin],,,,,,"This entry is an alias to ""pra-elmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." triquest-lm,1588,tcp,triquest-lm,[Nand_Kumar],[Nand_Kumar],,,,,, triquest-lm,1588,udp,triquest-lm,[Nand_Kumar],[Nand_Kumar],,,,,, vqp,1589,tcp,VQP,[Keith_McCloghrie],[Keith_McCloghrie],,,,,, |
3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 | concurrent-lm,1648,tcp,concurrent-lm,[Maggie_Brinsford],[Maggie_Brinsford],,,,,, concurrent-lm,1648,udp,concurrent-lm,[Maggie_Brinsford],[Maggie_Brinsford],,,,,, kermit,1649,tcp,kermit,[Frank_da_Cruz],[Frank_da_Cruz],,,,,, kermit,1649,udp,kermit,[Frank_da_Cruz],[Frank_da_Cruz],,,,,, nkd,1650,tcp,nkdn,,,,,,,, nkd,1650,udp,nkd,,,,,,,, shiva-confsrvr,1651,tcp,"shiva_confsrvr IANA assigned this well-formed service name as a replacement for ""shiva_confsrvr"".",[Mike_Horowitz],[Mike_Horowitz],,,,,, shiva_confsrvr,1651,tcp,shiva_confsrvr,[Mike_Horowitz],[Mike_Horowitz],,,,,,"This entry is an alias to ""shiva-confsrvr"". This entry is now historic, not usable for use with many common service discovery mechanisms." shiva-confsrvr,1651,udp,"shiva_confsrvr IANA assigned this well-formed service name as a replacement for ""shiva_confsrvr"".",[Mike_Horowitz],[Mike_Horowitz],,,,,, shiva_confsrvr,1651,udp,shiva_confsrvr,[Mike_Horowitz],[Mike_Horowitz],,,,,,"This entry is an alias to ""shiva-confsrvr"". This entry is now historic, not usable for use with many common service discovery mechanisms." xnmp,1652,tcp,xnmp,[Ali_Saleh],[Ali_Saleh],,,,,, xnmp,1652,udp,xnmp,[Ali_Saleh],[Ali_Saleh],,,,,, alphatech-lm,1653,tcp,alphatech-lm,[Joseph_Hauk],[Joseph_Hauk],,,,,, | > > > > | 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 | concurrent-lm,1648,tcp,concurrent-lm,[Maggie_Brinsford],[Maggie_Brinsford],,,,,, concurrent-lm,1648,udp,concurrent-lm,[Maggie_Brinsford],[Maggie_Brinsford],,,,,, kermit,1649,tcp,kermit,[Frank_da_Cruz],[Frank_da_Cruz],,,,,, kermit,1649,udp,kermit,[Frank_da_Cruz],[Frank_da_Cruz],,,,,, nkd,1650,tcp,nkdn,,,,,,,, nkd,1650,udp,nkd,,,,,,,, shiva-confsrvr,1651,tcp,"shiva_confsrvr IANA assigned this well-formed service name as a replacement for ""shiva_confsrvr"".",[Mike_Horowitz],[Mike_Horowitz],,,,,, shiva_confsrvr,1651,tcp,shiva_confsrvr,[Mike_Horowitz],[Mike_Horowitz],,,,,,"This entry is an alias to ""shiva-confsrvr"". This entry is now historic, not usable for use with many common service discovery mechanisms." shiva-confsrvr,1651,udp,"shiva_confsrvr IANA assigned this well-formed service name as a replacement for ""shiva_confsrvr"".",[Mike_Horowitz],[Mike_Horowitz],,,,,, shiva_confsrvr,1651,udp,shiva_confsrvr,[Mike_Horowitz],[Mike_Horowitz],,,,,,"This entry is an alias to ""shiva-confsrvr"". This entry is now historic, not usable for use with many common service discovery mechanisms." xnmp,1652,tcp,xnmp,[Ali_Saleh],[Ali_Saleh],,,,,, xnmp,1652,udp,xnmp,[Ali_Saleh],[Ali_Saleh],,,,,, alphatech-lm,1653,tcp,alphatech-lm,[Joseph_Hauk],[Joseph_Hauk],,,,,, |
3301 3302 3303 3304 3305 3306 3307 | windlm,1785,udp,Wind River Systems License Manager,[Will_Dere],[Will_Dere],,,,,, funk-logger,1786,tcp,funk-logger,,,,,,,, funk-logger,1786,udp,funk-logger,,,,,,,, funk-license,1787,tcp,funk-license,[Cimarron_Boozer][Eric_Wilde],[Cimarron_Boozer][Eric_Wilde],,,,,, funk-license,1787,udp,funk-license,[Cimarron_Boozer][Eric_Wilde],[Cimarron_Boozer][Eric_Wilde],,,,,, psmond,1788,tcp,psmond,[Will_Golson],[Will_Golson],,,,,, psmond,1788,udp,psmond,[Will_Golson],[Will_Golson],,,,,, | | | | 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 | windlm,1785,udp,Wind River Systems License Manager,[Will_Dere],[Will_Dere],,,,,, funk-logger,1786,tcp,funk-logger,,,,,,,, funk-logger,1786,udp,funk-logger,,,,,,,, funk-license,1787,tcp,funk-license,[Cimarron_Boozer][Eric_Wilde],[Cimarron_Boozer][Eric_Wilde],,,,,, funk-license,1787,udp,funk-license,[Cimarron_Boozer][Eric_Wilde],[Cimarron_Boozer][Eric_Wilde],,,,,, psmond,1788,tcp,psmond,[Will_Golson],[Will_Golson],,,,,, psmond,1788,udp,psmond,[Will_Golson],[Will_Golson],,,,,, hello,1789,tcp,hello,[D_J_Bernstein],[D_J_Bernstein],,2018-04-05,,,, hello,1789,udp,hello,[D_J_Bernstein],[D_J_Bernstein],,2018-04-05,,,, nmsp,1790,tcp,Narrative Media Streaming Protocol,[Paul_Santinelli_Jr],[Paul_Santinelli_Jr],,,,,, nmsp,1790,udp,Narrative Media Streaming Protocol,[Paul_Santinelli_Jr],[Paul_Santinelli_Jr],,,,,, ea1,1791,tcp,EA1,[Kirk_MacLean],[Kirk_MacLean],,,,,, ea1,1791,udp,EA1,[Kirk_MacLean],[Kirk_MacLean],,,,,, ibm-dt-2,1792,tcp,ibm-dt-2,[Sam_Borman],[Sam_Borman],,,,,, ibm-dt-2,1792,udp,ibm-dt-2,[Sam_Borman],[Sam_Borman],,,,,, rsc-robot,1793,tcp,rsc-robot,[Andrew_Jay_Schneider],[Andrew_Jay_Schneider],,,,,, |
3489 3490 3491 3492 3493 3494 3495 | nettgain-nms,1879,udp,NettGain NMS,[Dr_Yair_Shapira],[Dr_Yair_Shapira],,,,,, vsat-control,1880,tcp,Gilat VSAT Control,[Yariv_Kaplan],[Yariv_Kaplan],,,,,, vsat-control,1880,udp,Gilat VSAT Control,[Yariv_Kaplan],[Yariv_Kaplan],,,,,, ibm-mqseries2,1881,tcp,IBM WebSphere MQ Everyplace,[Jane_Porter],[Jane_Porter],,,,,, ibm-mqseries2,1881,udp,IBM WebSphere MQ Everyplace,[Jane_Porter],[Jane_Porter],,,,,, ecsqdmn,1882,tcp,CA eTrust Common Services,[Paul_Wissmiller],[Paul_Wissmiller],,,,,, ecsqdmn,1882,udp,CA eTrust Common Services,[Paul_Wissmiller],[Paul_Wissmiller],,,,,, | | | | 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 | nettgain-nms,1879,udp,NettGain NMS,[Dr_Yair_Shapira],[Dr_Yair_Shapira],,,,,, vsat-control,1880,tcp,Gilat VSAT Control,[Yariv_Kaplan],[Yariv_Kaplan],,,,,, vsat-control,1880,udp,Gilat VSAT Control,[Yariv_Kaplan],[Yariv_Kaplan],,,,,, ibm-mqseries2,1881,tcp,IBM WebSphere MQ Everyplace,[Jane_Porter],[Jane_Porter],,,,,, ibm-mqseries2,1881,udp,IBM WebSphere MQ Everyplace,[Jane_Porter],[Jane_Porter],,,,,, ecsqdmn,1882,tcp,CA eTrust Common Services,[Paul_Wissmiller],[Paul_Wissmiller],,,,,, ecsqdmn,1882,udp,CA eTrust Common Services,[Paul_Wissmiller],[Paul_Wissmiller],,,,,, mqtt,1883,tcp,Message Queuing Telemetry Transport Protocol,[OASIS],[Robin_Cover],,2015-02-10,,,, mqtt,1883,udp,Message Queuing Telemetry Transport Protocol,[OASIS],[Robin_Cover],,2015-02-10,,,, idmaps,1884,tcp,Internet Distance Map Svc,[Sugih_Jamim],[Sugih_Jamim],,,,,, idmaps,1884,udp,Internet Distance Map Svc,[Sugih_Jamim],[Sugih_Jamim],,,,,, vrtstrapserver,1885,tcp,Veritas Trap Server,[Russell_Thrasher],[Russell_Thrasher],,,,,, vrtstrapserver,1885,udp,Veritas Trap Server,[Russell_Thrasher],[Russell_Thrasher],,,,,, leoip,1886,tcp,Leonardo over IP,[Dietmar_Finkler],[Dietmar_Finkler],,,,,, leoip,1886,udp,Leonardo over IP,[Dietmar_Finkler],[Dietmar_Finkler],,,,,, filex-lport,1887,tcp,FileX Listening Port,[Megan_Woods],[Megan_Woods],,,,,, |
3617 3618 3619 3620 3621 3622 3623 | beeyond-media,1943,udp,Beeyond Media,[Bob_Deblier],[Bob_Deblier],,,,,, close-combat,1944,tcp,close-combat,[David_Hua],[David_Hua],,,,,, close-combat,1944,udp,close-combat,[David_Hua],[David_Hua],,,,,, dialogic-elmd,1945,tcp,dialogic-elmd,[Roger_Kay],[Roger_Kay],,,,,, dialogic-elmd,1945,udp,dialogic-elmd,[Roger_Kay],[Roger_Kay],,,,,, tekpls,1946,tcp,tekpls,[Brian_Abramson_2],[Brian_Abramson_2],,,,,, tekpls,1946,udp,tekpls,[Brian_Abramson_2],[Brian_Abramson_2],,,,,, | | | | 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 | beeyond-media,1943,udp,Beeyond Media,[Bob_Deblier],[Bob_Deblier],,,,,, close-combat,1944,tcp,close-combat,[David_Hua],[David_Hua],,,,,, close-combat,1944,udp,close-combat,[David_Hua],[David_Hua],,,,,, dialogic-elmd,1945,tcp,dialogic-elmd,[Roger_Kay],[Roger_Kay],,,,,, dialogic-elmd,1945,udp,dialogic-elmd,[Roger_Kay],[Roger_Kay],,,,,, tekpls,1946,tcp,tekpls,[Brian_Abramson_2],[Brian_Abramson_2],,,,,, tekpls,1946,udp,tekpls,[Brian_Abramson_2],[Brian_Abramson_2],,,,,, sentinelsrm,1947,tcp,SentinelSRM,[Michael_Zunke_2],[Michael_Zunke_2],2010-07-23,,,,Unauthorized Use Known on port 1947, sentinelsrm,1947,udp,SentinelSRM,[Michael_Zunke_2],[Michael_Zunke_2],2010-07-23,,,,Unauthorized Use Known on port 1947, eye2eye,1948,tcp,eye2eye,[Trevor_Bell],[Trevor_Bell],,,,,, eye2eye,1948,udp,eye2eye,[Trevor_Bell],[Trevor_Bell],,,,,, ismaeasdaqlive,1949,tcp,ISMA Easdaq Live,[Stephen_Dunne],[Stephen_Dunne],,,,,, ismaeasdaqlive,1949,udp,ISMA Easdaq Live,[Stephen_Dunne],[Stephen_Dunne],,,,,, ismaeasdaqtest,1950,tcp,ISMA Easdaq Test,[Stephen_Dunne],[Stephen_Dunne],,,,,, ismaeasdaqtest,1950,udp,ISMA Easdaq Test,[Stephen_Dunne],[Stephen_Dunne],,,,,, bcs-lmserver,1951,tcp,bcs-lmserver,[Andy_Warner],[Andy_Warner],,,,,, |
3905 3906 3907 3908 3909 3910 3911 | infowave,2082,udp,Infowave Mobility Server,[Kaz_Kylheku],[Kaz_Kylheku],,,,,, radsec,2083,tcp,Secure Radius Service,[IESG],[IETF_Chair],2005-05,,[RFC6614],,,"The TCP port 2083 was already previously assigned by IANA for ""RadSec"", an early implementation of RADIUS/TLS, prior to issuance of this RFC. This early implementation can be configured to be compatible to RADIUS/TLS as specified by the IETF. See [RFC6614], Appendix A for details." | | | | 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 | infowave,2082,udp,Infowave Mobility Server,[Kaz_Kylheku],[Kaz_Kylheku],,,,,, radsec,2083,tcp,Secure Radius Service,[IESG],[IETF_Chair],2005-05,,[RFC6614],,,"The TCP port 2083 was already previously assigned by IANA for ""RadSec"", an early implementation of RADIUS/TLS, prior to issuance of this RFC. This early implementation can be configured to be compatible to RADIUS/TLS as specified by the IETF. See [RFC6614], Appendix A for details." radsec,2083,udp,Secure Radius Service,[IESG],[IETF_Chair],2005-05,2014-07-14,[RFC7360],,,"The UDP port 2083 was already previously assigned by IANA for ""RadSec"", an early implementation of RADIUS/TLS, prior to issuance of this RFC." sunclustergeo,2084,tcp,SunCluster Geographic,[Oracle_2],[Steve_McKinty],2005-11,2013-08-14,,,, sunclustergeo,2084,udp,SunCluster Geographic,[Oracle_2],[Steve_McKinty],2005-11,2013-08-14,,,, ada-cip,2085,tcp,ADA Control,[Eugene_Frenkel],[Eugene_Frenkel],2005-11,,,,, ada-cip,2085,udp,ADA Control,[Eugene_Frenkel],[Eugene_Frenkel],2005-11,,,,, gnunet,2086,tcp,GNUnet,[Christian_Grothoff],[Christian_Grothoff],2002-10,,,,, gnunet,2086,udp,GNUnet,[Christian_Grothoff],[Christian_Grothoff],2002-10,,,,, |
3968 3969 3970 3971 3972 3973 3974 | umsp,2110,udp,UMSP,[Alexander_Bogdanov_2],[Alexander_Bogdanov_2],,,,,, dsatp,2111,tcp,OPNET Dynamic Sampling Agent Transaction Protocol,[OPNET_Technologies_Inc],[Edward_Macomber],,2011-09-21,,,, dsatp,2111,udp,OPNET Dynamic Sampling Agent Transaction Protocol,[OPNET_Technologies_Inc],[Edward_Macomber],,2011-09-21,,,, idonix-metanet,2112,tcp,Idonix MetaNet,[Paul_Harrison],[Paul_Harrison],,,,,, idonix-metanet,2112,udp,Idonix MetaNet,[Paul_Harrison],[Paul_Harrison],,,,,, hsl-storm,2113,tcp,HSL StoRM,[Jost_Faganel],[Jost_Faganel],,,,,, hsl-storm,2113,udp,HSL StoRM,[Jost_Faganel],[Jost_Faganel],,,,,, | | | | 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 | umsp,2110,udp,UMSP,[Alexander_Bogdanov_2],[Alexander_Bogdanov_2],,,,,, dsatp,2111,tcp,OPNET Dynamic Sampling Agent Transaction Protocol,[OPNET_Technologies_Inc],[Edward_Macomber],,2011-09-21,,,, dsatp,2111,udp,OPNET Dynamic Sampling Agent Transaction Protocol,[OPNET_Technologies_Inc],[Edward_Macomber],,2011-09-21,,,, idonix-metanet,2112,tcp,Idonix MetaNet,[Paul_Harrison],[Paul_Harrison],,,,,, idonix-metanet,2112,udp,Idonix MetaNet,[Paul_Harrison],[Paul_Harrison],,,,,, hsl-storm,2113,tcp,HSL StoRM,[Jost_Faganel],[Jost_Faganel],,,,,, hsl-storm,2113,udp,HSL StoRM,[Jost_Faganel],[Jost_Faganel],,,,,, ariascribe,2114,tcp,Classical Music Meta-Data Access and Enhancement,[Aria_Scribe_Software_Ltd],[Michael_Levy],,2018-02-05,,,, ariascribe,2114,udp,Classical Music Meta-Data Access and Enhancement,[Aria_Scribe_Software_Ltd],[Michael_Levy],,2018-02-05,,,, kdm,2115,tcp,Key Distribution Manager,[Mike_Little],[Mike_Little],,,,,, kdm,2115,udp,Key Distribution Manager,[Mike_Little],[Mike_Little],,,,,, ccowcmr,2116,tcp,CCOWCMR,[Mark_Morwood],[Mark_Morwood],,,,,, ccowcmr,2116,udp,CCOWCMR,[Mark_Morwood],[Mark_Morwood],,,,,, mentaclient,2117,tcp,MENTACLIENT,,,,,,,, mentaclient,2117,udp,MENTACLIENT,,,,,,,, mentaserver,2118,tcp,MENTASERVER,[Ilan_Shlosberg],[Ilan_Shlosberg],,,,,, |
4024 4025 4026 4027 4028 4029 4030 | unbind-cluster,2138,udp,UNBIND-CLUSTER,[Francois_Harvey],[Francois_Harvey],,,,,, ias-auth,2139,tcp,IAS-AUTH,,,,,,,, ias-auth,2139,udp,IAS-AUTH,,,,,,,, ias-reg,2140,tcp,IAS-REG,,,,,,,, ias-reg,2140,udp,IAS-REG,,,,,,,, ias-admind,2141,tcp,IAS-ADMIND,[Baiju_V_Patel],[Baiju_V_Patel],,,,,, ias-admind,2141,udp,IAS-ADMIND,[Baiju_V_Patel],[Baiju_V_Patel],,,,,, | | | | 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 | unbind-cluster,2138,udp,UNBIND-CLUSTER,[Francois_Harvey],[Francois_Harvey],,,,,, ias-auth,2139,tcp,IAS-AUTH,,,,,,,, ias-auth,2139,udp,IAS-AUTH,,,,,,,, ias-reg,2140,tcp,IAS-REG,,,,,,,, ias-reg,2140,udp,IAS-REG,,,,,,,, ias-admind,2141,tcp,IAS-ADMIND,[Baiju_V_Patel],[Baiju_V_Patel],,,,,, ias-admind,2141,udp,IAS-ADMIND,[Baiju_V_Patel],[Baiju_V_Patel],,,,,, tdmoip,2142,tcp,TDM OVER IP,[Yaakov_Stein],[Yaakov_Stein],,2016-09-21,[RFC5087],,, tdmoip,2142,udp,TDM OVER IP,[Yaakov_Stein],[Yaakov_Stein],,2016-09-21,[RFC5087],,, lv-jc,2143,tcp,Live Vault Job Control,,,,,,,, lv-jc,2143,udp,Live Vault Job Control,,,,,,,, lv-ffx,2144,tcp,Live Vault Fast Object Transfer,,,,,,,, lv-ffx,2144,udp,Live Vault Fast Object Transfer,,,,,,,, lv-pici,2145,tcp,Live Vault Remote Diagnostic Console Support,,,,,,,, lv-pici,2145,udp,Live Vault Remote Diagnostic Console Support,,,,,,,, lv-not,2146,tcp,Live Vault Admin Event Notification,,,,,,,, |
4135 4136 4137 4138 4139 4140 4141 | ,2194-2196,,Unassigned,,,,,,,Unauthorized Use Known on ports 2194-2196, mnp-exchange,2197,tcp,MNP data exchange,[Peter_Pramberger],[Peter_Pramberger],2004-11,,,,, mnp-exchange,2197,udp,MNP data exchange,[Peter_Pramberger],[Peter_Pramberger],2004-11,,,,, onehome-remote,2198,tcp,OneHome Remote Access,,,,,,,, onehome-remote,2198,udp,OneHome Remote Access,,,,,,,, onehome-help,2199,tcp,OneHome Service Port,[Jim_Herman],[Jim_Herman],2005-08,,,,, onehome-help,2199,udp,OneHome Service Port,[Jim_Herman],[Jim_Herman],2005-08,,,,, | | | | 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 | ,2194-2196,,Unassigned,,,,,,,Unauthorized Use Known on ports 2194-2196, mnp-exchange,2197,tcp,MNP data exchange,[Peter_Pramberger],[Peter_Pramberger],2004-11,,,,, mnp-exchange,2197,udp,MNP data exchange,[Peter_Pramberger],[Peter_Pramberger],2004-11,,,,, onehome-remote,2198,tcp,OneHome Remote Access,,,,,,,, onehome-remote,2198,udp,OneHome Remote Access,,,,,,,, onehome-help,2199,tcp,OneHome Service Port,[Jim_Herman],[Jim_Herman],2005-08,,,,, onehome-help,2199,udp,OneHome Service Port,[Jim_Herman],[Jim_Herman],2005-08,,,,, ,2200,tcp,Reserved,,,,,,,,This entry has been removed on 2019-07-05. ,2200,udp,Reserved,,,,,,,,This entry has been removed on 2019-07-05. ats,2201,tcp,Advanced Training System Program,,,,,,,, ats,2201,udp,Advanced Training System Program,,,,,,,, imtc-map,2202,tcp,Int. Multimedia Teleconferencing Cosortium,[Pat_Galvin],[Pat_Galvin],,,,,, imtc-map,2202,udp,Int. Multimedia Teleconferencing Cosortium,[Pat_Galvin],[Pat_Galvin],,,,,, b2-runtime,2203,tcp,b2 Runtime Protocol,,,,,,,, b2-runtime,2203,udp,b2 Runtime Protocol,,,,,,,, b2-license,2204,tcp,b2 License Server,[Helge_Frank_Zimpel],[Helge_Frank_Zimpel],2006-01,,,,, |
4177 4178 4179 4180 4181 4182 4183 | gotodevice,2217,udp,GoToDevice Device Management,[John_Lisek],[John_Lisek],2006-01,,,,, bounzza,2218,tcp,Bounzza IRC Proxy,[Danko_Alexeyev],[Danko_Alexeyev],2006-02,,,,, bounzza,2218,udp,Bounzza IRC Proxy,[Danko_Alexeyev],[Danko_Alexeyev],2006-02,,,,, netiq-ncap,2219,tcp,NetIQ NCAP Protocol,[Roger_Huebner],[Roger_Huebner],2010-08-25,,,,, netiq-ncap,2219,udp,NetIQ NCAP Protocol,[Roger_Huebner],[Roger_Huebner],2010-08-25,,,,, netiq,2220,tcp,NetIQ End2End,[Michael_Sharpe],[Michael_Sharpe],2010-09-14,,,,, netiq,2220,udp,NetIQ End2End,[Michael_Sharpe],[Michael_Sharpe],2010-09-14,,,,, | | | > > > > | 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 | gotodevice,2217,udp,GoToDevice Device Management,[John_Lisek],[John_Lisek],2006-01,,,,, bounzza,2218,tcp,Bounzza IRC Proxy,[Danko_Alexeyev],[Danko_Alexeyev],2006-02,,,,, bounzza,2218,udp,Bounzza IRC Proxy,[Danko_Alexeyev],[Danko_Alexeyev],2006-02,,,,, netiq-ncap,2219,tcp,NetIQ NCAP Protocol,[Roger_Huebner],[Roger_Huebner],2010-08-25,,,,, netiq-ncap,2219,udp,NetIQ NCAP Protocol,[Roger_Huebner],[Roger_Huebner],2010-08-25,,,,, netiq,2220,tcp,NetIQ End2End,[Michael_Sharpe],[Michael_Sharpe],2010-09-14,,,,, netiq,2220,udp,NetIQ End2End,[Michael_Sharpe],[Michael_Sharpe],2010-09-14,,,,, ethernet-ip-s,2221,tcp,EtherNet/IP over TLS,[ODVA_Inc],[Brian_Batke_3],,2015-05-28,,,, ethernet-ip-s,2221,udp,EtherNet/IP over DTLS,[ODVA_Inc],[Brian_Batke_3],,2015-05-28,,,, EtherNet-IP-1,2222,tcp,"EtherNet/IP I/O IANA assigned this well-formed service name as a replacement for ""EtherNet/IP-1"".",[Brian_Batke_2],[Brian_Batke_2],,,,,,New contact added for port 2222 on 2008-02-01 EtherNet/IP-1,2222,tcp,EtherNet/IP I/O,[Brian_Batke_2],[Brian_Batke_2],,,,,,"New contact added for port 2222 on 2008-02-01 This entry is an alias to ""EtherNet-IP-1"". This entry is now historic, not usable for use with many common service discovery mechanisms." EtherNet-IP-1,2222,udp,"EtherNet/IP I/O IANA assigned this well-formed service name as a replacement for ""EtherNet/IP-1"".",[Brian_Batke_2],[Brian_Batke_2],,,,,,New contact added for port 2222 on 2008-02-01 EtherNet/IP-1,2222,udp,EtherNet/IP I/O,[Brian_Batke_2],[Brian_Batke_2],,,,,,"New contact added for port 2222 on 2008-02-01 This entry is an alias to ""EtherNet-IP-1"". This entry is now historic, not usable for use with many common service discovery mechanisms." rockwell-csp2,2223,tcp,Rockwell CSP2,[Brian_Batke],[Brian_Batke],,,,,, rockwell-csp2,2223,udp,Rockwell CSP2,[Brian_Batke],[Brian_Batke],,,,,, |
4281 4282 4283 4284 4285 4286 4287 | apx500api-1,2264,udp,Audio Precision Apx500 API Port 1,,,,,,,, apx500api-2,2265,tcp,Audio Precision Apx500 API Port 2,[Robert_Wright],[Robert_Wright],,,,,, apx500api-2,2265,udp,Audio Precision Apx500 API Port 2,[Robert_Wright],[Robert_Wright],,,,,, mfserver,2266,tcp,M-Files Server,[Samppa_Lahtinen],[Samppa_Lahtinen],2004-06,,,,, mfserver,2266,udp,M-files Server,[Samppa_Lahtinen],[Samppa_Lahtinen],2004-06,,,,, ontobroker,2267,tcp,OntoBroker,[Dr_Michael_Erdmann],[Dr_Michael_Erdmann],2004-12,,,,, ontobroker,2267,udp,OntoBroker,[Dr_Michael_Erdmann],[Dr_Michael_Erdmann],2004-12,,,,, | | | | 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 | apx500api-1,2264,udp,Audio Precision Apx500 API Port 1,,,,,,,, apx500api-2,2265,tcp,Audio Precision Apx500 API Port 2,[Robert_Wright],[Robert_Wright],,,,,, apx500api-2,2265,udp,Audio Precision Apx500 API Port 2,[Robert_Wright],[Robert_Wright],,,,,, mfserver,2266,tcp,M-Files Server,[Samppa_Lahtinen],[Samppa_Lahtinen],2004-06,,,,, mfserver,2266,udp,M-files Server,[Samppa_Lahtinen],[Samppa_Lahtinen],2004-06,,,,, ontobroker,2267,tcp,OntoBroker,[Dr_Michael_Erdmann],[Dr_Michael_Erdmann],2004-12,,,,, ontobroker,2267,udp,OntoBroker,[Dr_Michael_Erdmann],[Dr_Michael_Erdmann],2004-12,,,,, amt,2268,tcp,AMT,[IESG],[IETF_Chair],2004-12,2014-12-17,[RFC7450],,, amt,2268,udp,AMT,[IESG],[IETF_Chair],2004-12,2014-12-17,[RFC7450],,, mikey,2269,tcp,MIKEY,[Karl_Norrman],[Karl_Norrman],2004-12,,,,, mikey,2269,udp,MIKEY,[Karl_Norrman],[Karl_Norrman],2004-12,,,,, starschool,2270,tcp,starSchool,[Adam_Ernst],[Adam_Ernst],2004-12,,,,, starschool,2270,udp,starSchool,[Adam_Ernst],[Adam_Ernst],2004-12,,,,, mmcals,2271,tcp,Secure Meeting Maker Scheduling,,,,,,,, mmcals,2271,udp,Secure Meeting Maker Scheduling,,,,,,,, mmcal,2272,tcp,Meeting Maker Scheduling,[Andrew_H_Derbyshire],[Andrew_H_Derbyshire],2004-12,,,,, |
4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 | ideesrv,2337,tcp,ideesrv,[Marazzi],[Marazzi],,,,,, ideesrv,2337,udp,ideesrv,[Marazzi],[Marazzi],,,,,, norton-lambert,2338,tcp,Norton Lambert,[Richard_de_Mornay],[Richard_de_Mornay],,,,,, norton-lambert,2338,udp,Norton Lambert,[Richard_de_Mornay],[Richard_de_Mornay],,,,,, 3com-webview,2339,tcp,3Com WebView,[Jennifer_Grace],[Jennifer_Grace],,,,,, 3com-webview,2339,udp,3Com WebView,[Jennifer_Grace],[Jennifer_Grace],,,,,, wrs-registry,2340,tcp,"WRS Registry IANA assigned this well-formed service name as a replacement for ""wrs_registry"".",[Christophe_Cleraux],[Christophe_Cleraux],,,,,, wrs_registry,2340,tcp,WRS Registry,[Christophe_Cleraux],[Christophe_Cleraux],,,,,,"This entry is an alias to ""wrs-registry"". This entry is now historic, not usable for use with many common service discovery mechanisms." wrs-registry,2340,udp,"WRS Registry IANA assigned this well-formed service name as a replacement for ""wrs_registry"".",[Christophe_Cleraux],[Christophe_Cleraux],,,,,, wrs_registry,2340,udp,WRS Registry,[Christophe_Cleraux],[Christophe_Cleraux],,,,,,"This entry is an alias to ""wrs-registry"". This entry is now historic, not usable for use with many common service discovery mechanisms." xiostatus,2341,tcp,XIO Status,[Randy_Maas],[Randy_Maas],,,,,, xiostatus,2341,udp,XIO Status,[Randy_Maas],[Randy_Maas],,,,,, manage-exec,2342,tcp,Seagate Manage Exec,[Jim_Flaherty],[Jim_Flaherty],,,,,, manage-exec,2342,udp,Seagate Manage Exec,[Jim_Flaherty],[Jim_Flaherty],,,,,, nati-logos,2343,tcp,nati logos,[James_Juhasz],[James_Juhasz],,,,,, nati-logos,2343,udp,nati logos,[James_Juhasz],[James_Juhasz],,,,,, fcmsys,2344,tcp,fcmsys,,,,,,,, fcmsys,2344,udp,fcmsys,,,,,,,, dbm,2345,tcp,dbm,[Dean_Robson],[Dean_Robson],,,,,, dbm,2345,udp,dbm,[Dean_Robson],[Dean_Robson],,,,,, redstorm-join,2346,tcp,"Game Connection Port IANA assigned this well-formed service name as a replacement for ""redstorm_join"".",,,,,,,, redstorm_join,2346,tcp,Game Connection Port,,,,,,,,"This entry is an alias to ""redstorm-join"". This entry is now historic, not usable for use with many common service discovery mechanisms." redstorm-join,2346,udp,"Game Connection Port IANA assigned this well-formed service name as a replacement for ""redstorm_join"".",,,,,,,, redstorm_join,2346,udp,Game Connection Port,,,,,,,,"This entry is an alias to ""redstorm-join"". This entry is now historic, not usable for use with many common service discovery mechanisms." redstorm-find,2347,tcp,"Game Announcement and Location IANA assigned this well-formed service name as a replacement for ""redstorm_find"".",,,,,,,, redstorm_find,2347,tcp,Game Announcement and Location,,,,,,,,"This entry is an alias to ""redstorm-find"". This entry is now historic, not usable for use with many common service discovery mechanisms." redstorm-find,2347,udp,"Game Announcement and Location IANA assigned this well-formed service name as a replacement for ""redstorm_find"".",,,,,,,, redstorm_find,2347,udp,Game Announcement and Location,,,,,,,,"This entry is an alias to ""redstorm-find"". This entry is now historic, not usable for use with many common service discovery mechanisms." redstorm-info,2348,tcp,"Information to query for game status IANA assigned this well-formed service name as a replacement for ""redstorm_info"".",,,,,,,, redstorm_info,2348,tcp,Information to query for game status,,,,,,,,"This entry is an alias to ""redstorm-info"". This entry is now historic, not usable for use with many common service discovery mechanisms." redstorm-info,2348,udp,"Information to query for game status IANA assigned this well-formed service name as a replacement for ""redstorm_info"".",,,,,,,, redstorm_info,2348,udp,Information to query for game status,,,,,,,,"This entry is an alias to ""redstorm-info"". This entry is now historic, not usable for use with many common service discovery mechanisms." redstorm-diag,2349,tcp,"Diagnostics Port IANA assigned this well-formed service name as a replacement for ""redstorm_diag"".",[David_Weinstein],[David_Weinstein],,,,,, redstorm_diag,2349,tcp,Diagnostics Port,[David_Weinstein],[David_Weinstein],,,,,,"This entry is an alias to ""redstorm-diag"". This entry is now historic, not usable for use with many common service discovery mechanisms." redstorm-diag,2349,udp,"Diagnostics Port IANA assigned this well-formed service name as a replacement for ""redstorm_diag"".",[David_Weinstein],[David_Weinstein],,,,,, redstorm_diag,2349,udp,Diagnostics Port,[David_Weinstein],[David_Weinstein],,,,,,"This entry is an alias to ""redstorm-diag"". This entry is now historic, not usable for use with many common service discovery mechanisms." psbserver,2350,tcp,Pharos Booking Server,,,,,,,, psbserver,2350,udp,Pharos Booking Server,,,,,,,, psrserver,2351,tcp,psrserver,,,,,,,, | > > > > > > > > > > > > > > > > > > > > | 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 | ideesrv,2337,tcp,ideesrv,[Marazzi],[Marazzi],,,,,, ideesrv,2337,udp,ideesrv,[Marazzi],[Marazzi],,,,,, norton-lambert,2338,tcp,Norton Lambert,[Richard_de_Mornay],[Richard_de_Mornay],,,,,, norton-lambert,2338,udp,Norton Lambert,[Richard_de_Mornay],[Richard_de_Mornay],,,,,, 3com-webview,2339,tcp,3Com WebView,[Jennifer_Grace],[Jennifer_Grace],,,,,, 3com-webview,2339,udp,3Com WebView,[Jennifer_Grace],[Jennifer_Grace],,,,,, wrs-registry,2340,tcp,"WRS Registry IANA assigned this well-formed service name as a replacement for ""wrs_registry"".",[Christophe_Cleraux],[Christophe_Cleraux],,,,,, wrs_registry,2340,tcp,WRS Registry,[Christophe_Cleraux],[Christophe_Cleraux],,,,,,"This entry is an alias to ""wrs-registry"". This entry is now historic, not usable for use with many common service discovery mechanisms." wrs-registry,2340,udp,"WRS Registry IANA assigned this well-formed service name as a replacement for ""wrs_registry"".",[Christophe_Cleraux],[Christophe_Cleraux],,,,,, wrs_registry,2340,udp,WRS Registry,[Christophe_Cleraux],[Christophe_Cleraux],,,,,,"This entry is an alias to ""wrs-registry"". This entry is now historic, not usable for use with many common service discovery mechanisms." xiostatus,2341,tcp,XIO Status,[Randy_Maas],[Randy_Maas],,,,,, xiostatus,2341,udp,XIO Status,[Randy_Maas],[Randy_Maas],,,,,, manage-exec,2342,tcp,Seagate Manage Exec,[Jim_Flaherty],[Jim_Flaherty],,,,,, manage-exec,2342,udp,Seagate Manage Exec,[Jim_Flaherty],[Jim_Flaherty],,,,,, nati-logos,2343,tcp,nati logos,[James_Juhasz],[James_Juhasz],,,,,, nati-logos,2343,udp,nati logos,[James_Juhasz],[James_Juhasz],,,,,, fcmsys,2344,tcp,fcmsys,,,,,,,, fcmsys,2344,udp,fcmsys,,,,,,,, dbm,2345,tcp,dbm,[Dean_Robson],[Dean_Robson],,,,,, dbm,2345,udp,dbm,[Dean_Robson],[Dean_Robson],,,,,, redstorm-join,2346,tcp,"Game Connection Port IANA assigned this well-formed service name as a replacement for ""redstorm_join"".",,,,,,,, redstorm_join,2346,tcp,Game Connection Port,,,,,,,,"This entry is an alias to ""redstorm-join"". This entry is now historic, not usable for use with many common service discovery mechanisms." redstorm-join,2346,udp,"Game Connection Port IANA assigned this well-formed service name as a replacement for ""redstorm_join"".",,,,,,,, redstorm_join,2346,udp,Game Connection Port,,,,,,,,"This entry is an alias to ""redstorm-join"". This entry is now historic, not usable for use with many common service discovery mechanisms." redstorm-find,2347,tcp,"Game Announcement and Location IANA assigned this well-formed service name as a replacement for ""redstorm_find"".",,,,,,,, redstorm_find,2347,tcp,Game Announcement and Location,,,,,,,,"This entry is an alias to ""redstorm-find"". This entry is now historic, not usable for use with many common service discovery mechanisms." redstorm-find,2347,udp,"Game Announcement and Location IANA assigned this well-formed service name as a replacement for ""redstorm_find"".",,,,,,,, redstorm_find,2347,udp,Game Announcement and Location,,,,,,,,"This entry is an alias to ""redstorm-find"". This entry is now historic, not usable for use with many common service discovery mechanisms." redstorm-info,2348,tcp,"Information to query for game status IANA assigned this well-formed service name as a replacement for ""redstorm_info"".",,,,,,,, redstorm_info,2348,tcp,Information to query for game status,,,,,,,,"This entry is an alias to ""redstorm-info"". This entry is now historic, not usable for use with many common service discovery mechanisms." redstorm-info,2348,udp,"Information to query for game status IANA assigned this well-formed service name as a replacement for ""redstorm_info"".",,,,,,,, redstorm_info,2348,udp,Information to query for game status,,,,,,,,"This entry is an alias to ""redstorm-info"". This entry is now historic, not usable for use with many common service discovery mechanisms." redstorm-diag,2349,tcp,"Diagnostics Port IANA assigned this well-formed service name as a replacement for ""redstorm_diag"".",[David_Weinstein],[David_Weinstein],,,,,, redstorm_diag,2349,tcp,Diagnostics Port,[David_Weinstein],[David_Weinstein],,,,,,"This entry is an alias to ""redstorm-diag"". This entry is now historic, not usable for use with many common service discovery mechanisms." redstorm-diag,2349,udp,"Diagnostics Port IANA assigned this well-formed service name as a replacement for ""redstorm_diag"".",[David_Weinstein],[David_Weinstein],,,,,, redstorm_diag,2349,udp,Diagnostics Port,[David_Weinstein],[David_Weinstein],,,,,,"This entry is an alias to ""redstorm-diag"". This entry is now historic, not usable for use with many common service discovery mechanisms." psbserver,2350,tcp,Pharos Booking Server,,,,,,,, psbserver,2350,udp,Pharos Booking Server,,,,,,,, psrserver,2351,tcp,psrserver,,,,,,,, |
4526 4527 4528 4529 4530 4531 4532 | service-ctrl,2367,tcp,Service Control,[Humberto_Sanchez],[Humberto_Sanchez],,,,,, service-ctrl,2367,udp,Service Control,[Humberto_Sanchez],[Humberto_Sanchez],,,,,, opentable,2368,tcp,OpenTable,[Brett_Goldstein],[Brett_Goldstein],,,,,, opentable,2368,udp,OpenTable,[Brett_Goldstein],[Brett_Goldstein],,,,,, ,2369,,Unassigned,,,,,,,,De-registered (28 March 2006) l3-hbmon,2370,tcp,L3-HBMon,[Dolores_Scott],[Dolores_Scott],,2014-04-09,,,, l3-hbmon,2370,udp,L3-HBMon,[Dolores_Scott],[Dolores_Scott],,2014-04-09,,,, | | > > | | 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 | service-ctrl,2367,tcp,Service Control,[Humberto_Sanchez],[Humberto_Sanchez],,,,,, service-ctrl,2367,udp,Service Control,[Humberto_Sanchez],[Humberto_Sanchez],,,,,, opentable,2368,tcp,OpenTable,[Brett_Goldstein],[Brett_Goldstein],,,,,, opentable,2368,udp,OpenTable,[Brett_Goldstein],[Brett_Goldstein],,,,,, ,2369,,Unassigned,,,,,,,,De-registered (28 March 2006) l3-hbmon,2370,tcp,L3-HBMon,[Dolores_Scott],[Dolores_Scott],,2014-04-09,,,, l3-hbmon,2370,udp,L3-HBMon,[Dolores_Scott],[Dolores_Scott],,2014-04-09,,,, rda,2371,tcp,Remote Device Access,[Hewlett_Packard_Enterprise_2],[Steve_Roscio][Paul_Vencel],,2018-11-05,,,, ,2371,udp,Reserved,,,,2014-04-09,,,, lanmessenger,2372,tcp,LanMessenger,[Garrett_Padera],[Garrett_Padera],2008-02-01,,,,, lanmessenger,2372,udp,LanMessenger,[Garrett_Padera],[Garrett_Padera],2008-02-01,,,,, remographlm,2373,tcp,Remograph License Manager,[Per_Fahlberg],[Per_Fahlberg],2009-01-21,,,,, ,2373,udp,Reserved,,,,,,,, hydra,2374,tcp,Hydra RPC,[Jacob_Feisley],[Jacob_Feisley],2009-01-21,,,,, ,2374,udp,Reserved,,,,,,,, docker,2375,tcp,Docker REST API (plain text),[DOCKER],[Christopher_Liljenstolpe],2014-04-17,,,,, ,2375,udp,Reserved,,,,,,,, docker-s,2376,tcp,Docker REST API (ssl),[DOCKER],[Christopher_Liljenstolpe],2014-04-17,,,,, swarm,2377,tcp,RPC interface for Docker Swarm,[Docker_Inc],[Mike_Goelzer],2016-12-23,,,,, ,2377,udp,Reserved,,,,,,,, ,2378,,Unassigned,,,,,,,, etcd-client,2379,tcp,etcd client communication,[CoreOS],[Brian_Harrington],2014-07-09,,,,, ,2379,udp,Reserved,,,,,,,, etcd-server,2380,tcp,etcd server to server communication,[CoreOS],[Brian_Harrington],2014-07-09,,,,, ,2380,udp,Reserved,,,,,,,, compaq-https,2381,tcp,Compaq HTTPS,[Scott_Shaffer],[Scott_Shaffer],,,,,, compaq-https,2381,udp,Compaq HTTPS,[Scott_Shaffer],[Scott_Shaffer],,,,,, ms-olap3,2382,tcp,Microsoft OLAP,,,,,,,, |
4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 | tacticalauth,2392,tcp,Tactical Auth,[David_Yon],[David_Yon],,,,,, tacticalauth,2392,udp,Tactical Auth,[David_Yon],[David_Yon],,,,,, ms-olap1,2393,tcp,MS OLAP 1,,,,,,,, ms-olap1,2393,udp,MS OLAP 1,,,,,,,, ms-olap2,2394,tcp,MS OLAP 2,[Mosha_Pasumansky],[Mosha_Pasumansky],,,,,, ms-olap2,2394,udp,MS OLAP 2,[Mosha_Pasumansky],[Mosha_Pasumansky],,,,,, lan900-remote,2395,tcp,"LAN900 Remote IANA assigned this well-formed service name as a replacement for ""lan900_remote"".",[Tom_Quinlan],[Tom_Quinlan],,,,,, lan900_remote,2395,tcp,LAN900 Remote,[Tom_Quinlan],[Tom_Quinlan],,,,,,"This entry is an alias to ""lan900-remote"". This entry is now historic, not usable for use with many common service discovery mechanisms." lan900-remote,2395,udp,"LAN900 Remote IANA assigned this well-formed service name as a replacement for ""lan900_remote"".",[Tom_Quinlan],[Tom_Quinlan],,,,,, lan900_remote,2395,udp,LAN900 Remote,[Tom_Quinlan],[Tom_Quinlan],,,,,,"This entry is an alias to ""lan900-remote"". This entry is now historic, not usable for use with many common service discovery mechanisms." wusage,2396,tcp,Wusage,[Thomas_Boutell],[Thomas_Boutell],,,,,, wusage,2396,udp,Wusage,[Thomas_Boutell],[Thomas_Boutell],,,,,, ncl,2397,tcp,NCL,[Robert_Wiebe],[Robert_Wiebe],,,,,, | > > > > | 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 | tacticalauth,2392,tcp,Tactical Auth,[David_Yon],[David_Yon],,,,,, tacticalauth,2392,udp,Tactical Auth,[David_Yon],[David_Yon],,,,,, ms-olap1,2393,tcp,MS OLAP 1,,,,,,,, ms-olap1,2393,udp,MS OLAP 1,,,,,,,, ms-olap2,2394,tcp,MS OLAP 2,[Mosha_Pasumansky],[Mosha_Pasumansky],,,,,, ms-olap2,2394,udp,MS OLAP 2,[Mosha_Pasumansky],[Mosha_Pasumansky],,,,,, lan900-remote,2395,tcp,"LAN900 Remote IANA assigned this well-formed service name as a replacement for ""lan900_remote"".",[Tom_Quinlan],[Tom_Quinlan],,,,,, lan900_remote,2395,tcp,LAN900 Remote,[Tom_Quinlan],[Tom_Quinlan],,,,,,"This entry is an alias to ""lan900-remote"". This entry is now historic, not usable for use with many common service discovery mechanisms." lan900-remote,2395,udp,"LAN900 Remote IANA assigned this well-formed service name as a replacement for ""lan900_remote"".",[Tom_Quinlan],[Tom_Quinlan],,,,,, lan900_remote,2395,udp,LAN900 Remote,[Tom_Quinlan],[Tom_Quinlan],,,,,,"This entry is an alias to ""lan900-remote"". This entry is now historic, not usable for use with many common service discovery mechanisms." wusage,2396,tcp,Wusage,[Thomas_Boutell],[Thomas_Boutell],,,,,, wusage,2396,udp,Wusage,[Thomas_Boutell],[Thomas_Boutell],,,,,, ncl,2397,tcp,NCL,[Robert_Wiebe],[Robert_Wiebe],,,,,, |
4640 4641 4642 4643 4644 4645 4646 | crmsbits,2422,udp,CRMSBITS,[Rod_Ward],[Rod_Ward],,,,,, rnrp,2423,tcp,RNRP,[Per_Sahlqvist],[Per_Sahlqvist],,,,,, rnrp,2423,udp,RNRP,[Per_Sahlqvist],[Per_Sahlqvist],,,,,, kofax-svr,2424,tcp,KOFAX-SVR,[Steven_Kilby],[Steven_Kilby],2011-04-25,,,,, kofax-svr,2424,udp,KOFAX-SVR,[Steven_Kilby],[Steven_Kilby],2011-04-25,,,,, fjitsuappmgr,2425,tcp,Fujitsu App Manager,[Hiroyuki_Kawabuchi],[Hiroyuki_Kawabuchi],,,,,, fjitsuappmgr,2425,udp,Fujitsu App Manager,[Hiroyuki_Kawabuchi],[Hiroyuki_Kawabuchi],,,,,, | | > | 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 | crmsbits,2422,udp,CRMSBITS,[Rod_Ward],[Rod_Ward],,,,,, rnrp,2423,tcp,RNRP,[Per_Sahlqvist],[Per_Sahlqvist],,,,,, rnrp,2423,udp,RNRP,[Per_Sahlqvist],[Per_Sahlqvist],,,,,, kofax-svr,2424,tcp,KOFAX-SVR,[Steven_Kilby],[Steven_Kilby],2011-04-25,,,,, kofax-svr,2424,udp,KOFAX-SVR,[Steven_Kilby],[Steven_Kilby],2011-04-25,,,,, fjitsuappmgr,2425,tcp,Fujitsu App Manager,[Hiroyuki_Kawabuchi],[Hiroyuki_Kawabuchi],,,,,, fjitsuappmgr,2425,udp,Fujitsu App Manager,[Hiroyuki_Kawabuchi],[Hiroyuki_Kawabuchi],,,,,, vcmp,2426,tcp,VeloCloud MultiPath Protocol,[VeloCloud_Networks],[Tim_Van_Herck],2014-11-13,,,,,This port was previously removed on 2002-04-29. vcmp,2426,udp,VeloCloud MultiPath Protocol,[VeloCloud_Networks],[Tim_Van_Herck],2014-11-13,,,,,This port was previously removed on 2002-04-29. mgcp-gateway,2427,tcp,Media Gateway Control Protocol Gateway,[Christian_Huitema],[Christian_Huitema],,,,,, mgcp-gateway,2427,udp,Media Gateway Control Protocol Gateway,[Christian_Huitema],[Christian_Huitema],,,,,, ott,2428,tcp,One Way Trip Time,[Greg_Troxel],[Greg_Troxel],,,,,, ott,2428,udp,One Way Trip Time,[Greg_Troxel],[Greg_Troxel],,,,,, ft-role,2429,tcp,FT-ROLE,[Doug_Boone],[Doug_Boone],,,,,, ft-role,2429,udp,FT-ROLE,[Doug_Boone],[Doug_Boone],,,,,, venus,2430,tcp,venus,,,,,,,, |
4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 | powerclientcsf,2443,tcp,PowerClient Central Storage Facility,[Brian_Klassen],[Brian_Klassen],,,,,, powerclientcsf,2443,udp,PowerClient Central Storage Facility,[Brian_Klassen],[Brian_Klassen],,,,,, btpp2sectrans,2444,tcp,BT PP2 Sectrans,[Ian_Daniels],[Ian_Daniels],,,,,, btpp2sectrans,2444,udp,BT PP2 Sectrans,[Ian_Daniels],[Ian_Daniels],,,,,, dtn1,2445,tcp,DTN1,[Bob_Gaddie],[Bob_Gaddie],,,,,, dtn1,2445,udp,DTN1,[Bob_Gaddie],[Bob_Gaddie],,,,,, bues-service,2446,tcp,"bues_service IANA assigned this well-formed service name as a replacement for ""bues_service"".",[Leonhard_Diekmann],[Leonhard_Diekmann],,,,,, bues_service,2446,tcp,bues_service,[Leonhard_Diekmann],[Leonhard_Diekmann],,,,,,"This entry is an alias to ""bues-service"". This entry is now historic, not usable for use with many common service discovery mechanisms." bues-service,2446,udp,"bues_service IANA assigned this well-formed service name as a replacement for ""bues_service"".",[Leonhard_Diekmann],[Leonhard_Diekmann],,,,,, bues_service,2446,udp,bues_service,[Leonhard_Diekmann],[Leonhard_Diekmann],,,,,,"This entry is an alias to ""bues-service"". This entry is now historic, not usable for use with many common service discovery mechanisms." ovwdb,2447,tcp,OpenView NNM daemon,[Eric_Pulsipher_2],[Eric_Pulsipher_2],,,,,, ovwdb,2447,udp,OpenView NNM daemon,[Eric_Pulsipher_2],[Eric_Pulsipher_2],,,,,, hpppssvr,2448,tcp,hpppsvr,[Bridgette_Landers],[Bridgette_Landers],,,,,, | > > > > | 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 | powerclientcsf,2443,tcp,PowerClient Central Storage Facility,[Brian_Klassen],[Brian_Klassen],,,,,, powerclientcsf,2443,udp,PowerClient Central Storage Facility,[Brian_Klassen],[Brian_Klassen],,,,,, btpp2sectrans,2444,tcp,BT PP2 Sectrans,[Ian_Daniels],[Ian_Daniels],,,,,, btpp2sectrans,2444,udp,BT PP2 Sectrans,[Ian_Daniels],[Ian_Daniels],,,,,, dtn1,2445,tcp,DTN1,[Bob_Gaddie],[Bob_Gaddie],,,,,, dtn1,2445,udp,DTN1,[Bob_Gaddie],[Bob_Gaddie],,,,,, bues-service,2446,tcp,"bues_service IANA assigned this well-formed service name as a replacement for ""bues_service"".",[Leonhard_Diekmann],[Leonhard_Diekmann],,,,,, bues_service,2446,tcp,bues_service,[Leonhard_Diekmann],[Leonhard_Diekmann],,,,,,"This entry is an alias to ""bues-service"". This entry is now historic, not usable for use with many common service discovery mechanisms." bues-service,2446,udp,"bues_service IANA assigned this well-formed service name as a replacement for ""bues_service"".",[Leonhard_Diekmann],[Leonhard_Diekmann],,,,,, bues_service,2446,udp,bues_service,[Leonhard_Diekmann],[Leonhard_Diekmann],,,,,,"This entry is an alias to ""bues-service"". This entry is now historic, not usable for use with many common service discovery mechanisms." ovwdb,2447,tcp,OpenView NNM daemon,[Eric_Pulsipher_2],[Eric_Pulsipher_2],,,,,, ovwdb,2447,udp,OpenView NNM daemon,[Eric_Pulsipher_2],[Eric_Pulsipher_2],,,,,, hpppssvr,2448,tcp,hpppsvr,[Bridgette_Landers],[Bridgette_Landers],,,,,, |
4713 4714 4715 4716 4717 4718 4719 | wago-io-system,2455,udp,WAGO-IO-SYSTEM,[Jorg_Hoffmann],[Jorg_Hoffmann],,,,,, altav-remmgt,2456,tcp,altav-remmgt,[Gary_M_Allen],[Gary_M_Allen],,,,,, altav-remmgt,2456,udp,altav-remmgt,[Gary_M_Allen],[Gary_M_Allen],,,,,, rapido-ip,2457,tcp,Rapido_IP,[Man_Shuen_Cheung],[Man_Shuen_Cheung],,,,,, rapido-ip,2457,udp,Rapido_IP,[Man_Shuen_Cheung],[Man_Shuen_Cheung],,,,,, griffin,2458,tcp,griffin,[Tom_Taylor],[Tom_Taylor],,,,,, griffin,2458,udp,griffin,[Tom_Taylor],[Tom_Taylor],,,,,, | | | | 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 | wago-io-system,2455,udp,WAGO-IO-SYSTEM,[Jorg_Hoffmann],[Jorg_Hoffmann],,,,,, altav-remmgt,2456,tcp,altav-remmgt,[Gary_M_Allen],[Gary_M_Allen],,,,,, altav-remmgt,2456,udp,altav-remmgt,[Gary_M_Allen],[Gary_M_Allen],,,,,, rapido-ip,2457,tcp,Rapido_IP,[Man_Shuen_Cheung],[Man_Shuen_Cheung],,,,,, rapido-ip,2457,udp,Rapido_IP,[Man_Shuen_Cheung],[Man_Shuen_Cheung],,,,,, griffin,2458,tcp,griffin,[Tom_Taylor],[Tom_Taylor],,,,,, griffin,2458,udp,griffin,[Tom_Taylor],[Tom_Taylor],,,,,, xrpl,2459,tcp,Community,[David_Schwartz],[David_Schwartz],,2019-08-09,,,, xrpl,2459,udp,Community,[David_Schwartz],[David_Schwartz],,2019-08-09,,,, ms-theater,2460,tcp,ms-theater,[Anton_Kucer],[Anton_Kucer],,,,,, ms-theater,2460,udp,ms-theater,[Anton_Kucer],[Anton_Kucer],,,,,, qadmifoper,2461,tcp,qadmifoper,,,,,,,, qadmifoper,2461,udp,qadmifoper,,,,,,,, qadmifevent,2462,tcp,qadmifevent,[Pekka_Takaranta],[Pekka_Takaranta],,,,,, qadmifevent,2462,udp,qadmifevent,[Pekka_Takaranta],[Pekka_Takaranta],,,,,, lsi-raid-mgmt,2463,tcp,LSI RAID Management,[NetApp],[MSW_architecture_team],,2014-07-18,,,, |
4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 | ms-v-worlds,2525,tcp,MS V-Worlds,[Pete_Wong],[Pete_Wong],,,,,, ms-v-worlds,2525,udp,MS V-Worlds,[Pete_Wong],[Pete_Wong],,,,,, ema-sent-lm,2526,tcp,EMA License Manager,[Thaddeus_Perala],[Thaddeus_Perala],,,,,, ema-sent-lm,2526,udp,EMA License Manager,[Thaddeus_Perala],[Thaddeus_Perala],,,,,, iqserver,2527,tcp,IQ Server,[Nick_Straguzzi],[Nick_Straguzzi],,,,,, iqserver,2527,udp,IQ Server,[Nick_Straguzzi],[Nick_Straguzzi],,,,,, ncr-ccl,2528,tcp,"NCR CCL IANA assigned this well-formed service name as a replacement for ""ncr_ccl"".",[Amitava_Dutta],[Amitava_Dutta],,,,,, ncr_ccl,2528,tcp,NCR CCL,[Amitava_Dutta],[Amitava_Dutta],,,,,,"This entry is an alias to ""ncr-ccl"". This entry is now historic, not usable for use with many common service discovery mechanisms." ncr-ccl,2528,udp,"NCR CCL IANA assigned this well-formed service name as a replacement for ""ncr_ccl"".",[Amitava_Dutta],[Amitava_Dutta],,,,,, ncr_ccl,2528,udp,NCR CCL,[Amitava_Dutta],[Amitava_Dutta],,,,,,"This entry is an alias to ""ncr-ccl"". This entry is now historic, not usable for use with many common service discovery mechanisms." utsftp,2529,tcp,UTS FTP,[David_Moore],[David_Moore],,,,,, utsftp,2529,udp,UTS FTP,[David_Moore],[David_Moore],,,,,, vrcommerce,2530,tcp,VR Commerce,[Yosi_Mass],[Yosi_Mass],,,,,, | > > > > | 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 | ms-v-worlds,2525,tcp,MS V-Worlds,[Pete_Wong],[Pete_Wong],,,,,, ms-v-worlds,2525,udp,MS V-Worlds,[Pete_Wong],[Pete_Wong],,,,,, ema-sent-lm,2526,tcp,EMA License Manager,[Thaddeus_Perala],[Thaddeus_Perala],,,,,, ema-sent-lm,2526,udp,EMA License Manager,[Thaddeus_Perala],[Thaddeus_Perala],,,,,, iqserver,2527,tcp,IQ Server,[Nick_Straguzzi],[Nick_Straguzzi],,,,,, iqserver,2527,udp,IQ Server,[Nick_Straguzzi],[Nick_Straguzzi],,,,,, ncr-ccl,2528,tcp,"NCR CCL IANA assigned this well-formed service name as a replacement for ""ncr_ccl"".",[Amitava_Dutta],[Amitava_Dutta],,,,,, ncr_ccl,2528,tcp,NCR CCL,[Amitava_Dutta],[Amitava_Dutta],,,,,,"This entry is an alias to ""ncr-ccl"". This entry is now historic, not usable for use with many common service discovery mechanisms." ncr-ccl,2528,udp,"NCR CCL IANA assigned this well-formed service name as a replacement for ""ncr_ccl"".",[Amitava_Dutta],[Amitava_Dutta],,,,,, ncr_ccl,2528,udp,NCR CCL,[Amitava_Dutta],[Amitava_Dutta],,,,,,"This entry is an alias to ""ncr-ccl"". This entry is now historic, not usable for use with many common service discovery mechanisms." utsftp,2529,tcp,UTS FTP,[David_Moore],[David_Moore],,,,,, utsftp,2529,udp,UTS FTP,[David_Moore],[David_Moore],,,,,, vrcommerce,2530,tcp,VR Commerce,[Yosi_Mass],[Yosi_Mass],,,,,, |
5083 5084 5085 5086 5087 5088 5089 | solve,2636,udp,Solve,[Peter_Morrison],[Peter_Morrison],,,,,, imdocsvc,2637,tcp,Import Document Service,[Zia_Bhatti],[Zia_Bhatti],,,,,, imdocsvc,2637,udp,Import Document Service,[Zia_Bhatti],[Zia_Bhatti],,,,,, sybaseanywhere,2638,tcp,Sybase Anywhere,[Dave_Neudoerffer],[Dave_Neudoerffer],,,,,, sybaseanywhere,2638,udp,Sybase Anywhere,[Dave_Neudoerffer],[Dave_Neudoerffer],,,,,, aminet,2639,tcp,AMInet,[Alcorn_McBride_Inc],[Alcorn_McBride_Inc],,,,,, aminet,2639,udp,AMInet,[Alcorn_McBride_Inc],[Alcorn_McBride_Inc],,,,,, | | < < < < | < < < < | 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 | solve,2636,udp,Solve,[Peter_Morrison],[Peter_Morrison],,,,,, imdocsvc,2637,tcp,Import Document Service,[Zia_Bhatti],[Zia_Bhatti],,,,,, imdocsvc,2637,udp,Import Document Service,[Zia_Bhatti],[Zia_Bhatti],,,,,, sybaseanywhere,2638,tcp,Sybase Anywhere,[Dave_Neudoerffer],[Dave_Neudoerffer],,,,,, sybaseanywhere,2638,udp,Sybase Anywhere,[Dave_Neudoerffer],[Dave_Neudoerffer],,,,,, aminet,2639,tcp,AMInet,[Alcorn_McBride_Inc],[Alcorn_McBride_Inc],,,,,, aminet,2639,udp,AMInet,[Alcorn_McBride_Inc],[Alcorn_McBride_Inc],,,,,, ami-control,2640,tcp,Alcorn McBride Inc protocol used for device control,[Alcorn_McBride_Inc],[Joy_Burke],,,,,, ami-control,2640,udp,Alcorn McBride Inc protocol used for device control,[Alcorn_McBride_Inc],[Joy_Burke],,,,,, hdl-srv,2641,tcp,HDL Server,[David_Ely],[David_Ely],,,,,, hdl-srv,2641,udp,HDL Server,[David_Ely],[David_Ely],,,,,, tragic,2642,tcp,Tragic,[Stu_Mark],[Stu_Mark],,,,,, tragic,2642,udp,Tragic,[Stu_Mark],[Stu_Mark],,,,,, gte-samp,2643,tcp,GTE-SAMP,[Asher_Altman],[Asher_Altman],,,,,, gte-samp,2643,udp,GTE-SAMP,[Asher_Altman],[Asher_Altman],,,,,, travsoft-ipx-t,2644,tcp,Travsoft IPX Tunnel,[Jack_Wilson],[Jack_Wilson],,,,,, |
5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 | ebinsite,2651,tcp,EBInSite,[Lefteris_Kalamaras],[Lefteris_Kalamaras],,,,,, ebinsite,2651,udp,EBInSite,[Lefteris_Kalamaras],[Lefteris_Kalamaras],,,,,, interpathpanel,2652,tcp,InterPathPanel,[Stephen_Misel],[Stephen_Misel],,,,,, interpathpanel,2652,udp,InterPathPanel,[Stephen_Misel],[Stephen_Misel],,,,,, sonus,2653,tcp,Sonus,[Mark_Garti],[Mark_Garti],,,,,, sonus,2653,udp,Sonus,[Mark_Garti],[Mark_Garti],,,,,, corel-vncadmin,2654,tcp,"Corel VNC Admin IANA assigned this well-formed service name as a replacement for ""corel_vncadmin"".",[Oleg_Noskov],[Oleg_Noskov],,,,,, corel_vncadmin,2654,tcp,Corel VNC Admin,[Oleg_Noskov],[Oleg_Noskov],,,,,,"This entry is an alias to ""corel-vncadmin"". This entry is now historic, not usable for use with many common service discovery mechanisms." corel-vncadmin,2654,udp,"Corel VNC Admin IANA assigned this well-formed service name as a replacement for ""corel_vncadmin"".",[Oleg_Noskov],[Oleg_Noskov],,,,,, corel_vncadmin,2654,udp,Corel VNC Admin,[Oleg_Noskov],[Oleg_Noskov],,,,,,"This entry is an alias to ""corel-vncadmin"". This entry is now historic, not usable for use with many common service discovery mechanisms." unglue,2655,tcp,UNIX Nt Glue,[Peter_Santoro],[Peter_Santoro],,,,,, unglue,2655,udp,UNIX Nt Glue,[Peter_Santoro],[Peter_Santoro],,,,,, kana,2656,tcp,Kana,[Colin_Goldstein],[Colin_Goldstein],,,,,, | > > > > | 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 | ebinsite,2651,tcp,EBInSite,[Lefteris_Kalamaras],[Lefteris_Kalamaras],,,,,, ebinsite,2651,udp,EBInSite,[Lefteris_Kalamaras],[Lefteris_Kalamaras],,,,,, interpathpanel,2652,tcp,InterPathPanel,[Stephen_Misel],[Stephen_Misel],,,,,, interpathpanel,2652,udp,InterPathPanel,[Stephen_Misel],[Stephen_Misel],,,,,, sonus,2653,tcp,Sonus,[Mark_Garti],[Mark_Garti],,,,,, sonus,2653,udp,Sonus,[Mark_Garti],[Mark_Garti],,,,,, corel-vncadmin,2654,tcp,"Corel VNC Admin IANA assigned this well-formed service name as a replacement for ""corel_vncadmin"".",[Oleg_Noskov],[Oleg_Noskov],,,,,, corel_vncadmin,2654,tcp,Corel VNC Admin,[Oleg_Noskov],[Oleg_Noskov],,,,,,"This entry is an alias to ""corel-vncadmin"". This entry is now historic, not usable for use with many common service discovery mechanisms." corel-vncadmin,2654,udp,"Corel VNC Admin IANA assigned this well-formed service name as a replacement for ""corel_vncadmin"".",[Oleg_Noskov],[Oleg_Noskov],,,,,, corel_vncadmin,2654,udp,Corel VNC Admin,[Oleg_Noskov],[Oleg_Noskov],,,,,,"This entry is an alias to ""corel-vncadmin"". This entry is now historic, not usable for use with many common service discovery mechanisms." unglue,2655,tcp,UNIX Nt Glue,[Peter_Santoro],[Peter_Santoro],,,,,, unglue,2655,udp,UNIX Nt Glue,[Peter_Santoro],[Peter_Santoro],,,,,, kana,2656,tcp,Kana,[Colin_Goldstein],[Colin_Goldstein],,,,,, |
5281 5282 5283 5284 5285 5286 5287 | sqdr,2728,tcp,SQDR,[Matthew_Orzen],[Matthew_Orzen],,,,,, sqdr,2728,udp,SQDR,[Matthew_Orzen],[Matthew_Orzen],,,,,, tcim-control,2729,tcp,TCIM Control,[Dean_Skelton],[Dean_Skelton],,,,,, tcim-control,2729,udp,TCIM Control,[Dean_Skelton],[Dean_Skelton],,,,,, nec-raidplus,2730,tcp,NEC RaidPlus,[Yusuke_Asai],[Yusuke_Asai],,,,,, nec-raidplus,2730,udp,NEC RaidPlus,[Yusuke_Asai],[Yusuke_Asai],,,,,, fyre-messanger,2731,tcp,Fyre Messanger,[Robert_Waters],[Robert_Waters],,,,,, | | | 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 | sqdr,2728,tcp,SQDR,[Matthew_Orzen],[Matthew_Orzen],,,,,, sqdr,2728,udp,SQDR,[Matthew_Orzen],[Matthew_Orzen],,,,,, tcim-control,2729,tcp,TCIM Control,[Dean_Skelton],[Dean_Skelton],,,,,, tcim-control,2729,udp,TCIM Control,[Dean_Skelton],[Dean_Skelton],,,,,, nec-raidplus,2730,tcp,NEC RaidPlus,[Yusuke_Asai],[Yusuke_Asai],,,,,, nec-raidplus,2730,udp,NEC RaidPlus,[Yusuke_Asai],[Yusuke_Asai],,,,,, fyre-messanger,2731,tcp,Fyre Messanger,[Robert_Waters],[Robert_Waters],,,,,, fyre-messanger,2731,udp,Fyre Messanger,[Robert_Waters],[Robert_Waters],,,,,, g5m,2732,tcp,G5M,[Graham_Klyne],[Graham_Klyne],,,,,, g5m,2732,udp,G5M,[Graham_Klyne],[Graham_Klyne],,,,,, signet-ctf,2733,tcp,Signet CTF,[Greg_Broiles],[Greg_Broiles],,,,,, signet-ctf,2733,udp,Signet CTF,[Greg_Broiles],[Greg_Broiles],,,,,, ccs-software,2734,tcp,CCS Software,[Bertus_Jacobs],[Bertus_Jacobs],,,,,, ccs-software,2734,udp,CCS Software,[Bertus_Jacobs],[Bertus_Jacobs],,,,,, netiq-mc,2735,tcp,NetIQ Monitor Console,[Scott_Southard],[Scott_Southard],2010-08-25,,,,, |
5552 5553 5554 5555 5556 5557 5558 | astromed-main,2864,udp,main 5001 cmd,[Chris_Tate],[Chris_Tate],,,,,, pit-vpn,2865,tcp,pit-vpn,[Norbert_Sendetzky],[Norbert_Sendetzky],,,,,, pit-vpn,2865,udp,pit-vpn,[Norbert_Sendetzky],[Norbert_Sendetzky],,,,,, iwlistener,2866,tcp,iwlistener,[Fred_Surr],[Fred_Surr],,,,,, iwlistener,2866,udp,iwlistener,[Fred_Surr],[Fred_Surr],,,,,, esps-portal,2867,tcp,esps-portal,[Nicholas_Stowfis],[Nicholas_Stowfis],,,,,, esps-portal,2867,udp,esps-portal,[Nicholas_Stowfis],[Nicholas_Stowfis],,,,,, | | | | 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 | astromed-main,2864,udp,main 5001 cmd,[Chris_Tate],[Chris_Tate],,,,,, pit-vpn,2865,tcp,pit-vpn,[Norbert_Sendetzky],[Norbert_Sendetzky],,,,,, pit-vpn,2865,udp,pit-vpn,[Norbert_Sendetzky],[Norbert_Sendetzky],,,,,, iwlistener,2866,tcp,iwlistener,[Fred_Surr],[Fred_Surr],,,,,, iwlistener,2866,udp,iwlistener,[Fred_Surr],[Fred_Surr],,,,,, esps-portal,2867,tcp,esps-portal,[Nicholas_Stowfis],[Nicholas_Stowfis],,,,,, esps-portal,2867,udp,esps-portal,[Nicholas_Stowfis],[Nicholas_Stowfis],,,,,, npep-messaging,2868,tcp,Norman Proprietaqry Events Protocol,[AVG_Technologies_Norway_AS],[Kristian_A_Bognaes_2],,2015-05-20,,,, npep-messaging,2868,udp,Norman Proprietaqry Events Protocol,[AVG_Technologies_Norway_AS],[Kristian_A_Bognaes_2],,2015-05-20,,,, icslap,2869,tcp,ICSLAP,[Richard_Lamb],[Richard_Lamb],,,,,, icslap,2869,udp,ICSLAP,[Richard_Lamb],[Richard_Lamb],,,,,, daishi,2870,tcp,daishi,[Patrick_Chipman],[Patrick_Chipman],,,,,, daishi,2870,udp,daishi,[Patrick_Chipman],[Patrick_Chipman],,,,,, msi-selectplay,2871,tcp,MSI Select Play,[Paul_Fonte],[Paul_Fonte],,,,,, msi-selectplay,2871,udp,MSI Select Play,[Paul_Fonte],[Paul_Fonte],,,,,, radix,2872,tcp,RADIX,[Stein_Roger_Skaflott],[Stein_Roger_Skaflott],,2011-07-06,,,, |
5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 | boosterware,2913,tcp,Booster Ware,[Ido_Ben_David],[Ido_Ben_David],,,,,, boosterware,2913,udp,Booster Ware,[Ido_Ben_David],[Ido_Ben_David],,,,,, gamelobby,2914,tcp,Game Lobby,[Paul_Ford_Hutchinson],[Paul_Ford_Hutchinson],,,,,, gamelobby,2914,udp,Game Lobby,[Paul_Ford_Hutchinson],[Paul_Ford_Hutchinson],,,,,, tksocket,2915,tcp,TK Socket,[Dino_Ciano],[Dino_Ciano],2011-03-02,,,,, tksocket,2915,udp,TK Socket,[Dino_Ciano],[Dino_Ciano],2011-03-02,,,,, elvin-server,2916,tcp,"Elvin Server IANA assigned this well-formed service name as a replacement for ""elvin_server"".",,,,,,,, elvin_server,2916,tcp,Elvin Server,,,,,,,,"This entry is an alias to ""elvin-server"". This entry is now historic, not usable for use with many common service discovery mechanisms." elvin-server,2916,udp,"Elvin Server IANA assigned this well-formed service name as a replacement for ""elvin_server"".",,,,,,,, elvin_server,2916,udp,Elvin Server,,,,,,,,"This entry is an alias to ""elvin-server"". This entry is now historic, not usable for use with many common service discovery mechanisms." elvin-client,2917,tcp,"Elvin Client IANA assigned this well-formed service name as a replacement for ""elvin_client"".",[David_Arnold],[David_Arnold],,,,,, elvin_client,2917,tcp,Elvin Client,[David_Arnold],[David_Arnold],,,,,,"This entry is an alias to ""elvin-client"". This entry is now historic, not usable for use with many common service discovery mechanisms." elvin-client,2917,udp,"Elvin Client IANA assigned this well-formed service name as a replacement for ""elvin_client"".",[David_Arnold],[David_Arnold],,,,,, elvin_client,2917,udp,Elvin Client,[David_Arnold],[David_Arnold],,,,,,"This entry is an alias to ""elvin-client"". This entry is now historic, not usable for use with many common service discovery mechanisms." kastenchasepad,2918,tcp,Kasten Chase Pad,[Marc_Gauthier],[Marc_Gauthier],,,,,, kastenchasepad,2918,udp,Kasten Chase Pad,[Marc_Gauthier],[Marc_Gauthier],,,,,, roboer,2919,tcp,roboER,[Paul_Snook],[Paul_Snook],,,,,, | > > > > > > > > | 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 | boosterware,2913,tcp,Booster Ware,[Ido_Ben_David],[Ido_Ben_David],,,,,, boosterware,2913,udp,Booster Ware,[Ido_Ben_David],[Ido_Ben_David],,,,,, gamelobby,2914,tcp,Game Lobby,[Paul_Ford_Hutchinson],[Paul_Ford_Hutchinson],,,,,, gamelobby,2914,udp,Game Lobby,[Paul_Ford_Hutchinson],[Paul_Ford_Hutchinson],,,,,, tksocket,2915,tcp,TK Socket,[Dino_Ciano],[Dino_Ciano],2011-03-02,,,,, tksocket,2915,udp,TK Socket,[Dino_Ciano],[Dino_Ciano],2011-03-02,,,,, elvin-server,2916,tcp,"Elvin Server IANA assigned this well-formed service name as a replacement for ""elvin_server"".",,,,,,,, elvin_server,2916,tcp,Elvin Server,,,,,,,,"This entry is an alias to ""elvin-server"". This entry is now historic, not usable for use with many common service discovery mechanisms." elvin-server,2916,udp,"Elvin Server IANA assigned this well-formed service name as a replacement for ""elvin_server"".",,,,,,,, elvin_server,2916,udp,Elvin Server,,,,,,,,"This entry is an alias to ""elvin-server"". This entry is now historic, not usable for use with many common service discovery mechanisms." elvin-client,2917,tcp,"Elvin Client IANA assigned this well-formed service name as a replacement for ""elvin_client"".",[David_Arnold],[David_Arnold],,,,,, elvin_client,2917,tcp,Elvin Client,[David_Arnold],[David_Arnold],,,,,,"This entry is an alias to ""elvin-client"". This entry is now historic, not usable for use with many common service discovery mechanisms." elvin-client,2917,udp,"Elvin Client IANA assigned this well-formed service name as a replacement for ""elvin_client"".",[David_Arnold],[David_Arnold],,,,,, elvin_client,2917,udp,Elvin Client,[David_Arnold],[David_Arnold],,,,,,"This entry is an alias to ""elvin-client"". This entry is now historic, not usable for use with many common service discovery mechanisms." kastenchasepad,2918,tcp,Kasten Chase Pad,[Marc_Gauthier],[Marc_Gauthier],,,,,, kastenchasepad,2918,udp,Kasten Chase Pad,[Marc_Gauthier],[Marc_Gauthier],,,,,, roboer,2919,tcp,roboER,[Paul_Snook],[Paul_Snook],,,,,, |
5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 | trusted-web,3011,tcp,Trusted Web,,,,,,,, trusted-web,3011,udp,Trusted Web,,,,,,,, twsdss,3012,tcp,Trusted Web Client,[Alex_Duncan],[Alex_Duncan],,,,,, twsdss,3012,udp,Trusted Web Client,[Alex_Duncan],[Alex_Duncan],,,,,, gilatskysurfer,3013,tcp,Gilat Sky Surfer,[Yossi_Gal],[Yossi_Gal],,,,,, gilatskysurfer,3013,udp,Gilat Sky Surfer,[Yossi_Gal],[Yossi_Gal],,,,,, broker-service,3014,tcp,"Broker Service IANA assigned this well-formed service name as a replacement for ""broker_service"".",[Dale_Bethers],[Dale_Bethers],,,,,, broker_service,3014,tcp,Broker Service,[Dale_Bethers],[Dale_Bethers],,,,,,"This entry is an alias to ""broker-service"". This entry is now historic, not usable for use with many common service discovery mechanisms." broker-service,3014,udp,"Broker Service IANA assigned this well-formed service name as a replacement for ""broker_service"".",[Dale_Bethers],[Dale_Bethers],,,,,, broker_service,3014,udp,Broker Service,[Dale_Bethers],[Dale_Bethers],,,,,,"This entry is an alias to ""broker-service"". This entry is now historic, not usable for use with many common service discovery mechanisms." nati-dstp,3015,tcp,NATI DSTP,[Paul_Austin],[Paul_Austin],,,,,, nati-dstp,3015,udp,NATI DSTP,[Paul_Austin],[Paul_Austin],,,,,, notify-srvr,3016,tcp,"Notify Server IANA assigned this well-formed service name as a replacement for ""notify_srvr"".",[Hugo_Parra],[Hugo_Parra],,,,,, notify_srvr,3016,tcp,Notify Server,[Hugo_Parra],[Hugo_Parra],,,,,,"This entry is an alias to ""notify-srvr"". This entry is now historic, not usable for use with many common service discovery mechanisms." notify-srvr,3016,udp,"Notify Server IANA assigned this well-formed service name as a replacement for ""notify_srvr"".",[Hugo_Parra],[Hugo_Parra],,,,,, notify_srvr,3016,udp,Notify Server,[Hugo_Parra],[Hugo_Parra],,,,,,"This entry is an alias to ""notify-srvr"". This entry is now historic, not usable for use with many common service discovery mechanisms." event-listener,3017,tcp,"Event Listener IANA assigned this well-formed service name as a replacement for ""event_listener"".",[Ted_Tronson],[Ted_Tronson],,,,,, event_listener,3017,tcp,Event Listener,[Ted_Tronson],[Ted_Tronson],,,,,,"This entry is an alias to ""event-listener"". This entry is now historic, not usable for use with many common service discovery mechanisms." event-listener,3017,udp,"Event Listener IANA assigned this well-formed service name as a replacement for ""event_listener"".",[Ted_Tronson],[Ted_Tronson],,,,,, event_listener,3017,udp,Event Listener,[Ted_Tronson],[Ted_Tronson],,,,,,"This entry is an alias to ""event-listener"". This entry is now historic, not usable for use with many common service discovery mechanisms." srvc-registry,3018,tcp,"Service Registry IANA assigned this well-formed service name as a replacement for ""srvc_registry"".",[Mark_Killgore],[Mark_Killgore],,,,,, srvc_registry,3018,tcp,Service Registry,[Mark_Killgore],[Mark_Killgore],,,,,,"This entry is an alias to ""srvc-registry"". This entry is now historic, not usable for use with many common service discovery mechanisms." srvc-registry,3018,udp,"Service Registry IANA assigned this well-formed service name as a replacement for ""srvc_registry"".",[Mark_Killgore],[Mark_Killgore],,,,,, srvc_registry,3018,udp,Service Registry,[Mark_Killgore],[Mark_Killgore],,,,,,"This entry is an alias to ""srvc-registry"". This entry is now historic, not usable for use with many common service discovery mechanisms." resource-mgr,3019,tcp,"Resource Manager IANA assigned this well-formed service name as a replacement for ""resource_mgr"".",[Gary_Glover],[Gary_Glover],,,,,, resource_mgr,3019,tcp,Resource Manager,[Gary_Glover],[Gary_Glover],,,,,,"This entry is an alias to ""resource-mgr"". This entry is now historic, not usable for use with many common service discovery mechanisms." resource-mgr,3019,udp,"Resource Manager IANA assigned this well-formed service name as a replacement for ""resource_mgr"".",[Gary_Glover],[Gary_Glover],,,,,, resource_mgr,3019,udp,Resource Manager,[Gary_Glover],[Gary_Glover],,,,,,"This entry is an alias to ""resource-mgr"". This entry is now historic, not usable for use with many common service discovery mechanisms." cifs,3020,tcp,CIFS,[Paul_Leach],[Paul_Leach],,,,,, cifs,3020,udp,CIFS,[Paul_Leach],[Paul_Leach],,,,,, agriserver,3021,tcp,AGRI Server,[Frank_Neulichedl],[Frank_Neulichedl],,,,,, agriserver,3021,udp,AGRI Server,[Frank_Neulichedl],[Frank_Neulichedl],,,,,, csregagent,3022,tcp,CSREGAGENT,[Nedelcho_Stanev],[Nedelcho_Stanev],,,,,, csregagent,3022,udp,CSREGAGENT,[Nedelcho_Stanev],[Nedelcho_Stanev],,,,,, magicnotes,3023,tcp,magicnotes,[Karl_Edwall],[Karl_Edwall],,,,,, magicnotes,3023,udp,magicnotes,[Karl_Edwall],[Karl_Edwall],,,,,, nds-sso,3024,tcp,"NDS_SSO IANA assigned this well-formed service name as a replacement for ""nds_sso"".",[Mel_Oyler],[Mel_Oyler],,,,,, nds_sso,3024,tcp,NDS_SSO,[Mel_Oyler],[Mel_Oyler],,,,,,"This entry is an alias to ""nds-sso"". This entry is now historic, not usable for use with many common service discovery mechanisms." nds-sso,3024,udp,"NDS_SSO IANA assigned this well-formed service name as a replacement for ""nds_sso"".",[Mel_Oyler],[Mel_Oyler],,,,,, nds_sso,3024,udp,NDS_SSO,[Mel_Oyler],[Mel_Oyler],,,,,,"This entry is an alias to ""nds-sso"". This entry is now historic, not usable for use with many common service discovery mechanisms." arepa-raft,3025,tcp,Arepa Raft,[Stuart_Schaefer],[Stuart_Schaefer],,,,,, arepa-raft,3025,udp,Arepa Raft,[Stuart_Schaefer],[Stuart_Schaefer],,,,,, agri-gateway,3026,tcp,AGRI Gateway,[Agri_Datalog],[Agri_Datalog],,,,,, agri-gateway,3026,udp,AGRI Gateway,[Agri_Datalog],[Agri_Datalog],,,,,, LiebDevMgmt-C,3027,tcp,"LiebDevMgmt_C IANA assigned this well-formed service name as a replacement for ""LiebDevMgmt_C"".",,,,,,,, LiebDevMgmt_C,3027,tcp,LiebDevMgmt_C,,,,,,,,"This entry is an alias to ""LiebDevMgmt-C"". This entry is now historic, not usable for use with many common service discovery mechanisms." LiebDevMgmt-C,3027,udp,"LiebDevMgmt_C IANA assigned this well-formed service name as a replacement for ""LiebDevMgmt_C"".",,,,,,,, LiebDevMgmt_C,3027,udp,LiebDevMgmt_C,,,,,,,,"This entry is an alias to ""LiebDevMgmt-C"". This entry is now historic, not usable for use with many common service discovery mechanisms." LiebDevMgmt-DM,3028,tcp,"LiebDevMgmt_DM IANA assigned this well-formed service name as a replacement for ""LiebDevMgmt_DM"".",,,,,,,, LiebDevMgmt_DM,3028,tcp,LiebDevMgmt_DM,,,,,,,,"This entry is an alias to ""LiebDevMgmt-DM"". This entry is now historic, not usable for use with many common service discovery mechanisms." LiebDevMgmt-DM,3028,udp,"LiebDevMgmt_DM IANA assigned this well-formed service name as a replacement for ""LiebDevMgmt_DM"".",,,,,,,, LiebDevMgmt_DM,3028,udp,LiebDevMgmt_DM,,,,,,,,"This entry is an alias to ""LiebDevMgmt-DM"". This entry is now historic, not usable for use with many common service discovery mechanisms." LiebDevMgmt-A,3029,tcp,"LiebDevMgmt_A IANA assigned this well-formed service name as a replacement for ""LiebDevMgmt_A"".",[Mike_Velten],[Mike_Velten],,,,,, LiebDevMgmt_A,3029,tcp,LiebDevMgmt_A,[Mike_Velten],[Mike_Velten],,,,,,"This entry is an alias to ""LiebDevMgmt-A"". This entry is now historic, not usable for use with many common service discovery mechanisms." LiebDevMgmt-A,3029,udp,"LiebDevMgmt_A IANA assigned this well-formed service name as a replacement for ""LiebDevMgmt_A"".",[Mike_Velten],[Mike_Velten],,,,,, LiebDevMgmt_A,3029,udp,LiebDevMgmt_A,[Mike_Velten],[Mike_Velten],,,,,,"This entry is an alias to ""LiebDevMgmt-A"". This entry is now historic, not usable for use with many common service discovery mechanisms." arepa-cas,3030,tcp,Arepa Cas,[Stuart_Schaefer],[Stuart_Schaefer],,,,,, arepa-cas,3030,udp,Arepa Cas,[Stuart_Schaefer],[Stuart_Schaefer],,,,,, eppc,3031,tcp,Remote AppleEvents/PPC Toolbox,[Steve_Zellers],[Steve_Zellers],,,,,, | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 | trusted-web,3011,tcp,Trusted Web,,,,,,,, trusted-web,3011,udp,Trusted Web,,,,,,,, twsdss,3012,tcp,Trusted Web Client,[Alex_Duncan],[Alex_Duncan],,,,,, twsdss,3012,udp,Trusted Web Client,[Alex_Duncan],[Alex_Duncan],,,,,, gilatskysurfer,3013,tcp,Gilat Sky Surfer,[Yossi_Gal],[Yossi_Gal],,,,,, gilatskysurfer,3013,udp,Gilat Sky Surfer,[Yossi_Gal],[Yossi_Gal],,,,,, broker-service,3014,tcp,"Broker Service IANA assigned this well-formed service name as a replacement for ""broker_service"".",[Dale_Bethers],[Dale_Bethers],,,,,, broker_service,3014,tcp,Broker Service,[Dale_Bethers],[Dale_Bethers],,,,,,"This entry is an alias to ""broker-service"". This entry is now historic, not usable for use with many common service discovery mechanisms." broker-service,3014,udp,"Broker Service IANA assigned this well-formed service name as a replacement for ""broker_service"".",[Dale_Bethers],[Dale_Bethers],,,,,, broker_service,3014,udp,Broker Service,[Dale_Bethers],[Dale_Bethers],,,,,,"This entry is an alias to ""broker-service"". This entry is now historic, not usable for use with many common service discovery mechanisms." nati-dstp,3015,tcp,NATI DSTP,[Paul_Austin],[Paul_Austin],,,,,, nati-dstp,3015,udp,NATI DSTP,[Paul_Austin],[Paul_Austin],,,,,, notify-srvr,3016,tcp,"Notify Server IANA assigned this well-formed service name as a replacement for ""notify_srvr"".",[Hugo_Parra],[Hugo_Parra],,,,,, notify_srvr,3016,tcp,Notify Server,[Hugo_Parra],[Hugo_Parra],,,,,,"This entry is an alias to ""notify-srvr"". This entry is now historic, not usable for use with many common service discovery mechanisms." notify-srvr,3016,udp,"Notify Server IANA assigned this well-formed service name as a replacement for ""notify_srvr"".",[Hugo_Parra],[Hugo_Parra],,,,,, notify_srvr,3016,udp,Notify Server,[Hugo_Parra],[Hugo_Parra],,,,,,"This entry is an alias to ""notify-srvr"". This entry is now historic, not usable for use with many common service discovery mechanisms." event-listener,3017,tcp,"Event Listener IANA assigned this well-formed service name as a replacement for ""event_listener"".",[Ted_Tronson],[Ted_Tronson],,,,,, event_listener,3017,tcp,Event Listener,[Ted_Tronson],[Ted_Tronson],,,,,,"This entry is an alias to ""event-listener"". This entry is now historic, not usable for use with many common service discovery mechanisms." event-listener,3017,udp,"Event Listener IANA assigned this well-formed service name as a replacement for ""event_listener"".",[Ted_Tronson],[Ted_Tronson],,,,,, event_listener,3017,udp,Event Listener,[Ted_Tronson],[Ted_Tronson],,,,,,"This entry is an alias to ""event-listener"". This entry is now historic, not usable for use with many common service discovery mechanisms." srvc-registry,3018,tcp,"Service Registry IANA assigned this well-formed service name as a replacement for ""srvc_registry"".",[Mark_Killgore],[Mark_Killgore],,,,,, srvc_registry,3018,tcp,Service Registry,[Mark_Killgore],[Mark_Killgore],,,,,,"This entry is an alias to ""srvc-registry"". This entry is now historic, not usable for use with many common service discovery mechanisms." srvc-registry,3018,udp,"Service Registry IANA assigned this well-formed service name as a replacement for ""srvc_registry"".",[Mark_Killgore],[Mark_Killgore],,,,,, srvc_registry,3018,udp,Service Registry,[Mark_Killgore],[Mark_Killgore],,,,,,"This entry is an alias to ""srvc-registry"". This entry is now historic, not usable for use with many common service discovery mechanisms." resource-mgr,3019,tcp,"Resource Manager IANA assigned this well-formed service name as a replacement for ""resource_mgr"".",[Gary_Glover],[Gary_Glover],,,,,, resource_mgr,3019,tcp,Resource Manager,[Gary_Glover],[Gary_Glover],,,,,,"This entry is an alias to ""resource-mgr"". This entry is now historic, not usable for use with many common service discovery mechanisms." resource-mgr,3019,udp,"Resource Manager IANA assigned this well-formed service name as a replacement for ""resource_mgr"".",[Gary_Glover],[Gary_Glover],,,,,, resource_mgr,3019,udp,Resource Manager,[Gary_Glover],[Gary_Glover],,,,,,"This entry is an alias to ""resource-mgr"". This entry is now historic, not usable for use with many common service discovery mechanisms." cifs,3020,tcp,CIFS,[Paul_Leach],[Paul_Leach],,,,,, cifs,3020,udp,CIFS,[Paul_Leach],[Paul_Leach],,,,,, agriserver,3021,tcp,AGRI Server,[Frank_Neulichedl],[Frank_Neulichedl],,,,,, agriserver,3021,udp,AGRI Server,[Frank_Neulichedl],[Frank_Neulichedl],,,,,, csregagent,3022,tcp,CSREGAGENT,[Nedelcho_Stanev],[Nedelcho_Stanev],,,,,, csregagent,3022,udp,CSREGAGENT,[Nedelcho_Stanev],[Nedelcho_Stanev],,,,,, magicnotes,3023,tcp,magicnotes,[Karl_Edwall],[Karl_Edwall],,,,,, magicnotes,3023,udp,magicnotes,[Karl_Edwall],[Karl_Edwall],,,,,, nds-sso,3024,tcp,"NDS_SSO IANA assigned this well-formed service name as a replacement for ""nds_sso"".",[Mel_Oyler],[Mel_Oyler],,,,,, nds_sso,3024,tcp,NDS_SSO,[Mel_Oyler],[Mel_Oyler],,,,,,"This entry is an alias to ""nds-sso"". This entry is now historic, not usable for use with many common service discovery mechanisms." nds-sso,3024,udp,"NDS_SSO IANA assigned this well-formed service name as a replacement for ""nds_sso"".",[Mel_Oyler],[Mel_Oyler],,,,,, nds_sso,3024,udp,NDS_SSO,[Mel_Oyler],[Mel_Oyler],,,,,,"This entry is an alias to ""nds-sso"". This entry is now historic, not usable for use with many common service discovery mechanisms." arepa-raft,3025,tcp,Arepa Raft,[Stuart_Schaefer],[Stuart_Schaefer],,,,,, arepa-raft,3025,udp,Arepa Raft,[Stuart_Schaefer],[Stuart_Schaefer],,,,,, agri-gateway,3026,tcp,AGRI Gateway,[Agri_Datalog],[Agri_Datalog],,,,,, agri-gateway,3026,udp,AGRI Gateway,[Agri_Datalog],[Agri_Datalog],,,,,, LiebDevMgmt-C,3027,tcp,"LiebDevMgmt_C IANA assigned this well-formed service name as a replacement for ""LiebDevMgmt_C"".",,,,,,,, LiebDevMgmt_C,3027,tcp,LiebDevMgmt_C,,,,,,,,"This entry is an alias to ""LiebDevMgmt-C"". This entry is now historic, not usable for use with many common service discovery mechanisms." LiebDevMgmt-C,3027,udp,"LiebDevMgmt_C IANA assigned this well-formed service name as a replacement for ""LiebDevMgmt_C"".",,,,,,,, LiebDevMgmt_C,3027,udp,LiebDevMgmt_C,,,,,,,,"This entry is an alias to ""LiebDevMgmt-C"". This entry is now historic, not usable for use with many common service discovery mechanisms." LiebDevMgmt-DM,3028,tcp,"LiebDevMgmt_DM IANA assigned this well-formed service name as a replacement for ""LiebDevMgmt_DM"".",,,,,,,, LiebDevMgmt_DM,3028,tcp,LiebDevMgmt_DM,,,,,,,,"This entry is an alias to ""LiebDevMgmt-DM"". This entry is now historic, not usable for use with many common service discovery mechanisms." LiebDevMgmt-DM,3028,udp,"LiebDevMgmt_DM IANA assigned this well-formed service name as a replacement for ""LiebDevMgmt_DM"".",,,,,,,, LiebDevMgmt_DM,3028,udp,LiebDevMgmt_DM,,,,,,,,"This entry is an alias to ""LiebDevMgmt-DM"". This entry is now historic, not usable for use with many common service discovery mechanisms." LiebDevMgmt-A,3029,tcp,"LiebDevMgmt_A IANA assigned this well-formed service name as a replacement for ""LiebDevMgmt_A"".",[Mike_Velten],[Mike_Velten],,,,,, LiebDevMgmt_A,3029,tcp,LiebDevMgmt_A,[Mike_Velten],[Mike_Velten],,,,,,"This entry is an alias to ""LiebDevMgmt-A"". This entry is now historic, not usable for use with many common service discovery mechanisms." LiebDevMgmt-A,3029,udp,"LiebDevMgmt_A IANA assigned this well-formed service name as a replacement for ""LiebDevMgmt_A"".",[Mike_Velten],[Mike_Velten],,,,,, LiebDevMgmt_A,3029,udp,LiebDevMgmt_A,[Mike_Velten],[Mike_Velten],,,,,,"This entry is an alias to ""LiebDevMgmt-A"". This entry is now historic, not usable for use with many common service discovery mechanisms." arepa-cas,3030,tcp,Arepa Cas,[Stuart_Schaefer],[Stuart_Schaefer],,,,,, arepa-cas,3030,udp,Arepa Cas,[Stuart_Schaefer],[Stuart_Schaefer],,,,,, eppc,3031,tcp,Remote AppleEvents/PPC Toolbox,[Steve_Zellers],[Steve_Zellers],,,,,, |
6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 | hlserver,3047,tcp,Fast Security HL Server,[Safenet_Inc.],[Michael_Zunke_3],,2014-07-02,,,, hlserver,3047,udp,Fast Security HL Server,[Safenet_Inc.],[Michael_Zunke_3],,2014-07-02,,,, pctrader,3048,tcp,Sierra Net PC Trader,[Chris_Hahn],[Chris_Hahn],,,,,, pctrader,3048,udp,Sierra Net PC Trader,[Chris_Hahn],[Chris_Hahn],,,,,, nsws,3049,tcp,NSWS,[Ray_Gwinn],[Ray_Gwinn],,,,,, nsws,3049,udp,NSWS,[Ray_Gwinn],[Ray_Gwinn],,,,,, gds-db,3050,tcp,"gds_db IANA assigned this well-formed service name as a replacement for ""gds_db"".",[Madhukar_N_Thakur],[Madhukar_N_Thakur],,,,,, gds_db,3050,tcp,gds_db,[Madhukar_N_Thakur],[Madhukar_N_Thakur],,,,,,"This entry is an alias to ""gds-db"". This entry is now historic, not usable for use with many common service discovery mechanisms." gds-db,3050,udp,"gds_db IANA assigned this well-formed service name as a replacement for ""gds_db"".",[Madhukar_N_Thakur],[Madhukar_N_Thakur],,,,,, gds_db,3050,udp,gds_db,[Madhukar_N_Thakur],[Madhukar_N_Thakur],,,,,,"This entry is an alias to ""gds-db"". This entry is now historic, not usable for use with many common service discovery mechanisms." galaxy-server,3051,tcp,Galaxy Server,[Michael_Andre],[Michael_Andre],,,,,, galaxy-server,3051,udp,Galaxy Server,[Michael_Andre],[Michael_Andre],,,,,, apc-3052,3052,tcp,APC 3052,[American_Power_Conve],[American_Power_Conve],,,,,, | > > > > | 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 | hlserver,3047,tcp,Fast Security HL Server,[Safenet_Inc.],[Michael_Zunke_3],,2014-07-02,,,, hlserver,3047,udp,Fast Security HL Server,[Safenet_Inc.],[Michael_Zunke_3],,2014-07-02,,,, pctrader,3048,tcp,Sierra Net PC Trader,[Chris_Hahn],[Chris_Hahn],,,,,, pctrader,3048,udp,Sierra Net PC Trader,[Chris_Hahn],[Chris_Hahn],,,,,, nsws,3049,tcp,NSWS,[Ray_Gwinn],[Ray_Gwinn],,,,,, nsws,3049,udp,NSWS,[Ray_Gwinn],[Ray_Gwinn],,,,,, gds-db,3050,tcp,"gds_db IANA assigned this well-formed service name as a replacement for ""gds_db"".",[Madhukar_N_Thakur],[Madhukar_N_Thakur],,,,,, gds_db,3050,tcp,gds_db,[Madhukar_N_Thakur],[Madhukar_N_Thakur],,,,,,"This entry is an alias to ""gds-db"". This entry is now historic, not usable for use with many common service discovery mechanisms." gds-db,3050,udp,"gds_db IANA assigned this well-formed service name as a replacement for ""gds_db"".",[Madhukar_N_Thakur],[Madhukar_N_Thakur],,,,,, gds_db,3050,udp,gds_db,[Madhukar_N_Thakur],[Madhukar_N_Thakur],,,,,,"This entry is an alias to ""gds-db"". This entry is now historic, not usable for use with many common service discovery mechanisms." galaxy-server,3051,tcp,Galaxy Server,[Michael_Andre],[Michael_Andre],,,,,, galaxy-server,3051,udp,Galaxy Server,[Michael_Andre],[Michael_Andre],,,,,, apc-3052,3052,tcp,APC 3052,[American_Power_Conve],[American_Power_Conve],,,,,, |
6060 6061 6062 6063 6064 6065 6066 | fjhpjp,3067,udp,FJHPJP,[Ryozo_Furutani],[Ryozo_Furutani],,,,,, ls3bcast,3068,tcp,ls3 Broadcast,,,,,,,, ls3bcast,3068,udp,ls3 Broadcast,,,,,,,, ls3,3069,tcp,ls3,[Jim_Thompson],[Jim_Thompson],,,,,, ls3,3069,udp,ls3,[Jim_Thompson],[Jim_Thompson],,,,,, mgxswitch,3070,tcp,MGXSWITCH,[George_Walter],[George_Walter],,,,,, mgxswitch,3070,udp,MGXSWITCH,[George_Walter],[George_Walter],,,,,, | | | > > > > | 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 | fjhpjp,3067,udp,FJHPJP,[Ryozo_Furutani],[Ryozo_Furutani],,,,,, ls3bcast,3068,tcp,ls3 Broadcast,,,,,,,, ls3bcast,3068,udp,ls3 Broadcast,,,,,,,, ls3,3069,tcp,ls3,[Jim_Thompson],[Jim_Thompson],,,,,, ls3,3069,udp,ls3,[Jim_Thompson],[Jim_Thompson],,,,,, mgxswitch,3070,tcp,MGXSWITCH,[George_Walter],[George_Walter],,,,,, mgxswitch,3070,udp,MGXSWITCH,[George_Walter],[George_Walter],,,,,, xplat-replicate,3071,tcp,Crossplatform replication protocol,[NetApp_3],[Ravindra_Kuramkote],,2017-08-24,,,, ,3071,udp,Reserved,,,,2017-08-24,,,, csd-monitor,3072,tcp,ContinuStor Monitor Port,[NetApp],[MSW_architecture_team],,2014-07-18,,,, csd-monitor,3072,udp,ContinuStor Monitor Port,[NetApp],[MSW_architecture_team],,2014-07-18,,,, vcrp,3073,tcp,Very simple chatroom prot,[Andreas_Wurf],[Andreas_Wurf],,,,,, vcrp,3073,udp,Very simple chatroom prot,[Andreas_Wurf],[Andreas_Wurf],,,,,, xbox,3074,tcp,Xbox game port,[Damon_Danieli],[Damon_Danieli],,,,,, xbox,3074,udp,Xbox game port,[Damon_Danieli],[Damon_Danieli],,,,,, orbix-locator,3075,tcp,Orbix 2000 Locator,,,,,,,, orbix-locator,3075,udp,Orbix 2000 Locator,,,,,,,, orbix-config,3076,tcp,Orbix 2000 Config,,,,,,,, orbix-config,3076,udp,Orbix 2000 Config,,,,,,,, orbix-loc-ssl,3077,tcp,Orbix 2000 Locator SSL,,,,,,,, orbix-loc-ssl,3077,udp,Orbix 2000 Locator SSL,,,,,,,, orbix-cfg-ssl,3078,tcp,Orbix 2000 Locator SSL,[Eric_Newcomer],[Eric_Newcomer],,,,,, orbix-cfg-ssl,3078,udp,Orbix 2000 Locator SSL,[Eric_Newcomer],[Eric_Newcomer],,,,,, lv-frontpanel,3079,tcp,LV Front Panel,[Darshan_Shah],[Darshan_Shah],,,,,, lv-frontpanel,3079,udp,LV Front Panel,[Darshan_Shah],[Darshan_Shah],,,,,, stm-pproc,3080,tcp,"stm_pproc IANA assigned this well-formed service name as a replacement for ""stm_pproc"".",[Paul_McGinnis],[Paul_McGinnis],,,,,, stm_pproc,3080,tcp,stm_pproc,[Paul_McGinnis],[Paul_McGinnis],,,,,,"This entry is an alias to ""stm-pproc"". This entry is now historic, not usable for use with many common service discovery mechanisms." stm-pproc,3080,udp,"stm_pproc IANA assigned this well-formed service name as a replacement for ""stm_pproc"".",[Paul_McGinnis],[Paul_McGinnis],,,,,, stm_pproc,3080,udp,stm_pproc,[Paul_McGinnis],[Paul_McGinnis],,,,,,"This entry is an alias to ""stm-pproc"". This entry is now historic, not usable for use with many common service discovery mechanisms." tl1-lv,3081,tcp,TL1-LV,,,,,,,, tl1-lv,3081,udp,TL1-LV,,,,,,,, tl1-raw,3082,tcp,TL1-RAW,,,,,,,, |
6115 6116 6117 6118 6119 6120 6121 | 1ci-smcs,3091,tcp,1Ci Server Management,[Ralf_Bensmann],[Ralf_Bensmann],,,,,, 1ci-smcs,3091,udp,1Ci Server Management,[Ralf_Bensmann],[Ralf_Bensmann],,,,,, ,3092,,Unassigned,,,,2008-04-22,,,, rapidmq-center,3093,tcp,Jiiva RapidMQ Center,,,,,,,, rapidmq-center,3093,udp,Jiiva RapidMQ Center,,,,,,,, rapidmq-reg,3094,tcp,Jiiva RapidMQ Registry,[Mark_Ericksen],[Mark_Ericksen],,,,,, rapidmq-reg,3094,udp,Jiiva RapidMQ Registry,[Mark_Ericksen],[Mark_Ericksen],,,,,, | | | | 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 | 1ci-smcs,3091,tcp,1Ci Server Management,[Ralf_Bensmann],[Ralf_Bensmann],,,,,, 1ci-smcs,3091,udp,1Ci Server Management,[Ralf_Bensmann],[Ralf_Bensmann],,,,,, ,3092,,Unassigned,,,,2008-04-22,,,, rapidmq-center,3093,tcp,Jiiva RapidMQ Center,,,,,,,, rapidmq-center,3093,udp,Jiiva RapidMQ Center,,,,,,,, rapidmq-reg,3094,tcp,Jiiva RapidMQ Registry,[Mark_Ericksen],[Mark_Ericksen],,,,,, rapidmq-reg,3094,udp,Jiiva RapidMQ Registry,[Mark_Ericksen],[Mark_Ericksen],,,,,, panasas,3095,tcp,Panasas rendezvous port,[Patrick_Keane],[Patrick_Keane],,2017-08-17,,,, panasas,3095,udp,Panasas rendezvous port,[Patrick_Keane],[Patrick_Keane],,2017-08-17,,,, ndl-aps,3096,tcp,Active Print Server Port,[Martin_Norman],[Martin_Norman],,,,,, ndl-aps,3096,udp,Active Print Server Port,[Martin_Norman],[Martin_Norman],,,,,, ,3097,tcp,Reserved,,,,,,,, ,3097,udp,Reserved,,,,,,,, itu-bicc-stc,3097,sctp,ITU-T Q.1902.1/Q.2150.3,[Greg_Sidebottom],[Greg_Sidebottom],,,,,, umm-port,3098,tcp,Universal Message Manager,[Phil_Braham],[Phil_Braham],,,,,, umm-port,3098,udp,Universal Message Manager,[Phil_Braham],[Phil_Braham],,,,,, |
6525 6526 6527 6528 6529 6530 6531 | rib-slm,3296,udp,Rib License Manager,[Kristean_Heisler],[Kristean_Heisler],,,,,, cytel-lm,3297,tcp,Cytel License Manager,[Yogesh_P_Gajjar],[Yogesh_P_Gajjar],,,,,, cytel-lm,3297,udp,Cytel License Manager,[Yogesh_P_Gajjar],[Yogesh_P_Gajjar],,,,,, deskview,3298,tcp,DeskView,[Manfred_Randelzofer],[Manfred_Randelzofer],,,,,, deskview,3298,udp,DeskView,[Manfred_Randelzofer],[Manfred_Randelzofer],,,,,, pdrncs,3299,tcp,pdrncs,[Paul_Wissenbach],[Paul_Wissenbach],,,,,, pdrncs,3299,udp,pdrncs,[Paul_Wissenbach],[Paul_Wissenbach],,,,,, | > > | | 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 | rib-slm,3296,udp,Rib License Manager,[Kristean_Heisler],[Kristean_Heisler],,,,,, cytel-lm,3297,tcp,Cytel License Manager,[Yogesh_P_Gajjar],[Yogesh_P_Gajjar],,,,,, cytel-lm,3297,udp,Cytel License Manager,[Yogesh_P_Gajjar],[Yogesh_P_Gajjar],,,,,, deskview,3298,tcp,DeskView,[Manfred_Randelzofer],[Manfred_Randelzofer],,,,,, deskview,3298,udp,DeskView,[Manfred_Randelzofer],[Manfred_Randelzofer],,,,,, pdrncs,3299,tcp,pdrncs,[Paul_Wissenbach],[Paul_Wissenbach],,,,,, pdrncs,3299,udp,pdrncs,[Paul_Wissenbach],[Paul_Wissenbach],,,,,, ceph,3300,tcp,Ceph monitor,[Sage_Weil],[Sage_Weil],2015-06-29,,,,Knwon Unauthorized Use on 3300-3301, ,3300,udp,Reserved,,,,,,,, ,3301,,unassigned,,,,,,,Knwon Unauthorized Use on 3300-3301, mcs-fastmail,3302,tcp,MCS Fastmail,[Patti_Jo_Newsom],[Patti_Jo_Newsom],,,,,, mcs-fastmail,3302,udp,MCS Fastmail,[Patti_Jo_Newsom],[Patti_Jo_Newsom],,,,,, opsession-clnt,3303,tcp,OP Session Client,,,,,,,, opsession-clnt,3303,udp,OP Session Client,,,,,,,, opsession-srvr,3304,tcp,OP Session Server,[Amir_Blich],[Amir_Blich],,,,,, opsession-srvr,3304,udp,OP Session Server,[Amir_Blich],[Amir_Blich],,,,,, odette-ftp,3305,tcp,ODETTE-FTP,[David_Nash],[David_Nash],,,[RFC5024],,, |
6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 | d2k-tapestry1,3393,tcp,D2K Tapestry Client to Server,,,,,,,, d2k-tapestry1,3393,udp,D2K Tapestry Client to Server,,,,,,,, d2k-tapestry2,3394,tcp,D2K Tapestry Server to Server,[Eric_Lan],[Eric_Lan],,,,,, d2k-tapestry2,3394,udp,D2K Tapestry Server to Server,[Eric_Lan],[Eric_Lan],,,,,, dyna-lm,3395,tcp,Dyna License Manager (Elam),[Anjana_Iyer],[Anjana_Iyer],,,,,, dyna-lm,3395,udp,Dyna License Manager (Elam),[Anjana_Iyer],[Anjana_Iyer],,,,,, printer-agent,3396,tcp,"Printer Agent IANA assigned this well-formed service name as a replacement for ""printer_agent"".",[Devon_Taylor],[Devon_Taylor],,,,,, printer_agent,3396,tcp,Printer Agent,[Devon_Taylor],[Devon_Taylor],,,,,,"This entry is an alias to ""printer-agent"". This entry is now historic, not usable for use with many common service discovery mechanisms." printer-agent,3396,udp,"Printer Agent IANA assigned this well-formed service name as a replacement for ""printer_agent"".",[Devon_Taylor],[Devon_Taylor],,,,,, printer_agent,3396,udp,Printer Agent,[Devon_Taylor],[Devon_Taylor],,,,,,"This entry is an alias to ""printer-agent"". This entry is now historic, not usable for use with many common service discovery mechanisms." cloanto-lm,3397,tcp,Cloanto License Manager,[Takeo_Sato],[Takeo_Sato],2010-04-30,,,,, cloanto-lm,3397,udp,Cloanto License Manager,[Takeo_Sato],[Takeo_Sato],2010-04-30,,,,, mercantile,3398,tcp,Mercantile,[Erik_Kragh_Jensen],[Erik_Kragh_Jensen],,,,,, | > > > > | 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 | d2k-tapestry1,3393,tcp,D2K Tapestry Client to Server,,,,,,,, d2k-tapestry1,3393,udp,D2K Tapestry Client to Server,,,,,,,, d2k-tapestry2,3394,tcp,D2K Tapestry Server to Server,[Eric_Lan],[Eric_Lan],,,,,, d2k-tapestry2,3394,udp,D2K Tapestry Server to Server,[Eric_Lan],[Eric_Lan],,,,,, dyna-lm,3395,tcp,Dyna License Manager (Elam),[Anjana_Iyer],[Anjana_Iyer],,,,,, dyna-lm,3395,udp,Dyna License Manager (Elam),[Anjana_Iyer],[Anjana_Iyer],,,,,, printer-agent,3396,tcp,"Printer Agent IANA assigned this well-formed service name as a replacement for ""printer_agent"".",[Devon_Taylor],[Devon_Taylor],,,,,, printer_agent,3396,tcp,Printer Agent,[Devon_Taylor],[Devon_Taylor],,,,,,"This entry is an alias to ""printer-agent"". This entry is now historic, not usable for use with many common service discovery mechanisms." printer-agent,3396,udp,"Printer Agent IANA assigned this well-formed service name as a replacement for ""printer_agent"".",[Devon_Taylor],[Devon_Taylor],,,,,, printer_agent,3396,udp,Printer Agent,[Devon_Taylor],[Devon_Taylor],,,,,,"This entry is an alias to ""printer-agent"". This entry is now historic, not usable for use with many common service discovery mechanisms." cloanto-lm,3397,tcp,Cloanto License Manager,[Takeo_Sato],[Takeo_Sato],2010-04-30,,,,, cloanto-lm,3397,udp,Cloanto License Manager,[Takeo_Sato],[Takeo_Sato],2010-04-30,,,,, mercantile,3398,tcp,Mercantile,[Erik_Kragh_Jensen],[Erik_Kragh_Jensen],,,,,, |
6802 6803 6804 6805 6806 6807 6808 | connect-client,3441,udp,OC Connect Client,,,,,,,, connect-server,3442,tcp,OC Connect Server,[Mike_Velten_2],[Mike_Velten_2],2002-03,,,,, connect-server,3442,udp,OC Connect Server,[Mike_Velten_2],[Mike_Velten_2],2002-03,,,,, ov-nnm-websrv,3443,tcp,OpenView Network Node Manager WEB Server,[Anthony_Walker],[Anthony_Walker],2002-03,,,,, ov-nnm-websrv,3443,udp,OpenView Network Node Manager WEB Server,[Anthony_Walker],[Anthony_Walker],2002-03,,,,, denali-server,3444,tcp,Denali Server,[Joe_Devlin],[Joe_Devlin],2002-03,,,,, denali-server,3444,udp,Denali Server,[Joe_Devlin],[Joe_Devlin],2002-03,,,,, | | | | 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 | connect-client,3441,udp,OC Connect Client,,,,,,,, connect-server,3442,tcp,OC Connect Server,[Mike_Velten_2],[Mike_Velten_2],2002-03,,,,, connect-server,3442,udp,OC Connect Server,[Mike_Velten_2],[Mike_Velten_2],2002-03,,,,, ov-nnm-websrv,3443,tcp,OpenView Network Node Manager WEB Server,[Anthony_Walker],[Anthony_Walker],2002-03,,,,, ov-nnm-websrv,3443,udp,OpenView Network Node Manager WEB Server,[Anthony_Walker],[Anthony_Walker],2002-03,,,,, denali-server,3444,tcp,Denali Server,[Joe_Devlin],[Joe_Devlin],2002-03,,,,, denali-server,3444,udp,Denali Server,[Joe_Devlin],[Joe_Devlin],2002-03,,,,, monp,3445,tcp,Media Object Network Protocol,[Aethercloud],[Ron_Herardian],2002-03,2019-11-11,,,, monp,3445,udp,Media Object Network Protocol,[Aethercloud],[Ron_Herardian],2002-03,2019-11-11,,,, 3comfaxrpc,3446,tcp,3Com FAX RPC port,[Christopher_Wells_2],[Christopher_Wells_2],2002-04,,,,, 3comfaxrpc,3446,udp,3Com FAX RPC port,[Christopher_Wells_2],[Christopher_Wells_2],2002-04,,,,, directnet,3447,tcp,DirectNet IM System,[Gregory_Richards],[Gregory_Richards],2002-04,,,,, directnet,3447,udp,DirectNet IM System,[Gregory_Richards],[Gregory_Richards],2002-04,,,,, dnc-port,3448,tcp,Discovery and Net Config,[Chi_Chen],[Chi_Chen],2002-04,,,,, dnc-port,3448,udp,Discovery and Net Config,[Chi_Chen],[Chi_Chen],2002-04,,,,, hotu-chat,3449,tcp,HotU Chat,[Tim_Burgess],[Tim_Burgess],2002-04,,,,, |
6868 6869 6870 6871 6872 6873 6874 | ttntspauto,3474,udp,TSP Automation,[Arnie_Koster],[Arnie_Koster],2002-04,,,,, genisar-port,3475,tcp,Genisar Comm Port,[Candace_Niccolson],[Candace_Niccolson],2002-04,,,,, genisar-port,3475,udp,Genisar Comm Port,[Candace_Niccolson],[Candace_Niccolson],2002-04,,,,, nppmp,3476,tcp,NVIDIA Mgmt Protocol,[Gilbert_Yeung],[Gilbert_Yeung],2002-04,,,,, nppmp,3476,udp,NVIDIA Mgmt Protocol,[Gilbert_Yeung],[Gilbert_Yeung],2002-04,,,,, ecomm,3477,tcp,eComm link port,[Thomas_Soerensen],[Thomas_Soerensen],2002-04,,,,, ecomm,3477,udp,eComm link port,[Thomas_Soerensen],[Thomas_Soerensen],2002-04,,,,, | | | | | | 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 | ttntspauto,3474,udp,TSP Automation,[Arnie_Koster],[Arnie_Koster],2002-04,,,,, genisar-port,3475,tcp,Genisar Comm Port,[Candace_Niccolson],[Candace_Niccolson],2002-04,,,,, genisar-port,3475,udp,Genisar Comm Port,[Candace_Niccolson],[Candace_Niccolson],2002-04,,,,, nppmp,3476,tcp,NVIDIA Mgmt Protocol,[Gilbert_Yeung],[Gilbert_Yeung],2002-04,,,,, nppmp,3476,udp,NVIDIA Mgmt Protocol,[Gilbert_Yeung],[Gilbert_Yeung],2002-04,,,,, ecomm,3477,tcp,eComm link port,[Thomas_Soerensen],[Thomas_Soerensen],2002-04,,,,, ecomm,3477,udp,eComm link port,[Thomas_Soerensen],[Thomas_Soerensen],2002-04,,,,, stun,3478,tcp,Session Traversal Utilities for NAT (STUN) port,[IESG],[IETF_Chair],,2019-03-28,[RFC-ietf-tram-stunbis-21],,, stun,3478,udp,Session Traversal Utilities for NAT (STUN) port,[IESG],[IETF_Chair],,2019-03-28,[RFC-ietf-tram-stunbis-21],,, turn,3478,tcp,TURN over TCP,,,,2019-08-02,[RFC-ietf-tram-turnbis-29],,, turn,3478,udp,TURN over UDP,,,,2019-08-02,[RFC-ietf-tram-turnbis-29],,, stun-behavior,3478,tcp,STUN Behavior Discovery over TCP,,,,,[RFC5780],,, stun-behavior,3478,udp,STUN Behavior Discovery over UDP,,,,,[RFC5780],,, twrpc,3479,tcp,2Wire RPC,[Wire_IANA_Contact],[Wire_IANA_Contact],2002-04,,,,, twrpc,3479,udp,2Wire RPC,[Wire_IANA_Contact],[Wire_IANA_Contact],2002-04,,,,, plethora,3480,tcp,Secure Virtual Workspace,[Tim_Simms],[Tim_Simms],2002-04,,,,, plethora,3480,udp,Secure Virtual Workspace,[Tim_Simms],[Tim_Simms],2002-04,,,,, cleanerliverc,3481,tcp,CleanerLive remote ctrl,[David_Mojdehi],[David_Mojdehi],2002-04,,,,, |
6922 6923 6924 6925 6926 6927 6928 | sccip-media,3499,udp,SccIP Media,[David_Yon_2],[David_Yon_2],2002-05,,,,, rtmp-port,3500,tcp,RTMP Port,[Miriam_Wohlgelernter],[Miriam_Wohlgelernter],,,,,, rtmp-port,3500,udp,RTMP Port,[Miriam_Wohlgelernter],[Miriam_Wohlgelernter],,,,,, isoft-p2p,3501,tcp,iSoft-P2P,[David_Walling_2],[David_Walling_2],,,,,, isoft-p2p,3501,udp,iSoft-P2P,[David_Walling_2],[David_Walling_2],,,,,, avinstalldisc,3502,tcp,Avocent Install Discovery,[Brian_S_Stewart_2],[Brian_S_Stewart_2],,,,,, avinstalldisc,3502,udp,Avocent Install Discovery,[Brian_S_Stewart_2],[Brian_S_Stewart_2],,,,,, | | | | 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 | sccip-media,3499,udp,SccIP Media,[David_Yon_2],[David_Yon_2],2002-05,,,,, rtmp-port,3500,tcp,RTMP Port,[Miriam_Wohlgelernter],[Miriam_Wohlgelernter],,,,,, rtmp-port,3500,udp,RTMP Port,[Miriam_Wohlgelernter],[Miriam_Wohlgelernter],,,,,, isoft-p2p,3501,tcp,iSoft-P2P,[David_Walling_2],[David_Walling_2],,,,,, isoft-p2p,3501,udp,iSoft-P2P,[David_Walling_2],[David_Walling_2],,,,,, avinstalldisc,3502,tcp,Avocent Install Discovery,[Brian_S_Stewart_2],[Brian_S_Stewart_2],,,,,, avinstalldisc,3502,udp,Avocent Install Discovery,[Brian_S_Stewart_2],[Brian_S_Stewart_2],,,,,, lsp-ping,3503,tcp,MPLS LSP-echo Port,,,,,[RFC8029],,, lsp-ping,3503,udp,MPLS LSP-echo Port,,,,,[RFC8029],,, ironstorm,3504,tcp,IronStorm game server,[Arnaud_Clermonte],[Arnaud_Clermonte],,,,,, ironstorm,3504,udp,IronStorm game server,[Arnaud_Clermonte],[Arnaud_Clermonte],,,,,, ccmcomm,3505,tcp,CCM communications port,[Tom_Bougan],[Tom_Bougan],,,,,, ccmcomm,3505,udp,CCM communications port,[Tom_Bougan],[Tom_Bougan],,,,,, apc-3506,3506,tcp,APC 3506,[American_Power_Conve],[American_Power_Conve],,,,,, apc-3506,3506,udp,APC 3506,[American_Power_Conve],[American_Power_Conve],,,,,, nesh-broker,3507,tcp,Nesh Broker Port,[Jeremy_Maiden],[Jeremy_Maiden],,,,,, |
6960 6961 6962 6963 6964 6965 6966 | artifact-msg,3518,udp,Artifact Message Server,[Ron_Capwell],[Ron_Capwell],2002-06,,,,, nvmsgd,3519,tcp,Netvion Messenger Port,,,,,,,, galileo,3519,udp,Netvion Galileo Port,,,,,,,, galileolog,3520,tcp,Netvion Galileo Log Port,[Ray_Caruso],[Ray_Caruso],2002-06,,,,, galileolog,3520,udp,Netvion Galileo Log Port,[Ray_Caruso],[Ray_Caruso],2002-06,,,,, mc3ss,3521,tcp,Telequip Labs MC3SS,[Michael_Sparks],[Michael_Sparks],2002-06,,,,, mc3ss,3521,udp,Telequip Labs MC3SS,[Michael_Sparks],[Michael_Sparks],2002-06,,,,, | < | 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 | artifact-msg,3518,udp,Artifact Message Server,[Ron_Capwell],[Ron_Capwell],2002-06,,,,, nvmsgd,3519,tcp,Netvion Messenger Port,,,,,,,, galileo,3519,udp,Netvion Galileo Port,,,,,,,, galileolog,3520,tcp,Netvion Galileo Log Port,[Ray_Caruso],[Ray_Caruso],2002-06,,,,, galileolog,3520,udp,Netvion Galileo Log Port,[Ray_Caruso],[Ray_Caruso],2002-06,,,,, mc3ss,3521,tcp,Telequip Labs MC3SS,[Michael_Sparks],[Michael_Sparks],2002-06,,,,, mc3ss,3521,udp,Telequip Labs MC3SS,[Michael_Sparks],[Michael_Sparks],2002-06,,,,, nssocketport,3522,tcp,DO over NSSocketPort,[Douglas_Davidson],[Douglas_Davidson],2002-06,,,,, nssocketport,3522,udp,DO over NSSocketPort,[Douglas_Davidson],[Douglas_Davidson],2002-06,,,,, odeumservlink,3523,tcp,Odeum Serverlink,[Mads_Peter_Back],[Mads_Peter_Back],2002-06,,,,, odeumservlink,3523,udp,Odeum Serverlink,[Mads_Peter_Back],[Mads_Peter_Back],2002-06,,,,, ecmport,3524,tcp,ECM Server port,,,,,,,, ecmport,3524,udp,ECM Server port,,,,,,,, eisport,3525,tcp,EIS Server port,[Paul_Kraus],[Paul_Kraus],2002-06,,,,, |
7051 7052 7053 7054 7055 7056 7057 | esimport,3564,tcp,Electromed SIM port,[Francois_Marchand],[Francois_Marchand],2002-08,,,,, esimport,3564,udp,Electromed SIM port,[Francois_Marchand],[Francois_Marchand],2002-08,,,,, m2pa,3565,tcp,M2PA,,,,,[RFC4165],,, ,3565,udp,Reserved,,,,,,,, m2pa,3565,sctp,M2PA,,,,,[RFC4165],,, quest-data-hub,3566,tcp,Quest Data Hub,[Greg_Cottman_2],[Greg_Cottman_2],2010-10-18,,,,, ,3566,udp,Reserved,,,,2010-10-18,,,, | | | | | | | | 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 | esimport,3564,tcp,Electromed SIM port,[Francois_Marchand],[Francois_Marchand],2002-08,,,,, esimport,3564,udp,Electromed SIM port,[Francois_Marchand],[Francois_Marchand],2002-08,,,,, m2pa,3565,tcp,M2PA,,,,,[RFC4165],,, ,3565,udp,Reserved,,,,,,,, m2pa,3565,sctp,M2PA,,,,,[RFC4165],,, quest-data-hub,3566,tcp,Quest Data Hub,[Greg_Cottman_2],[Greg_Cottman_2],2010-10-18,,,,, ,3566,udp,Reserved,,,,2010-10-18,,,, dof-eps,3567,tcp,DOF Protocol Stack,[OpenDOF],[Bryant_Eastham],2002-08,2015-04-23,,,, dof-eps,3567,udp,DOF Protocol Stack,[OpenDOF],[Bryant_Eastham],2002-08,2015-04-23,,,, dof-tunnel-sec,3568,tcp,DOF Secure Tunnel,[OpenDOF],[Bryant_Eastham],2003-01,2015-04-23,,,, dof-tunnel-sec,3568,udp,DOF Secure Tunnel,[OpenDOF],[Bryant_Eastham],2003-01,2015-04-23,,,, mbg-ctrl,3569,tcp,Meinberg Control Service,[Meinberg_Funkuhren_GmbH_Co_KG],[Meinberg_IANA_Registrations],2002-08,2019-04-23,,,, mbg-ctrl,3569,udp,Meinberg Control Service,[Meinberg_Funkuhren_GmbH_Co_KG],[Meinberg_IANA_Registrations],2002-08,2019-04-23,,,, mccwebsvr-port,3570,tcp,MCC Web Server Port,,,,,,,, mccwebsvr-port,3570,udp,MCC Web Server Port,,,,,,,, megardsvr-port,3571,tcp,MegaRAID Server Port,,,,,,,, megardsvr-port,3571,udp,MegaRAID Server Port,,,,,,,, megaregsvrport,3572,tcp,Registration Server Port,[Sreenivas_Bagalkote],[Sreenivas_Bagalkote],2002-08,,,,, megaregsvrport,3572,udp,Registration Server Port,[Sreenivas_Bagalkote],[Sreenivas_Bagalkote],2002-08,,,,, tag-ups-1,3573,tcp,Advantage Group UPS Suite,[James_Goddard],[James_Goddard],2002-08,,,,, |
7117 7118 7119 7120 7121 7122 7123 | iw-mmogame,3596,udp,Illusion Wireless MMOG,[Jan_Vrsinsky],[Jan_Vrsinsky],2002-09,,,,, a14,3597,tcp,A14 (AN-to-SC/MM),,,,,,,, a14,3597,udp,A14 (AN-to-SC/MM),,,,,,,, a15,3598,tcp,A15 (AN-to-AN),[David_Ott],[David_Ott],2002-09,,,,, a15,3598,udp,A15 (AN-to-AN),[David_Ott],[David_Ott],2002-09,,,,, quasar-server,3599,tcp,Quasar Accounting Server,[Brad_Pepers],[Brad_Pepers],2002-09,,,,, quasar-server,3599,udp,Quasar Accounting Server,[Brad_Pepers],[Brad_Pepers],2002-09,,,,, | | | | 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 | iw-mmogame,3596,udp,Illusion Wireless MMOG,[Jan_Vrsinsky],[Jan_Vrsinsky],2002-09,,,,, a14,3597,tcp,A14 (AN-to-SC/MM),,,,,,,, a14,3597,udp,A14 (AN-to-SC/MM),,,,,,,, a15,3598,tcp,A15 (AN-to-AN),[David_Ott],[David_Ott],2002-09,,,,, a15,3598,udp,A15 (AN-to-AN),[David_Ott],[David_Ott],2002-09,,,,, quasar-server,3599,tcp,Quasar Accounting Server,[Brad_Pepers],[Brad_Pepers],2002-09,,,,, quasar-server,3599,udp,Quasar Accounting Server,[Brad_Pepers],[Brad_Pepers],2002-09,,,,, trap-daemon,3600,tcp,text relay-answer,[John_Willis],[John_Willis],2002-09,2017-07-26,,,, trap-daemon,3600,udp,text relay-answer,[John_Willis],[John_Willis],2002-09,2017-07-26,,,, visinet-gui,3601,tcp,Visinet Gui,[Jeff_Douglass],[Jeff_Douglass],2002-09,,,,, visinet-gui,3601,udp,Visinet Gui,[Jeff_Douglass],[Jeff_Douglass],2002-09,,,,, infiniswitchcl,3602,tcp,InfiniSwitch Mgr Client,[Lee_VanTine],[Lee_VanTine],2002-09,,,,, infiniswitchcl,3602,udp,InfiniSwitch Mgr Client,[Lee_VanTine],[Lee_VanTine],2002-09,,,,, int-rcv-cntrl,3603,tcp,Integrated Rcvr Control,[Dave_Stone],[Dave_Stone],2002-09,,,,, int-rcv-cntrl,3603,udp,Integrated Rcvr Control,[Dave_Stone],[Dave_Stone],2002-09,,,,, bmc-jmx-port,3604,tcp,BMC JMX Port,[Portnoy_Boxman],[Portnoy_Boxman],2002-09,,,,, |
7141 7142 7143 7144 7145 7146 7147 | trendchip-dcp,3608,udp,Trendchip control protocol,[Ming_Jen_Chen],[Ming_Jen_Chen],2002-09,,,,, cpdi-pidas-cm,3609,tcp,CPDI PIDAS Connection Mon,[Tony_Splaver],[Tony_Splaver],2002-09,,,,, cpdi-pidas-cm,3609,udp,CPDI PIDAS Connection Mon,[Tony_Splaver],[Tony_Splaver],2002-09,,,,, echonet,3610,tcp,ECHONET,[Takeshi_Saito],[Takeshi_Saito],2002-09,,,,, echonet,3610,udp,ECHONET,[Takeshi_Saito],[Takeshi_Saito],2002-09,,,,, six-degrees,3611,tcp,Six Degrees Port,[Zach_Nies],[Zach_Nies],2002-09,,,,, six-degrees,3611,udp,Six Degrees Port,[Zach_Nies],[Zach_Nies],2002-09,,,,, | | | | 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 | trendchip-dcp,3608,udp,Trendchip control protocol,[Ming_Jen_Chen],[Ming_Jen_Chen],2002-09,,,,, cpdi-pidas-cm,3609,tcp,CPDI PIDAS Connection Mon,[Tony_Splaver],[Tony_Splaver],2002-09,,,,, cpdi-pidas-cm,3609,udp,CPDI PIDAS Connection Mon,[Tony_Splaver],[Tony_Splaver],2002-09,,,,, echonet,3610,tcp,ECHONET,[Takeshi_Saito],[Takeshi_Saito],2002-09,,,,, echonet,3610,udp,ECHONET,[Takeshi_Saito],[Takeshi_Saito],2002-09,,,,, six-degrees,3611,tcp,Six Degrees Port,[Zach_Nies],[Zach_Nies],2002-09,,,,, six-degrees,3611,udp,Six Degrees Port,[Zach_Nies],[Zach_Nies],2002-09,,,,, dataprotector,3612,tcp,Micro Focus Data Protector,[Micro_Focus],[Shishir_Misra],2002-09,2019-09-30,,,, dataprotector,3612,udp,Micro Focus Data Protector,[Micro_Focus],[Shishir_Misra],2002-09,2019-09-30,,,, alaris-disc,3613,tcp,Alaris Device Discovery,[Chris_Dern],[Chris_Dern],2004-06,,,,, alaris-disc,3613,udp,Alaris Device Discovery,[Chris_Dern],[Chris_Dern],2004-06,,,,, sigma-port,3614,tcp,Satchwell Sigma,[Dave_Chapman],[Dave_Chapman],2011-06-06,,,,, sigma-port,3614,udp,Satchwell Sigma,[Dave_Chapman],[Dave_Chapman],2011-06-06,,,,, start-network,3615,tcp,Start Messaging Network,[Peter_Rocca],[Peter_Rocca],2002-10,,,,, start-network,3615,udp,Start Messaging Network,[Peter_Rocca],[Peter_Rocca],2002-10,,,,, cd3o-protocol,3616,tcp,cd3o Control Protocol,[Chris_Wilcox],[Chris_Wilcox],2002-10,,,,, |
7303 7304 7305 7306 7307 7308 7309 | daap,3689,udp,Digital Audio Access Protocol (iTunes),[Amandeep_Jawa],[Amandeep_Jawa],2003-01,,,,,"Defined TXT keys: txtvers, Version, iTSh Version, Machine ID, Database ID, Machine Name, Password" svn,3690,tcp,Subversion,[Greg_Hudson_2],[Greg_Hudson_2],2003-01,,,,, svn,3690,udp,Subversion,[Greg_Hudson_2],[Greg_Hudson_2],2003-01,,,,, magaya-network,3691,tcp,Magaya Network Port,[Jesus_David_Rodrigue],[Jesus_David_Rodrigue],2003-02,,,,, magaya-network,3691,udp,Magaya Network Port,[Jesus_David_Rodrigue],[Jesus_David_Rodrigue],2003-02,,,,, intelsync,3692,tcp,Brimstone IntelSync,[Davey_Taylor],[Davey_Taylor],2003-02,,,,, intelsync,3692,udp,Brimstone IntelSync,[Davey_Taylor],[Davey_Taylor],2003-02,,,,, | > > | | | 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 | daap,3689,udp,Digital Audio Access Protocol (iTunes),[Amandeep_Jawa],[Amandeep_Jawa],2003-01,,,,,"Defined TXT keys: txtvers, Version, iTSh Version, Machine ID, Database ID, Machine Name, Password" svn,3690,tcp,Subversion,[Greg_Hudson_2],[Greg_Hudson_2],2003-01,,,,, svn,3690,udp,Subversion,[Greg_Hudson_2],[Greg_Hudson_2],2003-01,,,,, magaya-network,3691,tcp,Magaya Network Port,[Jesus_David_Rodrigue],[Jesus_David_Rodrigue],2003-02,,,,, magaya-network,3691,udp,Magaya Network Port,[Jesus_David_Rodrigue],[Jesus_David_Rodrigue],2003-02,,,,, intelsync,3692,tcp,Brimstone IntelSync,[Davey_Taylor],[Davey_Taylor],2003-02,,,,, intelsync,3692,udp,Brimstone IntelSync,[Davey_Taylor],[Davey_Taylor],2003-02,,,,, easl,3693,tcp,Emergency Automatic Structure Lockdown System,[Mele_Associates],[Greg_Hansen][Randy_Yates],2014-11-26,,,,,This port was previously removed on 2007-04-05. ,3693,udp,Reserved,,,,2014-11-26,,,,This port was previously removed on 2007-04-05. ,3694,,Unassigned,,,,2007-04-05,,,, bmc-data-coll,3695,tcp,BMC Data Collection,[Portnoy_Boxman],[Portnoy_Boxman],2003-02,,,,, bmc-data-coll,3695,udp,BMC Data Collection,[Portnoy_Boxman],[Portnoy_Boxman],2003-02,,,,, telnetcpcd,3696,tcp,Telnet Com Port Control,[Thomas_J_Pinkl],[Thomas_J_Pinkl],2003-02,,,,, telnetcpcd,3696,udp,Telnet Com Port Control,[Thomas_J_Pinkl],[Thomas_J_Pinkl],2003-02,,,,, nw-license,3697,tcp,NavisWorks License System,[Tim_Wiegand],[Tim_Wiegand],2003-02,,,,, nw-license,3697,udp,NavisWorks License System,[Tim_Wiegand],[Tim_Wiegand],2003-02,,,,, sagectlpanel,3698,tcp,SAGECTLPANEL,[Mark_Gamble],[Mark_Gamble],2003-02,,,,, sagectlpanel,3698,udp,SAGECTLPANEL,[Mark_Gamble],[Mark_Gamble],2003-02,,,,, kpn-icw,3699,tcp,Internet Call Waiting,[B_J_Kortekaas],[B_J_Kortekaas],2003-02,,,,, kpn-icw,3699,udp,Internet Call Waiting,[B_J_Kortekaas],[B_J_Kortekaas],2003-02,,,,, lrs-paging,3700,tcp,LRS NetPage,[Geoffrey_Wossum],[Geoffrey_Wossum],2003-02,,,,, lrs-paging,3700,udp,LRS NetPage,[Geoffrey_Wossum],[Geoffrey_Wossum],2003-02,,,,, netcelera,3701,tcp,NetCelera,[Tarek_Nabhan],[Tarek_Nabhan],2003-02,,,,, |
7367 7368 7369 7370 7371 7372 7373 | sychrond,3723,tcp,Sychron Service Daemon,[Robert_Marinelli],[Robert_Marinelli],2003-03,,,,, sychrond,3723,udp,Sychron Service Daemon,[Robert_Marinelli],[Robert_Marinelli],2003-03,,,,, blizwow,3724,tcp,World of Warcraft,[Domain_Tech],[Domain_Tech],2005-04,,,,, blizwow,3724,udp,World of Warcraft,[Domain_Tech],[Domain_Tech],2005-04,,,,, na-er-tip,3725,tcp,Netia NA-ER Port,[Jean_Pierre_Garcia],[Jean_Pierre_Garcia],2003-04,,,,, na-er-tip,3725,udp,Netia NA-ER Port,[Jean_Pierre_Garcia],[Jean_Pierre_Garcia],2003-04,,,,, array-manager,3726,tcp,Xyratex Array Manager,[David_A_Lethe],[David_A_Lethe],2003-04,,,,, | | | 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 | sychrond,3723,tcp,Sychron Service Daemon,[Robert_Marinelli],[Robert_Marinelli],2003-03,,,,, sychrond,3723,udp,Sychron Service Daemon,[Robert_Marinelli],[Robert_Marinelli],2003-03,,,,, blizwow,3724,tcp,World of Warcraft,[Domain_Tech],[Domain_Tech],2005-04,,,,, blizwow,3724,udp,World of Warcraft,[Domain_Tech],[Domain_Tech],2005-04,,,,, na-er-tip,3725,tcp,Netia NA-ER Port,[Jean_Pierre_Garcia],[Jean_Pierre_Garcia],2003-04,,,,, na-er-tip,3725,udp,Netia NA-ER Port,[Jean_Pierre_Garcia],[Jean_Pierre_Garcia],2003-04,,,,, array-manager,3726,tcp,Xyratex Array Manager,[David_A_Lethe],[David_A_Lethe],2003-04,,,,, array-manager,3726,udp,Xyratex Array Manager,[David_A_Lethe],[David_A_Lethe],2003-04,,,,, e-mdu,3727,tcp,Ericsson Mobile Data Unit,,,,,,,, e-mdu,3727,udp,Ericsson Mobile Data Unit,,,,,,,, e-woa,3728,tcp,Ericsson Web on Air,[Marco_Casole],[Marco_Casole],2003-04,,,,, e-woa,3728,udp,Ericsson Web on Air,[Marco_Casole],[Marco_Casole],2003-04,,,,, fksp-audit,3729,tcp,Fireking Audit Port,[Richard_Thurman],[Richard_Thurman],2003-04,,,,, fksp-audit,3729,udp,Fireking Audit Port,[Richard_Thurman],[Richard_Thurman],2003-04,,,,, client-ctrl,3730,tcp,Client Control,[Lawrence_W_Dunn],[Lawrence_W_Dunn],2003-04,,,,, |
7415 7416 7417 7418 7419 7420 7421 | linktest-s,3747,tcp,LXPRO.COM LinkTest SSL,[Greg_Bailey],[Greg_Bailey],2003-04,,,,, linktest-s,3747,udp,LXPRO.COM LinkTest SSL,[Greg_Bailey],[Greg_Bailey],2003-04,,,,, webdata,3748,tcp,webData,[Michael_Whiteley],[Michael_Whiteley],2003-04,,,,, webdata,3748,udp,webData,[Michael_Whiteley],[Michael_Whiteley],2003-04,,,,, cimtrak,3749,tcp,CimTrak,[Robert_E_Johnson_II],[Robert_E_Johnson_II],2003-04,,,,, cimtrak,3749,udp,CimTrak,[Robert_E_Johnson_II],[Robert_E_Johnson_II],2003-04,,,,, cbos-ip-port,3750,tcp,CBOS/IP ncapsalation port,[Thomas_Dannemiller],[Thomas_Dannemiller],2003-04,,,,, | | | 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 | linktest-s,3747,tcp,LXPRO.COM LinkTest SSL,[Greg_Bailey],[Greg_Bailey],2003-04,,,,, linktest-s,3747,udp,LXPRO.COM LinkTest SSL,[Greg_Bailey],[Greg_Bailey],2003-04,,,,, webdata,3748,tcp,webData,[Michael_Whiteley],[Michael_Whiteley],2003-04,,,,, webdata,3748,udp,webData,[Michael_Whiteley],[Michael_Whiteley],2003-04,,,,, cimtrak,3749,tcp,CimTrak,[Robert_E_Johnson_II],[Robert_E_Johnson_II],2003-04,,,,, cimtrak,3749,udp,CimTrak,[Robert_E_Johnson_II],[Robert_E_Johnson_II],2003-04,,,,, cbos-ip-port,3750,tcp,CBOS/IP ncapsalation port,[Thomas_Dannemiller],[Thomas_Dannemiller],2003-04,,,,, cbos-ip-port,3750,udp,CBOS/IP ncapsalation port,[Thomas_Dannemiller],[Thomas_Dannemiller],2003-04,,,,, gprs-cube,3751,tcp,CommLinx GPRS Cube,[Peter_Johnson],[Peter_Johnson],2003-04,,,,, gprs-cube,3751,udp,CommLinx GPRS Cube,[Peter_Johnson],[Peter_Johnson],2003-04,,,,, vipremoteagent,3752,tcp,Vigil-IP RemoteAgent,[Bryan_Alvord],[Bryan_Alvord],2003-04,,,,, vipremoteagent,3752,udp,Vigil-IP RemoteAgent,[Bryan_Alvord],[Bryan_Alvord],2003-04,,,,, nattyserver,3753,tcp,NattyServer Port,[Akira_Saito],[Akira_Saito],2003-04,,,,, nattyserver,3753,udp,NattyServer Port,[Akira_Saito],[Akira_Saito],2003-04,,,,, timestenbroker,3754,tcp,TimesTen Broker Port,[David_Aspinwall],[David_Aspinwall],2003-04,,,,, |
7613 7614 7615 7616 7617 7618 7619 | an-pcp,3846,tcp,Astare Network PCP,[Tony_Gulino],[Tony_Gulino],2003-08,,,,, an-pcp,3846,udp,Astare Network PCP,[Tony_Gulino],[Tony_Gulino],2003-08,,,,, msfw-control,3847,tcp,MS Firewall Control,[Oren_Trutner],[Oren_Trutner],2003-08,,,,, msfw-control,3847,udp,MS Firewall Control,[Oren_Trutner],[Oren_Trutner],2003-08,,,,, item,3848,tcp,IT Environmental Monitor,[Keith_Wright],[Keith_Wright],2003-08,,,,, item,3848,udp,IT Environmental Monitor,[Keith_Wright],[Keith_Wright],2003-08,,,,, spw-dnspreload,3849,tcp,SPACEWAY DNS Preload,[Daniel_Friedman],[Daniel_Friedman],2003-08,,,,, | | | 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 | an-pcp,3846,tcp,Astare Network PCP,[Tony_Gulino],[Tony_Gulino],2003-08,,,,, an-pcp,3846,udp,Astare Network PCP,[Tony_Gulino],[Tony_Gulino],2003-08,,,,, msfw-control,3847,tcp,MS Firewall Control,[Oren_Trutner],[Oren_Trutner],2003-08,,,,, msfw-control,3847,udp,MS Firewall Control,[Oren_Trutner],[Oren_Trutner],2003-08,,,,, item,3848,tcp,IT Environmental Monitor,[Keith_Wright],[Keith_Wright],2003-08,,,,, item,3848,udp,IT Environmental Monitor,[Keith_Wright],[Keith_Wright],2003-08,,,,, spw-dnspreload,3849,tcp,SPACEWAY DNS Preload,[Daniel_Friedman],[Daniel_Friedman],2003-08,,,,, spw-dnspreload,3849,udp,SPACEWAY DNS Preload,[Daniel_Friedman],[Daniel_Friedman],2003-08,,,,, qtms-bootstrap,3850,tcp,QTMS Bootstrap Protocol,[Phil_Willis],[Phil_Willis],2003-08,,,,, qtms-bootstrap,3850,udp,QTMS Bootstrap Protocol,[Phil_Willis],[Phil_Willis],2003-08,,,,, spectraport,3851,tcp,SpectraTalk Port,[Madhav_Karhade],[Madhav_Karhade],2003-08,,,,, spectraport,3851,udp,SpectraTalk Port,[Madhav_Karhade],[Madhav_Karhade],2003-08,,,,, sse-app-config,3852,tcp,SSE App Configuration,[Tim_Wilson],[Tim_Wilson],2003-08,,,,, sse-app-config,3852,udp,SSE App Configuration,[Tim_Wilson],[Tim_Wilson],2003-08,,,,, sscan,3853,tcp,SONY scanning protocol,[Takashi_Aihara],[Takashi_Aihara],2003-08,,,,, |
7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 | fagordnc,3873,tcp,fagordnc,[Luis_Zugasti],[Luis_Zugasti],2003-11,,,,, fagordnc,3873,udp,fagordnc,[Luis_Zugasti],[Luis_Zugasti],2003-11,,,,, sixxsconfig,3874,tcp,SixXS Configuration,[Jeroen_Massar],[Jeroen_Massar],2003-11,,,,, sixxsconfig,3874,udp,SixXS Configuration,[Jeroen_Massar],[Jeroen_Massar],2003-11,,,,, pnbscada,3875,tcp,PNBSCADA,[Philip_N_Bergstress],[Philip_N_Bergstress],,,,,, pnbscada,3875,udp,PNBSCADA,[Philip_N_Bergstress],[Philip_N_Bergstress],,,,,, dl-agent,3876,tcp,"DirectoryLockdown Agent IANA assigned this well-formed service name as a replacement for ""dl_agent"".",[Jason_Lockett][Melanie_Kacerek],[Jason_Lockett][Melanie_Kacerek],2008-12-16,,,,, dl_agent,3876,tcp,DirectoryLockdown Agent,[Jason_Lockett][Melanie_Kacerek],[Jason_Lockett][Melanie_Kacerek],2008-12-16,,,,,"This entry is an alias to ""dl-agent"". This entry is now historic, not usable for use with many common service discovery mechanisms." dl-agent,3876,udp,"DirectoryLockdown Agent IANA assigned this well-formed service name as a replacement for ""dl_agent"".",[Jason_Lockett][Melanie_Kacerek],[Jason_Lockett][Melanie_Kacerek],2008-12-16,,,,, dl_agent,3876,udp,DirectoryLockdown Agent,[Jason_Lockett][Melanie_Kacerek],[Jason_Lockett][Melanie_Kacerek],2008-12-16,,,,,"This entry is an alias to ""dl-agent"". This entry is now historic, not usable for use with many common service discovery mechanisms." xmpcr-interface,3877,tcp,XMPCR Interface Port,[Christopher_Carlson],[Christopher_Carlson],2003-10,,,,, xmpcr-interface,3877,udp,XMPCR Interface Port,[Christopher_Carlson],[Christopher_Carlson],2003-10,,,,, fotogcad,3878,tcp,FotoG CAD interface,[Jason_Szabo],[Jason_Szabo],2003-10,,,,, fotogcad,3878,udp,FotoG CAD interface,[Jason_Szabo],[Jason_Szabo],2003-10,,,,, appss-lm,3879,tcp,appss license manager,[Peter_Krueger],[Peter_Krueger],2003-10,,,,, appss-lm,3879,udp,appss license manager,[Peter_Krueger],[Peter_Krueger],2003-10,,,,, igrs,3880,tcp,IGRS,[Huang_Jingnan],[Huang_Jingnan],2003-10,,,,, igrs,3880,udp,IGRS,[Huang_Jingnan],[Huang_Jingnan],2003-10,,,,, idac,3881,tcp,Data Acquisition and Control,[Chatziandreoglou_Chr],[Chatziandreoglou_Chr],2003-10,,,,, idac,3881,udp,Data Acquisition and Control,[Chatziandreoglou_Chr],[Chatziandreoglou_Chr],2003-10,,,,, msdts1,3882,tcp,DTS Service Port,[Sergei_Ivanov],[Sergei_Ivanov],2003-10,,,,, msdts1,3882,udp,DTS Service Port,[Sergei_Ivanov],[Sergei_Ivanov],2003-10,,,,, | > > > > | | | 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 | fagordnc,3873,tcp,fagordnc,[Luis_Zugasti],[Luis_Zugasti],2003-11,,,,, fagordnc,3873,udp,fagordnc,[Luis_Zugasti],[Luis_Zugasti],2003-11,,,,, sixxsconfig,3874,tcp,SixXS Configuration,[Jeroen_Massar],[Jeroen_Massar],2003-11,,,,, sixxsconfig,3874,udp,SixXS Configuration,[Jeroen_Massar],[Jeroen_Massar],2003-11,,,,, pnbscada,3875,tcp,PNBSCADA,[Philip_N_Bergstress],[Philip_N_Bergstress],,,,,, pnbscada,3875,udp,PNBSCADA,[Philip_N_Bergstress],[Philip_N_Bergstress],,,,,, dl-agent,3876,tcp,"DirectoryLockdown Agent IANA assigned this well-formed service name as a replacement for ""dl_agent"".",[Jason_Lockett][Melanie_Kacerek],[Jason_Lockett][Melanie_Kacerek],2008-12-16,,,,, dl_agent,3876,tcp,DirectoryLockdown Agent,[Jason_Lockett][Melanie_Kacerek],[Jason_Lockett][Melanie_Kacerek],2008-12-16,,,,,"This entry is an alias to ""dl-agent"". This entry is now historic, not usable for use with many common service discovery mechanisms." dl-agent,3876,udp,"DirectoryLockdown Agent IANA assigned this well-formed service name as a replacement for ""dl_agent"".",[Jason_Lockett][Melanie_Kacerek],[Jason_Lockett][Melanie_Kacerek],2008-12-16,,,,, dl_agent,3876,udp,DirectoryLockdown Agent,[Jason_Lockett][Melanie_Kacerek],[Jason_Lockett][Melanie_Kacerek],2008-12-16,,,,,"This entry is an alias to ""dl-agent"". This entry is now historic, not usable for use with many common service discovery mechanisms." xmpcr-interface,3877,tcp,XMPCR Interface Port,[Christopher_Carlson],[Christopher_Carlson],2003-10,,,,, xmpcr-interface,3877,udp,XMPCR Interface Port,[Christopher_Carlson],[Christopher_Carlson],2003-10,,,,, fotogcad,3878,tcp,FotoG CAD interface,[Jason_Szabo],[Jason_Szabo],2003-10,,,,, fotogcad,3878,udp,FotoG CAD interface,[Jason_Szabo],[Jason_Szabo],2003-10,,,,, appss-lm,3879,tcp,appss license manager,[Peter_Krueger],[Peter_Krueger],2003-10,,,,, appss-lm,3879,udp,appss license manager,[Peter_Krueger],[Peter_Krueger],2003-10,,,,, igrs,3880,tcp,IGRS,[Huang_Jingnan],[Huang_Jingnan],2003-10,,,,, igrs,3880,udp,IGRS,[Huang_Jingnan],[Huang_Jingnan],2003-10,,,,, idac,3881,tcp,Data Acquisition and Control,[Chatziandreoglou_Chr],[Chatziandreoglou_Chr],2003-10,,,,, idac,3881,udp,Data Acquisition and Control,[Chatziandreoglou_Chr],[Chatziandreoglou_Chr],2003-10,,,,, msdts1,3882,tcp,DTS Service Port,[Sergei_Ivanov],[Sergei_Ivanov],2003-10,,,,, msdts1,3882,udp,DTS Service Port,[Sergei_Ivanov],[Sergei_Ivanov],2003-10,,,,, vrpn,3883,tcp,VR Peripheral Network,[Sensics],[Yuval_Boger],2003-10,2015-05-04,,,, vrpn,3883,udp,VR Peripheral Network,[Sensics],[Yuval_Boger],2003-10,2015-05-04,,,, softrack-meter,3884,tcp,SofTrack Metering,[John_T_McCann],[John_T_McCann],2003-10,,,,, softrack-meter,3884,udp,SofTrack Metering,[John_T_McCann],[John_T_McCann],2003-10,,,,, topflow-ssl,3885,tcp,TopFlow SSL,[Ken_Nelson],[Ken_Nelson],,,,,, topflow-ssl,3885,udp,TopFlow SSL,[Ken_Nelson],[Ken_Nelson],,,,,, nei-management,3886,tcp,NEI management port,[Kevin_Murphy_2],[Kevin_Murphy_2],2003-10,,,,, nei-management,3886,udp,NEI management port,[Kevin_Murphy_2],[Kevin_Murphy_2],2003-10,,,,, ciphire-data,3887,tcp,Ciphire Data Transport,[Lars_Eilebrecht],[Lars_Eilebrecht],2003-10,,,,, |
7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 | sdo-ssh,3897,tcp,Simple Distributed Objects over SSH,[Alexander_Philippou],[Alexander_Philippou],2003-10,,,,, sdo-ssh,3897,udp,Simple Distributed Objects over SSH,[Alexander_Philippou],[Alexander_Philippou],2003-10,,,,, senip,3898,tcp,"IAS, Inc. SmartEye NET Internet Protocol",[Matt_Nowicki],[Matt_Nowicki],2003-10,,,,, senip,3898,udp,"IAS, Inc. SmartEye NET Internet Protocol",[Matt_Nowicki],[Matt_Nowicki],2003-10,,,,, itv-control,3899,tcp,ITV Port,[Alex_Nicu],[Alex_Nicu],2003-10,,,,, itv-control,3899,udp,ITV Port,[Alex_Nicu],[Alex_Nicu],2003-10,,,,, udt-os,3900,tcp,"Unidata UDT OS IANA assigned this well-formed service name as a replacement for ""udt_os"".",[James_Powell],[James_Powell],,,,,, udt_os,3900,tcp,Unidata UDT OS,[James_Powell],[James_Powell],,,,,,"This entry is an alias to ""udt-os"". This entry is now historic, not usable for use with many common service discovery mechanisms." udt-os,3900,udp,"Unidata UDT OS IANA assigned this well-formed service name as a replacement for ""udt_os"".",[James_Powell],[James_Powell],,,,,, udt_os,3900,udp,Unidata UDT OS,[James_Powell],[James_Powell],,,,,,"This entry is an alias to ""udt-os"". This entry is now historic, not usable for use with many common service discovery mechanisms." nimsh,3901,tcp,NIM Service Handler,[Paul_B_Finley],[Paul_B_Finley],2003-10,,,,, nimsh,3901,udp,NIM Service Handler,[Paul_B_Finley],[Paul_B_Finley],2003-10,,,,, nimaux,3902,tcp,NIMsh Auxiliary Port,[Paul_B_Finley],[Paul_B_Finley],2003-10,,,,, | > > > > | 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 | sdo-ssh,3897,tcp,Simple Distributed Objects over SSH,[Alexander_Philippou],[Alexander_Philippou],2003-10,,,,, sdo-ssh,3897,udp,Simple Distributed Objects over SSH,[Alexander_Philippou],[Alexander_Philippou],2003-10,,,,, senip,3898,tcp,"IAS, Inc. SmartEye NET Internet Protocol",[Matt_Nowicki],[Matt_Nowicki],2003-10,,,,, senip,3898,udp,"IAS, Inc. SmartEye NET Internet Protocol",[Matt_Nowicki],[Matt_Nowicki],2003-10,,,,, itv-control,3899,tcp,ITV Port,[Alex_Nicu],[Alex_Nicu],2003-10,,,,, itv-control,3899,udp,ITV Port,[Alex_Nicu],[Alex_Nicu],2003-10,,,,, udt-os,3900,tcp,"Unidata UDT OS IANA assigned this well-formed service name as a replacement for ""udt_os"".",[James_Powell],[James_Powell],,,,,, udt_os,3900,tcp,Unidata UDT OS,[James_Powell],[James_Powell],,,,,,"This entry is an alias to ""udt-os"". This entry is now historic, not usable for use with many common service discovery mechanisms." udt-os,3900,udp,"Unidata UDT OS IANA assigned this well-formed service name as a replacement for ""udt_os"".",[James_Powell],[James_Powell],,,,,, udt_os,3900,udp,Unidata UDT OS,[James_Powell],[James_Powell],,,,,,"This entry is an alias to ""udt-os"". This entry is now historic, not usable for use with many common service discovery mechanisms." nimsh,3901,tcp,NIM Service Handler,[Paul_B_Finley],[Paul_B_Finley],2003-10,,,,, nimsh,3901,udp,NIM Service Handler,[Paul_B_Finley],[Paul_B_Finley],2003-10,,,,, nimaux,3902,tcp,NIMsh Auxiliary Port,[Paul_B_Finley],[Paul_B_Finley],2003-10,,,,, |
7768 7769 7770 7771 7772 7773 7774 | listcrt-port-2,3914,tcp,ListCREATOR Port 2,[Tomokazu_Asai],[Tomokazu_Asai],2003-11,,,,, listcrt-port-2,3914,udp,ListCREATOR Port 2,[Tomokazu_Asai],[Tomokazu_Asai],2003-11,,,,, agcat,3915,tcp,Auto-Graphics Cataloging,[Paul_Cope],[Paul_Cope],2003-11,,,,, agcat,3915,udp,Auto-Graphics Cataloging,[Paul_Cope],[Paul_Cope],2003-11,,,,, wysdmc,3916,tcp,WysDM Controller,[Jim_McDonald_2],[Jim_McDonald_2],2003-11,,,,, wysdmc,3916,udp,WysDM Controller,[Jim_McDonald_2],[Jim_McDonald_2],2003-11,,,,, aftmux,3917,tcp,AFT multiplex port,[Alfred_Schmidt],[Alfred_Schmidt],2003-11,,,,, | | | | | 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 | listcrt-port-2,3914,tcp,ListCREATOR Port 2,[Tomokazu_Asai],[Tomokazu_Asai],2003-11,,,,, listcrt-port-2,3914,udp,ListCREATOR Port 2,[Tomokazu_Asai],[Tomokazu_Asai],2003-11,,,,, agcat,3915,tcp,Auto-Graphics Cataloging,[Paul_Cope],[Paul_Cope],2003-11,,,,, agcat,3915,udp,Auto-Graphics Cataloging,[Paul_Cope],[Paul_Cope],2003-11,,,,, wysdmc,3916,tcp,WysDM Controller,[Jim_McDonald_2],[Jim_McDonald_2],2003-11,,,,, wysdmc,3916,udp,WysDM Controller,[Jim_McDonald_2],[Jim_McDonald_2],2003-11,,,,, aftmux,3917,tcp,AFT multiplex port,[Alfred_Schmidt],[Alfred_Schmidt],2003-11,,,,, aftmux,3917,udp,AFT multiplex port,[Alfred_Schmidt],[Alfred_Schmidt],2003-11,,,,, pktcablemmcops,3918,tcp,PacketCableMultimediaCOPS,[Eric_Rosenfeld],[Eric_Rosenfeld],2003-11,,,,, pktcablemmcops,3918,udp,PacketCableMultimediaCOPS,[Eric_Rosenfeld],[Eric_Rosenfeld],2003-11,,,,, hyperip,3919,tcp,HyperIP,[Network_Executive_Software_Inc],[Nancy_Golio],2003-11,2017-01-25,,,, hyperip,3919,udp,HyperIP,[Network_Executive_Software_Inc],[Nancy_Golio],2003-11,2017-01-25,,,, exasoftport1,3920,tcp,Exasoft IP Port,[Alan_Malik],[Alan_Malik],2003-11,,,,, exasoftport1,3920,udp,Exasoft IP Port,[Alan_Malik],[Alan_Malik],2003-11,,,,, herodotus-net,3921,tcp,Herodotus Net,[Adam_Gawne_Cain],[Adam_Gawne_Cain],2003-11,,,,, herodotus-net,3921,udp,Herodotus Net,[Adam_Gawne_Cain],[Adam_Gawne_Cain],2003-11,,,,, sor-update,3922,tcp,Soronti Update Port,[Carleton_Watkins],[Carleton_Watkins],2003-11,,,,, sor-update,3922,udp,Soronti Update Port,[Carleton_Watkins],[Carleton_Watkins],2003-11,,,,, symb-sb-port,3923,tcp,Symbian Service Broker,[Ian_McDowall],[Ian_McDowall],2003-11,,,,, |
7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 | sdp-portmapper,3935,tcp,SDP Port Mapper Protocol,[James_Pinkerton],[James_Pinkerton],2003-11,,,,, sdp-portmapper,3935,udp,SDP Port Mapper Protocol,[James_Pinkerton],[James_Pinkerton],2003-11,,,,, mailprox,3936,tcp,Mailprox,[Christof_Drescher],[Christof_Drescher],2003-11,,,,, mailprox,3936,udp,Mailprox,[Christof_Drescher],[Christof_Drescher],2003-11,,,,, dvbservdsc,3937,tcp,DVB Service Discovery,[Bert_van_Willigen][Peter_MacAvock],[Bert_van_Willigen][Peter_MacAvock],2003-11,,,,, dvbservdsc,3937,udp,DVB Service Discovery,[Bert_van_Willigen][Peter_MacAvock],[Bert_van_Willigen][Peter_MacAvock],2003-11,,,,, dbcontrol-agent,3938,tcp,"Oracle dbControl Agent po IANA assigned this well-formed service name as a replacement for ""dbcontrol_agent"".",[Todd_Guay],[Todd_Guay],2003-11,,,,, dbcontrol_agent,3938,tcp,Oracle dbControl Agent po,[Todd_Guay],[Todd_Guay],2003-11,,,,,"This entry is an alias to ""dbcontrol-agent"". This entry is now historic, not usable for use with many common service discovery mechanisms." | > > | > > | | | | 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 | sdp-portmapper,3935,tcp,SDP Port Mapper Protocol,[James_Pinkerton],[James_Pinkerton],2003-11,,,,, sdp-portmapper,3935,udp,SDP Port Mapper Protocol,[James_Pinkerton],[James_Pinkerton],2003-11,,,,, mailprox,3936,tcp,Mailprox,[Christof_Drescher],[Christof_Drescher],2003-11,,,,, mailprox,3936,udp,Mailprox,[Christof_Drescher],[Christof_Drescher],2003-11,,,,, dvbservdsc,3937,tcp,DVB Service Discovery,[Bert_van_Willigen][Peter_MacAvock],[Bert_van_Willigen][Peter_MacAvock],2003-11,,,,, dvbservdsc,3937,udp,DVB Service Discovery,[Bert_van_Willigen][Peter_MacAvock],[Bert_van_Willigen][Peter_MacAvock],2003-11,,,,, dbcontrol-agent,3938,tcp,"Oracle dbControl Agent po IANA assigned this well-formed service name as a replacement for ""dbcontrol_agent"".",[Todd_Guay],[Todd_Guay],2003-11,,,,, dbcontrol_agent,3938,tcp,Oracle dbControl Agent po,[Todd_Guay],[Todd_Guay],2003-11,,,,,"This entry is an alias to ""dbcontrol-agent"". This entry is now historic, not usable for use with many common service discovery mechanisms." dbcontrol-agent,3938,udp,"Oracle dbControl Agent po IANA assigned this well-formed service name as a replacement for ""dbcontrol_agent"".",[Todd_Guay],[Todd_Guay],2003-11,,,,, dbcontrol_agent,3938,udp,Oracle dbControl Agent po,[Todd_Guay],[Todd_Guay],2003-11,,,,,"This entry is an alias to ""dbcontrol-agent"". This entry is now historic, not usable for use with many common service discovery mechanisms." aamp,3939,tcp,Anti-virus Application Management Port,[In_sik_Choi],[In_sik_Choi],2002-02,,,,, aamp,3939,udp,Anti-virus Application Management Port,[In_sik_Choi],[In_sik_Choi],2002-02,,,,, xecp-node,3940,tcp,XeCP Node Service,[Brent_McCullough],[Brent_McCullough],2003-11,,,,, xecp-node,3940,udp,XeCP Node Service,[Brent_McCullough],[Brent_McCullough],2003-11,,,,, homeportal-web,3941,tcp,Home Portal Web Server,[Christian_Beaumont],[Christian_Beaumont],2003-11,,,,, homeportal-web,3941,udp,Home Portal Web Server,[Christian_Beaumont],[Christian_Beaumont],2003-11,,,,, srdp,3942,tcp,satellite distribution,[Simone_Molendini],[Simone_Molendini],2003-11,,,,, srdp,3942,udp,satellite distribution,[Simone_Molendini],[Simone_Molendini],2003-11,,,,, tig,3943,tcp,TetraNode Ip Gateway,[B_van_Klinken],[B_van_Klinken],2003-12,,,,, tig,3943,udp,TetraNode Ip Gateway,[B_van_Klinken],[B_van_Klinken],2003-12,,,,, sops,3944,tcp,S-Ops Management,[Stefan_Hochuli],[Stefan_Hochuli],2003-12,,,,, sops,3944,udp,S-Ops Management,[Stefan_Hochuli],[Stefan_Hochuli],2003-12,,,,, emcads,3945,tcp,EMCADS Server Port,[Lars_Struwe_Christen],[Lars_Struwe_Christen],2004-01,,,,, emcads,3945,udp,EMCADS Server Port,[Lars_Struwe_Christen],[Lars_Struwe_Christen],2004-01,,,,, backupedge,3946,tcp,BackupEDGE Server,[Microlite_Corporation],[D_Thomas_Podnar],2004-06,,,,, backupedge,3946,udp,BackupEDGE Server,[Microlite_Corporation],[D_Thomas_Podnar],2004-06,,,,, ccp,3947,tcp,"Connect and Control Protocol for Consumer, Commercial, and Industrial Electronic Devices",[Aaron_Myer],[Aaron_Myer],2004-06,,,,, ccp,3947,udp,"Connect and Control Protocol for Consumer, Commercial, and Industrial Electronic Devices",[Aaron_Myer],[Aaron_Myer],2004-06,,,,, apdap,3948,tcp,Anton Paar Device Administration Protocol,[Martin_Leitner],[Martin_Leitner],2004-06,,,,, apdap,3948,udp,Anton Paar Device Administration Protocol,[Martin_Leitner],[Martin_Leitner],2004-06,,,,, drip,3949,tcp,Dynamic Routing Information Protocol,[Dana_Blair],[Dana_Blair],2004-06,,,,, drip,3949,udp,Dynamic Routing Information Protocol,[Dana_Blair],[Dana_Blair],2004-06,,,,, namemunge,3950,tcp,Name Munging,[John_C_Klensin],[John_C_Klensin],2004-07,,,,, |
7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 | ppsms,3967,tcp,PPS Message Service,[Bart_Schaefer],[Bart_Schaefer],2005-08,,,,, ppsms,3967,udp,PPS Message Service,[Bart_Schaefer],[Bart_Schaefer],2005-08,,,,, ianywhere-dbns,3968,tcp,iAnywhere DBNS,[Graeme_Perrow],[Graeme_Perrow],2005-08,,,,, ianywhere-dbns,3968,udp,iAnywhere DBNS,[Graeme_Perrow],[Graeme_Perrow],2005-08,,,,, landmarks,3969,tcp,Landmark Messages,[Petri_Rauhala],[Petri_Rauhala],2005-08,,,,, landmarks,3969,udp,Landmark Messages,[Petri_Rauhala],[Petri_Rauhala],2005-08,,,,, lanrevagent,3970,tcp,LANrev Agent,[Martin_Bestmann_3],[Martin_Bestmann_3],,,,,,"Defined TXT keys: txtvers server=<main LANrev server for agent> vers=<version of LANrev Agent> build=<build number of LANrev Agent> id=<agent identifier>" lanrevagent,3970,udp,LANrev Agent,[Martin_Bestmann_3],[Martin_Bestmann_3],,,,,,"Defined TXT keys: txtvers server=<main LANrev server for agent> vers=<version of LANrev Agent> build=<build number of LANrev Agent> id=<agent identifier>" lanrevserver,3971,tcp,LANrev Server,[Martin_Bestmann_3],[Martin_Bestmann_3],2005-08,,,,, lanrevserver,3971,udp,LANrev Server,[Martin_Bestmann_3],[Martin_Bestmann_3],2005-08,,,,, iconp,3972,tcp,ict-control Protocol,[Roel_Harbers],[Roel_Harbers],2005-08,,,,, iconp,3972,udp,ict-control Protocol,[Roel_Harbers],[Roel_Harbers],2005-08,,,,, progistics,3973,tcp,ConnectShip Progistics,[Jeff_Skaistis],[Jeff_Skaistis],2005-08,,,,, progistics,3973,udp,ConnectShip Progistics,[Jeff_Skaistis],[Jeff_Skaistis],2005-08,,,,, citysearch,3974,tcp,Remote Applicant Tracking Service,[Marc_Castelluccio],[Marc_Castelluccio],2005-08,,,,, citysearch,3974,udp,Remote Applicant Tracking Service,[Marc_Castelluccio],[Marc_Castelluccio],2005-08,,,,, airshot,3975,tcp,Air Shot,[Shingo_Kimura],[Shingo_Kimura],2005-08,,,,, airshot,3975,udp,Air Shot,[Shingo_Kimura],[Shingo_Kimura],2005-08,,,,, | > > > > > > > > > > | | > > > > | 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 | ppsms,3967,tcp,PPS Message Service,[Bart_Schaefer],[Bart_Schaefer],2005-08,,,,, ppsms,3967,udp,PPS Message Service,[Bart_Schaefer],[Bart_Schaefer],2005-08,,,,, ianywhere-dbns,3968,tcp,iAnywhere DBNS,[Graeme_Perrow],[Graeme_Perrow],2005-08,,,,, ianywhere-dbns,3968,udp,iAnywhere DBNS,[Graeme_Perrow],[Graeme_Perrow],2005-08,,,,, landmarks,3969,tcp,Landmark Messages,[Petri_Rauhala],[Petri_Rauhala],2005-08,,,,, landmarks,3969,udp,Landmark Messages,[Petri_Rauhala],[Petri_Rauhala],2005-08,,,,, lanrevagent,3970,tcp,LANrev Agent,[Martin_Bestmann_3],[Martin_Bestmann_3],,,,,,"Defined TXT keys: txtvers server=<main LANrev server for agent> vers=<version of LANrev Agent> build=<build number of LANrev Agent> id=<agent identifier>" lanrevagent,3970,udp,LANrev Agent,[Martin_Bestmann_3],[Martin_Bestmann_3],,,,,,"Defined TXT keys: txtvers server=<main LANrev server for agent> vers=<version of LANrev Agent> build=<build number of LANrev Agent> id=<agent identifier>" lanrevserver,3971,tcp,LANrev Server,[Martin_Bestmann_3],[Martin_Bestmann_3],2005-08,,,,, lanrevserver,3971,udp,LANrev Server,[Martin_Bestmann_3],[Martin_Bestmann_3],2005-08,,,,, iconp,3972,tcp,ict-control Protocol,[Roel_Harbers],[Roel_Harbers],2005-08,,,,, iconp,3972,udp,ict-control Protocol,[Roel_Harbers],[Roel_Harbers],2005-08,,,,, progistics,3973,tcp,ConnectShip Progistics,[Jeff_Skaistis],[Jeff_Skaistis],2005-08,,,,, progistics,3973,udp,ConnectShip Progistics,[Jeff_Skaistis],[Jeff_Skaistis],2005-08,,,,, citysearch,3974,tcp,Remote Applicant Tracking Service,[Marc_Castelluccio],[Marc_Castelluccio],2005-08,,,,, citysearch,3974,udp,Remote Applicant Tracking Service,[Marc_Castelluccio],[Marc_Castelluccio],2005-08,,,,, airshot,3975,tcp,Air Shot,[Shingo_Kimura],[Shingo_Kimura],2005-08,,,,, airshot,3975,udp,Air Shot,[Shingo_Kimura],[Shingo_Kimura],2005-08,,,,, opswagent,3976,tcp,Server Automation Agent,[Hewlett_Packard_Enterprise],[Cristi_Fati],,2016-04-14,,,, opswagent,3976,udp,Server Automation Agent,[Hewlett_Packard_Enterprise],[Cristi_Fati],,2016-04-14,,,, opswmanager,3977,tcp,Opsware Manager,[Dave_Jagoda],[Dave_Jagoda],2006-06,,,,, opswmanager,3977,udp,Opsware Manager,[Dave_Jagoda],[Dave_Jagoda],2006-06,,,,, secure-cfg-svr,3978,tcp,Secured Configuration Server,[Dr_Anupam_Bharali],[Dr_Anupam_Bharali],2006-06,,,,, secure-cfg-svr,3978,udp,Secured Configuration Server,[Dr_Anupam_Bharali],[Dr_Anupam_Bharali],2006-06,,,,, smwan,3979,tcp,Smith Micro Wide Area Network Service,[David_Sperling],[David_Sperling],2006-06,,,,, smwan,3979,udp,Smith Micro Wide Area Network Service,[David_Sperling],[David_Sperling],2006-06,,,,, acms,3980,tcp,Aircraft Cabin Management System,[Dustin_Zack],[Dustin_Zack],2006-06,,,,, acms,3980,udp,Aircraft Cabin Management System,[Dustin_Zack],[Dustin_Zack],2006-06,,,,, starfish,3981,tcp,Starfish System Admin,[Dan_Razzell],[Dan_Razzell],2006-06,,,,, starfish,3981,udp,Starfish System Admin,[Dan_Razzell],[Dan_Razzell],2006-06,,,,, eis,3982,tcp,ESRI Image Server,,,,,,,, eis,3982,udp,ESRI Image Server,,,,,,,, eisp,3983,tcp,ESRI Image Service,[Keith_Ryden],[Keith_Ryden],2006-07,,,,, eisp,3983,udp,ESRI Image Service,[Keith_Ryden],[Keith_Ryden],2006-07,,,,, mapper-nodemgr,3984,tcp,MAPPER network node manager,,,,,,,, mapper-nodemgr,3984,udp,MAPPER network node manager,,,,,,,, mapper-mapethd,3985,tcp,MAPPER TCP/IP server,,,,,,,, mapper-mapethd,3985,udp,MAPPER TCP/IP server,,,,,,,, mapper-ws-ethd,3986,tcp,"MAPPER workstation server IANA assigned this well-formed service name as a replacement for ""mapper-ws_ethd"".",[John_C_Horton],[John_C_Horton],,,,,, mapper-ws_ethd,3986,tcp,MAPPER workstation server,[John_C_Horton],[John_C_Horton],,,,,,"This entry is an alias to ""mapper-ws-ethd"". This entry is now historic, not usable for use with many common service discovery mechanisms." mapper-ws-ethd,3986,udp,"MAPPER workstation server IANA assigned this well-formed service name as a replacement for ""mapper-ws_ethd"".",[John_C_Horton],[John_C_Horton],,,,,, mapper-ws_ethd,3986,udp,MAPPER workstation server,[John_C_Horton],[John_C_Horton],,,,,,"This entry is an alias to ""mapper-ws-ethd"". This entry is now historic, not usable for use with many common service discovery mechanisms." centerline,3987,tcp,Centerline,[Mark_Simpson],[Mark_Simpson],,,,,, centerline,3987,udp,Centerline,[Mark_Simpson],[Mark_Simpson],,,,,, dcs-config,3988,tcp,DCS Configuration Port,[Ian_Cargill],[Ian_Cargill],2005-08,,,,, |
7988 7989 7990 7991 7992 7993 7994 | samsung-unidex,4010,udp,Samsung Unidex,[Konstantin_V_Vyazni],[Konstantin_V_Vyazni],,,,,, altserviceboot,4011,tcp,Alternate Service Boot,[Eric_Dittert],[Eric_Dittert],,,,,, altserviceboot,4011,udp,Alternate Service Boot,[Eric_Dittert],[Eric_Dittert],,,,,, pda-gate,4012,tcp,PDA Gate,[Masakuni_Okada],[Masakuni_Okada],,,,,, pda-gate,4012,udp,PDA Gate,[Masakuni_Okada],[Masakuni_Okada],,,,,, acl-manager,4013,tcp,ACL Manager,[Toru_Murai],[Toru_Murai],,,,,, acl-manager,4013,udp,ACL Manager,[Toru_Murai],[Toru_Murai],,,,,, | | | | 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 | samsung-unidex,4010,udp,Samsung Unidex,[Konstantin_V_Vyazni],[Konstantin_V_Vyazni],,,,,, altserviceboot,4011,tcp,Alternate Service Boot,[Eric_Dittert],[Eric_Dittert],,,,,, altserviceboot,4011,udp,Alternate Service Boot,[Eric_Dittert],[Eric_Dittert],,,,,, pda-gate,4012,tcp,PDA Gate,[Masakuni_Okada],[Masakuni_Okada],,,,,, pda-gate,4012,udp,PDA Gate,[Masakuni_Okada],[Masakuni_Okada],,,,,, acl-manager,4013,tcp,ACL Manager,[Toru_Murai],[Toru_Murai],,,,,, acl-manager,4013,udp,ACL Manager,[Toru_Murai],[Toru_Murai],,,,,, taiclock,4014,tcp,TAICLOCK,[D_J_Bernstein],[D_J_Bernstein],,2018-04-05,,,, taiclock,4014,udp,TAICLOCK,[D_J_Bernstein],[D_J_Bernstein],,2018-04-05,,,, talarian-mcast1,4015,tcp,Talarian Mcast,,,,,,,, talarian-mcast1,4015,udp,Talarian Mcast,,,,,,,, talarian-mcast2,4016,tcp,Talarian Mcast,,,,,,,, talarian-mcast2,4016,udp,Talarian Mcast,,,,,,,, talarian-mcast3,4017,tcp,Talarian Mcast,,,,,,,, talarian-mcast3,4017,udp,Talarian Mcast,,,,,,,, talarian-mcast4,4018,tcp,Talarian Mcast,,,,,,,, |
8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 | wfm,4057,tcp,Servigistics WFM server,[Yuri_Machkasov_2],[Yuri_Machkasov_2],2006-08,,,,, wfm,4057,udp,Servigistics WFM server,[Yuri_Machkasov_2],[Yuri_Machkasov_2],2006-08,,,,, kingfisher,4058,tcp,Kingfisher protocol,[Vaughan_Wesson],[Vaughan_Wesson],2006-10,,,,, kingfisher,4058,udp,Kingfisher protocol,[Vaughan_Wesson],[Vaughan_Wesson],2006-10,,,,, dlms-cosem,4059,tcp,DLMS/COSEM,[Gyozo_Kmethy],[Gyozo_Kmethy],2006-11,,,,, dlms-cosem,4059,udp,DLMS/COSEM,[Gyozo_Kmethy],[Gyozo_Kmethy],2006-11,,,,, dsmeter-iatc,4060,tcp,"DSMETER Inter-Agent Transfer Channel IANA assigned this well-formed service name as a replacement for ""dsmeter_iatc"".",[John_McCann],[John_McCann],2006-12,,,,, dsmeter_iatc,4060,tcp,DSMETER Inter-Agent Transfer Channel,[John_McCann],[John_McCann],2006-12,,,,,"This entry is an alias to ""dsmeter-iatc"". This entry is now historic, not usable for use with many common service discovery mechanisms." dsmeter-iatc,4060,udp,"DSMETER Inter-Agent Transfer Channel IANA assigned this well-formed service name as a replacement for ""dsmeter_iatc"".",[John_McCann],[John_McCann],2006-12,,,,, dsmeter_iatc,4060,udp,DSMETER Inter-Agent Transfer Channel,[John_McCann],[John_McCann],2006-12,,,,,"This entry is an alias to ""dsmeter-iatc"". This entry is now historic, not usable for use with many common service discovery mechanisms." ice-location,4061,tcp,Ice Location Service (TCP),,,,,,,, ice-location,4061,udp,Ice Location Service (TCP),,,,,,,, ice-slocation,4062,tcp,Ice Location Service (SSL),,,,,,,, ice-slocation,4062,udp,Ice Location Service (SSL),,,,,,,, ice-router,4063,tcp,Ice Firewall Traversal Service (TCP),,,,,,,, ice-router,4063,udp,Ice Firewall Traversal Service (TCP),,,,,,,, ice-srouter,4064,tcp,Ice Firewall Traversal Service (SSL),[Bernard_Normier],[Bernard_Normier],2006-12,,,,, ice-srouter,4064,udp,Ice Firewall Traversal Service (SSL),[Bernard_Normier],[Bernard_Normier],2006-12,,,,, avanti-cdp,4065,tcp,"Avanti Common Data IANA assigned this well-formed service name as a replacement for ""avanti_cdp"".",[Steve_Meyer_Sr],[Steve_Meyer_Sr],2007-02,,,,, avanti_cdp,4065,tcp,Avanti Common Data,[Steve_Meyer_Sr],[Steve_Meyer_Sr],2007-02,,,,,"This entry is an alias to ""avanti-cdp"". This entry is now historic, not usable for use with many common service discovery mechanisms." avanti-cdp,4065,udp,"Avanti Common Data IANA assigned this well-formed service name as a replacement for ""avanti_cdp"".",[Steve_Meyer_Sr],[Steve_Meyer_Sr],2007-02,,,,, avanti_cdp,4065,udp,Avanti Common Data,[Steve_Meyer_Sr],[Steve_Meyer_Sr],2007-02,,,,,"This entry is an alias to ""avanti-cdp"". This entry is now historic, not usable for use with many common service discovery mechanisms." pmas,4066,tcp,Performance Measurement and Analysis,[Zenon_Fortuna],[Zenon_Fortuna],2007-02,,,,, pmas,4066,udp,Performance Measurement and Analysis,[Zenon_Fortuna],[Zenon_Fortuna],2007-02,,,,, idp,4067,tcp,Information Distribution Protocol,[Michaela_Vanderveen],[Michaela_Vanderveen],2007-02,,,,, idp,4067,udp,Information Distribution Protocol,[Michaela_Vanderveen],[Michaela_Vanderveen],2007-02,,,,, ipfltbcst,4068,tcp,IP Fleet Broadcast,[Trung_Huu_Tran],[Trung_Huu_Tran],2007-03,,,,, ipfltbcst,4068,udp,IP Fleet Broadcast,[Trung_Huu_Tran],[Trung_Huu_Tran],2007-03,,,,, minger,4069,tcp,Minger Email Address Validation Service,[Arvel_Hathcock],[Arvel_Hathcock],2007-03,,,,, minger,4069,udp,Minger Email Address Validation Service,[Arvel_Hathcock],[Arvel_Hathcock],2007-03,,,,, tripe,4070,tcp,Trivial IP Encryption (TrIPE),[Mark_Wooding],[Mark_Wooding],2007-07-10,,,,, tripe,4070,udp,Trivial IP Encryption (TrIPE),[Mark_Wooding],[Mark_Wooding],2007-07-10,,,,, aibkup,4071,tcp,Automatically Incremental Backup,[Volker_Wiegand],[Volker_Wiegand],2007-07-10,,,,, aibkup,4071,udp,Automatically Incremental Backup,[Volker_Wiegand],[Volker_Wiegand],2007-07-10,,,,, zieto-sock,4072,tcp,Zieto Socket Communications,[Malcolm_McLean],[Malcolm_McLean],2007-07-19,,,,, zieto-sock,4072,udp,Zieto Socket Communications,[Malcolm_McLean],[Malcolm_McLean],2007-07-19,,,,, | > > > > > > > > | | | 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 | wfm,4057,tcp,Servigistics WFM server,[Yuri_Machkasov_2],[Yuri_Machkasov_2],2006-08,,,,, wfm,4057,udp,Servigistics WFM server,[Yuri_Machkasov_2],[Yuri_Machkasov_2],2006-08,,,,, kingfisher,4058,tcp,Kingfisher protocol,[Vaughan_Wesson],[Vaughan_Wesson],2006-10,,,,, kingfisher,4058,udp,Kingfisher protocol,[Vaughan_Wesson],[Vaughan_Wesson],2006-10,,,,, dlms-cosem,4059,tcp,DLMS/COSEM,[Gyozo_Kmethy],[Gyozo_Kmethy],2006-11,,,,, dlms-cosem,4059,udp,DLMS/COSEM,[Gyozo_Kmethy],[Gyozo_Kmethy],2006-11,,,,, dsmeter-iatc,4060,tcp,"DSMETER Inter-Agent Transfer Channel IANA assigned this well-formed service name as a replacement for ""dsmeter_iatc"".",[John_McCann],[John_McCann],2006-12,,,,, dsmeter_iatc,4060,tcp,DSMETER Inter-Agent Transfer Channel,[John_McCann],[John_McCann],2006-12,,,,,"This entry is an alias to ""dsmeter-iatc"". This entry is now historic, not usable for use with many common service discovery mechanisms." dsmeter-iatc,4060,udp,"DSMETER Inter-Agent Transfer Channel IANA assigned this well-formed service name as a replacement for ""dsmeter_iatc"".",[John_McCann],[John_McCann],2006-12,,,,, dsmeter_iatc,4060,udp,DSMETER Inter-Agent Transfer Channel,[John_McCann],[John_McCann],2006-12,,,,,"This entry is an alias to ""dsmeter-iatc"". This entry is now historic, not usable for use with many common service discovery mechanisms." ice-location,4061,tcp,Ice Location Service (TCP),,,,,,,, ice-location,4061,udp,Ice Location Service (TCP),,,,,,,, ice-slocation,4062,tcp,Ice Location Service (SSL),,,,,,,, ice-slocation,4062,udp,Ice Location Service (SSL),,,,,,,, ice-router,4063,tcp,Ice Firewall Traversal Service (TCP),,,,,,,, ice-router,4063,udp,Ice Firewall Traversal Service (TCP),,,,,,,, ice-srouter,4064,tcp,Ice Firewall Traversal Service (SSL),[Bernard_Normier],[Bernard_Normier],2006-12,,,,, ice-srouter,4064,udp,Ice Firewall Traversal Service (SSL),[Bernard_Normier],[Bernard_Normier],2006-12,,,,, avanti-cdp,4065,tcp,"Avanti Common Data IANA assigned this well-formed service name as a replacement for ""avanti_cdp"".",[Steve_Meyer_Sr],[Steve_Meyer_Sr],2007-02,,,,, avanti_cdp,4065,tcp,Avanti Common Data,[Steve_Meyer_Sr],[Steve_Meyer_Sr],2007-02,,,,,"This entry is an alias to ""avanti-cdp"". This entry is now historic, not usable for use with many common service discovery mechanisms." avanti-cdp,4065,udp,"Avanti Common Data IANA assigned this well-formed service name as a replacement for ""avanti_cdp"".",[Steve_Meyer_Sr],[Steve_Meyer_Sr],2007-02,,,,, avanti_cdp,4065,udp,Avanti Common Data,[Steve_Meyer_Sr],[Steve_Meyer_Sr],2007-02,,,,,"This entry is an alias to ""avanti-cdp"". This entry is now historic, not usable for use with many common service discovery mechanisms." pmas,4066,tcp,Performance Measurement and Analysis,[Zenon_Fortuna],[Zenon_Fortuna],2007-02,,,,, pmas,4066,udp,Performance Measurement and Analysis,[Zenon_Fortuna],[Zenon_Fortuna],2007-02,,,,, idp,4067,tcp,Information Distribution Protocol,[Michaela_Vanderveen],[Michaela_Vanderveen],2007-02,,,,, idp,4067,udp,Information Distribution Protocol,[Michaela_Vanderveen],[Michaela_Vanderveen],2007-02,,,,, ipfltbcst,4068,tcp,IP Fleet Broadcast,[Trung_Huu_Tran],[Trung_Huu_Tran],2007-03,,,,, ipfltbcst,4068,udp,IP Fleet Broadcast,[Trung_Huu_Tran],[Trung_Huu_Tran],2007-03,,,,, minger,4069,tcp,Minger Email Address Validation Service,[Arvel_Hathcock],[Arvel_Hathcock],2007-03,,,,, minger,4069,udp,Minger Email Address Validation Service,[Arvel_Hathcock],[Arvel_Hathcock],2007-03,,,,, tripe,4070,tcp,Trivial IP Encryption (TrIPE),[Mark_Wooding],[Mark_Wooding],2007-07-10,,,,, tripe,4070,udp,Trivial IP Encryption (TrIPE),[Mark_Wooding],[Mark_Wooding],2007-07-10,,,,, aibkup,4071,tcp,Automatically Incremental Backup,[Volker_Wiegand],[Volker_Wiegand],2007-07-10,,,,, aibkup,4071,udp,Automatically Incremental Backup,[Volker_Wiegand],[Volker_Wiegand],2007-07-10,,,,, zieto-sock,4072,tcp,Zieto Socket Communications,[Malcolm_McLean],[Malcolm_McLean],2007-07-19,,,,, zieto-sock,4072,udp,Zieto Socket Communications,[Malcolm_McLean],[Malcolm_McLean],2007-07-19,,,,, iRAPP,4073,tcp,Interactive Remote Application Pairing Protocol,[Volodymyr_Bykov],[Volodymyr_Bykov],2007-08-20,2016-11-23,,,, iRAPP,4073,udp,Interactive Remote Application Pairing Protocol,[Volodymyr_Bykov],[Volodymyr_Bykov],2007-08-20,2016-11-23,,,, cequint-cityid,4074,tcp,Cequint City ID UI trigger,[Phill_Goeckler],[Phill_Goeckler],2007-08-20,,,,, cequint-cityid,4074,udp,Cequint City ID UI trigger,[Phill_Goeckler],[Phill_Goeckler],2007-08-20,,,,, perimlan,4075,tcp,ISC Alarm Message Service,[Bernie_Malkowski],[Bernie_Malkowski],2007-08-20,,,,, perimlan,4075,udp,ISC Alarm Message Service,[Bernie_Malkowski],[Bernie_Malkowski],2007-08-20,,,,, seraph,4076,tcp,Seraph DCS,[Jason_Spence],[Jason_Spence],2008-01-22,,,,, seraph,4076,udp,Seraph DCS,[Jason_Spence],[Jason_Spence],2008-01-22,,,,, ,4077,tcp,Reserved,,,,,,,, |
8215 8216 8217 8218 8219 8220 8221 | smartcard-tls,4116,udp,smartcard-TLS,[Ilan_Mahalal],[Ilan_Mahalal],2006-04,,,,, hillrserv,4117,tcp,Hillr Connection Manager,[Freddy_A_Ayuso_Hens],[Freddy_A_Ayuso_Hens],2008-05-22,,,,, hillrserv,4117,udp,Hillr Connection Manager,[Freddy_A_Ayuso_Hens],[Freddy_A_Ayuso_Hens],2008-05-22,,,,, netscript,4118,tcp,Netadmin Systems NETscript service,[Goran_Runfeldt],[Goran_Runfeldt],2006-12,,,,, netscript,4118,udp,Netadmin Systems NETscript service,[Goran_Runfeldt],[Goran_Runfeldt],2006-12,,,,, assuria-slm,4119,tcp,Assuria Log Manager,[Nick_Connor],[Nick_Connor],2006-12,,,,, assuria-slm,4119,udp,Assuria Log Manager,[Nick_Connor],[Nick_Connor],2006-12,,,,, | > | | 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 | smartcard-tls,4116,udp,smartcard-TLS,[Ilan_Mahalal],[Ilan_Mahalal],2006-04,,,,, hillrserv,4117,tcp,Hillr Connection Manager,[Freddy_A_Ayuso_Hens],[Freddy_A_Ayuso_Hens],2008-05-22,,,,, hillrserv,4117,udp,Hillr Connection Manager,[Freddy_A_Ayuso_Hens],[Freddy_A_Ayuso_Hens],2008-05-22,,,,, netscript,4118,tcp,Netadmin Systems NETscript service,[Goran_Runfeldt],[Goran_Runfeldt],2006-12,,,,, netscript,4118,udp,Netadmin Systems NETscript service,[Goran_Runfeldt],[Goran_Runfeldt],2006-12,,,,, assuria-slm,4119,tcp,Assuria Log Manager,[Nick_Connor],[Nick_Connor],2006-12,,,,, assuria-slm,4119,udp,Assuria Log Manager,[Nick_Connor],[Nick_Connor],2006-12,,,,, minirem,4120,tcp,MiniRem Remote Telemetry and Control,[MobilePro_Systems],[Sean_Solberg],2017-09-28,,,,, ,4120,udp,Reserved,,,,,,,, e-builder,4121,tcp,e-Builder Application Communication,[James_Caza],[James_Caza],2006-12,,,,, e-builder,4121,udp,e-Builder Application Communication,[James_Caza],[James_Caza],2006-12,,,,, fprams,4122,tcp,Fiber Patrol Alarm Service,[Zhizhong_Zhuang],[Zhizhong_Zhuang],2006-12,,,,, fprams,4122,udp,Fiber Patrol Alarm Service,[Zhizhong_Zhuang],[Zhizhong_Zhuang],2006-12,,,,, z-wave,4123,tcp,Z-Wave Protocol,[Sigma_Designs_Inc_2],[Anders_Brandt][Mary_Miller],2007-02,2012-11-08,,,, z-wave,4123,udp,Z-Wave Protocol,[Sigma_Designs_Inc_2],[Anders_Brandt][Mary_Miller],2007-02,2012-11-08,,,, tigv2,4124,tcp,Rohill TetraNode Ip Gateway v2,[Bert_Bouwers],[Bert_Bouwers],2007-05,,,,, |
8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 | nuauth,4129,tcp,NuFW authentication protocol,[Eric_Leblond],[Eric_Leblond],2007-06,,,,, nuauth,4129,udp,NuFW authentication protocol,[Eric_Leblond],[Eric_Leblond],2007-06,,,,, fronet,4130,tcp,FRONET message protocol,[Christer_Nygren],[Christer_Nygren],2007-08-07,,,,, fronet,4130,udp,FRONET message protocol,[Christer_Nygren],[Christer_Nygren],2007-08-07,,,,, stars,4131,tcp,Global Maintech Stars,[Harry_Goldschmitt_2],[Harry_Goldschmitt_2],2007-06,,,,, stars,4131,udp,Global Maintech Stars,[Harry_Goldschmitt_2],[Harry_Goldschmitt_2],2007-06,,,,, nuts-dem,4132,tcp,"NUTS Daemon IANA assigned this well-formed service name as a replacement for ""nuts_dem"".",,,,,,,, nuts_dem,4132,tcp,NUTS Daemon,,,,,,,,"This entry is an alias to ""nuts-dem"". This entry is now historic, not usable for use with many common service discovery mechanisms." nuts-dem,4132,udp,"NUTS Daemon IANA assigned this well-formed service name as a replacement for ""nuts_dem"".",,,,,,,, nuts_dem,4132,udp,NUTS Daemon,,,,,,,,"This entry is an alias to ""nuts-dem"". This entry is now historic, not usable for use with many common service discovery mechanisms." nuts-bootp,4133,tcp,"NUTS Bootp Server IANA assigned this well-formed service name as a replacement for ""nuts_bootp"".",[Martin_Freiss_2],[Martin_Freiss_2],,,,,, nuts_bootp,4133,tcp,NUTS Bootp Server,[Martin_Freiss_2],[Martin_Freiss_2],,,,,,"This entry is an alias to ""nuts-bootp"". This entry is now historic, not usable for use with many common service discovery mechanisms." nuts-bootp,4133,udp,"NUTS Bootp Server IANA assigned this well-formed service name as a replacement for ""nuts_bootp"".",[Martin_Freiss_2],[Martin_Freiss_2],,,,,, nuts_bootp,4133,udp,NUTS Bootp Server,[Martin_Freiss_2],[Martin_Freiss_2],,,,,,"This entry is an alias to ""nuts-bootp"". This entry is now historic, not usable for use with many common service discovery mechanisms." nifty-hmi,4134,tcp,NIFTY-Serve HMI protocol,[Ryuichi_Suzuki],[Ryuichi_Suzuki],,,,,, nifty-hmi,4134,udp,NIFTY-Serve HMI protocol,[Ryuichi_Suzuki],[Ryuichi_Suzuki],,,,,, cl-db-attach,4135,tcp,Classic Line Database Server Attach,,,,,,,, cl-db-attach,4135,udp,Classic Line Database Server Attach,,,,,,,, cl-db-request,4136,tcp,Classic Line Database Server Request,,,,,,,, cl-db-request,4136,udp,Classic Line Database Server Request,,,,,,,, cl-db-remote,4137,tcp,Classic Line Database Server Remote,[Arno_Kirmeir],[Arno_Kirmeir],2007-01,,,,, cl-db-remote,4137,udp,Classic Line Database Server Remote,[Arno_Kirmeir],[Arno_Kirmeir],2007-01,,,,, nettest,4138,tcp,nettest,[David_Borman],[David_Borman],2003-03,,,,, nettest,4138,udp,nettest,[David_Borman],[David_Borman],2003-03,,,,, thrtx,4139,tcp,Imperfect Networks Server,[Dinkar_Chivaluri_2],[Dinkar_Chivaluri_2],2006-02,,,,, thrtx,4139,udp,Imperfect Networks Server,[Dinkar_Chivaluri_2],[Dinkar_Chivaluri_2],2006-02,,,,, cedros-fds,4140,tcp,"Cedros Fraud Detection System IANA assigned this well-formed service name as a replacement for ""cedros_fds"".",[Markus_Michels_3],[Markus_Michels_3],2006-10,,,,, cedros_fds,4140,tcp,Cedros Fraud Detection System,[Markus_Michels_3],[Markus_Michels_3],2006-10,,,,,"This entry is an alias to ""cedros-fds"". This entry is now historic, not usable for use with many common service discovery mechanisms." cedros-fds,4140,udp,"Cedros Fraud Detection System IANA assigned this well-formed service name as a replacement for ""cedros_fds"".",[Markus_Michels_3],[Markus_Michels_3],2006-10,,,,, cedros_fds,4140,udp,Cedros Fraud Detection System,[Markus_Michels_3],[Markus_Michels_3],2006-10,,,,,"This entry is an alias to ""cedros-fds"". This entry is now historic, not usable for use with many common service discovery mechanisms." oirtgsvc,4141,tcp,Workflow Server,,,,,,,, oirtgsvc,4141,udp,Workflow Server,,,,,,,, oidocsvc,4142,tcp,Document Server,,,,,,,, | > > > > > > > > > > > > | 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 | nuauth,4129,tcp,NuFW authentication protocol,[Eric_Leblond],[Eric_Leblond],2007-06,,,,, nuauth,4129,udp,NuFW authentication protocol,[Eric_Leblond],[Eric_Leblond],2007-06,,,,, fronet,4130,tcp,FRONET message protocol,[Christer_Nygren],[Christer_Nygren],2007-08-07,,,,, fronet,4130,udp,FRONET message protocol,[Christer_Nygren],[Christer_Nygren],2007-08-07,,,,, stars,4131,tcp,Global Maintech Stars,[Harry_Goldschmitt_2],[Harry_Goldschmitt_2],2007-06,,,,, stars,4131,udp,Global Maintech Stars,[Harry_Goldschmitt_2],[Harry_Goldschmitt_2],2007-06,,,,, nuts-dem,4132,tcp,"NUTS Daemon IANA assigned this well-formed service name as a replacement for ""nuts_dem"".",,,,,,,, nuts_dem,4132,tcp,NUTS Daemon,,,,,,,,"This entry is an alias to ""nuts-dem"". This entry is now historic, not usable for use with many common service discovery mechanisms." nuts-dem,4132,udp,"NUTS Daemon IANA assigned this well-formed service name as a replacement for ""nuts_dem"".",,,,,,,, nuts_dem,4132,udp,NUTS Daemon,,,,,,,,"This entry is an alias to ""nuts-dem"". This entry is now historic, not usable for use with many common service discovery mechanisms." nuts-bootp,4133,tcp,"NUTS Bootp Server IANA assigned this well-formed service name as a replacement for ""nuts_bootp"".",[Martin_Freiss_2],[Martin_Freiss_2],,,,,, nuts_bootp,4133,tcp,NUTS Bootp Server,[Martin_Freiss_2],[Martin_Freiss_2],,,,,,"This entry is an alias to ""nuts-bootp"". This entry is now historic, not usable for use with many common service discovery mechanisms." nuts-bootp,4133,udp,"NUTS Bootp Server IANA assigned this well-formed service name as a replacement for ""nuts_bootp"".",[Martin_Freiss_2],[Martin_Freiss_2],,,,,, nuts_bootp,4133,udp,NUTS Bootp Server,[Martin_Freiss_2],[Martin_Freiss_2],,,,,,"This entry is an alias to ""nuts-bootp"". This entry is now historic, not usable for use with many common service discovery mechanisms." nifty-hmi,4134,tcp,NIFTY-Serve HMI protocol,[Ryuichi_Suzuki],[Ryuichi_Suzuki],,,,,, nifty-hmi,4134,udp,NIFTY-Serve HMI protocol,[Ryuichi_Suzuki],[Ryuichi_Suzuki],,,,,, cl-db-attach,4135,tcp,Classic Line Database Server Attach,,,,,,,, cl-db-attach,4135,udp,Classic Line Database Server Attach,,,,,,,, cl-db-request,4136,tcp,Classic Line Database Server Request,,,,,,,, cl-db-request,4136,udp,Classic Line Database Server Request,,,,,,,, cl-db-remote,4137,tcp,Classic Line Database Server Remote,[Arno_Kirmeir],[Arno_Kirmeir],2007-01,,,,, cl-db-remote,4137,udp,Classic Line Database Server Remote,[Arno_Kirmeir],[Arno_Kirmeir],2007-01,,,,, nettest,4138,tcp,nettest,[David_Borman],[David_Borman],2003-03,,,,, nettest,4138,udp,nettest,[David_Borman],[David_Borman],2003-03,,,,, thrtx,4139,tcp,Imperfect Networks Server,[Dinkar_Chivaluri_2],[Dinkar_Chivaluri_2],2006-02,,,,, thrtx,4139,udp,Imperfect Networks Server,[Dinkar_Chivaluri_2],[Dinkar_Chivaluri_2],2006-02,,,,, cedros-fds,4140,tcp,"Cedros Fraud Detection System IANA assigned this well-formed service name as a replacement for ""cedros_fds"".",[Markus_Michels_3],[Markus_Michels_3],2006-10,,,,, cedros_fds,4140,tcp,Cedros Fraud Detection System,[Markus_Michels_3],[Markus_Michels_3],2006-10,,,,,"This entry is an alias to ""cedros-fds"". This entry is now historic, not usable for use with many common service discovery mechanisms." cedros-fds,4140,udp,"Cedros Fraud Detection System IANA assigned this well-formed service name as a replacement for ""cedros_fds"".",[Markus_Michels_3],[Markus_Michels_3],2006-10,,,,, cedros_fds,4140,udp,Cedros Fraud Detection System,[Markus_Michels_3],[Markus_Michels_3],2006-10,,,,,"This entry is an alias to ""cedros-fds"". This entry is now historic, not usable for use with many common service discovery mechanisms." oirtgsvc,4141,tcp,Workflow Server,,,,,,,, oirtgsvc,4141,udp,Workflow Server,,,,,,,, oidocsvc,4142,tcp,Document Server,,,,,,,, |
8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 | hhb-handheld,4148,tcp,HHB Handheld Client,[Steven_G_Loughner],[Steven_G_Loughner],2007-03,,,,, hhb-handheld,4148,udp,HHB Handheld Client,[Steven_G_Loughner],[Steven_G_Loughner],2007-03,,,,, agslb,4149,tcp,A10 GSLB Service,[John_Chiong],[John_Chiong],2007-07-02,,,,, agslb,4149,udp,A10 GSLB Service,[John_Chiong],[John_Chiong],2007-07-02,,,,, PowerAlert-nsa,4150,tcp,PowerAlert Network Shutdown Agent,[Mike_Delgrosso_2],[Mike_Delgrosso_2],2007-07-02,,,,, PowerAlert-nsa,4150,udp,PowerAlert Network Shutdown Agent,[Mike_Delgrosso_2],[Mike_Delgrosso_2],2007-07-02,,,,, menandmice-noh,4151,tcp,"Men & Mice Remote Control IANA assigned this well-formed service name as a replacement for ""menandmice_noh"".",[Eggert_Thorlacius],[Eggert_Thorlacius],2007-08-30,,,,, menandmice_noh,4151,tcp,Men & Mice Remote Control,[Eggert_Thorlacius],[Eggert_Thorlacius],2007-08-30,,,,,"This entry is an alias to ""menandmice-noh"". This entry is now historic, not usable for use with many common service discovery mechanisms." menandmice-noh,4151,udp,"Men & Mice Remote Control IANA assigned this well-formed service name as a replacement for ""menandmice_noh"".",[Eggert_Thorlacius],[Eggert_Thorlacius],2007-08-30,,,,, menandmice_noh,4151,udp,Men & Mice Remote Control,[Eggert_Thorlacius],[Eggert_Thorlacius],2007-08-30,,,,,"This entry is an alias to ""menandmice-noh"". This entry is now historic, not usable for use with many common service discovery mechanisms." idig-mux,4152,tcp,"iDigTech Multiplex IANA assigned this well-formed service name as a replacement for ""idig_mux"".",[Robin_Findley],[Robin_Findley],2007-05,,,,, idig_mux,4152,tcp,iDigTech Multiplex,[Robin_Findley],[Robin_Findley],2007-05,,,,,"This entry is an alias to ""idig-mux"". This entry is now historic, not usable for use with many common service discovery mechanisms." idig-mux,4152,udp,"iDigTech Multiplex IANA assigned this well-formed service name as a replacement for ""idig_mux"".",[Robin_Findley],[Robin_Findley],2007-05,,,,, idig_mux,4152,udp,iDigTech Multiplex,[Robin_Findley],[Robin_Findley],2007-05,,,,,"This entry is an alias to ""idig-mux"". This entry is now historic, not usable for use with many common service discovery mechanisms." mbl-battd,4153,tcp,MBL Remote Battery Monitoring,[Claudio_Procida],[Claudio_Procida],2007-05,,,,, mbl-battd,4153,udp,MBL Remote Battery Monitoring,[Claudio_Procida],[Claudio_Procida],2007-05,,,,, atlinks,4154,tcp,atlinks device discovery,[Scott_Griepentrog],[Scott_Griepentrog],2002-10,,,,, | > > > > > > > > | 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 | hhb-handheld,4148,tcp,HHB Handheld Client,[Steven_G_Loughner],[Steven_G_Loughner],2007-03,,,,, hhb-handheld,4148,udp,HHB Handheld Client,[Steven_G_Loughner],[Steven_G_Loughner],2007-03,,,,, agslb,4149,tcp,A10 GSLB Service,[John_Chiong],[John_Chiong],2007-07-02,,,,, agslb,4149,udp,A10 GSLB Service,[John_Chiong],[John_Chiong],2007-07-02,,,,, PowerAlert-nsa,4150,tcp,PowerAlert Network Shutdown Agent,[Mike_Delgrosso_2],[Mike_Delgrosso_2],2007-07-02,,,,, PowerAlert-nsa,4150,udp,PowerAlert Network Shutdown Agent,[Mike_Delgrosso_2],[Mike_Delgrosso_2],2007-07-02,,,,, menandmice-noh,4151,tcp,"Men & Mice Remote Control IANA assigned this well-formed service name as a replacement for ""menandmice_noh"".",[Eggert_Thorlacius],[Eggert_Thorlacius],2007-08-30,,,,, menandmice_noh,4151,tcp,Men & Mice Remote Control,[Eggert_Thorlacius],[Eggert_Thorlacius],2007-08-30,,,,,"This entry is an alias to ""menandmice-noh"". This entry is now historic, not usable for use with many common service discovery mechanisms." menandmice-noh,4151,udp,"Men & Mice Remote Control IANA assigned this well-formed service name as a replacement for ""menandmice_noh"".",[Eggert_Thorlacius],[Eggert_Thorlacius],2007-08-30,,,,, menandmice_noh,4151,udp,Men & Mice Remote Control,[Eggert_Thorlacius],[Eggert_Thorlacius],2007-08-30,,,,,"This entry is an alias to ""menandmice-noh"". This entry is now historic, not usable for use with many common service discovery mechanisms." idig-mux,4152,tcp,"iDigTech Multiplex IANA assigned this well-formed service name as a replacement for ""idig_mux"".",[Robin_Findley],[Robin_Findley],2007-05,,,,, idig_mux,4152,tcp,iDigTech Multiplex,[Robin_Findley],[Robin_Findley],2007-05,,,,,"This entry is an alias to ""idig-mux"". This entry is now historic, not usable for use with many common service discovery mechanisms." idig-mux,4152,udp,"iDigTech Multiplex IANA assigned this well-formed service name as a replacement for ""idig_mux"".",[Robin_Findley],[Robin_Findley],2007-05,,,,, idig_mux,4152,udp,iDigTech Multiplex,[Robin_Findley],[Robin_Findley],2007-05,,,,,"This entry is an alias to ""idig-mux"". This entry is now historic, not usable for use with many common service discovery mechanisms." mbl-battd,4153,tcp,MBL Remote Battery Monitoring,[Claudio_Procida],[Claudio_Procida],2007-05,,,,, mbl-battd,4153,udp,MBL Remote Battery Monitoring,[Claudio_Procida],[Claudio_Procida],2007-05,,,,, atlinks,4154,tcp,atlinks device discovery,[Scott_Griepentrog],[Scott_Griepentrog],2002-10,,,,, |
8374 8375 8376 8377 8378 8379 8380 | wello,4177,tcp,Wello P2P pubsub service,[Christian_Westbrook],[Christian_Westbrook],2007-11-15,,,,, wello,4177,udp,Wello P2P pubsub service,[Christian_Westbrook],[Christian_Westbrook],2007-11-15,,,,, storman,4178,tcp,StorMan,[Werner_Guertler],[Werner_Guertler],2009-05-11,,,,, storman,4178,udp,StorMan,[Werner_Guertler],[Werner_Guertler],2009-05-11,,,,, MaxumSP,4179,tcp,Maxum Services,[Greg_Stine],[Greg_Stine],2007-07-05,,,,, MaxumSP,4179,udp,Maxum Services,[Greg_Stine],[Greg_Stine],2007-07-05,,,,, httpx,4180,tcp,HTTPX,[Paul_McGough],[Paul_McGough],2007-02,,,,, | | | | > > > > > > > > > | | | | 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 | wello,4177,tcp,Wello P2P pubsub service,[Christian_Westbrook],[Christian_Westbrook],2007-11-15,,,,, wello,4177,udp,Wello P2P pubsub service,[Christian_Westbrook],[Christian_Westbrook],2007-11-15,,,,, storman,4178,tcp,StorMan,[Werner_Guertler],[Werner_Guertler],2009-05-11,,,,, storman,4178,udp,StorMan,[Werner_Guertler],[Werner_Guertler],2009-05-11,,,,, MaxumSP,4179,tcp,Maxum Services,[Greg_Stine],[Greg_Stine],2007-07-05,,,,, MaxumSP,4179,udp,Maxum Services,[Greg_Stine],[Greg_Stine],2007-07-05,,,,, httpx,4180,tcp,HTTPX,[Paul_McGough],[Paul_McGough],2007-02,,,,, httpx,4180,udp,HTTPX,[Paul_McGough],[Paul_McGough],2007-02,2016-01-05,,,, macbak,4181,tcp,MacBak,[Wes_Peters],[Wes_Peters],2007-04,,,,, macbak,4181,udp,MacBak,[Wes_Peters],[Wes_Peters],2007-04,,,,, pcptcpservice,4182,tcp,Production Company Pro TCP Service,[Ben_McNeill],[Ben_McNeill],2007-05,,,,, pcptcpservice,4182,udp,Production Company Pro TCP Service,[Ben_McNeill],[Ben_McNeill],2007-05,,,,, cyborgnet,4183,tcp,CyborgNet communications protocol,[Gareth_Nelson],[Gareth_Nelson],2015-11-13,,,,, cyborgnet,4183,udp,CyborgNet communications protocol,[Gareth_Nelson],[Gareth_Nelson],2015-11-13,,,,, universe-suite,4184,tcp,"UNIVERSE SUITE MESSAGE SERVICE IANA assigned this well-formed service name as a replacement for ""universe_suite"".",[Gary_ANDREWS],[Gary_ANDREWS],2008-01-07,,,,, universe_suite,4184,tcp,UNIVERSE SUITE MESSAGE SERVICE,[Gary_ANDREWS],[Gary_ANDREWS],2008-01-07,,,,,"This entry is an alias to ""universe-suite"". This entry is now historic, not usable for use with many common service discovery mechanisms." universe-suite,4184,udp,"UNIVERSE SUITE MESSAGE SERVICE IANA assigned this well-formed service name as a replacement for ""universe_suite"".",[Gary_ANDREWS],[Gary_ANDREWS],2008-01-07,,,,, universe_suite,4184,udp,UNIVERSE SUITE MESSAGE SERVICE,[Gary_ANDREWS],[Gary_ANDREWS],2008-01-07,,,,,"This entry is an alias to ""universe-suite"". This entry is now historic, not usable for use with many common service discovery mechanisms." wcpp,4185,tcp,Woven Control Plane Protocol,[Christopher_LILJENST],[Christopher_LILJENST],2008-04-14,,,,, wcpp,4185,udp,Woven Control Plane Protocol,[Christopher_LILJENST],[Christopher_LILJENST],2008-04-14,,,,, boxbackupstore,4186,tcp,Box Backup Store Service,[Chris_Wilson],[Chris_Wilson],2008-09-11,,,,, ,4186,udp,Reserved,,,,,,,, csc-proxy,4187,tcp,"Cascade Proxy IANA assigned this well-formed service name as a replacement for ""csc_proxy"".",[Matt_Craighead],[Matt_Craighead],2008-09-11,,,,, csc_proxy,4187,tcp,Cascade Proxy,[Matt_Craighead],[Matt_Craighead],2008-09-11,,,,,"This entry is an alias to ""csc-proxy"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,4187,udp,Reserved,,,,,,,, vatata,4188,tcp,Vatata Peer to Peer Protocol,[Song_Jian],[Song_Jian],2008-09-15,,,,, vatata,4188,udp,Vatata Peer to Peer Protocol,[Song_Jian],[Song_Jian],2008-09-15,,,,, pcep,4189,tcp,Path Computation Element Communication Protocol,,,,,,,, ,4189,udp,Reserved,,,,,[RFC5440],,, sieve,4190,tcp,ManageSieve Protocol,,,,,,,, ,4190,udp,Reserved,,,,,[RFC5804],,, ,4191,tcp,Reserved,,,,,,,, dsmipv6,4191,udp,Dual Stack MIPv6 NAT Traversal,,,,,[RFC5555],,, azeti,4192,tcp,Azeti Agent Service,[Uwe_Holz],[Uwe_Holz],2009-11-09,,,,, azeti-bd,4192,udp,azeti blinddate,[Michael_Werski],[Michael_Werski],2010-02-18,,,,, pvxplusio,4193,tcp,PxPlus remote file srvr,[Mike_King],[Mike_King],2009-11-09,,,,, ,4193,udp,Reserved,,,,,,,, ,4194-4196,,Unassigned,,,,,,,, hctl,4197,tcp,Harman HControl Protocol,[Harman_International_Industries_Inc],[Darin_Smith],2017-02-16,,,,, hctl,4197,udp,Harman HControl Protocol,[Harman_International_Industries_Inc],[Darin_Smith],2017-02-16,,,,, ,4198,,Unassigned,,,,,,,, eims-admin,4199,tcp,EIMS ADMIN,[Glenn_Anderson],[Glenn_Anderson],,,,,, eims-admin,4199,udp,EIMS ADMIN,[Glenn_Anderson],[Glenn_Anderson],,,,,, vrml-multi-use,4200-4299,,VRML Multi User Systems,[Mitra],[Mitra],,,,,, corelccam,4300,tcp,Corel CCam,[Jason_Aiken],[Jason_Aiken],,,,,, corelccam,4300,udp,Corel CCam,[Jason_Aiken],[Jason_Aiken],,,,,, d-data,4301,tcp,Diagnostic Data,,,,,,,, d-data,4301,udp,Diagnostic Data,,,,,,,, d-data-control,4302,tcp,Diagnostic Data Control,[Jon_March],[Jon_March],2006-09,,,,, d-data-control,4302,udp,Diagnostic Data Control,[Jon_March],[Jon_March],2006-09,,,,, srcp,4303,tcp,Simple Railroad Command Protocol,[Matthias_Trute],[Matthias_Trute],2007-01,,,,, srcp,4303,udp,Simple Railroad Command Protocol,[Matthias_Trute],[Matthias_Trute],2007-01,,,,, owserver,4304,tcp,One-Wire Filesystem Server,[Paul_Alfille],[Paul_Alfille],2007-01,,,,,Defined TXT keys: txtvers owserver,4304,udp,One-Wire Filesystem Server,[Paul_Alfille],[Paul_Alfille],2007-01,,,,,Defined TXT keys: txtvers batman,4305,tcp,better approach to mobile ad-hoc networking,[Simon_Wunderlich],[Simon_Wunderlich],2007-08-30,,,,, batman,4305,udp,better approach to mobile ad-hoc networking,[Simon_Wunderlich],[Simon_Wunderlich],2007-08-30,,,,, pinghgl,4306,tcp,Hellgate London,[David_Berk],[David_Berk],2007-08-30,,,,, pinghgl,4306,udp,Hellgate London,[David_Berk],[David_Berk],2007-08-30,,,,, trueconf,4307,tcp,TrueConf Videoconference Service,[Dmitry_Odintsov],[Lev_Yakupov],2007-10-22,2017-05-12,,,, trueconf,4307,udp,TrueConf Videoconference Service,[Dmitry_Odintsov],[Lev_Yakupov],2007-10-22,2017-05-12,,,, compx-lockview,4308,tcp,CompX-LockView,[John_Payson],[John_Payson],2007-10-22,,,,, compx-lockview,4308,udp,CompX-LockView,[John_Payson],[John_Payson],2007-10-22,,,,, dserver,4309,tcp,Exsequi Appliance Discovery,[Angelo_Masci],[Angelo_Masci],2007-01,,,,, dserver,4309,udp,Exsequi Appliance Discovery,[Angelo_Masci],[Angelo_Masci],2007-01,,,,, mirrtex,4310,tcp,Mir-RT exchange service,[Sylvain_Robert],[Sylvain_Robert],2008-02-14,,,,, mirrtex,4310,udp,Mir-RT exchange service,[Sylvain_Robert],[Sylvain_Robert],2008-02-14,,,,, p6ssmc,4311,tcp,P6R Secure Server Management Console,[Jim_Susoy],[Jim_Susoy],2010-01-21,,,,, |
8459 8460 8461 8462 8463 8464 8465 | fdt-rcatp,4320,udp,FDT Remote Categorization Protocol,[Russell_P_Holsclaw],[Russell_P_Holsclaw],2006-03,,,,, rwhois,4321,tcp,Remote Who Is,[Mark_Kosters],[Mark_Kosters],,,[RFC2167],,, rwhois,4321,udp,Remote Who Is,[Mark_Kosters],[Mark_Kosters],,,[RFC2167],,, trim-event,4322,tcp,TRIM Event Service,,,,,,,, trim-event,4322,udp,TRIM Event Service,,,,,,,, trim-ice,4323,tcp,TRIM ICE Service,[Siva_Poobalasingam_2],[Siva_Poobalasingam_2],2007-02,,,,, trim-ice,4323,udp,TRIM ICE Service,[Siva_Poobalasingam_2],[Siva_Poobalasingam_2],2007-02,,,,, | | < > | > > > > > > | | | | 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 | fdt-rcatp,4320,udp,FDT Remote Categorization Protocol,[Russell_P_Holsclaw],[Russell_P_Holsclaw],2006-03,,,,, rwhois,4321,tcp,Remote Who Is,[Mark_Kosters],[Mark_Kosters],,,[RFC2167],,, rwhois,4321,udp,Remote Who Is,[Mark_Kosters],[Mark_Kosters],,,[RFC2167],,, trim-event,4322,tcp,TRIM Event Service,,,,,,,, trim-event,4322,udp,TRIM Event Service,,,,,,,, trim-ice,4323,tcp,TRIM ICE Service,[Siva_Poobalasingam_2],[Siva_Poobalasingam_2],2007-02,,,,, trim-ice,4323,udp,TRIM ICE Service,[Siva_Poobalasingam_2],[Siva_Poobalasingam_2],2007-02,,,,, ,4324,,Reserved,,,,2015-05-12,,,,This entry is being removed on 2015-05-12. geognosisman,4325,tcp,Cadcorp GeognoSIS Manager Service,,,,,,,, geognosisman,4325,udp,Cadcorp GeognoSIS Manager Service,,,,,,,, geognosis,4326,tcp,Cadcorp GeognoSIS Service,[Martin_Daly],[Martin_Daly],2006-11,,,,, geognosis,4326,udp,Cadcorp GeognoSIS Service,[Martin_Daly],[Martin_Daly],2006-11,,,,, jaxer-web,4327,tcp,Jaxer Web Protocol,[Uri_Sarid],[Uri_Sarid],2008-01-07,,,,, jaxer-web,4327,udp,Jaxer Web Protocol,[Uri_Sarid],[Uri_Sarid],2008-01-07,,,,, jaxer-manager,4328,tcp,Jaxer Manager Command Protocol,[Uri_Sarid],[Uri_Sarid],2008-01-22,,,,, jaxer-manager,4328,udp,Jaxer Manager Command Protocol,[Uri_Sarid],[Uri_Sarid],2008-01-22,,,,, publiqare-sync,4329,tcp,PubliQare Distributed Environment Synchronisation Engine,[Tom_Maaswinkel],[Tom_Maaswinkel],2011-02-07,,,,, ,4329,udp,Reserved,,,,,,,, dey-sapi,4330,tcp,DEY Storage Administration REST API,[DEY_Storage_Systems_Inc],[Garrett_D_Amore],2013-03-01,,,,, ,4330,udp,Reserved,,,,,,,, ktickets-rest,4331,tcp,ktickets REST API for event management and ticketing systems (embedded POS devices),[KeyTicket_Solutions],[MANG_Ioan-Alexandru],2014-04-04,,,,, ,4331,udp,Reserved,,,,,,,, getty-focus,4332,tcp,Getty Images FOCUS service,[Matthew_Margolis],[Bryan_Ramirez],2019-04-18,,,,, ,4332,udp,Reserved,,,,,,,, ahsp,4333,tcp,ArrowHead Service Protocol (AHSP),[QuantuMatriX_Technologies],[Matthew_Schultz],2014-04-10,,,,, ahsp,4333,udp,ArrowHead Service Protocol (AHSP),[QuantuMatriX_Technologies],[Matthew_Schultz],2014-04-10,,,,, ahsp,4333,sctp,ArrowHead Service Protocol (AHSP),[QuantuMatriX_Technologies],[Matthew_Schultz],2014-04-10,,,,, netconf-ch-ssh,4334,tcp,NETCONF Call Home (SSH),[IESG],[IETF_Chair],2016-01-12,,[RFC8071],,, ,4334,udp,Reserved,,,,,,,, netconf-ch-tls,4335,tcp,NETCONF Call Home (TLS),[IESG],[IETF_Chair],2016-01-12,,[RFC8071],,, ,4335,udp,Reserved,,,,,,,, restconf-ch-tls,4336,tcp,RESTCONF Call Home (TLS),[IESG],[IETF_Chair],2016-01-12,,[RFC8071],,, ,4336,udp,Reserved,,,,,,,, ,4337-4339,,Unassigned,,,,,,,, gaia,4340,tcp,Gaia Connector Protocol,[Philippe_Detournay],[Philippe_Detournay],2007-11-12,,,,, gaia,4340,udp,Gaia Connector Protocol,[Philippe_Detournay],[Philippe_Detournay],2007-11-12,,,,, ,4341,tcp,Reserved,,,2007-11-12,2018-11-30,,,, lisp-data,4341,udp,LISP Data Packets,[IESG],[IETF_Chair],2007-11-12,2012-04-26,[RFC6830],,, ,4342,tcp,Reserved,,,,2018-11-30,,,, lisp-control,4342,udp,LISP Control Packets,[IESG],[IETF_Chair],2007-05,2012-04-26,[RFC6830],,, unicall,4343,tcp,UNICALL,[James_Powell_2],[James_Powell_2],,,,,, unicall,4343,udp,UNICALL,[James_Powell_2],[James_Powell_2],,,,,, vinainstall,4344,tcp,VinaInstall,[Jay_Slupesky],[Jay_Slupesky],,,,,, vinainstall,4344,udp,VinaInstall,[Jay_Slupesky],[Jay_Slupesky],,,,,, m4-network-as,4345,tcp,Macro 4 Network AS,[Paul_Wren],[Paul_Wren],,,,,, m4-network-as,4345,udp,Macro 4 Network AS,[Paul_Wren],[Paul_Wren],,,,,, |
8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 | qsnet-cond,4357,tcp,QSNet Conductor,,,,,,,, qsnet-cond,4357,udp,QSNet Conductor,,,,,,,, qsnet-nucl,4358,tcp,QSNet Nucleus,[Neer_Kleinman],[Neer_Kleinman],,,,,, qsnet-nucl,4358,udp,QSNet Nucleus,[Neer_Kleinman],[Neer_Kleinman],,,,,, omabcastltkm,4359,tcp,OMA BCAST Long-Term Key Messages,[Frank_Hartung],[Frank_Hartung],2007-09-07,,,,, omabcastltkm,4359,udp,OMA BCAST Long-Term Key Messages,[Frank_Hartung],[Frank_Hartung],2007-09-07,,,,, matrix-vnet,4360,tcp,"Matrix VNet Communication Protocol IANA assigned this well-formed service name as a replacement for ""matrix_vnet"".",[Rehan_Mahmood],[Rehan_Mahmood],2009-03-18,,,,, matrix_vnet,4360,tcp,Matrix VNet Communication Protocol,[Rehan_Mahmood],[Rehan_Mahmood],2009-03-18,,,,,"This entry is an alias to ""matrix-vnet"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,4360,udp,Reserved,,,,,,,, ,4361,tcp,Reserved,,,,,,,, nacnl,4361,udp,NavCom Discovery and Control Port,[Yilei_Jia],[Yilei_Jia],2009-03-18,,,,, ,4362,tcp,Reserved,,,,,,,, afore-vdp-disc,4362,udp,AFORE vNode Discovery protocol,[Michael_Richardson],[Michael_Richardson],2011-02-08,,,,, | > > > > > | > > > > | 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 | qsnet-cond,4357,tcp,QSNet Conductor,,,,,,,, qsnet-cond,4357,udp,QSNet Conductor,,,,,,,, qsnet-nucl,4358,tcp,QSNet Nucleus,[Neer_Kleinman],[Neer_Kleinman],,,,,, qsnet-nucl,4358,udp,QSNet Nucleus,[Neer_Kleinman],[Neer_Kleinman],,,,,, omabcastltkm,4359,tcp,OMA BCAST Long-Term Key Messages,[Frank_Hartung],[Frank_Hartung],2007-09-07,,,,, omabcastltkm,4359,udp,OMA BCAST Long-Term Key Messages,[Frank_Hartung],[Frank_Hartung],2007-09-07,,,,, matrix-vnet,4360,tcp,"Matrix VNet Communication Protocol IANA assigned this well-formed service name as a replacement for ""matrix_vnet"".",[Rehan_Mahmood],[Rehan_Mahmood],2009-03-18,,,,, matrix_vnet,4360,tcp,Matrix VNet Communication Protocol,[Rehan_Mahmood],[Rehan_Mahmood],2009-03-18,,,,,"This entry is an alias to ""matrix-vnet"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,4360,udp,Reserved,,,,,,,, ,4361,tcp,Reserved,,,,,,,, nacnl,4361,udp,NavCom Discovery and Control Port,[Yilei_Jia],[Yilei_Jia],2009-03-18,,,,, ,4362,tcp,Reserved,,,,,,,, afore-vdp-disc,4362,udp,AFORE vNode Discovery protocol,[Michael_Richardson],[Michael_Richardson],2011-02-08,,,,, ,4363-4365,,Unassigned,,,,,,,, shadowstream,4366,udp,ShadowStream System,[StorageCraft_Technology_Corporation],[David_McConkie],2014-12-17,,,,, ,4366,tcp,Reserved,,,,,,,, ,4367,,Unassigned,,,,,,,, wxbrief,4368,tcp,WeatherBrief Direct,[Kim_Alan_Waggoner],[Kim_Alan_Waggoner],2006-11,,,,, wxbrief,4368,udp,WeatherBrief Direct,[Kim_Alan_Waggoner],[Kim_Alan_Waggoner],2006-11,,,,, epmd,4369,tcp,Erlang Port Mapper Daemon,[Erlang],[Erlang],,,,,, epmd,4369,udp,Erlang Port Mapper Daemon,[Erlang],[Erlang],,,,,, elpro-tunnel,4370,tcp,"ELPRO V2 Protocol Tunnel IANA assigned this well-formed service name as a replacement for ""elpro_tunnel"".",[Harry_Courtice],[Harry_Courtice],2008-04-14,,,,, elpro_tunnel,4370,tcp,ELPRO V2 Protocol Tunnel,[Harry_Courtice],[Harry_Courtice],2008-04-14,,,,,"This entry is an alias to ""elpro-tunnel"". This entry is now historic, not usable for use with many common service discovery mechanisms." elpro-tunnel,4370,udp,"ELPRO V2 Protocol Tunnel IANA assigned this well-formed service name as a replacement for ""elpro_tunnel"".",[Harry_Courtice],[Harry_Courtice],2008-04-14,,,,, elpro_tunnel,4370,udp,ELPRO V2 Protocol Tunnel,[Harry_Courtice],[Harry_Courtice],2008-04-14,,,,,"This entry is an alias to ""elpro-tunnel"". This entry is now historic, not usable for use with many common service discovery mechanisms." l2c-control,4371,tcp,LAN2CAN Control,[Phil_Tolson],[Phil_Tolson],2008-07-07,,,,,Modified: 21 January 2010 l2c-disc,4371,udp,LAN2CAN Discovery,[Phil_Tolson],[Phil_Tolson],2010-01-21,,,,, l2c-data,4372,tcp,LAN2CAN Data,[Phil_Tolson],[Phil_Tolson],2008-07-07,,,,,Modified: 21 January 2010 |
8605 8606 8607 8608 8609 8610 8611 | ,4408,udp,Reserved,,,,,,,, netcabinet-com,4409,tcp,Net-Cabinet comunication,[Ian_Manning_2],[Ian_Manning_2],2009-12-16,,,,, ,4409,udp,Reserved,,,,,,,, itwo-server,4410,tcp,RIB iTWO Application Server,[Kristean_Heisler_2],[Kristean_Heisler_2],2009-12-16,,,,, ,4410,udp,Reserved,,,,,,,, found,4411,tcp,Found Messaging Protocol,[Found_Software],[John_Mitchell],2012-04-11,,,,,"Defined TXT keys: id, key" ,4411,udp,Reserved,,,,,,,, | > > > > > > > > > > > > > > > > > > > > > > > > | | 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 | ,4408,udp,Reserved,,,,,,,, netcabinet-com,4409,tcp,Net-Cabinet comunication,[Ian_Manning_2],[Ian_Manning_2],2009-12-16,,,,, ,4409,udp,Reserved,,,,,,,, itwo-server,4410,tcp,RIB iTWO Application Server,[Kristean_Heisler_2],[Kristean_Heisler_2],2009-12-16,,,,, ,4410,udp,Reserved,,,,,,,, found,4411,tcp,Found Messaging Protocol,[Found_Software],[John_Mitchell],2012-04-11,,,,,"Defined TXT keys: id, key" ,4411,udp,Reserved,,,,,,,, ,4412,tcp,Reserved,,,,,,,, smallchat,4412,udp,SmallChat,[Valentino_Giudice],[Valentino_Giudice],2015-08-18,,,,, avi-nms,4413,tcp,AVI Systems NMS,[AVI_Systems],[Dave_Hatz],2015-09-18,,,,, avi-nms-disc,4413,udp,AVI Systems NMS,[AVI_Systems],[Dave_Hatz],2015-09-18,,,,, updog,4414,tcp,Updog Monitoring and Status Framework,[Egon_Technologies_LLC],[James_Downs],2015-10-05,,,,, ,4414,udp,Reserved,,,,,,,, brcd-vr-req,4415,tcp,Brocade Virtual Router Request,[Brocade_Communications_Systems],[Nick_Carter],2015-11-17,,,,, ,4415,udp,Reserved,,,,,,,, pjj-player,4416,tcp,PJJ Media Player,[PJJ_Productions_Inc],[Bruno_Frechette],2015-11-18,,,,, pjj-player-disc,4416,udp,PJJ Media Player discovery,[PJJ_Productions_Inc],[Bruno_Frechette],2015-11-18,,,,, workflowdir,4417,tcp,Workflow Director Communication,[WfDir],[Brian_Doyle],2015-12-11,,,,, ,4417,udp,Reserved,,,,,,,, ,4418,tcp,Reserved,,,,,,,, axysbridge,4418,udp,AXYS communication protocol,[Duran_Audio_B.V.],[Gerald_van_Beuningen],2016-03-14,,,,, cbp,4419,tcp,Colnod Binary Protocol,[Colsys_s.r.o.],[Jiri_Merth],2016-03-23,,,,, ,4419,udp,Reserved,,,,,,,, nvme,4420,tcp,NVM Express over Fabrics storage access,[NVM_Express_Inc],[Amber_Huffman],2016-03-31,2018-03-27,,,, nvme,4420,udp,NVM Express over Fabrics storage access,[NVM_Express_Inc],[Amber_Huffman],2016-03-31,2018-03-27,,,, scaleft,4421,tcp,Multi-Platform Remote Management for Cloud Infrastructure,[ScaleFT_Inc],[Paul_Querna],2016-04-07,,,,, ,4421,udp,Reserved,,,,,,,, tsepisp,4422,tcp,TSEP Installation Service Protocol,[Technical_Software_Engineering_Plazotta],[Peter_Plazotta],2016-06-22,,,,, ,4422,udp,Reserved,,,,,,,, thingkit,4423,tcp,thingkit secure mesh,[thingkit_inc.],[Chris_Bell],2016-06-27,,,,, ,4423,udp,Reserved,,,,,,,, ,4424,,Unassigned,,,,,,,, netrockey6,4425,tcp,NetROCKEY6 SMART Plus Service,[Feitian_Technologies],[Feitian_Technologies],2010-09-15,,,,, netrockey6,4425,udp,NetROCKEY6 SMART Plus Service,[Feitian_Technologies],[Feitian_Technologies],2010-09-15,,,,, beacon-port-2,4426,tcp,SMARTS Beacon Port,[Eyal_Yardeni],[Eyal_Yardeni],2003-11,,,,, beacon-port-2,4426,udp,SMARTS Beacon Port,[Eyal_Yardeni],[Eyal_Yardeni],2003-11,,,,, drizzle,4427,tcp,Drizzle database server,[Elliot_Murphy],[Elliot_Murphy],2008-07-09,,,,, ,4427,udp,Reserved,,,,,,,, omviserver,4428,tcp,OMV-Investigation Server-Client,[Serge_Vacquier],[Serge_Vacquier],2009-05-20,,,,, |
8675 8676 8677 8678 8679 8680 8681 | icms,4486,tcp,Integrated Client Message Service,[Resource_Allocation],[Resource_Allocation],2010-09-27,,,,, icms,4486,udp,Integrated Client Message Service,[Resource_Allocation],[Resource_Allocation],2010-09-27,,,,, prex-tcp,4487,tcp,Protocol for Remote Execution over TCP,[Daniel_Ruppert],[Daniel_Ruppert],2010-09-16,,,,, ,4487,udp,Reserved,,,,,,,, awacs-ice,4488,tcp,Apple Wide Area Connectivity Service ICE Bootstrap,[Rory_McGuire],[Rory_McGuire],2010-09-24,,,,, awacs-ice,4488,udp,Apple Wide Area Connectivity Service ICE Bootstrap,[Rory_McGuire],[Rory_McGuire],2010-09-24,,,,, ,4489-4499,,Unassigned,,,,,,,Known UNAUTHORIZED USE: Ports 4490 and 4491, | | | | | 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 | icms,4486,tcp,Integrated Client Message Service,[Resource_Allocation],[Resource_Allocation],2010-09-27,,,,, icms,4486,udp,Integrated Client Message Service,[Resource_Allocation],[Resource_Allocation],2010-09-27,,,,, prex-tcp,4487,tcp,Protocol for Remote Execution over TCP,[Daniel_Ruppert],[Daniel_Ruppert],2010-09-16,,,,, ,4487,udp,Reserved,,,,,,,, awacs-ice,4488,tcp,Apple Wide Area Connectivity Service ICE Bootstrap,[Rory_McGuire],[Rory_McGuire],2010-09-24,,,,, awacs-ice,4488,udp,Apple Wide Area Connectivity Service ICE Bootstrap,[Rory_McGuire],[Rory_McGuire],2010-09-24,,,,, ,4489-4499,,Unassigned,,,,,,,Known UNAUTHORIZED USE: Ports 4490 and 4491, ipsec-nat-t,4500,tcp,IPsec NAT-Traversal,,,,2017-06-19,[RFC8229],,, ipsec-nat-t,4500,udp,IPsec NAT-Traversal,,,,2017-07-07,[RFC3948][RFC7296],,, ,4501,,Unassigned,[IANA],[IANA],,,,,,De-registered 08 June 2001 a25-fap-fgw,4502,sctp,A25 (FAP-FGW),[ThreeGPP_2],[Zhiming_Li],2012-01-11,,,,, ,4503-4533,,Unassigned,,,,,,,, ,4534,tcp,Reserved,,,,,,,, armagetronad,4534,udp,Armagetron Advanced Game Server,[Manuel_Moos],[Yann_Kaiser],2012-11-02,,,,, ehs,4535,tcp,Event Heap Server,,,,,,,, ehs,4535,udp,Event Heap Server,,,,,,,, ehs-ssl,4536,tcp,Event Heap Server SSL,[Brad_Johanson],[Brad_Johanson],2005-08,,,,, ehs-ssl,4536,udp,Event Heap Server SSL,[Brad_Johanson],[Brad_Johanson],2005-08,,,,, |
8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 | kwtc,4566,tcp,Kids Watch Time Control Service,[Larry_Zarou],[Larry_Zarou],2006-10,,,,, kwtc,4566,udp,Kids Watch Time Control Service,[Larry_Zarou],[Larry_Zarou],2006-10,,,,, tram,4567,tcp,TRAM,[Joe_Wesley],[Joe_Wesley],,,,,, tram,4567,udp,TRAM,[Joe_Wesley],[Joe_Wesley],,,,,, bmc-reporting,4568,tcp,BMC Reporting,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, bmc-reporting,4568,udp,BMC Reporting,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, iax,4569,tcp,Inter-Asterisk eXchange,[Benjamin_Kowarsch],[Benjamin_Kowarsch],,,[RFC5456],,,"Defined TXT keys: auth plaintext | md5 | rsakeys userid alphanumeric, additionally '_', '+', '-' secret any printable ASCII characters domain any DNS domain name or IP address extension alphanumeric, additionally '*', '#', '_', '+', '-' context alphanumeric, additionally '_', '+', '-' trunk yes | no | 0 | 1 welcome alphanumeric, additionally '*', '#', '_', '+', '-' voicemail alphanumeric, additionally '*', '#', '_', '+', '-' reception alphanumeric, additionally '*', '#', '_', '+', '-' echotest alphanumeric, additionally '*', '#', '_', '+', '-' ivrtest alphanumeric, additionally '*', '#', '_', '+', '-' All of these TXT record keys are optional, they may be omitted. Further keys may be added in the future." iax,4569,udp,Inter-Asterisk eXchange,[Benjamin_Kowarsch],[Benjamin_Kowarsch],,,[RFC5456],,,"Defined TXT keys: auth plaintext | md5 | rsakeys userid alphanumeric, additionally '_', '+', '-' secret any printable ASCII characters domain any DNS domain name or IP address extension alphanumeric, additionally '*', '#', '_', '+', '-' context alphanumeric, additionally '_', '+', '-' trunk yes | no | 0 | 1 welcome alphanumeric, additionally '*', '#', '_', '+', '-' voicemail alphanumeric, additionally '*', '#', '_', '+', '-' reception alphanumeric, additionally '*', '#', '_', '+', '-' echotest alphanumeric, additionally '*', '#', '_', '+', '-' ivrtest alphanumeric, additionally '*', '#', '_', '+', '-' All of these TXT record keys are optional, they may be omitted. Further keys may be added in the future." deploymentmap,4570,tcp,Service to distribute and update within a site deployment information for Oracle Communications Suite,[Oracle_3],[Dan_Newman],2013-09-20,,,,, ,4570,udp,Reserved,,,,,,,, | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | | 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 | kwtc,4566,tcp,Kids Watch Time Control Service,[Larry_Zarou],[Larry_Zarou],2006-10,,,,, kwtc,4566,udp,Kids Watch Time Control Service,[Larry_Zarou],[Larry_Zarou],2006-10,,,,, tram,4567,tcp,TRAM,[Joe_Wesley],[Joe_Wesley],,,,,, tram,4567,udp,TRAM,[Joe_Wesley],[Joe_Wesley],,,,,, bmc-reporting,4568,tcp,BMC Reporting,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, bmc-reporting,4568,udp,BMC Reporting,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, iax,4569,tcp,Inter-Asterisk eXchange,[Benjamin_Kowarsch],[Benjamin_Kowarsch],,,[RFC5456],,,"Defined TXT keys: auth plaintext | md5 | rsakeys userid alphanumeric, additionally '_', '+', '-' secret any printable ASCII characters domain any DNS domain name or IP address extension alphanumeric, additionally '*', '#', '_', '+', '-' context alphanumeric, additionally '_', '+', '-' trunk yes | no | 0 | 1 welcome alphanumeric, additionally '*', '#', '_', '+', '-' voicemail alphanumeric, additionally '*', '#', '_', '+', '-' reception alphanumeric, additionally '*', '#', '_', '+', '-' echotest alphanumeric, additionally '*', '#', '_', '+', '-' ivrtest alphanumeric, additionally '*', '#', '_', '+', '-' All of these TXT record keys are optional, they may be omitted. Further keys may be added in the future." iax,4569,udp,Inter-Asterisk eXchange,[Benjamin_Kowarsch],[Benjamin_Kowarsch],,,[RFC5456],,,"Defined TXT keys: auth plaintext | md5 | rsakeys userid alphanumeric, additionally '_', '+', '-' secret any printable ASCII characters domain any DNS domain name or IP address extension alphanumeric, additionally '*', '#', '_', '+', '-' context alphanumeric, additionally '_', '+', '-' trunk yes | no | 0 | 1 welcome alphanumeric, additionally '*', '#', '_', '+', '-' voicemail alphanumeric, additionally '*', '#', '_', '+', '-' reception alphanumeric, additionally '*', '#', '_', '+', '-' echotest alphanumeric, additionally '*', '#', '_', '+', '-' ivrtest alphanumeric, additionally '*', '#', '_', '+', '-' All of these TXT record keys are optional, they may be omitted. Further keys may be added in the future." deploymentmap,4570,tcp,Service to distribute and update within a site deployment information for Oracle Communications Suite,[Oracle_3],[Dan_Newman],2013-09-20,,,,, ,4570,udp,Reserved,,,,,,,, ,4571-4572,,Unassigned,,,,,,,, cardifftec-back,4573,tcp,A port for communication between a server and client for a custom backup system,[CardiffTec],[Benjamin_Misell],2016-05-19,,,,, ,4573,udp,Reserved,,,,,,,, ,4574-4589,,Unassigned,,,,,,,, rid,4590,tcp,RID over HTTP/TLS,[IESG],[IETF_Chair],,,[RFC6546],,, ,4590,udp,Reserved,,,,,,,, l3t-at-an,4591,tcp,HRPD L3T (AT-AN),[Avi_Lior],[Avi_Lior],2009-02-27,,,,, l3t-at-an,4591,udp,HRPD L3T (AT-AN),[Avi_Lior],[Avi_Lior],2009-02-27,,,,, ,4592,tcp,Reserved,,,,,,,, hrpd-ith-at-an,4592,udp,HRPD-ITH (AT-AN),[David_Ott],[David_Ott],2008-06-05,,,,, ipt-anri-anri,4593,tcp,IPT (ANRI-ANRI),,,,,,,, |
8797 8798 8799 8800 8801 8802 8803 | ,4602,udp,Reserved,,,,,,,, menandmice-upg,4603,tcp,Men & Mice Upgrade Agent,[Eggert_Thorlacius_2],[Eggert_Thorlacius_2],2010-01-27,,,,, ,4603,udp,Reserved,,,,,,,, irp,4604,tcp,Identity Registration Protocol,[Sixscape_Communications_Pte_Ltd],[Lawrence_E._Hughes],2014-03-17,2014-08-26,,,, ,4604,udp,Reserved,,,,,,,, sixchat,4605,tcp,Direct End to End Secure Chat Protocol,[Sixscape_Communications_Pte_Ltd],[Lawrence_E._Hughes],2014-09-11,,,,, ,4605,udp,Reserved,,,,,,,, | > > > | | 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 | ,4602,udp,Reserved,,,,,,,, menandmice-upg,4603,tcp,Men & Mice Upgrade Agent,[Eggert_Thorlacius_2],[Eggert_Thorlacius_2],2010-01-27,,,,, ,4603,udp,Reserved,,,,,,,, irp,4604,tcp,Identity Registration Protocol,[Sixscape_Communications_Pte_Ltd],[Lawrence_E._Hughes],2014-03-17,2014-08-26,,,, ,4604,udp,Reserved,,,,,,,, sixchat,4605,tcp,Direct End to End Secure Chat Protocol,[Sixscape_Communications_Pte_Ltd],[Lawrence_E._Hughes],2014-09-11,,,,, ,4605,udp,Reserved,,,,,,,, ,4606-4620,,Unassigned,,,,,,,, ,4621,tcp,Reserved,,,,,,,, ventoso,4621,udp,Bidirectional single port remote radio VOIP and Control stream,[Ventoso_Integrated_Peripherals],[John_Lindsey],2016-03-04,,,,, ,4622-4657,,Unassigned,,,,,,,, playsta2-app,4658,tcp,PlayStation2 App Port,,,,,,,, playsta2-app,4658,udp,PlayStation2 App Port,,,,,,,, playsta2-lob,4659,tcp,PlayStation2 Lobby Port,[Noam_Rimon],[Noam_Rimon],2004-12,,,,, playsta2-lob,4659,udp,PlayStation2 Lobby Port,[Noam_Rimon],[Noam_Rimon],2004-12,,,,, smaclmgr,4660,tcp,smaclmgr,[Hiromi_Taki],[Hiromi_Taki],,,,,, smaclmgr,4660,udp,smaclmgr,[Hiromi_Taki],[Hiromi_Taki],,,,,, kar2ouche,4661,tcp,Kar2ouche Peer location service,[Andy_Krouwel],[Andy_Krouwel],,,,,, |
8879 8880 8881 8882 8883 8884 8885 | netxms-mgmt,4701,udp,NetXMS Management,,,,,,,, netxms-sync,4702,tcp,NetXMS Server Synchronization,[Victor_Kirhenshtein],[Victor_Kirhenshtein],2006-07,,,,, netxms-sync,4702,udp,NetXMS Server Synchronization,[Victor_Kirhenshtein],[Victor_Kirhenshtein],2006-07,,,,, npqes-test,4703,tcp,Network Performance Quality Evaluation System Test Service,[Zhengli],[Zhengli],2010-06-28,,,,, ,4703,udp,Reserved,,,,,,,, assuria-ins,4704,tcp,Assuria Insider,[Nick_Connor],[Nick_Connor],2010-06-30,,,,, ,4704,udp,Reserved,,,,,,,, | > > > > | | 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 | netxms-mgmt,4701,udp,NetXMS Management,,,,,,,, netxms-sync,4702,tcp,NetXMS Server Synchronization,[Victor_Kirhenshtein],[Victor_Kirhenshtein],2006-07,,,,, netxms-sync,4702,udp,NetXMS Server Synchronization,[Victor_Kirhenshtein],[Victor_Kirhenshtein],2006-07,,,,, npqes-test,4703,tcp,Network Performance Quality Evaluation System Test Service,[Zhengli],[Zhengli],2010-06-28,,,,, ,4703,udp,Reserved,,,,,,,, assuria-ins,4704,tcp,Assuria Insider,[Nick_Connor],[Nick_Connor],2010-06-30,,,,, ,4704,udp,Reserved,,,,,,,, ,4705-4710,,Unassigned,,,,,,,, trinity-dist,4711,tcp,Trinity Trust Network Node Communication,[P3KI_GmbH],[Gregor_Jehle],2017-01-12,,,,, trinity-dist,4711,udp,Trinity Trust Network Node Communication,[P3KI_GmbH],[Gregor_Jehle],2017-01-12,,,,, trinity-dist,4711,sctp,Trinity Trust Network Node Communication,[P3KI_GmbH],[Gregor_Jehle],2017-01-12,,,,, ,4712-4724,,Unassigned,,,,,,,, truckstar,4725,tcp,TruckStar Service,[Brian_Toothill],[Brian_Toothill],2010-10-15,,,,, truckstar,4725,udp,TruckStar Service,[Brian_Toothill],[Brian_Toothill],2010-10-15,,,,, ,4726,tcp,Reserved,,,,,,,, a26-fap-fgw,4726,udp,A26 (FAP-FGW),[David_Ott],[David_Ott],2010-10-15,,,,, fcis,4727,tcp,F-Link Client Information Service,,,,,,,, fcis-disc,4727,udp,F-Link Client Information Service Discovery,[Makoto_Zukawa],[Makoto_Zukawa],2010-10-15,,,,, capmux,4728,tcp,CA Port Multiplexer,[Nigel_Groves],[Nigel_Groves],2006-06,,,,, |
8919 8920 8921 8922 8923 8924 8925 | sicct-sdp,4742,udp,SICCT Service Discovery Protocol,[TeleTrusT_Deutschlan],[TeleTrusT_Deutschlan],2006-04,,,,, openhpid,4743,tcp,openhpi HPI service,[Thomas_Kanngieser],[Thomas_Kanngieser],2006-01,,,,, openhpid,4743,udp,openhpi HPI service,[Thomas_Kanngieser],[Thomas_Kanngieser],2006-01,,,,, ifsp,4744,tcp,Internet File Synchronization Protocol,[Alex_White],[Alex_White],2007-09-12,,,,, ifsp,4744,udp,Internet File Synchronization Protocol,[Alex_White],[Alex_White],2007-09-12,,,,, fmp,4745,tcp,Funambol Mobile Push,[Andrea_Gazzaniga],[Andrea_Gazzaniga],2007-01,,,,, fmp,4745,udp,Funambol Mobile Push,[Andrea_Gazzaniga],[Andrea_Gazzaniga],2007-01,,,,, | | > > > > > > > > > > | | 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 | sicct-sdp,4742,udp,SICCT Service Discovery Protocol,[TeleTrusT_Deutschlan],[TeleTrusT_Deutschlan],2006-04,,,,, openhpid,4743,tcp,openhpi HPI service,[Thomas_Kanngieser],[Thomas_Kanngieser],2006-01,,,,, openhpid,4743,udp,openhpi HPI service,[Thomas_Kanngieser],[Thomas_Kanngieser],2006-01,,,,, ifsp,4744,tcp,Internet File Synchronization Protocol,[Alex_White],[Alex_White],2007-09-12,,,,, ifsp,4744,udp,Internet File Synchronization Protocol,[Alex_White],[Alex_White],2007-09-12,,,,, fmp,4745,tcp,Funambol Mobile Push,[Andrea_Gazzaniga],[Andrea_Gazzaniga],2007-01,,,,, fmp,4745,udp,Funambol Mobile Push,[Andrea_Gazzaniga],[Andrea_Gazzaniga],2007-01,,,,, ,4746,tcp,Reserved,,,,,,,, intelliadm-disc,4746,udp,IntelliAdmin Discovery,[IntelliAdmin_LLC],[Steve_Wiseman],2016-11-18,,,,, buschtrommel,4747,udp,peer-to-peer file exchange protocol,[None],[Tobias_Sturm],2013-01-14,,,,, ,4747,tcp,Reserved,,,,,,,, ,4748-4748,,Unassigned,,,,,,,, profilemac,4749,tcp,Profile for Mac,[David_Sinclair],[David_Sinclair],2006-05,,,,, profilemac,4749,udp,Profile for Mac,[David_Sinclair],[David_Sinclair],2006-05,,,,, ssad,4750,tcp,Simple Service Auto Discovery,[Dr_Horst_Herb],[Dr_Horst_Herb],2005-12,,,,, ssad,4750,udp,Simple Service Auto Discovery,[Dr_Horst_Herb],[Dr_Horst_Herb],2005-12,,,,, spocp,4751,tcp,Simple Policy Control Protocol,[Roland_Hedberg_2],[Roland_Hedberg_2],2005-08,,,,, spocp,4751,udp,Simple Policy Control Protocol,[Roland_Hedberg_2],[Roland_Hedberg_2],2005-08,,,,, snap,4752,tcp,Simple Network Audio Protocol,[Dameon_Wagner],[Dameon_Wagner],2002-02,,,,, snap,4752,udp,Simple Network Audio Protocol,[Dameon_Wagner],[Dameon_Wagner],2002-02,,,,, simon,4753,tcp,Simple Invocation of Methods Over Network (SIMON),[Alexander_Christian],[Alexander_Christian],2012-04-19,,,,, simon-disc,4753,udp,Simple Invocation of Methods Over Network (SIMON) Discovery,[Alexander_Christian],[Alexander_Christian],2012-04-19,,,,, ,4754,tcp,Reserved,,,,,,,, gre-in-udp,4754,udp,GRE-in-UDP Encapsulation,[IESG],[IETF_Chair],2016-10-05,,[RFC8086],,, ,4755,tcp,Reserved,,,,,,,, gre-udp-dtls,4755,udp,GRE-in-UDP Encapsulation with DTLS,[IESG],[IETF_Chair],2016-10-05,,[RFC8086],,, RDCenter,4756,tcp,Reticle Decision Center,[KLA_Tencor],[George_Hwa],2016-10-17,,,,, ,4756,udp,Reserved,,,,,,,, ,4757-4773,,Unassigned,,,,,,,, converge,4774,tcp,Converge RPC,[Asteris_LLC],[Steven_Borrelli],2016-09-16,,,,, ,4774,udp,Reserved,,,,,,,, ,4775-4783,,Unassigned,,,,,,,, bfd-multi-ctl,4784,tcp,BFD Multihop Control,[Dave_Katz][Dave_Ward],[Dave_Katz][Dave_Ward],2006-02,,,,, bfd-multi-ctl,4784,udp,BFD Multihop Control,[Dave_Katz][Dave_Ward],[Dave_Katz][Dave_Ward],2006-02,,,,, ,4785,tcp,Reserved,,,,,,,, cncp,4785,udp,Cisco Nexus Control Protocol,[Joseph_Swaminathan],[Joseph_Swaminathan],2009-04-01,,,,, smart-install,4786,tcp,Smart Install Service,[Amit_Nigam],[Amit_Nigam],2009-08-24,,,,, ,4786,udp,Reserved,,,,,,,, sia-ctrl-plane,4787,tcp,Service Insertion Architecture (SIA) Control-Plane,[Shree_Murthy],[Shree_Murthy],2009-10-29,,,,, |
8973 8974 8975 8976 8977 8978 8979 | ,4828-4836,,Unassigned,,,,,,,, varadero-0,4837,tcp,Varadero-0,,,,,,,, varadero-0,4837,udp,Varadero-0,,,,,,,, varadero-1,4838,tcp,Varadero-1,,,,,,,, varadero-1,4838,udp,Varadero-1,,,,,,,, varadero-2,4839,tcp,Varadero-2,[Carlos_Arteaga],[Carlos_Arteaga],,,,,, varadero-2,4839,udp,Varadero-2,[Carlos_Arteaga],[Carlos_Arteaga],,,,,, | | | | | | > > > > | 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 | ,4828-4836,,Unassigned,,,,,,,, varadero-0,4837,tcp,Varadero-0,,,,,,,, varadero-0,4837,udp,Varadero-0,,,,,,,, varadero-1,4838,tcp,Varadero-1,,,,,,,, varadero-1,4838,udp,Varadero-1,,,,,,,, varadero-2,4839,tcp,Varadero-2,[Carlos_Arteaga],[Carlos_Arteaga],,,,,, varadero-2,4839,udp,Varadero-2,[Carlos_Arteaga],[Carlos_Arteaga],,,,,, opcua-tcp,4840,tcp,OPC UA Connection Protocol,[OPC_Foundation],[Randy_Armstrong],,2018-01-04,,,, opcua-udp,4840,udp,OPC UA Multicast Datagram Protocol,[OPC_Foundation],[Randy_Armstrong],2006-09,2018-01-04,,,, quosa,4841,tcp,QUOSA Virtual Library Service,[Uri_Blank],[Uri_Blank],2006-09,,,,, quosa,4841,udp,QUOSA Virtual Library Service,[Uri_Blank],[Uri_Blank],2006-09,,,,, gw-asv,4842,tcp,nCode ICE-flow Library AppServer,[Ross_Swithenbank],[Ross_Swithenbank],2006-09,,,,, gw-asv,4842,udp,nCode ICE-flow Library AppServer,[Ross_Swithenbank],[Ross_Swithenbank],2006-09,2017-05-23,,,, opcua-tls,4843,tcp,OPC UA TCP Protocol over TLS/SSL,[OPC_Foundation],[Randy_Armstrong],2006-09,2017-05-23,,,, opcua-tls,4843,udp,OPC UA TCP Protocol over TLS/SSL,[OPC_Foundation],[Randy_Armstrong],2006-09,,,,, gw-log,4844,tcp,nCode ICE-flow Library LogServer,[Ross_Swithenbank],[Ross_Swithenbank],2006-09,,,,, gw-log,4844,udp,nCode ICE-flow Library LogServer,[Ross_Swithenbank],[Ross_Swithenbank],2006-09,,,,, wcr-remlib,4845,tcp,WordCruncher Remote Library Service,[Jason_Dzubak],[Jason_Dzubak],2008-03-17,,,,, wcr-remlib,4845,udp,WordCruncher Remote Library Service,[Jason_Dzubak],[Jason_Dzubak],2008-03-17,,,,, contamac-icm,4846,tcp,"Contamac ICM Service IANA assigned this well-formed service name as a replacement for ""contamac_icm"".",[Abdullah_Obeid],[Abdullah_Obeid],2008-03-20,,,,, contamac_icm,4846,tcp,Contamac ICM Service,[Abdullah_Obeid],[Abdullah_Obeid],2008-03-20,,,,,"This entry is an alias to ""contamac-icm"". This entry is now historic, not usable for use with many common service discovery mechanisms." contamac-icm,4846,udp,"Contamac ICM Service IANA assigned this well-formed service name as a replacement for ""contamac_icm"".",[Abdullah_Obeid],[Abdullah_Obeid],2008-03-20,,,,, contamac_icm,4846,udp,Contamac ICM Service,[Abdullah_Obeid],[Abdullah_Obeid],2008-03-20,,,,,"This entry is an alias to ""contamac-icm"". This entry is now historic, not usable for use with many common service discovery mechanisms." wfc,4847,tcp,Web Fresh Communication,[Jonathan_Bastnagel],[Jonathan_Bastnagel],2007-09-17,,,,, wfc,4847,udp,Web Fresh Communication,[Jonathan_Bastnagel],[Jonathan_Bastnagel],2007-09-17,,,,, appserv-http,4848,tcp,App Server - Admin HTTP,,,,,,,, |
9037 9038 9039 9040 9041 9042 9043 | socp-c,4882,udp,SOCP Control Protocol,[Joe_Haver],[Joe_Haver],2010-05-28,,,,, wmlserver,4883,tcp,Meier-Phelps License Server,[William_Phelps],[William_Phelps],2010-03-22,,,,, ,4883,udp,Reserved,,,,,,,, hivestor,4884,tcp,HiveStor Distributed File System,[Nicholas_Young],[Nicholas_Young],2008-07-10,,,,, hivestor,4884,udp,HiveStor Distributed File System,[Nicholas_Young],[Nicholas_Young],2008-07-10,,,,, abbs,4885,tcp,ABBS,[Ryan_Rubley],[Ryan_Rubley],,,,,, abbs,4885,udp,ABBS,[Ryan_Rubley],[Ryan_Rubley],,,,,, | > > > > > | > > | 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 | socp-c,4882,udp,SOCP Control Protocol,[Joe_Haver],[Joe_Haver],2010-05-28,,,,, wmlserver,4883,tcp,Meier-Phelps License Server,[William_Phelps],[William_Phelps],2010-03-22,,,,, ,4883,udp,Reserved,,,,,,,, hivestor,4884,tcp,HiveStor Distributed File System,[Nicholas_Young],[Nicholas_Young],2008-07-10,,,,, hivestor,4884,udp,HiveStor Distributed File System,[Nicholas_Young],[Nicholas_Young],2008-07-10,,,,, abbs,4885,tcp,ABBS,[Ryan_Rubley],[Ryan_Rubley],,,,,, abbs,4885,udp,ABBS,[Ryan_Rubley],[Ryan_Rubley],,,,,, ,4886-4887,,Unassigned,,,,,,,, xcap-portal,4888,tcp,xcap code analysis portal public user access,[_88solutions_Corporation],[Manfred_Koethe],2018-06-06,,,,, ,4888,udp,Reserved,,,,,,,, xcap-control,4889,tcp,xcap code analysis portal cluster control and administration,[_88solutions_Corporation],[Manfred_Koethe],2018-06-06,,,,, ,4889,udp,Reserved,,,,,,,, ,4890-4893,,Unassigned,,,,,,,, lyskom,4894,tcp,LysKOM Protocol A,[Per_Cederqvist],[Per_Cederqvist],,,,,, lyskom,4894,udp,LysKOM Protocol A,[Per_Cederqvist],[Per_Cederqvist],,,,,, ,4895-4898,,Unassigned,,,,,,,, radmin-port,4899,tcp,RAdmin Port,[Dmitri_Znosko],[Dmitri_Znosko],2003-03,,,,, radmin-port,4899,udp,RAdmin Port,[Dmitri_Znosko],[Dmitri_Znosko],2003-03,,,,, hfcs,4900,tcp,HFSQL Client/Server Database Engine,[PC_SOFT],[Jerome_AERTS_2],2006-03-02,2014-02-02,,,, hfcs,4900,udp,HFSQL Client/Server Database Engine,[PC_SOFT],[Jerome_AERTS_2],2006-03-02,2014-02-02,,,, flr-agent,4901,tcp,"FileLocator Remote Search Agent IANA assigned this well-formed service name as a replacement for ""flr_agent"".",[David_Vest],[David_Vest],2008-11-19,,,,, flr_agent,4901,tcp,FileLocator Remote Search Agent,[David_Vest],[David_Vest],2008-11-19,,,,,"This entry is an alias to ""flr-agent"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,4901,udp,Reserved,,,,,,,, magiccontrol,4902,tcp,magicCONROL RF and Data Interface,[Andreas_Spalenski],[Andreas_Spalenski],2008-11-24,,,,, ,4902,udp,Reserved,,,,,,,, |
9089 9090 9091 9092 9093 9094 9095 | dbsyncarbiter,4953,tcp,Synchronization Arbiter,[Dave_Neudoerffer_2],[Dave_Neudoerffer_2],2009-11-18,,,,, ,4953,udp,Reserved,,,,,,,, ,4954-4968,,Unassigned,,,,,,,Known UNAUTHORIZED USE: port 4967, ccss-qmm,4969,tcp,CCSS QMessageMonitor,,,,,,,, ccss-qmm,4969,udp,CCSS QMessageMonitor,,,,,,,, ccss-qsm,4970,tcp,CCSS QSystemMonitor,[David_Young],[David_Young],2006-01,,,,, ccss-qsm,4970,udp,CCSS QSystemMonitor,[David_Young],[David_Young],2006-01,,,,, | > > > > > | | 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 | dbsyncarbiter,4953,tcp,Synchronization Arbiter,[Dave_Neudoerffer_2],[Dave_Neudoerffer_2],2009-11-18,,,,, ,4953,udp,Reserved,,,,,,,, ,4954-4968,,Unassigned,,,,,,,Known UNAUTHORIZED USE: port 4967, ccss-qmm,4969,tcp,CCSS QMessageMonitor,,,,,,,, ccss-qmm,4969,udp,CCSS QMessageMonitor,,,,,,,, ccss-qsm,4970,tcp,CCSS QSystemMonitor,[David_Young],[David_Young],2006-01,,,,, ccss-qsm,4970,udp,CCSS QSystemMonitor,[David_Young],[David_Young],2006-01,,,,, burp,4971,tcp,BackUp and Restore Program,[Marat_Khalili],[Marat_Khalili],2017-08-23,,,,, ,4971,udp,Reserved,,,,,,,, ,4972-4979,,Unassigned,,,,,,,, ctxs-vpp,4980,udp,Citrix Virtual Path,[Citrix_Systems],[Rohith_Ramkumar],2015-04-17,,,,, ,4980,tcp,Reserved,,,,,,,, ,4981-4982,,Unassigned,,,,,,,, ,4983,,Unassigned,,,,2005-12-22,,,, webyast,4984,tcp,WebYast,[Federico_Lucifredi],[Federico_Lucifredi],2009-09-25,,,,, ,4984,udp,Reserved,,,,,,,, gerhcs,4985,tcp,GER HC Standard,[Roger_Ward],[Roger_Ward],2009-09-25,,,,, ,4985,udp,Reserved,,,,,,,, mrip,4986,tcp,Model Railway Interface Program,[Howard_Amos],[Howard_Amos],2006-04,,,,, mrip,4986,udp,Model Railway Interface Program,[Howard_Amos],[Howard_Amos],2006-04,,,,, |
9157 9158 9159 9160 9161 9162 9163 | mice,5022,udp,mice server,[Alan_Clifford],[Alan_Clifford],,,,,, htuilsrv,5023,tcp,Htuil Server for PLD2,[Dennis_Reinhardt],[Dennis_Reinhardt],,,,,, htuilsrv,5023,udp,Htuil Server for PLD2,[Dennis_Reinhardt],[Dennis_Reinhardt],,,,,, scpi-telnet,5024,tcp,SCPI-TELNET,[Ryan_Columbus],[Ryan_Columbus],2002-10,,,,, scpi-telnet,5024,udp,SCPI-TELNET,[Ryan_Columbus],[Ryan_Columbus],2002-10,,,,, scpi-raw,5025,tcp,SCPI-RAW,[Ryan_Columbus],[Ryan_Columbus],2002-10,,,,, scpi-raw,5025,udp,SCPI-RAW,[Ryan_Columbus],[Ryan_Columbus],2002-10,,,,, | | | | | > > > > | | 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 | mice,5022,udp,mice server,[Alan_Clifford],[Alan_Clifford],,,,,, htuilsrv,5023,tcp,Htuil Server for PLD2,[Dennis_Reinhardt],[Dennis_Reinhardt],,,,,, htuilsrv,5023,udp,Htuil Server for PLD2,[Dennis_Reinhardt],[Dennis_Reinhardt],,,,,, scpi-telnet,5024,tcp,SCPI-TELNET,[Ryan_Columbus],[Ryan_Columbus],2002-10,,,,, scpi-telnet,5024,udp,SCPI-TELNET,[Ryan_Columbus],[Ryan_Columbus],2002-10,,,,, scpi-raw,5025,tcp,SCPI-RAW,[Ryan_Columbus],[Ryan_Columbus],2002-10,,,,, scpi-raw,5025,udp,SCPI-RAW,[Ryan_Columbus],[Ryan_Columbus],2002-10,,,,, strexec-d,5026,tcp,Storix I/O daemon (data),[Storix_Inc],[David_Huffman],2005-08,,,,, strexec-d,5026,udp,Storix I/O daemon (data),[Storix_Inc],[David_Huffman],2005-08,,,,, strexec-s,5027,tcp,Storix I/O daemon (stat),[Storix_Inc],[David_Huffman],2005-08,,,,, strexec-s,5027,udp,Storix I/O daemon (stat),[Storix_Inc],[David_Huffman],2005-08,,,,, qvr,5028,tcp,Quiqum Virtual Relais,[Philipp_Marcel_Albre],[Philipp_Marcel_Albre],2009-07-06,,,,, ,5028,udp,Reserved,,,,,,,, infobright,5029,tcp,Infobright Database Server,[Mark_Windrim],[Mark_Windrim],2009-07-23,,,,, infobright,5029,udp,Infobright Database Server,[Mark_Windrim],[Mark_Windrim],2009-07-23,,,,, surfpass,5030,tcp,SurfPass,[Olivier_Guezenec],[Olivier_Guezenec],2006-12,,,,, surfpass,5030,udp,SurfPass,[Olivier_Guezenec],[Olivier_Guezenec],2006-12,,,,, ,5031,tcp,Reserved,,,,,,,, dmp,5031,udp,Direct Message Protocol,[Gjermund_Wallenius],[Gjermund_Wallenius],2009-09-30,,,,, signacert-agent,5032,tcp,SignaCert Enterprise Trust Server Agent,[Harris_Corporation],[Daniel_R_Somerfield],2011-08-05,,,,, ,5032,udp,Reserved,,,,,,,, jtnetd-server,5033,tcp,Janstor Secure Data,[Janstor_Technology],[Anthony_Johnson_2],2015-06-08,,,,, ,5033,udp,Reserved,,,,,,,, jtnetd-status,5034,tcp,Janstor Status,[Janstor_Technology],[Anthony_Johnson_2],2015-06-08,,,,, ,5034,udp,Reserved,,,,,,,, ,5035-5041,,Unassigned,,,,,,,, asnaacceler8db,5042,tcp,asnaacceler8db,[Walter_Goodwin],[Walter_Goodwin],,,,,, asnaacceler8db,5042,udp,asnaacceler8db,[Walter_Goodwin],[Walter_Goodwin],,,,,, swxadmin,5043,tcp,ShopWorX Administration,[Don_W_Fitzpatrick],[Don_W_Fitzpatrick],2005-08,,,,, swxadmin,5043,udp,ShopWorX Administration,[Don_W_Fitzpatrick],[Don_W_Fitzpatrick],2005-08,,,,, lxi-evntsvc,5044,tcp,LXI Event Service,[Nick_Barendt],[Nick_Barendt],2005-08,,,,, lxi-evntsvc,5044,udp,LXI Event Service,[Nick_Barendt],[Nick_Barendt],2005-08,,,,, osp,5045,tcp,Open Settlement Protocol,[Dmitry_Isakbayev],[Dmitry_Isakbayev],2010-03-05,,,,, |
9261 9262 9263 9264 9265 9266 9267 | qfp,5083,udp,Qpur File Protocol,[Joachim_Kluemper],[Joachim_Kluemper],2008-03-19,,,,, llrp,5084,tcp,EPCglobal Low-Level Reader Protocol,[Margaret_Wasserman][Paul_Dietrich],[Margaret_Wasserman][Paul_Dietrich],2006-11,,,,,Defined TXT keys: None. RFID reader Low Level Reader Protocol llrp,5084,udp,EPCglobal Low-Level Reader Protocol,[Margaret_Wasserman][Paul_Dietrich],[Margaret_Wasserman][Paul_Dietrich],2006-11,,,,,Defined TXT keys: None. RFID reader Low Level Reader Protocol encrypted-llrp,5085,tcp,EPCglobal Encrypted LLRP,[Margaret_Wasserman],[Margaret_Wasserman],2006-11,,,,, encrypted-llrp,5085,udp,EPCglobal Encrypted LLRP,[Margaret_Wasserman],[Margaret_Wasserman],2006-11,,,,, aprigo-cs,5086,tcp,Aprigo Collection Service,[Ron_Zalkind],[Ron_Zalkind],2010-05-28,,,,, ,5086,udp,Reserved,,,,,,,, | | | 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 | qfp,5083,udp,Qpur File Protocol,[Joachim_Kluemper],[Joachim_Kluemper],2008-03-19,,,,, llrp,5084,tcp,EPCglobal Low-Level Reader Protocol,[Margaret_Wasserman][Paul_Dietrich],[Margaret_Wasserman][Paul_Dietrich],2006-11,,,,,Defined TXT keys: None. RFID reader Low Level Reader Protocol llrp,5084,udp,EPCglobal Low-Level Reader Protocol,[Margaret_Wasserman][Paul_Dietrich],[Margaret_Wasserman][Paul_Dietrich],2006-11,,,,,Defined TXT keys: None. RFID reader Low Level Reader Protocol encrypted-llrp,5085,tcp,EPCglobal Encrypted LLRP,[Margaret_Wasserman],[Margaret_Wasserman],2006-11,,,,, encrypted-llrp,5085,udp,EPCglobal Encrypted LLRP,[Margaret_Wasserman],[Margaret_Wasserman],2006-11,,,,, aprigo-cs,5086,tcp,Aprigo Collection Service,[Ron_Zalkind],[Ron_Zalkind],2010-05-28,,,,, ,5086,udp,Reserved,,,,,,,, biotic,5087,tcp,BIOTIC - Binary Internet of Things Interoperable Communication,[Waher_Data_AB],[Peter_Waher],2014-06-16,2015-11-25,,,, ,5087,udp,Reserved,,,,,,,, ,5088-5089,,Unassigned,,,,,,,, car,5090,sctp,Candidate AR,,,,,,,, cxtp,5091,sctp,Context Transfer Protocol,,,2005-07,,[RFC4065],,, ,5092,tcp,Reserved,,,,,,,, magpie,5092,udp,Magpie Binary,[Phil_Maker],[Phil_Maker],2008-06-18,,,,, sentinel-lm,5093,tcp,Sentinel LM,[Derick_Snyder],[Derick_Snyder],,,,,, |
9289 9290 9291 9292 9293 9294 9295 | ,5103,udp,Reserved,,,,,,,, ,5104,tcp,Reserved,,,,,,,, tinymessage,5104,udp,TinyMessage,[Josip_Medved],[Josip_Medved],2010-10-20,,,,, ,5105,tcp,Reserved,,,,,,,, hughes-ap,5105,udp,Hughes Association Protocol,[Varun_Santosh],[Varun_Santosh],2010-10-20,,,,, actifioudsagent,5106,tcp,Actifio UDS Agent,[Actifio],[Madhav_Mutalik],2014-06-05,,,,, ,5106,udp,Reserved,,,,,,,, | > > | | 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 | ,5103,udp,Reserved,,,,,,,, ,5104,tcp,Reserved,,,,,,,, tinymessage,5104,udp,TinyMessage,[Josip_Medved],[Josip_Medved],2010-10-20,,,,, ,5105,tcp,Reserved,,,,,,,, hughes-ap,5105,udp,Hughes Association Protocol,[Varun_Santosh],[Varun_Santosh],2010-10-20,,,,, actifioudsagent,5106,tcp,Actifio UDS Agent,[Actifio],[Madhav_Mutalik],2014-06-05,,,,, ,5106,udp,Reserved,,,,,,,, actifioreplic,5107,tcp,Disk to Disk replication between Actifio Clusters,[Actifio],[Madhav_Mutalik],2015-10-23,,,,, ,5107,udp,Reserved,,,,,,,, ,5108-5110,,Unassigned,,,,,,,, taep-as-svc,5111,tcp,TAEP AS service,[Liu_Changchun],[Liu_Changchun],2008-11-05,,,,, taep-as-svc,5111,udp,TAEP AS service,[Liu_Changchun],[Liu_Changchun],2008-11-05,,,,, pm-cmdsvr,5112,tcp,PeerMe Msg Cmd Service,[Marcos_Della],[Marcos_Della],2005-08,,,,, pm-cmdsvr,5112,udp,PeerMe Msg Cmd Service,[Marcos_Della],[Marcos_Della],2005-08,,,,, ,5113,,Unassigned,,,2010-11-09,,,,, ev-services,5114,tcp,Enterprise Vault Services,[Richard_Jones_2],[Richard_Jones_2],2009-05-26,,,,, ,5114,udp,Reserved,,,,,,,, |
9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 | barracuda-bbs,5120,udp,Barracuda Backup Protocol,[Barracuda_Networks],[Andrew_Blyler],2013-04-05,,,,, ,5121-5132,,Unassigned,,,,,,,, nbt-pc,5133,tcp,Policy Commander,[Emily_Harris],[Emily_Harris],2004-11,,,,, nbt-pc,5133,udp,Policy Commander,[Emily_Harris],[Emily_Harris],2004-11,,,,, ppactivation,5134,tcp,PP ActivationServer,[Ian_Bradley],[Ian_Bradley],2009-10-14,,,,, ,5134,udp,Reserved,,,,,,,, erp-scale,5135,tcp,ERP-Scale,[Ian_Bradley],[Ian_Bradley],2009-10-14,,,,,"Defined TXT keys: RFC=<RFC destination and status> Device=<Scale device and status>" ,5135,udp,Reserved,,,,,,,, ,5136,tcp,Reserved,,,,,,,, minotaur-sa,5136,udp,Minotaur SA,[Kenneth_Flynn],[Kenneth_Flynn],2009-10-14,,,,, ctsd,5137,tcp,MyCTS server port,[Jilles_Oldenbeuving],[Jilles_Oldenbeuving],2002-06,,,,, ctsd,5137,udp,MyCTS server port,[Jilles_Oldenbeuving],[Jilles_Oldenbeuving],2002-06,,,,, ,5138-5144,,Unassigned,,,,,,,, rmonitor-secure,5145,tcp,"RMONITOR SECURE IANA assigned this well-formed service name as a replacement for ""rmonitor_secure"".",[Kory_Hamzeh],[Kory_Hamzeh],,,,,, rmonitor_secure,5145,tcp,RMONITOR SECURE,[Kory_Hamzeh],[Kory_Hamzeh],,,,,,"This entry is an alias to ""rmonitor-secure"". This entry is now historic, not usable for use with many common service discovery mechanisms." rmonitor-secure,5145,udp,"RMONITOR SECURE IANA assigned this well-formed service name as a replacement for ""rmonitor_secure"".",[Kory_Hamzeh],[Kory_Hamzeh],,,,,, rmonitor_secure,5145,udp,RMONITOR SECURE,[Kory_Hamzeh],[Kory_Hamzeh],,,,,,"This entry is an alias to ""rmonitor-secure"". This entry is now historic, not usable for use with many common service discovery mechanisms." social-alarm,5146,tcp,Social Alarm Service,[Shaun_Byrne],[Shaun_Byrne],2009-08-18,,,,, ,5146,udp,Reserved,,,,,,,, ,5147-5149,,Unassigned,,,,,,,, atmp,5150,tcp,Ascend Tunnel Management Protocol,[Kory_Hamzeh],[Kory_Hamzeh],,,,,, atmp,5150,udp,Ascend Tunnel Management Protocol,[Kory_Hamzeh],[Kory_Hamzeh],,,,,, esri-sde,5151,tcp,"ESRI SDE Instance IANA assigned this well-formed service name as a replacement for ""esri_sde"".",[Peter_Aronson],[Peter_Aronson],,,,,Unauthorized Use Known on ports 5151 and 5152, esri_sde,5151,tcp,ESRI SDE Instance,[Peter_Aronson],[Peter_Aronson],,,,,,"This entry is an alias to ""esri-sde"". This entry is now historic, not usable for use with many common service discovery mechanisms." esri-sde,5151,udp,"ESRI SDE Remote Start IANA assigned this well-formed service name as a replacement for ""esri_sde"".",[Peter_Aronson],[Peter_Aronson],,,,,Unauthorized Use Known on ports 5151 and 5152, esri_sde,5151,udp,ESRI SDE Remote Start,[Peter_Aronson],[Peter_Aronson],,,,,,"This entry is an alias to ""esri-sde"". This entry is now historic, not usable for use with many common service discovery mechanisms." sde-discovery,5152,tcp,ESRI SDE Instance Discovery,[Peter_Aronson],[Peter_Aronson],,,,,Unauthorized Use Known on ports 5151 and 5152, sde-discovery,5152,udp,ESRI SDE Instance Discovery,[Peter_Aronson],[Peter_Aronson],,,,,Unauthorized Use Known on ports 5151 and 5152, | > > > > > > > > > > | > > > > | 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 | barracuda-bbs,5120,udp,Barracuda Backup Protocol,[Barracuda_Networks],[Andrew_Blyler],2013-04-05,,,,, ,5121-5132,,Unassigned,,,,,,,, nbt-pc,5133,tcp,Policy Commander,[Emily_Harris],[Emily_Harris],2004-11,,,,, nbt-pc,5133,udp,Policy Commander,[Emily_Harris],[Emily_Harris],2004-11,,,,, ppactivation,5134,tcp,PP ActivationServer,[Ian_Bradley],[Ian_Bradley],2009-10-14,,,,, ,5134,udp,Reserved,,,,,,,, erp-scale,5135,tcp,ERP-Scale,[Ian_Bradley],[Ian_Bradley],2009-10-14,,,,,"Defined TXT keys: RFC=<RFC destination and status> Device=<Scale device and status>" ,5135,udp,Reserved,,,,,,,, ,5136,tcp,Reserved,,,,,,,, minotaur-sa,5136,udp,Minotaur SA,[Kenneth_Flynn],[Kenneth_Flynn],2009-10-14,,,,, ctsd,5137,tcp,MyCTS server port,[Jilles_Oldenbeuving],[Jilles_Oldenbeuving],2002-06,,,,, ctsd,5137,udp,MyCTS server port,[Jilles_Oldenbeuving],[Jilles_Oldenbeuving],2002-06,,,,, ,5138-5144,,Unassigned,,,,,,,, rmonitor-secure,5145,tcp,"RMONITOR SECURE IANA assigned this well-formed service name as a replacement for ""rmonitor_secure"".",[Kory_Hamzeh],[Kory_Hamzeh],,,,,, rmonitor_secure,5145,tcp,RMONITOR SECURE,[Kory_Hamzeh],[Kory_Hamzeh],,,,,,"This entry is an alias to ""rmonitor-secure"". This entry is now historic, not usable for use with many common service discovery mechanisms." rmonitor-secure,5145,udp,"RMONITOR SECURE IANA assigned this well-formed service name as a replacement for ""rmonitor_secure"".",[Kory_Hamzeh],[Kory_Hamzeh],,,,,, rmonitor_secure,5145,udp,RMONITOR SECURE,[Kory_Hamzeh],[Kory_Hamzeh],,,,,,"This entry is an alias to ""rmonitor-secure"". This entry is now historic, not usable for use with many common service discovery mechanisms." social-alarm,5146,tcp,Social Alarm Service,[Shaun_Byrne],[Shaun_Byrne],2009-08-18,,,,, ,5146,udp,Reserved,,,,,,,, ,5147-5149,,Unassigned,,,,,,,, atmp,5150,tcp,Ascend Tunnel Management Protocol,[Kory_Hamzeh],[Kory_Hamzeh],,,,,, atmp,5150,udp,Ascend Tunnel Management Protocol,[Kory_Hamzeh],[Kory_Hamzeh],,,,,, esri-sde,5151,tcp,"ESRI SDE Instance IANA assigned this well-formed service name as a replacement for ""esri_sde"".",[Peter_Aronson],[Peter_Aronson],,,,,Unauthorized Use Known on ports 5151 and 5152, esri_sde,5151,tcp,ESRI SDE Instance,[Peter_Aronson],[Peter_Aronson],,,,,,"This entry is an alias to ""esri-sde"". This entry is now historic, not usable for use with many common service discovery mechanisms." esri-sde,5151,udp,"ESRI SDE Remote Start IANA assigned this well-formed service name as a replacement for ""esri_sde"".",[Peter_Aronson],[Peter_Aronson],,,,,Unauthorized Use Known on ports 5151 and 5152, esri_sde,5151,udp,ESRI SDE Remote Start,[Peter_Aronson],[Peter_Aronson],,,,,,"This entry is an alias to ""esri-sde"". This entry is now historic, not usable for use with many common service discovery mechanisms." sde-discovery,5152,tcp,ESRI SDE Instance Discovery,[Peter_Aronson],[Peter_Aronson],,,,,Unauthorized Use Known on ports 5151 and 5152, sde-discovery,5152,udp,ESRI SDE Instance Discovery,[Peter_Aronson],[Peter_Aronson],,,,,Unauthorized Use Known on ports 5151 and 5152, ,5153,tcp,Reserved,,,2009-07-01,2018-04-19,,,,Historic usage was toruxserver. De-Assigned on 2018-04-19 ,5153,udp,Reserved,,,,,,,, bzflag,5154,tcp,BZFlag game server,[Tim_Riker],[Tim_Riker],2003-07,,,,, bzflag,5154,udp,BZFlag game server,[Tim_Riker],[Tim_Riker],2003-07,,,,, asctrl-agent,5155,tcp,Oracle asControl Agent,[Todd_Guay],[Todd_Guay],2005-08,,,,, asctrl-agent,5155,udp,Oracle asControl Agent,[Todd_Guay],[Todd_Guay],2005-08,,,,, rugameonline,5156,tcp,Russian Online Game,[Andrey_Mohov],[Andrey_Mohov],2010-08-17,,,,, ,5156,udp,Reserved,,,,,,,, mediat,5157,tcp,Mediat Remote Object Exchange,[Oliver_Anan],[Oliver_Anan],2010-09-02,,,,, ,5157,udp,Reserved,,,,,,,, ,5158-5160,,Unassigned,,,,,,,, snmpssh,5161,tcp,SNMP over SSH Transport Model,,,,,[RFC5592],,, ,5161,udp,Reserved,,,,,,,, snmpssh-trap,5162,tcp,SNMP Notification over SSH Transport Model,,,,,[RFC5592],,Known Unauthorized Use on port 5162, ,5162,udp,Reserved,,,,,,,Known Unauthorized Use on port 5162, sbackup,5163,tcp,Shadow Backup,[Glenn_Allen],[Glenn_Allen],2009-08-05,,,,, ,5163,udp,Reserved,,,,,,,, vpa,5164,tcp,Virtual Protocol Adapter,[Douglas_Goodall],[Douglas_Goodall],2009-08-05,,,,, vpa-disc,5164,udp,Virtual Protocol Adapter Discovery,[Douglas_Goodall],[Douglas_Goodall],2009-08-05,,,,, ife-icorp,5165,tcp,"ife_1corp IANA assigned this well-formed service name as a replacement for ""ife_icorp"".",[Paul_Annala],[Paul_Annala],,,,,, ife_icorp,5165,tcp,ife_1corp,[Paul_Annala],[Paul_Annala],,,,,,"This entry is an alias to ""ife-icorp"". This entry is now historic, not usable for use with many common service discovery mechanisms." ife-icorp,5165,udp,"ife_1corp IANA assigned this well-formed service name as a replacement for ""ife_icorp"".",[Paul_Annala],[Paul_Annala],,,,,, ife_icorp,5165,udp,ife_1corp,[Paul_Annala],[Paul_Annala],,,,,,"This entry is an alias to ""ife-icorp"". This entry is now historic, not usable for use with many common service discovery mechanisms." winpcs,5166,tcp,WinPCS Service Connection,[Complan_Network_AS],[Complan_Network_AS],2006-02,,,,, winpcs,5166,udp,WinPCS Service Connection,[Complan_Network_AS],[Complan_Network_AS],2006-02,,,,, scte104,5167,tcp,SCTE104 Connection,[Thomas_Russell],[Thomas_Russell],2005-05,,,,, |
9400 9401 9402 9403 9404 9405 9406 | aol-3,5193,udp,AmericaOnline3,[Bruce_Mackey],[Bruce_Mackey],,,,,, cpscomm,5194,tcp,CipherPoint Config Service,[CipherPoint],[CipherPoint],2010-03-03,,,,, ,5194,udp,Reserved,,,,,,,, ampl-lic,5195,tcp,The protocol is used by a license server and client programs to control use of program licenses that float to networked machines,[AMPL_Optimization],[David_M_Gay],2012-05-25,,,,, ,5195,udp,Reserved,,,,,,,, ampl-tableproxy,5196,tcp,"The protocol is used by two programs that exchange ""table"" data used in the AMPL modeling language",[AMPL_Optimization],[David_M_Gay],2012-05-25,,,,, ,5196,udp,Reserved,,,,,,,, | > > | | 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 | aol-3,5193,udp,AmericaOnline3,[Bruce_Mackey],[Bruce_Mackey],,,,,, cpscomm,5194,tcp,CipherPoint Config Service,[CipherPoint],[CipherPoint],2010-03-03,,,,, ,5194,udp,Reserved,,,,,,,, ampl-lic,5195,tcp,The protocol is used by a license server and client programs to control use of program licenses that float to networked machines,[AMPL_Optimization],[David_M_Gay],2012-05-25,,,,, ,5195,udp,Reserved,,,,,,,, ampl-tableproxy,5196,tcp,"The protocol is used by two programs that exchange ""table"" data used in the AMPL modeling language",[AMPL_Optimization],[David_M_Gay],2012-05-25,,,,, ,5196,udp,Reserved,,,,,,,, tunstall-lwp,5197,tcp,Tunstall Lone worker device interface,[Tunstall_Healthcare_UK_Ltd],[Robert_Moore],2014-12-10,,,,, ,5197,udp,Reserved,,,,,,,, ,5198-5199,,Unassigned,,,,,,,, targus-getdata,5200,tcp,TARGUS GetData,[John_Keaveney],[John_Keaveney],,,,,, targus-getdata,5200,udp,TARGUS GetData,[John_Keaveney],[John_Keaveney],,,,,, targus-getdata1,5201,tcp,TARGUS GetData 1,[John_Keaveney],[John_Keaveney],,,,,, targus-getdata1,5201,udp,TARGUS GetData 1,[John_Keaveney],[John_Keaveney],,,,,, targus-getdata2,5202,tcp,TARGUS GetData 2,[John_Keaveney],[John_Keaveney],,,,,, targus-getdata2,5202,udp,TARGUS GetData 2,[John_Keaveney],[John_Keaveney],,,,,, targus-getdata3,5203,tcp,TARGUS GetData 3,[John_Keaveney],[John_Keaveney],,,,,, |
9470 9471 9472 9473 9474 9475 9476 | soagateway,5250,udp,soaGateway,[Greg_Bodine],[Greg_Bodine],2002-02,,,,, caevms,5251,tcp,CA eTrust VM Service,[Kevin_Bond],[Kevin_Bond],2004-11,,,,, caevms,5251,udp,CA eTrust VM Service,[Kevin_Bond],[Kevin_Bond],2004-11,,,,, movaz-ssc,5252,tcp,Movaz SSC,[Lou_Berger],[Lou_Berger],2004-11,,,,, movaz-ssc,5252,udp,Movaz SSC,[Lou_Berger],[Lou_Berger],2004-11,,,,, kpdp,5253,tcp,Kohler Power Device Protocol,[Bill_Gross],[Bill_Gross],2010-11-01,,,,, ,5253,udp,Reserved,,,,,,,, | > > | | | 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 | soagateway,5250,udp,soaGateway,[Greg_Bodine],[Greg_Bodine],2002-02,,,,, caevms,5251,tcp,CA eTrust VM Service,[Kevin_Bond],[Kevin_Bond],2004-11,,,,, caevms,5251,udp,CA eTrust VM Service,[Kevin_Bond],[Kevin_Bond],2004-11,,,,, movaz-ssc,5252,tcp,Movaz SSC,[Lou_Berger],[Lou_Berger],2004-11,,,,, movaz-ssc,5252,udp,Movaz SSC,[Lou_Berger],[Lou_Berger],2004-11,,,,, kpdp,5253,tcp,Kohler Power Device Protocol,[Bill_Gross],[Bill_Gross],2010-11-01,,,,, ,5253,udp,Reserved,,,,,,,, logcabin,5254,tcp,LogCabin storage service,[Diego_Ongaro],[Diego_Ongaro],2015-04-14,,,,, ,5254,udp,Reserved,,,,,,,, ,5255-5263,,Unassigned,,,,,,,, 3com-njack-1,5264,tcp,3Com Network Jack Port 1,[Abhay_Rajaram],[Abhay_Rajaram],2003-03,,,,, 3com-njack-1,5264,udp,3Com Network Jack Port 1,[Abhay_Rajaram],[Abhay_Rajaram],2003-03,,,,, 3com-njack-2,5265,tcp,3Com Network Jack Port 2,[Abhay_Rajaram],[Abhay_Rajaram],2003-03,,,,, 3com-njack-2,5265,udp,3Com Network Jack Port 2,[Abhay_Rajaram],[Abhay_Rajaram],2003-03,,,,, ,5266-5268,,Unassigned,,,,,,,, xmpp-server,5269,tcp,XMPP Server Connection,,,,,[RFC6120],,, ,5269,udp,Reserved,,,,,,,, cartographerxmp,5270,tcp,Cartographer XMP,[Bobby_Krupczak_2],[Bobby_Krupczak_2],2008-04-03,2011-08-31,,,, cartographerxmp,5270,udp,Cartographer XMP,[Bobby_Krupczak_2],[Bobby_Krupczak_2],2008-04-03,2011-08-31,,,, cuelink,5271,tcp,StageSoft CueLink messaging,[Todd_Pichler],[Todd_Pichler],2010-03-26,,,,, cuelink-disc,5271,udp,StageSoft CueLink discovery,[Todd_Pichler],[Todd_Pichler],2010-03-26,,,,, pk,5272,tcp,PK,[Patrick_Kara],[Patrick_Kara],,,,,, pk,5272,udp,PK,[Patrick_Kara],[Patrick_Kara],,,,,, ,5273-5279,,Unassigned,,,,,,,, xmpp-bosh,5280,tcp,Bidirectional-streams Over Synchronous HTTP (BOSH),[Peter_Saint_Andre],[Peter_Saint_Andre],2009-11-25,,,,, ,5280,udp,Reserved,,,,,,,, undo-lm,5281,tcp,Undo License Manager,[Undo_Ltd],[Edward_Moffett],2010-04-19,2019-01-25,,,, ,5281,udp,Reserved,,,,,,,, transmit-port,5282,tcp,Marimba Transmitter Port,[Johan_Eriksson],[Johan_Eriksson],2002-04,,,,, transmit-port,5282,udp,Marimba Transmitter Port,[Johan_Eriksson],[Johan_Eriksson],2002-04,,,,, ,5283-5297,,Unassigned,,,,,,,, presence,5298,tcp,XMPP Link-Local Messaging,[Eric_St_Onge],[Eric_St_Onge],2008-01-14,,,,,Defined TXT keys: See http://www.xmpp.org/registrar/linklocal.html presence,5298,udp,XMPP Link-Local Messaging,[Eric_St_Onge],[Eric_St_Onge],2008-01-14,,,,,Defined TXT keys: See http://www.xmpp.org/registrar/linklocal.html nlg-data,5299,tcp,NLG Data Service,[Andy_Shellam],[Andy_Shellam],2008-02-19,,,,, |
9544 9545 9546 9547 9548 9549 9550 | ,5321,udp,Reserved,,,,,,,, ,5322-5342,,Unassigned,,,,,,,, kfserver,5343,tcp,Sculptor Database Server,[Keith_Ashman],[Keith_Ashman],2005-12,,,,, kfserver,5343,udp,Sculptor Database Server,[Keith_Ashman],[Keith_Ashman],2005-12,,,,, xkotodrcp,5344,tcp,xkoto DRCP,[Jeff_Heisz],[Jeff_Heisz],2006-02,,,,, xkotodrcp,5344,udp,xkoto DRCP,[Jeff_Heisz],[Jeff_Heisz],2006-02,,,,, ,5345-5348,,Unassigned,,,,,,,, | | | | | | | 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 | ,5321,udp,Reserved,,,,,,,, ,5322-5342,,Unassigned,,,,,,,, kfserver,5343,tcp,Sculptor Database Server,[Keith_Ashman],[Keith_Ashman],2005-12,,,,, kfserver,5343,udp,Sculptor Database Server,[Keith_Ashman],[Keith_Ashman],2005-12,,,,, xkotodrcp,5344,tcp,xkoto DRCP,[Jeff_Heisz],[Jeff_Heisz],2006-02,,,,, xkotodrcp,5344,udp,xkoto DRCP,[Jeff_Heisz],[Jeff_Heisz],2006-02,,,,, ,5345-5348,,Unassigned,,,,,,,, stuns,5349,tcp,Session Traversal Utilities for NAT (STUN) port,[IESG],[IETF_Chair],,2019-03-28,[RFC-ietf-tram-stunbis-21],,, stuns,5349,udp,STUN over DTLS,[IESG],[IETF_Chair],,2014-07-03,[RFC7350],,,This service name was initially created by [RFC5389]. turns,5349,tcp,TURN over TLS,,,,2019-08-02,[RFC-ietf-tram-turnbis-29],,, turns,5349,udp,TURN over DTLS,[IESG],[IETF_Chair],,2019-08-02,[RFC7350],,,This service name was initially created by [RFC-ietf-tram-turnbis-29]. stun-behaviors,5349,tcp,STUN Behavior Discovery over TLS,,,,,[RFC5780],,, stun-behaviors,5349,udp,Reserved for a future enhancement of STUN-BEHAVIOR,,,,,[RFC5780],,, ,5350,tcp,Reserved,,,,,,,, pcp-multicast,5350,udp,Port Control Protocol Multicast,[IESG],[IETF_Chair],,,[RFC6887],,, ,5351,tcp,Reserved,,,,,,,, pcp,5351,udp,Port Control Protocol,[IESG],[IETF_Chair],,,[RFC6887],,, dns-llq,5352,tcp,DNS Long-Lived Queries,[Stuart_Cheshire],[Stuart_Cheshire],2005-08,2019-08-26,[RFC-sekar-dns-llq-06],,, dns-llq,5352,udp,DNS Long-Lived Queries,[Stuart_Cheshire],[Stuart_Cheshire],2005-08,2019-08-26,[RFC-sekar-dns-llq-06],,, mdns,5353,tcp,Multicast DNS,[IESG],[IETF_Chair],,,[RFC6762],,, mdns,5353,udp,Multicast DNS,[IESG],[IETF_Chair],,,[RFC6762],,, mdnsresponder,5354,tcp,Multicast DNS Responder IPC,[Stuart_Cheshire_3],[Stuart_Cheshire_3],2004-06,,,,, mdnsresponder,5354,udp,Multicast DNS Responder IPC,[Stuart_Cheshire_3],[Stuart_Cheshire_3],2004-06,,,,, llmnr,5355,tcp,LLMNR,[Bernard_Aboba],[Bernard_Aboba],2004-06,,,,, llmnr,5355,udp,LLMNR,[Bernard_Aboba],[Bernard_Aboba],2004-06,,,,, ms-smlbiz,5356,tcp,Microsoft Small Business,[Gopikrishna_Sandra],[Gopikrishna_Sandra],2005-02,,,,, |
9670 9671 9672 9673 9674 9675 9676 | ,5438-5442,,Unassigned,,,,,,,, spss,5443,tcp,Pearson HTTPS,[Pearson],[Pearson],2008-01-17,,,,, spss,5443,udp,Pearson HTTPS,[Pearson],[Pearson],2008-01-17,,,,, ,5444,,Unassigned,,,,,,,Known UNAUTHORIZED USE: Port 5444, smbdirect,5445,tcp,Server Message Block over Remote Direct Memory Access,[Microsoft_Corporation_2],[Tom_Talpey],2012-03-15,,,,, ,5445,udp,Reserved,,,,,,,, smbdirect,5445,sctp,Server Message Block over Remote Direct Memory Access,[Microsoft_Corporation_2],[Tom_Talpey],2012-03-15,,,,, | > > > | > > > > > > > > > > > > > | > > > > > | | > > | | | 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 | ,5438-5442,,Unassigned,,,,,,,, spss,5443,tcp,Pearson HTTPS,[Pearson],[Pearson],2008-01-17,,,,, spss,5443,udp,Pearson HTTPS,[Pearson],[Pearson],2008-01-17,,,,, ,5444,,Unassigned,,,,,,,Known UNAUTHORIZED USE: Port 5444, smbdirect,5445,tcp,Server Message Block over Remote Direct Memory Access,[Microsoft_Corporation_2],[Tom_Talpey],2012-03-15,,,,, ,5445,udp,Reserved,,,,,,,, smbdirect,5445,sctp,Server Message Block over Remote Direct Memory Access,[Microsoft_Corporation_2],[Tom_Talpey],2012-03-15,,,,, ,5446-5449,,Unassigned,,,,,,,, tiepie,5450,tcp,TiePie engineering data acquisition,[TiePie_engineering],[Reinder_Feenstra],2016-04-01,,,,, tiepie-disc,5450,udp,TiePie engineering data acquisition (discovery),[TiePie_engineering],[Reinder_Feenstra],2016-04-01,,,,, ,5451-5452,,Unassigned,,,,,,,, surebox,5453,tcp,SureBox,[Emin_BORU],[Emin_BORU],2004-11,,,,, surebox,5453,udp,SureBox,[Emin_BORU],[Emin_BORU],2004-11,,,,, apc-5454,5454,tcp,APC 5454,[American_Power_Conve],[American_Power_Conve],,,,,, apc-5454,5454,udp,APC 5454,[American_Power_Conve],[American_Power_Conve],,,,,, apc-5455,5455,tcp,APC 5455,[American_Power_Conve],[American_Power_Conve],,,,,, apc-5455,5455,udp,APC 5455,[American_Power_Conve],[American_Power_Conve],,,,,, apc-5456,5456,tcp,APC 5456,[American_Power_Conve],[American_Power_Conve],,,,,, apc-5456,5456,udp,APC 5456,[American_Power_Conve],[American_Power_Conve],,,,,, ,5457-5460,,Unassigned,,,,,,,, silkmeter,5461,tcp,SILKMETER,[Klaus_Fellner],[Klaus_Fellner],,,,,, silkmeter,5461,udp,SILKMETER,[Klaus_Fellner],[Klaus_Fellner],,,,,, ttl-publisher,5462,tcp,TTL Publisher,[Peter_Jacobs],[Peter_Jacobs],,,,,, ttl-publisher,5462,udp,TTL Publisher,[Peter_Jacobs],[Peter_Jacobs],,,,,, ttlpriceproxy,5463,tcp,TTL Price Proxy,[Peter_Jacobs],[Peter_Jacobs],,,,,, ttlpriceproxy,5463,udp,TTL Price Proxy,[Peter_Jacobs],[Peter_Jacobs],,,,,, quailnet,5464,tcp,Quail Networks Object Broker,[Craig_N_Bissell],[Craig_N_Bissell],2006-04,,,,, quailnet,5464,udp,Quail Networks Object Broker,[Craig_N_Bissell],[Craig_N_Bissell],2006-04,,,,, netops-broker,5465,tcp,NETOPS-BROKER,[John_R_Deuel],[John_R_Deuel],,,,,, netops-broker,5465,udp,NETOPS-BROKER,[John_R_Deuel],[John_R_Deuel],,,,,, ,5466-5469,,Unassigned,,,,,,,, apsolab-col,5470,tcp,The Apsolab company's data collection protocol (native api),[Apsolab_Inc],[Jean-Francois_Gauthier],2014-11-10,,,,, ,5470,udp,Reserved,,,,,,,, apsolab-cols,5471,tcp,The Apsolab company's secure data collection protocol (native api),[Apsolab_Inc],[Jean-Francois_Gauthier],2014-11-10,,,,, ,5471,udp,Reserved,,,,,,,, apsolab-tag,5472,tcp,The Apsolab company's dynamic tag protocol,[Apsolab_Inc],[Jean-Francois_Gauthier],2014-11-10,,,,, ,5472,udp,Reserved,,,,,,,, apsolab-tags,5473,tcp,The Apsolab company's secure dynamic tag protocol,[Apsolab_Inc],[Jean-Francois_Gauthier],2014-11-10,,,,, ,5473,udp,Reserved,,,,,,,, apsolab-rpc,5474,udp,The Apsolab company's status query protocol,[Apsolab_Inc],[Jean-Francois_Gauthier],2014-11-10,,,,, ,5474,tcp,Reserved,,,,,,,, apsolab-data,5475,tcp,The Apsolab company's data retrieval protocol,[Apsolab_Inc],[Jean-Francois_Gauthier],2014-11-10,,,,, ,5475,udp,Reserved,,,,,,,, ,5476-5499,,Unassigned,,,,,,,, fcp-addr-srvr1,5500,tcp,fcp-addr-srvr1,[Ken_Wittmer],[Ken_Wittmer],,,,,, fcp-addr-srvr1,5500,udp,fcp-addr-srvr1,[Ken_Wittmer],[Ken_Wittmer],,,,,, fcp-addr-srvr2,5501,tcp,fcp-addr-srvr2,[Ken_Wittmer],[Ken_Wittmer],,,,,, fcp-addr-srvr2,5501,udp,fcp-addr-srvr2,[Ken_Wittmer],[Ken_Wittmer],,,,,, fcp-srvr-inst1,5502,tcp,fcp-srvr-inst1,[Ken_Wittmer],[Ken_Wittmer],,,,,, fcp-srvr-inst1,5502,udp,fcp-srvr-inst1,[Ken_Wittmer],[Ken_Wittmer],,,,,, fcp-srvr-inst2,5503,tcp,fcp-srvr-inst2,[Ken_Wittmer],[Ken_Wittmer],,,,,, fcp-srvr-inst2,5503,udp,fcp-srvr-inst2,[Ken_Wittmer],[Ken_Wittmer],,,,,, fcp-cics-gw1,5504,tcp,fcp-cics-gw1,[Ken_Wittmer],[Ken_Wittmer],,,,,, fcp-cics-gw1,5504,udp,fcp-cics-gw1,[Ken_Wittmer],[Ken_Wittmer],,,,,, checkoutdb,5505,tcp,Checkout Database,[Dirk_Stoop],[Dirk_Stoop],2007-04,,,,, checkoutdb,5505,udp,Checkout Database,[Dirk_Stoop],[Dirk_Stoop],2007-04,,,,, amc,5506,tcp,Amcom Mobile Connect,[Aaron_Fracht_Monroe],[Aaron_Fracht_Monroe],2010-06-03,,,,, amc,5506,udp,Amcom Mobile Connect,[Aaron_Fracht_Monroe],[Aaron_Fracht_Monroe],2010-06-03,,,,, psl-management,5507,tcp,PowerSysLab Electrical Management,[PowerSysLab],[Lucas_Lorensi],2015-07-20,,,,, ,5507,udp,Reserved,,,,,,,, ,5508-5549,,Unassigned,,,,,,,, cbus,5550,tcp,Model Railway control using the CBUS message protocol,[MERG],[Pete_Brownlow],2017-01-03,,,,, ,5550,udp,Reserved,,,,,,,, ,5551-5552,,Unassigned,,,,,,,, sgi-eventmond,5553,tcp,SGI Eventmond Port,[Andrei_Vilkotski],[Andrei_Vilkotski],2003-06,,,,, sgi-eventmond,5553,udp,SGI Eventmond Port,[Andrei_Vilkotski],[Andrei_Vilkotski],2003-06,,,,, sgi-esphttp,5554,tcp,SGI ESP HTTP,[Vladimir_Legalov],[Vladimir_Legalov],,,,,, sgi-esphttp,5554,udp,SGI ESP HTTP,[Vladimir_Legalov],[Vladimir_Legalov],,,,,, personal-agent,5555,tcp,Personal Agent,[Jackie_Wu],[Jackie_Wu],,,,,Known UNAUTHORIZED USEs on port 5555, personal-agent,5555,udp,Personal Agent,[Jackie_Wu],[Jackie_Wu],,,,,Known UNAUTHORIZED USEs on port 5555, freeciv,5556,tcp,Freeciv gameplay,[Reinier_Post_and_Pau],[Reinier_Post_and_Pau],2006-01,,,,Known Unauthorized Use on port 5556, freeciv,5556,udp,Freeciv gameplay,[Reinier_Post_and_Pau],[Reinier_Post_and_Pau],2006-01,,,,Known Unauthorized Use on port 5556, farenet,5557,tcp,Sandlab FARENET,[Kay_T_Labinsky],[Kay_T_Labinsky],2010-05-03,,,,, ,5557,udp,Reserved,,,,,,,, ,5558-5564,,Unassigned,,,,,,,, dp-bura,5565,tcp,Data Protector BURA,[Micro_Focus],[Shishir_Misra],2016-01-13,2019-10-04,,,, ,5565,udp,Reserved,,,,,,,, westec-connect,5566,tcp,Westec Connect,[Jon_Bolen],[Jon_Bolen],2009-03-18,,,,, ,5566,udp,Reserved,,,,,,,, dof-dps-mc-sec,5567,tcp,DOF Protocol Stack Multicast/Secure Transport,[OpenDOF],[Bryant_Eastham],2004-11,2015-04-23,,,, dof-dps-mc-sec,5567,udp,DOF Protocol Stack Multicast/Secure Transport,[OpenDOF],[Bryant_Eastham],2004-11,2015-04-23,,,, sdt,5568,tcp,Session Data Transport Multicast,[Daniel_W_Antonuk],[Daniel_W_Antonuk],2006-05,,,,, sdt,5568,udp,Session Data Transport Multicast,[Daniel_W_Antonuk],[Daniel_W_Antonuk],2006-05,,,,, rdmnet-ctrl,5569,tcp,"PLASA E1.33, Remote Device Management (RDM) controller status notifications",[PLASA],[Simon_Newton],2012-06-01,,,,, rdmnet-device,5569,udp,"PLASA E1.33, Remote Device Management (RDM) messages",[PLASA],[Simon_Newton],2012-06-01,,,,, ,5570-5572,,Unassigned,,,,,,,Known UNAUTHORIZED USE on Port 5570, sdmmp,5573,tcp,SAS Domain Management Messaging Protocol,[Ron_Zuckerman],[Ron_Zuckerman],2007-08-30,,,,, sdmmp,5573,udp,SAS Domain Management Messaging Protocol,[Ron_Zuckerman],[Ron_Zuckerman],2007-08-30,,,,, |
9801 9802 9803 9804 9805 9806 9807 | flcrs,5638,tcp,Symantec Fingerprint Lookup and Container Reference Service,[Symantec_Corp],[Neel_A_Bhatt],2012-01-03,,,,, ,5638,udp,Reserved,,,,,,,, ics,5639,tcp,Symantec Integrity Checking Service,[Symantec_Corp2],[Danzhou_Liu],2012-05-07,,,,, ,5639,udp,Reserved,,,,,,,, ,5640-5645,,Unassigned,,,,,,,, vfmobile,5646,tcp,Ventureforth Mobile,[Ventureforth_Inc],[Blakely_Snyder],2011-11-03,,,,, ,5646,udp,Reserved,,,,,,,, | > > > | | 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 | flcrs,5638,tcp,Symantec Fingerprint Lookup and Container Reference Service,[Symantec_Corp],[Neel_A_Bhatt],2012-01-03,,,,, ,5638,udp,Reserved,,,,,,,, ics,5639,tcp,Symantec Integrity Checking Service,[Symantec_Corp2],[Danzhou_Liu],2012-05-07,,,,, ,5639,udp,Reserved,,,,,,,, ,5640-5645,,Unassigned,,,,,,,, vfmobile,5646,tcp,Ventureforth Mobile,[Ventureforth_Inc],[Blakely_Snyder],2011-11-03,,,,, ,5646,udp,Reserved,,,,,,,, ,5647-5665,,Unassigned,,,,,,,, nrpe,5666,tcp,Nagios Remote Plugin Executor,[Nagios_Enterprises_LLC],[Bryan_Heden],2017-09-06,,,,, ,5666,udp,Reserved,,,,,,,, ,5667-5669,,Unassigned,,,,,,,, filemq,5670,tcp,ZeroMQ file publish-subscribe protocol,[Pieter_Hintjens2],[Pieter_Hintjens2],2012-11-01,2013-02-25,,,, zre-disc,5670,udp,Local area discovery and messaging over ZeroMQ,[Pieter_Hintjens_3],[Pieter_Hintjens_3],2012-12-17,,,,, amqps,5671,tcp,amqp protocol over TLS/SSL,[Ted_Ross_2],[Ted_Ross_2],2008-03-26,,,,, amqps,5671,udp,amqp protocol over TLS/SSL,[Ted_Ross_2],[Ted_Ross_2],2008-03-26,,,,, amqp,5672,tcp,AMQP,[Pieter_Hintjens],[Pieter_Hintjens],2006-01,,,,, amqp,5672,udp,AMQP,[Pieter_Hintjens],[Pieter_Hintjens],2006-01,,,,, amqp,5672,sctp,AMQP,[Martin_Sustrik],[Martin_Sustrik],2007-03,,,,, |
9830 9831 9832 9833 9834 9835 9836 | dccm,5679,udp,Direct Cable Connect Manager,[Mark_Miller_2],[Mark_Miller_2],,,,,, auriga-router,5680,tcp,Auriga Router Service,[Vincent_Gaudeul],[Vincent_Gaudeul],2006-02,,,,, auriga-router,5680,udp,Auriga Router Service,[Vincent_Gaudeul],[Vincent_Gaudeul],2006-02,,,,, ncxcp,5681,tcp,Net-coneX Control Protocol,[Ryan_Werber],[Ryan_Werber],2006-06,,,,, ncxcp,5681,udp,Net-coneX Control Protocol,[Ryan_Werber],[Ryan_Werber],2006-06,,,,, ,5682,tcp,Reserved,,,,,,,, brightcore,5682,udp,BrightCore control & data transfer exchange,[Marko_Bjelac],[Marko_Bjelac],2010-06-10,,,,, | | | > > > > > > | | 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 | dccm,5679,udp,Direct Cable Connect Manager,[Mark_Miller_2],[Mark_Miller_2],,,,,, auriga-router,5680,tcp,Auriga Router Service,[Vincent_Gaudeul],[Vincent_Gaudeul],2006-02,,,,, auriga-router,5680,udp,Auriga Router Service,[Vincent_Gaudeul],[Vincent_Gaudeul],2006-02,,,,, ncxcp,5681,tcp,Net-coneX Control Protocol,[Ryan_Werber],[Ryan_Werber],2006-06,,,,, ncxcp,5681,udp,Net-coneX Control Protocol,[Ryan_Werber],[Ryan_Werber],2006-06,,,,, ,5682,tcp,Reserved,,,,,,,, brightcore,5682,udp,BrightCore control & data transfer exchange,[Marko_Bjelac],[Marko_Bjelac],2010-06-10,,,,, coap,5683,tcp,Constrained Application Protocol (CoAP),[IESG],[IETF_Chair],2017-12-22,,[RFC8323],,, coap,5683,udp,Constrained Application Protocol,[IESG],[IETF_Chair],2011-06-13,2013-07-25,[RFC7252],,, coaps,5684,tcp,Constrained Application Protocol (CoAP),[IESG],[IETF_Chair],2017-12-22,,[RFC7301][RFC8323],,, coaps,5684,udp,DTLS-secured CoAP,[IESG],[IETF_Chair],2013-07-25,,[RFC7252],,, ,5685-5686,,Unassigned,,,,,,,, gog-multiplayer,5687,udp,GOG multiplayer game protocol,[GOG.com],[Michal_Gruchala],2014-07-31,2014-10-09,,,, ,5687,tcp,Reserved,,,,,,,, ggz,5688,tcp,GGZ Gaming Zone,[Josef_Spillner],[Josef_Spillner],2003-01,,,,, ggz,5688,udp,GGZ Gaming Zone,[Josef_Spillner],[Josef_Spillner],2003-01,,,,, qmvideo,5689,tcp,QM video network management protocol,[Jamie_Lokier],[Jamie_Lokier],2006-05,,,,, qmvideo,5689,udp,QM video network management protocol,[Jamie_Lokier],[Jamie_Lokier],2006-05,,,,, ,5690-5692,,Unassigned,,,,,,,, rbsystem,5693,tcp,Robert Bosch Data Transfer,[Robert_Bosch_GmbH],[Klaus_Warth],2011-08-01,2012-07-17,,,, ,5693,udp,Reserved,,,,,,,, ,5694-5695,,Unassigned,,,,,,,, kmip,5696,tcp,Key Management Interoperability Protocol,[OASIS_KMIP_Technical_Committee],[Robin_Cover],2011-07-25,,,,, ,5696,udp,Reserved,,,,,,,, ,5697-5699,,Unassigned,,,,,,,, supportassist,5700,tcp,Dell SupportAssist data center management,[Dell_Technologies],[Rohitdev_Kulshrestha],2016-07-05,,,,, ,5700,udp,Reserved,,,,,,,, ,5701-5704,,Unassigned,,,,,,,, storageos,5705,tcp,StorageOS REST API,[StorageOS],[Simon_Croome],2017-03-03,,,,, ,5705,udp,Reserved,,,,,,,, ,5706-5712,,Unassigned,,,,,,,, proshareaudio,5713,tcp,proshare conf audio,[gunner],[gunner],,,,,, proshareaudio,5713,udp,proshare conf audio,[gunner],[gunner],,,,,, prosharevideo,5714,tcp,proshare conf video,[gunner],[gunner],,,,,, prosharevideo,5714,udp,proshare conf video,[gunner],[gunner],,,,,, prosharedata,5715,tcp,proshare conf data,[gunner],[gunner],,,,,, prosharedata,5715,udp,proshare conf data,[gunner],[gunner],,,,,, prosharerequest,5716,tcp,proshare conf request,[gunner],[gunner],,,,,, |
10013 10014 10015 10016 10017 10018 10019 | wbem-https,5989,udp,WBEM CIM-XML (HTTPS),[Jim_Davis],[Jim_Davis],,,,,, wbem-exp-https,5990,tcp,WBEM Export HTTPS,[Denise_Eckstein],[Denise_Eckstein],2004-11,,,,, wbem-exp-https,5990,udp,WBEM Export HTTPS,[Denise_Eckstein],[Denise_Eckstein],2004-11,,,,, nuxsl,5991,tcp,NUXSL,[Kai_Kretschmann],[Kai_Kretschmann],2002-03,,,,, nuxsl,5991,udp,NUXSL,[Kai_Kretschmann],[Kai_Kretschmann],2002-03,,,,, consul-insight,5992,tcp,Consul InSight Security,[Arthur_Hillenaar],[Arthur_Hillenaar],2006-01,,,,, consul-insight,5992,udp,Consul InSight Security,[Arthur_Hillenaar],[Arthur_Hillenaar],2006-01,,,,, | > > | | 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 | wbem-https,5989,udp,WBEM CIM-XML (HTTPS),[Jim_Davis],[Jim_Davis],,,,,, wbem-exp-https,5990,tcp,WBEM Export HTTPS,[Denise_Eckstein],[Denise_Eckstein],2004-11,,,,, wbem-exp-https,5990,udp,WBEM Export HTTPS,[Denise_Eckstein],[Denise_Eckstein],2004-11,,,,, nuxsl,5991,tcp,NUXSL,[Kai_Kretschmann],[Kai_Kretschmann],2002-03,,,,, nuxsl,5991,udp,NUXSL,[Kai_Kretschmann],[Kai_Kretschmann],2002-03,,,,, consul-insight,5992,tcp,Consul InSight Security,[Arthur_Hillenaar],[Arthur_Hillenaar],2006-01,,,,, consul-insight,5992,udp,Consul InSight Security,[Arthur_Hillenaar],[Arthur_Hillenaar],2006-01,,,,, cim-rs,5993,tcp,DMTF WBEM CIM REST,[WS_Inc],[Jim_Davis_2],2015-04-24,,,,, ,5993,udp,Reserved,,,,,,,, ,5994-5998,,Unassigned,,,,,,,, cvsup,5999,tcp,CVSup,[Randall_Atkinson_2],[Randall_Atkinson_2],,,,,, cvsup,5999,udp,CVSup,[Randall_Atkinson_2],[Randall_Atkinson_2],,,,,, x11,6000-6063,tcp,X Window System,[Stephen_Gildea],[Stephen_Gildea],,,,,Known Unauthorized Use on port 6003, x11,6000-6063,udp,X Window System,[Stephen_Gildea],[Stephen_Gildea],,,,,Known Unauthorized Use on port 6003, ndl-ahp-svc,6064,tcp,NDL-AHP-SVC,[John_Richmond_2],[John_Richmond_2],,,,,, ndl-ahp-svc,6064,udp,NDL-AHP-SVC,[John_Richmond_2],[John_Richmond_2],,,,,, winpharaoh,6065,tcp,WinPharaoh,[Basil_Lee],[Basil_Lee],,,,,, |
10045 10046 10047 10048 10049 10050 10051 | max,6074,udp,Microsoft Max,[Jay_Beavers],[Jay_Beavers],2006-02,,,,, dpm-acm,6075,tcp,Microsoft DPM Access Control Manager,[Prabu_Ambravaneswara],[Prabu_Ambravaneswara],2009-10-29,,,,, ,6075,udp,Reserved,,,,,,,, msft-dpm-cert,6076,tcp,Microsoft DPM WCF Certificates,[Microsoft_Corporation],[Prateek_Sharma],2011-08-04,,,,, ,6076,udp,Reserved,,,,,,,, iconstructsrv,6077,tcp,iConstruct Server,[iConstruct_Aus_Pty_Ltd],[Afshin_Jafari],2012-12-21,,,,, ,6077,udp,Reserved,,,,,,,, | | > > | 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 | max,6074,udp,Microsoft Max,[Jay_Beavers],[Jay_Beavers],2006-02,,,,, dpm-acm,6075,tcp,Microsoft DPM Access Control Manager,[Prabu_Ambravaneswara],[Prabu_Ambravaneswara],2009-10-29,,,,, ,6075,udp,Reserved,,,,,,,, msft-dpm-cert,6076,tcp,Microsoft DPM WCF Certificates,[Microsoft_Corporation],[Prateek_Sharma],2011-08-04,,,,, ,6076,udp,Reserved,,,,,,,, iconstructsrv,6077,tcp,iConstruct Server,[iConstruct_Aus_Pty_Ltd],[Afshin_Jafari],2012-12-21,,,,, ,6077,udp,Reserved,,,,,,,, ,6078-6079,,Unassigned,,,,,,,, gue,6080,udp,Generic UDP Encapsulation,[Tom_Herbert],[Tom_Herbert],2015-03-05,,[draft-herbert-gue],,, ,6080,tcp,Reserved,,,,,,,, geneve,6081,udp,Generic Network Virtualization Encapsulation (Geneve),[Jesse_Gross],[Jesse_Gross],2014-03-27,,[draft-gross-geneve-00],,, ,6081,tcp,Reserved,,,,,,,, ,6082,tcp,Reserved,,,,,,,, p25cai,6082,udp,APCO Project 25 Common Air Interface - UDP encapsulation,[APCO_Project],[APCO_Project],2011-05-13,,,,, ,6083,tcp,Reserved,,,,,,,, miami-bcast,6083,udp,telecomsoftware miami broadcast,[Peter_Steiner],[Peter_Steiner],2011-02-22,,,,, reload-config,6084,tcp,Peer to Peer Infrastructure Configuration,[IESG],[IETF_Chair],2009-01-29,2013-03-26,[RFC6940],,, |
10071 10072 10073 10074 10075 10076 10077 | ,6099,udp,Reserved,,,,,,,, synchronet-db,6100,tcp,SynchroNet-db,[Arne_Haugland],[Arne_Haugland],,,,,Known Unauthorized Use on port 6100, synchronet-db,6100,udp,SynchroNet-db,[Arne_Haugland],[Arne_Haugland],,,,,Known Unauthorized Use on port 6100, synchronet-rtc,6101,tcp,SynchroNet-rtc,[Arne_Haugland],[Arne_Haugland],,,,,, synchronet-rtc,6101,udp,SynchroNet-rtc,[Arne_Haugland],[Arne_Haugland],,,,,, synchronet-upd,6102,tcp,SynchroNet-upd,[Arne_Haugland],[Arne_Haugland],,,,,, synchronet-upd,6102,udp,SynchroNet-upd,[Arne_Haugland],[Arne_Haugland],,,,,, | | | | 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 | ,6099,udp,Reserved,,,,,,,, synchronet-db,6100,tcp,SynchroNet-db,[Arne_Haugland],[Arne_Haugland],,,,,Known Unauthorized Use on port 6100, synchronet-db,6100,udp,SynchroNet-db,[Arne_Haugland],[Arne_Haugland],,,,,Known Unauthorized Use on port 6100, synchronet-rtc,6101,tcp,SynchroNet-rtc,[Arne_Haugland],[Arne_Haugland],,,,,, synchronet-rtc,6101,udp,SynchroNet-rtc,[Arne_Haugland],[Arne_Haugland],,,,,, synchronet-upd,6102,tcp,SynchroNet-upd,[Arne_Haugland],[Arne_Haugland],,,,,, synchronet-upd,6102,udp,SynchroNet-upd,[Arne_Haugland],[Arne_Haugland],,,,,, rets,6103,tcp,RETS,[Jeremy_Crawford],[Jeremy_Crawford],,,,,, rets,6103,udp,RETS,[Jeremy_Crawford],[Jeremy_Crawford],,,,,, dbdb,6104,tcp,DBDB,[Aaron_Brick],[Aaron_Brick],,,,,, dbdb,6104,udp,DBDB,[Aaron_Brick],[Aaron_Brick],,,,,, primaserver,6105,tcp,Prima Server,[Prima_Designs_System],[Prima_Designs_System],,,,,, primaserver,6105,udp,Prima Server,[Prima_Designs_System],[Prima_Designs_System],,,,,, mpsserver,6106,tcp,MPS Server,[Prima_Designs_System],[Prima_Designs_System],,,,,, mpsserver,6106,udp,MPS Server,[Prima_Designs_System],[Prima_Designs_System],,,,,, etc-control,6107,tcp,ETC Control,[Steve_Polishinski],[Steve_Polishinski],,,,,, |
10106 10107 10108 10109 10110 10111 10112 | daylitetouch,6117,tcp,Daylite Touch Sync,[Brent_Gulanowski],[Brent_Gulanowski],2009-08-26,,,,, ,6117,udp,Reserved,,,,,,,, tipc,6118,udp,Transparent Inter Process Communication,[Ericsson],[Erik_Hugne],2012-09-05,,,,, ,6118,tcp,Reserved,,,,,,,, ,6119-6120,,Unassigned,,,,,,,, spdy,6121,tcp,SPDY for a faster web,[Matthew_Lloyd],[Matthew_Lloyd],2010-04-26,,,,, ,6121,udp,Reserved,,,,,,,, | | | | | | 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 | daylitetouch,6117,tcp,Daylite Touch Sync,[Brent_Gulanowski],[Brent_Gulanowski],2009-08-26,,,,, ,6117,udp,Reserved,,,,,,,, tipc,6118,udp,Transparent Inter Process Communication,[Ericsson],[Erik_Hugne],2012-09-05,,,,, ,6118,tcp,Reserved,,,,,,,, ,6119-6120,,Unassigned,,,,,,,, spdy,6121,tcp,SPDY for a faster web,[Matthew_Lloyd],[Matthew_Lloyd],2010-04-26,,,,, ,6121,udp,Reserved,,,,,,,, bex-webadmin,6122,tcp,Backup Express Web Server,[Catalogic_Software_Inc],[Chi_Shih_Chang],2008-03-19,2015-02-04,,,, bex-webadmin,6122,udp,Backup Express Web Server,[Catalogic_Software_Inc],[Chi_Shih_Chang],2008-03-19,2015-02-04,,,, backup-express,6123,tcp,Backup Express,[Catalogic_Software_Inc],[Chi_Shih_Chang],2008-03-19,2015-02-04,,,, backup-express,6123,udp,Backup Express,[Catalogic_Software_Inc],[Chi_Shih_Chang],2008-03-19,2015-02-04,,,, pnbs,6124,tcp,Phlexible Network Backup Service,[William_R_Lear_2],[William_R_Lear_2],2008-10-23,,,,, pnbs,6124,udp,Phlexible Network Backup Service,[William_R_Lear_2],[William_R_Lear_2],2008-10-23,,,,, ,6125-6129,,Unassigned,,,,,,,, damewaremobgtwy,6130,tcp,The DameWare Mobile Gateway Service,[SolarWinds],[David_Gayler],2013-05-29,,,,, ,6130,udp,Reserved,,,,,,,, ,6131-6132,,Unassigned,,,,,,,, nbt-wol,6133,tcp,New Boundary Tech WOL,[Elizabeth_Zilen],[Elizabeth_Zilen],2004-11,,,,, |
10155 10156 10157 10158 10159 10160 10161 | pscribe,6163,tcp,Precision Scribe Cnx Port,[Robert_W_Hodges],[Robert_W_Hodges],2005-01,,,,, pscribe,6163,udp,Precision Scribe Cnx Port,[Robert_W_Hodges],[Robert_W_Hodges],2005-01,,,,, ,6164-6199,,Unassigned,,,,,,,, lm-x,6200,tcp,LM-X License Manager by X-Formation,[Henrik_Goldman],[Henrik_Goldman],2006-10,,,,Known Unauthorized Use on port 6200, lm-x,6200,udp,LM-X License Manager by X-Formation,[Henrik_Goldman],[Henrik_Goldman],2006-10,,,,Known Unauthorized Use on port 6200, ,6201,tcp,Reserved,,,,,,,, thermo-calc,6201,udp,Management of service nodes in a processing grid for thermodynamic calculations,[Thermo-Calc_Software],[Thomas_Revesz],2012-06-28,,,,, | > > > | | 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 | pscribe,6163,tcp,Precision Scribe Cnx Port,[Robert_W_Hodges],[Robert_W_Hodges],2005-01,,,,, pscribe,6163,udp,Precision Scribe Cnx Port,[Robert_W_Hodges],[Robert_W_Hodges],2005-01,,,,, ,6164-6199,,Unassigned,,,,,,,, lm-x,6200,tcp,LM-X License Manager by X-Formation,[Henrik_Goldman],[Henrik_Goldman],2006-10,,,,Known Unauthorized Use on port 6200, lm-x,6200,udp,LM-X License Manager by X-Formation,[Henrik_Goldman],[Henrik_Goldman],2006-10,,,,Known Unauthorized Use on port 6200, ,6201,tcp,Reserved,,,,,,,, thermo-calc,6201,udp,Management of service nodes in a processing grid for thermodynamic calculations,[Thermo-Calc_Software],[Thomas_Revesz],2012-06-28,,,,, ,6202-6208,,Unassigned,,,,,,,, qmtps,6209,tcp,QMTP over TLS,[FEHCom],[Erwin_Hoffmann],2015-01-09,,,,, qmtps,6209,udp,QMTP over TLS,[FEHCom],[Erwin_Hoffmann],2015-01-09,,,,, ,6210-6221,,Unassigned,,,,,,,, radmind,6222,tcp,Radmind Access Protocol,[Patrick_M_McNeal],[Patrick_M_McNeal],2006-03,,,,, radmind,6222,udp,Radmind Access Protocol,[Patrick_M_McNeal],[Patrick_M_McNeal],2006-03,,,,, ,6223-6240,,Unassigned,,,,,,,, jeol-nsdtp-1,6241,tcp,JEOL Network Services Data Transport Protocol 1,[Kevin_Wellwood],[Kevin_Wellwood],2008-04-17,,,,, jeol-nsddp-1,6241,udp,JEOL Network Services Dynamic Discovery Protocol 1,[Kevin_Wellwood],[Kevin_Wellwood],2008-04-17,,,,, jeol-nsdtp-2,6242,tcp,JEOL Network Services Data Transport Protocol 2,[Kevin_Wellwood],[Kevin_Wellwood],2008-04-17,,,,, jeol-nsddp-2,6242,udp,JEOL Network Services Dynamic Discovery Protocol 2,[Kevin_Wellwood],[Kevin_Wellwood],2008-04-17,,,,, |
10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 | grid,6268,udp,Grid Authentication,[Jason_Hamilton],[Jason_Hamilton],2006-06,,,,, grid-alt,6269,tcp,Grid Authentication Alt,[Jason_Hamilton],[Jason_Hamilton],2006-06,,,,, grid-alt,6269,udp,Grid Authentication Alt,[Jason_Hamilton],[Jason_Hamilton],2006-06,,,,, ,6270-6299,,Unassigned,,,,,,,, bmc-grx,6300,tcp,BMC GRX,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, bmc-grx,6300,udp,BMC GRX,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, bmc-ctd-ldap,6301,tcp,"BMC CONTROL-D LDAP SERVER IANA assigned this well-formed service name as a replacement for ""bmc_ctd_ldap"".",[Portnoy_Boxman_2],[Portnoy_Boxman_2],2006-09,,,,, bmc_ctd_ldap,6301,tcp,BMC CONTROL-D LDAP SERVER,[Portnoy_Boxman_2],[Portnoy_Boxman_2],2006-09,,,,,"This entry is an alias to ""bmc-ctd-ldap"". This entry is now historic, not usable for use with many common service discovery mechanisms." bmc-ctd-ldap,6301,udp,"BMC CONTROL-D LDAP SERVER IANA assigned this well-formed service name as a replacement for ""bmc_ctd_ldap"".",[Portnoy_Boxman_2],[Portnoy_Boxman_2],2006-09,,,,, bmc_ctd_ldap,6301,udp,BMC CONTROL-D LDAP SERVER,[Portnoy_Boxman_2],[Portnoy_Boxman_2],2006-09,,,,,"This entry is an alias to ""bmc-ctd-ldap"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,6302-6305,,Unassigned,,,,,,,, | > > > > | | | | | | | 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 | grid,6268,udp,Grid Authentication,[Jason_Hamilton],[Jason_Hamilton],2006-06,,,,, grid-alt,6269,tcp,Grid Authentication Alt,[Jason_Hamilton],[Jason_Hamilton],2006-06,,,,, grid-alt,6269,udp,Grid Authentication Alt,[Jason_Hamilton],[Jason_Hamilton],2006-06,,,,, ,6270-6299,,Unassigned,,,,,,,, bmc-grx,6300,tcp,BMC GRX,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, bmc-grx,6300,udp,BMC GRX,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, bmc-ctd-ldap,6301,tcp,"BMC CONTROL-D LDAP SERVER IANA assigned this well-formed service name as a replacement for ""bmc_ctd_ldap"".",[Portnoy_Boxman_2],[Portnoy_Boxman_2],2006-09,,,,, bmc_ctd_ldap,6301,tcp,BMC CONTROL-D LDAP SERVER,[Portnoy_Boxman_2],[Portnoy_Boxman_2],2006-09,,,,,"This entry is an alias to ""bmc-ctd-ldap"". This entry is now historic, not usable for use with many common service discovery mechanisms." bmc-ctd-ldap,6301,udp,"BMC CONTROL-D LDAP SERVER IANA assigned this well-formed service name as a replacement for ""bmc_ctd_ldap"".",[Portnoy_Boxman_2],[Portnoy_Boxman_2],2006-09,,,,, bmc_ctd_ldap,6301,udp,BMC CONTROL-D LDAP SERVER,[Portnoy_Boxman_2],[Portnoy_Boxman_2],2006-09,,,,,"This entry is an alias to ""bmc-ctd-ldap"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,6302-6305,,Unassigned,,,,,,,, ufmp,6306,tcp,Unified Fabric Management Protocol,[Mellanox],[Shachar_Dor],2009-12-17,2019-07-02,,,, ufmp,6306,udp,Unified Fabric Management Protocol,[Mellanox],[Shachar_Dor],2009-12-17,2019-07-02,,,, ,6307-6314,,Unassigned,,,,,,,, scup,6315,tcp,Sensor Control Unit Protocol,[Sven_Kopacz],[Sven_Kopacz],2010-09-01,,,,, scup-disc,6315,udp,Sensor Control Unit Protocol Discovery Protocol,[Sven_Kopacz],[Sven_Kopacz],2010-09-01,,,,, abb-escp,6316,tcp,Ethernet Sensor Communications Protocol,[Jaime_Antolin],[Jaime_Antolin],2008-09-25,,,,, abb-escp,6316,udp,Ethernet Sensor Communications Protocol,[Jaime_Antolin],[Jaime_Antolin],2008-09-25,,,,, nav-data-cmd,6317,tcp,Navtech Radar Sensor Data Command,[Navtech_Radar_Ltd],[Guy_Avery],2013-02-20,,,,, nav-data,6317,udp,Navtech Radar Sensor Data,[Navtech_Radar_Ltd],[Guy_Avery],2013-02-20,,,,, ,6318-6319,,Unassigned,,,,,,,, repsvc,6320,tcp,Double-Take Replication Service,[Carbonite_Inc],[James_Wilkinson],2006-04,2019-08-23,,,, repsvc,6320,udp,Double-Take Replication Service,[Carbonite_Inc],[James_Wilkinson],2006-04,2019-08-23,,,, emp-server1,6321,tcp,Empress Software Connectivity Server 1,[Srdjan_Holovac],[Srdjan_Holovac],,,,,, emp-server1,6321,udp,Empress Software Connectivity Server 1,[Srdjan_Holovac],[Srdjan_Holovac],,,,,, emp-server2,6322,tcp,Empress Software Connectivity Server 2,[Srdjan_Holovac],[Srdjan_Holovac],,,,,, emp-server2,6322,udp,Empress Software Connectivity Server 2,[Srdjan_Holovac],[Srdjan_Holovac],,,,,, ,6323,,Unassigned,,,,,,,, hrd-ncs,6324,tcp,HR Device Network Configuration Service,[Hall_Research],[Vishal_Dharmadhikari],2011-11-29,,,,, hrd-ns-disc,6324,udp,HR Device Network service,[Hall_Research],[Vishal_Dharmadhikari],2011-11-29,,,,, dt-mgmtsvc,6325,tcp,Double-Take Management Service,[Carbonite_Inc],[James_Wilkinson],2012-06-06,2019-08-23,,,, ,6325,udp,Reserved,,,,,,,, dt-vra,6326,tcp,Double-Take Virtual Recovery Assistant,[Carbonite_Inc],[James_Wilkinson],2012-10-08,2019-08-23,,,, ,6326,udp,Reserved,,,,,,,, ,6327-6342,,Unassigned,,,,,,,, sflow,6343,tcp,sFlow traffic monitoring,[Peter_Phaal],[Peter_Phaal],2003-06,,,,, sflow,6343,udp,sFlow traffic monitoring,[Peter_Phaal],[Peter_Phaal],2003-06,,,,, streletz,6344,tcp,Argus-Spectr security and fire-prevention systems service,[Argus_Spectr],[Kirill_Marinushkin],2013-10-25,,,,, ,6344,udp,Reserved,,,,,,,, ,6345-6345,,Unassigned,,,,,,,, |
10243 10244 10245 10246 10247 10248 10249 | metaedit-mu,6360,udp,MetaEdit+ Multi-User,[Steven_Kelly],[Steven_Kelly],2007-11-12,,,,, ,6361-6362,,Unassigned,,,,,,,, ndn,6363,udp,Named Data Networking,[Regents_of_the_University_of_California],[Jeff_Burke],2013-10-30,,,,, ,6363,tcp,Reserved,,,,,,,, ,6364-6369,,Unassigned,,,,,,,, metaedit-se,6370,tcp,MetaEdit+ Server Administration,[Steven_Kelly],[Steven_Kelly],2007-11-12,,,,, metaedit-se,6370,udp,MetaEdit+ Server Administration,[Steven_Kelly],[Steven_Kelly],2007-11-12,,,,, | > > > | | 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 | metaedit-mu,6360,udp,MetaEdit+ Multi-User,[Steven_Kelly],[Steven_Kelly],2007-11-12,,,,, ,6361-6362,,Unassigned,,,,,,,, ndn,6363,udp,Named Data Networking,[Regents_of_the_University_of_California],[Jeff_Burke],2013-10-30,,,,, ,6363,tcp,Reserved,,,,,,,, ,6364-6369,,Unassigned,,,,,,,, metaedit-se,6370,tcp,MetaEdit+ Server Administration,[Steven_Kelly],[Steven_Kelly],2007-11-12,,,,, metaedit-se,6370,udp,MetaEdit+ Server Administration,[Steven_Kelly],[Steven_Kelly],2007-11-12,,,,, ,6371-6378,,Unassigned,,,,,,,, redis,6379,tcp,An advanced key-value cache and store,[Salvatore_Sanfilippo],[Itamar_Haber],2015-04-23,,,,, ,6379,udp,Reserved,,,,,,,, ,6380-6381,,Unassigned,,,,,,,, metatude-mds,6382,tcp,Metatude Dialogue Server,[Menno_Zweistra],[Menno_Zweistra],,,,,, metatude-mds,6382,udp,Metatude Dialogue Server,[Menno_Zweistra],[Menno_Zweistra],,,,,, ,6383-6388,,Unassigned,,,,,,,, clariion-evr01,6389,tcp,clariion-evr01,[Dave_DesRoches],[Dave_DesRoches],,,,,, clariion-evr01,6389,udp,clariion-evr01,[Dave_DesRoches],[Dave_DesRoches],,,,,, metaedit-ws,6390,tcp,MetaEdit+ WebService API,[Steven_Kelly],[Steven_Kelly],2007-11-12,,,,, metaedit-ws,6390,udp,MetaEdit+ WebService API,[Steven_Kelly],[Steven_Kelly],2007-11-12,,,,, |
10269 10270 10271 10272 10273 10274 10275 | boe-resssvr4,6410,,Business Objects Enterprise internal server,[Wade_Richards],[Wade_Richards],2008-05-05,,,,, ,6411-6416,,Unassigned,,,,,,,, faxcomservice,6417,tcp,Faxcom Message Service,[Albert_Leung],[Albert_Leung],2006-04,,,,, faxcomservice,6417,udp,Faxcom Message Service,[Albert_Leung],[Albert_Leung],2006-04,,,,, syserverremote,6418,tcp,SYserver remote commands,[David_Ashkenazi],[David_Ashkenazi],2010-03-23,,,,, ,6418,udp,Reserved,,,,,,,, svdrp,6419,tcp,Simple VDR Protocol,[Klaus_Schmidinger],[Klaus_Schmidinger],2010-03-31,,,,, | | > > > > > > > > > > > > > | | 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 | boe-resssvr4,6410,,Business Objects Enterprise internal server,[Wade_Richards],[Wade_Richards],2008-05-05,,,,, ,6411-6416,,Unassigned,,,,,,,, faxcomservice,6417,tcp,Faxcom Message Service,[Albert_Leung],[Albert_Leung],2006-04,,,,, faxcomservice,6417,udp,Faxcom Message Service,[Albert_Leung],[Albert_Leung],2006-04,,,,, syserverremote,6418,tcp,SYserver remote commands,[David_Ashkenazi],[David_Ashkenazi],2010-03-23,,,,, ,6418,udp,Reserved,,,,,,,, svdrp,6419,tcp,Simple VDR Protocol,[Klaus_Schmidinger],[Klaus_Schmidinger],2010-03-31,,,,, svdrp-disc,6419,udp,Simple VDR Protocol Discovery,[Klaus_Schmidinger],[Klaus_Schmidinger],2015-05-08,,,,, nim-vdrshell,6420,tcp,NIM_VDRShell,[Rik_Ditter],[Rik_Ditter],2006-02,,,,, nim-vdrshell,6420,udp,NIM_VDRShell,[Rik_Ditter],[Rik_Ditter],2006-02,,,,, nim-wan,6421,tcp,NIM_WAN,[Rik_Ditter],[Rik_Ditter],2006-02,,,,, nim-wan,6421,udp,NIM_WAN,[Rik_Ditter],[Rik_Ditter],2006-02,,,,, ,6422-6431,,Unassigned,,,,,,,, pgbouncer,6432,tcp,PgBouncer,[Marko_Kreen],[Marko_Kreen],2009-02-13,,,,, ,6432,udp,Reserved,,,,,,,, ,6433-6441,,Unassigned,,,,,,,, tarp,6442,tcp,Transitory Application Request Protocol,[Chris_Peel_2],[Chris_Peel_2],2014-05-16,,,,, ,6442,udp,Reserved,,,,,,,, sun-sr-https,6443,tcp,Service Registry Default HTTPS Domain,[Paul_Sterk],[Paul_Sterk],2006-03,,,,, sun-sr-https,6443,udp,Service Registry Default HTTPS Domain,[Paul_Sterk],[Paul_Sterk],2006-03,,,,, sge-qmaster,6444,tcp,"Grid Engine Qmaster Service IANA assigned this well-formed service name as a replacement for ""sge_qmaster"".",[Andreas_Haas],[Andreas_Haas],2006-08,,,,, sge_qmaster,6444,tcp,Grid Engine Qmaster Service,[Andreas_Haas],[Andreas_Haas],2006-08,,,,,"This entry is an alias to ""sge-qmaster"". This entry is now historic, not usable for use with many common service discovery mechanisms." sge-qmaster,6444,udp,"Grid Engine Qmaster Service IANA assigned this well-formed service name as a replacement for ""sge_qmaster"".",[Andreas_Haas],[Andreas_Haas],2006-08,,,,, sge_qmaster,6444,udp,Grid Engine Qmaster Service,[Andreas_Haas],[Andreas_Haas],2006-08,,,,,"This entry is an alias to ""sge-qmaster"". This entry is now historic, not usable for use with many common service discovery mechanisms." sge-execd,6445,tcp,"Grid Engine Execution Service IANA assigned this well-formed service name as a replacement for ""sge_execd"".",[Andreas_Haas],[Andreas_Haas],2006-08,,,,, sge_execd,6445,tcp,Grid Engine Execution Service,[Andreas_Haas],[Andreas_Haas],2006-08,,,,,"This entry is an alias to ""sge-execd"". This entry is now historic, not usable for use with many common service discovery mechanisms." sge-execd,6445,udp,"Grid Engine Execution Service IANA assigned this well-formed service name as a replacement for ""sge_execd"".",[Andreas_Haas],[Andreas_Haas],2006-08,,,,, sge_execd,6445,udp,Grid Engine Execution Service,[Andreas_Haas],[Andreas_Haas],2006-08,,,,,"This entry is an alias to ""sge-execd"". This entry is now historic, not usable for use with many common service discovery mechanisms." mysql-proxy,6446,tcp,MySQL Proxy,[Kay_Roepke],[Kay_Roepke],2009-04-22,,,,, mysql-proxy,6446,udp,MySQL Proxy,[Kay_Roepke],[Kay_Roepke],2009-04-22,,,,, ,6447-6454,,Unassigned,,,,,,,, skip-cert-recv,6455,tcp,SKIP Certificate Receive,[Tom_Markson],[Tom_Markson],,,,,, skip-cert-recv,6455,udp,SKIP Certificate Receive,[Tom_Markson],[Tom_Markson],,,,,, skip-cert-send,6456,tcp,SKIP Certificate Send,[Tom_Markson],[Tom_Markson],,,,,, skip-cert-send,6456,udp,SKIP Certificate Send,[Tom_Markson],[Tom_Markson],,,,,, ,6457-6463,,Unassigned,,,,,,,, ieee11073-20701,6464,tcp,"Port assignment for medical device communication in accordance to IEEE 11073-20701",[David_Gregorczyk],[David_Gregorczyk],2017-03-02,,,,, ieee11073-20701,6464,udp,"Port assignment for medical device communication in accordance to IEEE 11073-20701",[David_Gregorczyk],[David_Gregorczyk],2017-03-02,,,,, ,6465-6470,,Unassigned,,,,,,,, lvision-lm,6471,tcp,LVision License Manager,[Brian_McKinnon],[Brian_McKinnon],,,,,, lvision-lm,6471,udp,LVision License Manager,[Brian_McKinnon],[Brian_McKinnon],,,,,, ,6472-6479,,Unassigned,,,,,,,, sun-sr-http,6480,tcp,Service Registry Default HTTP Domain,[Paul_Sterk],[Paul_Sterk],2006-03,,,,, sun-sr-http,6480,udp,Service Registry Default HTTP Domain,[Paul_Sterk],[Paul_Sterk],2006-03,,,,, servicetags,6481,tcp,Service Tags,[Peter_Schow],[Peter_Schow],2007-01,,,,, servicetags,6481,udp,Service Tags,[Peter_Schow],[Peter_Schow],2007-01,,,,, |
10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 | sun-sr-jmx,6488,udp,Service Registry Default JMX Domain,[Paul_Sterk],[Paul_Sterk],2006-03,,,,, sun-sr-admin,6489,tcp,Service Registry Default Admin Domain,[Paul_Sterk],[Paul_Sterk],2006-03,,,,, sun-sr-admin,6489,udp,Service Registry Default Admin Domain,[Paul_Sterk],[Paul_Sterk],2006-03,,,,, ,6490-6499,,Unassigned,,,,,,,, boks,6500,tcp,BoKS Master,[Magnus_Nystrom],[Magnus_Nystrom],,,,,, boks,6500,udp,BoKS Master,[Magnus_Nystrom],[Magnus_Nystrom],,,,,, boks-servc,6501,tcp,"BoKS Servc IANA assigned this well-formed service name as a replacement for ""boks_servc"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,Known Unauthorized Use on port 6501, boks_servc,6501,tcp,BoKS Servc,[Magnus_Nystrom],[Magnus_Nystrom],,,,,Known Unauthorized Use on port 6501,"This entry is an alias to ""boks-servc"". This entry is now historic, not usable for use with many common service discovery mechanisms." boks-servc,6501,udp,"BoKS Servc IANA assigned this well-formed service name as a replacement for ""boks_servc"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, boks_servc,6501,udp,BoKS Servc,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""boks-servc"". This entry is now historic, not usable for use with many common service discovery mechanisms." boks-servm,6502,tcp,"BoKS Servm IANA assigned this well-formed service name as a replacement for ""boks_servm"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, boks_servm,6502,tcp,BoKS Servm,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""boks-servm"". This entry is now historic, not usable for use with many common service discovery mechanisms." boks-servm,6502,udp,"BoKS Servm IANA assigned this well-formed service name as a replacement for ""boks_servm"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, boks_servm,6502,udp,BoKS Servm,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""boks-servm"". This entry is now historic, not usable for use with many common service discovery mechanisms." boks-clntd,6503,tcp,"BoKS Clntd IANA assigned this well-formed service name as a replacement for ""boks_clntd"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, boks_clntd,6503,tcp,BoKS Clntd,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""boks-clntd"". This entry is now historic, not usable for use with many common service discovery mechanisms." boks-clntd,6503,udp,"BoKS Clntd IANA assigned this well-formed service name as a replacement for ""boks_clntd"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, boks_clntd,6503,udp,BoKS Clntd,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""boks-clntd"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,6504,,Unassigned,,,,,,,, badm-priv,6505,tcp,"BoKS Admin Private Port IANA assigned this well-formed service name as a replacement for ""badm_priv"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, badm_priv,6505,tcp,BoKS Admin Private Port,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""badm-priv"". This entry is now historic, not usable for use with many common service discovery mechanisms." badm-priv,6505,udp,"BoKS Admin Private Port IANA assigned this well-formed service name as a replacement for ""badm_priv"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, badm_priv,6505,udp,BoKS Admin Private Port,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""badm-priv"". This entry is now historic, not usable for use with many common service discovery mechanisms." badm-pub,6506,tcp,"BoKS Admin Public Port IANA assigned this well-formed service name as a replacement for ""badm_pub"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, badm_pub,6506,tcp,BoKS Admin Public Port,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""badm-pub"". This entry is now historic, not usable for use with many common service discovery mechanisms." badm-pub,6506,udp,"BoKS Admin Public Port IANA assigned this well-formed service name as a replacement for ""badm_pub"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, badm_pub,6506,udp,BoKS Admin Public Port,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""badm-pub"". This entry is now historic, not usable for use with many common service discovery mechanisms." bdir-priv,6507,tcp,"BoKS Dir Server, Private Port IANA assigned this well-formed service name as a replacement for ""bdir_priv"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, bdir_priv,6507,tcp,"BoKS Dir Server, Private Port",[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""bdir-priv"". This entry is now historic, not usable for use with many common service discovery mechanisms." bdir-priv,6507,udp,"BoKS Dir Server, Private Port IANA assigned this well-formed service name as a replacement for ""bdir_priv"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, bdir_priv,6507,udp,"BoKS Dir Server, Private Port",[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""bdir-priv"". This entry is now historic, not usable for use with many common service discovery mechanisms." bdir-pub,6508,tcp,"BoKS Dir Server, Public Port IANA assigned this well-formed service name as a replacement for ""bdir_pub"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, bdir_pub,6508,tcp,"BoKS Dir Server, Public Port",[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""bdir-pub"". This entry is now historic, not usable for use with many common service discovery mechanisms." bdir-pub,6508,udp,"BoKS Dir Server, Public Port IANA assigned this well-formed service name as a replacement for ""bdir_pub"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, bdir_pub,6508,udp,"BoKS Dir Server, Public Port",[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""bdir-pub"". This entry is now historic, not usable for use with many common service discovery mechanisms." mgcs-mfp-port,6509,tcp,MGCS-MFP Port,[Minoru_Ozaki],[Minoru_Ozaki],,,,,, mgcs-mfp-port,6509,udp,MGCS-MFP Port,[Minoru_Ozaki],[Minoru_Ozaki],,,,,, mcer-port,6510,tcp,MCER Port,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, mcer-port,6510,udp,MCER Port,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, ,6511,tcp,Reserved,,,,,,,, dccp-udp,6511,udp,Datagram Congestion Control Protocol Encapsulation for NAT Traversal,[IESG],[IETF_Chair],,,[RFC6773],,, ,6512-6512,,Unassigned,,,,,,,, | > > > > > > > > > > > > > > > > > > > > > > > > > > > > | | 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 | sun-sr-jmx,6488,udp,Service Registry Default JMX Domain,[Paul_Sterk],[Paul_Sterk],2006-03,,,,, sun-sr-admin,6489,tcp,Service Registry Default Admin Domain,[Paul_Sterk],[Paul_Sterk],2006-03,,,,, sun-sr-admin,6489,udp,Service Registry Default Admin Domain,[Paul_Sterk],[Paul_Sterk],2006-03,,,,, ,6490-6499,,Unassigned,,,,,,,, boks,6500,tcp,BoKS Master,[Magnus_Nystrom],[Magnus_Nystrom],,,,,, boks,6500,udp,BoKS Master,[Magnus_Nystrom],[Magnus_Nystrom],,,,,, boks-servc,6501,tcp,"BoKS Servc IANA assigned this well-formed service name as a replacement for ""boks_servc"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,Known Unauthorized Use on port 6501, boks_servc,6501,tcp,BoKS Servc,[Magnus_Nystrom],[Magnus_Nystrom],,,,,Known Unauthorized Use on port 6501,"This entry is an alias to ""boks-servc"". This entry is now historic, not usable for use with many common service discovery mechanisms." boks-servc,6501,udp,"BoKS Servc IANA assigned this well-formed service name as a replacement for ""boks_servc"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, boks_servc,6501,udp,BoKS Servc,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""boks-servc"". This entry is now historic, not usable for use with many common service discovery mechanisms." boks-servm,6502,tcp,"BoKS Servm IANA assigned this well-formed service name as a replacement for ""boks_servm"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, boks_servm,6502,tcp,BoKS Servm,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""boks-servm"". This entry is now historic, not usable for use with many common service discovery mechanisms." boks-servm,6502,udp,"BoKS Servm IANA assigned this well-formed service name as a replacement for ""boks_servm"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, boks_servm,6502,udp,BoKS Servm,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""boks-servm"". This entry is now historic, not usable for use with many common service discovery mechanisms." boks-clntd,6503,tcp,"BoKS Clntd IANA assigned this well-formed service name as a replacement for ""boks_clntd"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, boks_clntd,6503,tcp,BoKS Clntd,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""boks-clntd"". This entry is now historic, not usable for use with many common service discovery mechanisms." boks-clntd,6503,udp,"BoKS Clntd IANA assigned this well-formed service name as a replacement for ""boks_clntd"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, boks_clntd,6503,udp,BoKS Clntd,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""boks-clntd"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,6504,,Unassigned,,,,,,,, badm-priv,6505,tcp,"BoKS Admin Private Port IANA assigned this well-formed service name as a replacement for ""badm_priv"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, badm_priv,6505,tcp,BoKS Admin Private Port,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""badm-priv"". This entry is now historic, not usable for use with many common service discovery mechanisms." badm-priv,6505,udp,"BoKS Admin Private Port IANA assigned this well-formed service name as a replacement for ""badm_priv"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, badm_priv,6505,udp,BoKS Admin Private Port,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""badm-priv"". This entry is now historic, not usable for use with many common service discovery mechanisms." badm-pub,6506,tcp,"BoKS Admin Public Port IANA assigned this well-formed service name as a replacement for ""badm_pub"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, badm_pub,6506,tcp,BoKS Admin Public Port,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""badm-pub"". This entry is now historic, not usable for use with many common service discovery mechanisms." badm-pub,6506,udp,"BoKS Admin Public Port IANA assigned this well-formed service name as a replacement for ""badm_pub"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, badm_pub,6506,udp,BoKS Admin Public Port,[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""badm-pub"". This entry is now historic, not usable for use with many common service discovery mechanisms." bdir-priv,6507,tcp,"BoKS Dir Server, Private Port IANA assigned this well-formed service name as a replacement for ""bdir_priv"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, bdir_priv,6507,tcp,"BoKS Dir Server, Private Port",[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""bdir-priv"". This entry is now historic, not usable for use with many common service discovery mechanisms." bdir-priv,6507,udp,"BoKS Dir Server, Private Port IANA assigned this well-formed service name as a replacement for ""bdir_priv"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, bdir_priv,6507,udp,"BoKS Dir Server, Private Port",[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""bdir-priv"". This entry is now historic, not usable for use with many common service discovery mechanisms." bdir-pub,6508,tcp,"BoKS Dir Server, Public Port IANA assigned this well-formed service name as a replacement for ""bdir_pub"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, bdir_pub,6508,tcp,"BoKS Dir Server, Public Port",[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""bdir-pub"". This entry is now historic, not usable for use with many common service discovery mechanisms." bdir-pub,6508,udp,"BoKS Dir Server, Public Port IANA assigned this well-formed service name as a replacement for ""bdir_pub"".",[Magnus_Nystrom],[Magnus_Nystrom],,,,,, bdir_pub,6508,udp,"BoKS Dir Server, Public Port",[Magnus_Nystrom],[Magnus_Nystrom],,,,,,"This entry is an alias to ""bdir-pub"". This entry is now historic, not usable for use with many common service discovery mechanisms." mgcs-mfp-port,6509,tcp,MGCS-MFP Port,[Minoru_Ozaki],[Minoru_Ozaki],,,,,, mgcs-mfp-port,6509,udp,MGCS-MFP Port,[Minoru_Ozaki],[Minoru_Ozaki],,,,,, mcer-port,6510,tcp,MCER Port,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, mcer-port,6510,udp,MCER Port,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, ,6511,tcp,Reserved,,,,,,,, dccp-udp,6511,udp,Datagram Congestion Control Protocol Encapsulation for NAT Traversal,[IESG],[IETF_Chair],,,[RFC6773],,, ,6512-6512,,Unassigned,,,,,,,, netconf-tls,6513,tcp,NETCONF over TLS,[IESG],[IETF_Chair],,2015-04-15,[RFC7589],,, ,6513,udp,Reserved,,,,,,,, syslog-tls,6514,tcp,Syslog over TLS,,,,,[RFC5425],,, syslog-tls,6514,udp,syslog over DTLS,,,,,[RFC6012],,, syslog-tls,6514,dccp,syslog over DTLS,,,,,[RFC6012],,, elipse-rec,6515,tcp,Elipse RPC Protocol,[F_Englert],[F_Englert],2007-09-17,,,,, elipse-rec,6515,udp,Elipse RPC Protocol,[F_Englert],[F_Englert],2007-09-17,,,,, ,6516-6542,,Unassigned,,,,,,,, |
10445 10446 10447 10448 10449 10450 10451 | xdsxdm,6558,tcp,,[Brian_Tackett],[Brian_Tackett],,,,,,possible contact xdsxdm,6558,udp,,[Brian_Tackett],[Brian_Tackett],,,,,,possible contact ,6559-6565,,Unassigned,,,,,,,, sane-port,6566,tcp,SANE Control Port,[Henning_Meier_Geinit],[Henning_Meier_Geinit],2002-10,,,,, sane-port,6566,udp,SANE Control Port,[Henning_Meier_Geinit],[Henning_Meier_Geinit],2002-10,,,,, ,6567,,Reserved,,,2007-01,2011-08-26,,,,This entry has been removed on 2011-08-26. canit-store,6568,tcp,"CanIt Storage Manager | > > | | | | 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 | xdsxdm,6558,tcp,,[Brian_Tackett],[Brian_Tackett],,,,,,possible contact xdsxdm,6558,udp,,[Brian_Tackett],[Brian_Tackett],,,,,,possible contact ,6559-6565,,Unassigned,,,,,,,, sane-port,6566,tcp,SANE Control Port,[Henning_Meier_Geinit],[Henning_Meier_Geinit],2002-10,,,,, sane-port,6566,udp,SANE Control Port,[Henning_Meier_Geinit],[Henning_Meier_Geinit],2002-10,,,,, ,6567,,Reserved,,,2007-01,2011-08-26,,,,This entry has been removed on 2011-08-26. canit-store,6568,tcp,"CanIt Storage Manager IANA assigned this well-formed service name as a replacement for ""canit_store"".",[Dianne_Skoll],[Dianne_Skoll],2009-04-22,2017-05-25,,,, canit_store,6568,tcp,CanIt Storage Manager,[Dianne_Skoll],[Dianne_Skoll],2009-04-22,2017-05-25,,,,"This entry is an alias to ""canit-store"". This entry is now historic, not usable for use with many common service discovery mechanisms." rp-reputation,6568,udp,Roaring Penguin IP Address Reputation Collection,[Dianne_Skoll],[Dianne_Skoll],2010-02-05,2017-05-25,,,, ,6569-6578,,Unassigned,,,,,,,, affiliate,6579,tcp,Affiliate,[David_Catmull],[David_Catmull],2006-01,,,,, affiliate,6579,udp,Affiliate,[David_Catmull],[David_Catmull],2006-01,,,,, parsec-master,6580,tcp,Parsec Masterserver,[Andreas_Varga],[Andreas_Varga],,,,,, parsec-master,6580,udp,Parsec Masterserver,[Andreas_Varga],[Andreas_Varga],,,,,, parsec-peer,6581,tcp,Parsec Peer-to-Peer,[Andreas_Varga],[Andreas_Varga],,,,,, parsec-peer,6581,udp,Parsec Peer-to-Peer,[Andreas_Varga],[Andreas_Varga],,,,,, |
10491 10492 10493 10494 10495 10496 10497 | ,6625,udp,Reserved,,,,,,,, wago-service,6626,tcp,WAGO Service and Update,[Wolfgang_Adler],[Wolfgang_Adler],2006-04,,,,, wago-service,6626,udp,WAGO Service and Update,[Wolfgang_Adler],[Wolfgang_Adler],2006-04,,,,, nexgen,6627,tcp,Allied Electronics NeXGen,[Lou_Seitchik],[Lou_Seitchik],2005-08,,,,, nexgen,6627,udp,Allied Electronics NeXGen,[Lou_Seitchik],[Lou_Seitchik],2005-08,,,,, afesc-mc,6628,tcp,AFE Stock Channel M/C,[K_K_Ho],[K_K_Ho],2004-04,,,,, afesc-mc,6628,udp,AFE Stock Channel M/C,[K_K_Ho],[K_K_Ho],2004-04,,,,, | > > > > | > > > > | > > > > > > > > > > | | 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 | ,6625,udp,Reserved,,,,,,,, wago-service,6626,tcp,WAGO Service and Update,[Wolfgang_Adler],[Wolfgang_Adler],2006-04,,,,, wago-service,6626,udp,WAGO Service and Update,[Wolfgang_Adler],[Wolfgang_Adler],2006-04,,,,, nexgen,6627,tcp,Allied Electronics NeXGen,[Lou_Seitchik],[Lou_Seitchik],2005-08,,,,, nexgen,6627,udp,Allied Electronics NeXGen,[Lou_Seitchik],[Lou_Seitchik],2005-08,,,,, afesc-mc,6628,tcp,AFE Stock Channel M/C,[K_K_Ho],[K_K_Ho],2004-04,,,,, afesc-mc,6628,udp,AFE Stock Channel M/C,[K_K_Ho],[K_K_Ho],2004-04,,,,, nexgen-aux,6629,tcp,"Secondary, (non ANDI) multi-protocol multi-function interface to the Allied ANDI-based family of forecourt controllers",[Allied_Electronics],[Robert_E_Tomenchok_Jr],2016-11-29,,,,, nexgen-aux,6629,udp,"Secondary, (non ANDI) multi-protocol multi-function interface to the Allied ANDI-based family of forecourt controllers",[Allied_Electronics],[Robert_E_Tomenchok_Jr],2016-11-29,,,,, ,6630,,Unassigned,,,,,,,, ,6631,,Unassigned,,,2004-05-28,,,,, mxodbc-connect,6632,tcp,eGenix mxODBC Connect,[Marc_Andre_Lemburg],[Marc_Andre_Lemburg],2009-11-13,,,,Unauthorized Use Known on port 6632, ,6632,udp,Reserved,,,,,,,, ,6633,tcp,Reserved,,,,,,,, cisco-vpath-tun,6633,udp,Cisco vPath Services Overlay,[Cisco2],[Surendra_Kumar],2012-06-11,,,,, mpls-pm,6634,udp,MPLS Performance Measurement out-of-band response,[Cisco_Systems_2],[Sagar_Soni],2014-02-20,,,,, ,6634,tcp,Reserved,,,,,,,, ,6635,tcp,Reserved,,,,,,,, mpls-udp,6635,udp,Encapsulate MPLS packets in UDP tunnels.,[IESG],[IETF_Chair],2015-02-10,,[RFC7510],,, ,6636,tcp,Reserved,,,,,,,, mpls-udp-dtls,6636,udp,Encapsulate MPLS packets in UDP tunnels with DTLS.,[IESG],[IETF_Chair],2015-02-10,,[RFC7510],,, ,6637-6639,,Unassigned,,,,,,,, ovsdb,6640,tcp,Open vSwitch Database protocol,[Bruce_Davie_2],[Bruce_Davie_2],2013-07-31,,[RFC7047],,, ,6640,udp,Reserved,,,,,,,, ,6641-6652,,Unassigned,,,,,,,, openflow,6653,tcp,OpenFlow,[Open_Networking_Foundation],[Puneet_Agarwal],2013-07-18,,,,, openflow,6653,udp,OpenFlow,[Open_Networking_Foundation],[Puneet_Agarwal],2013-07-18,,,,, ,6654,,Unassigned,,,,,,,, pcs-sf-ui-man,6655,tcp,PC SOFT - Software factory UI/manager,[Jerome_AERTS],[Jerome_AERTS],2010-11-30,,,,, ,6655,udp,Reserved,,,,,,,, emgmsg,6656,tcp,Emergency Message Control Service,[Gerry_Gorman],[Gerry_Gorman],2010-12-06,,,,, ,6656,udp,Reserved,,,,,,,, ,6657,tcp,Reserved,,,,,,,, palcom-disc,6657,udp,PalCom Discovery,[Boris_Magnusson],[Boris_Magnusson],2010-12-06,,,,, ,6658-6664,,Unassigned,,,,,,,Unauthorized Use Known on Port 6659, ircu,6665-6669,tcp,IRCU,[Brian_Tackett],[Brian_Tackett],,,,,, ,6665-6669,udp,Reserved,,,,,,,, vocaltec-gold,6670,tcp,Vocaltec Global Online Directory,[Scott_Petrack],[Scott_Petrack],,,,,, vocaltec-gold,6670,udp,Vocaltec Global Online Directory,[Scott_Petrack],[Scott_Petrack],,,,,, p4p-portal,6671,tcp,P4P Portal Service,[Chris_Griffiths],[Chris_Griffiths],2008-07-28,,,,, p4p-portal,6671,udp,P4P Portal Service,[Chris_Griffiths],[Chris_Griffiths],2008-07-28,,,,, vision-server,6672,tcp,"vision_server IANA assigned this well-formed service name as a replacement for ""vision_server"".",[Chris_Kramer],[Chris_Kramer],,,,,, vision_server,6672,tcp,vision_server,[Chris_Kramer],[Chris_Kramer],,,,,,"This entry is an alias to ""vision-server"". This entry is now historic, not usable for use with many common service discovery mechanisms." vision-server,6672,udp,"vision_server IANA assigned this well-formed service name as a replacement for ""vision_server"".",[Chris_Kramer],[Chris_Kramer],,,,,, vision_server,6672,udp,vision_server,[Chris_Kramer],[Chris_Kramer],,,,,,"This entry is an alias to ""vision-server"". This entry is now historic, not usable for use with many common service discovery mechanisms." vision-elmd,6673,tcp,"vision_elmd IANA assigned this well-formed service name as a replacement for ""vision_elmd"".",[Chris_Kramer],[Chris_Kramer],,,,,, vision_elmd,6673,tcp,vision_elmd,[Chris_Kramer],[Chris_Kramer],,,,,,"This entry is an alias to ""vision-elmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." vision-elmd,6673,udp,"vision_elmd IANA assigned this well-formed service name as a replacement for ""vision_elmd"".",[Chris_Kramer],[Chris_Kramer],,,,,, vision_elmd,6673,udp,vision_elmd,[Chris_Kramer],[Chris_Kramer],,,,,,"This entry is an alias to ""vision-elmd"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,6674-6677,,Unassigned,,,,,,,, vfbp,6678,tcp,Viscount Freedom Bridge Protocol,[Chris_MacDonald],[Chris_MacDonald],2011-03-16,,,,, vfbp-disc,6678,udp,Viscount Freedom Bridge Discovery,[Chris_MacDonald],[Chris_MacDonald],2011-03-16,,,,, osaut,6679,tcp,Osorno Automation,[Peter_Hombach],[Peter_Hombach],2011-03-16,,,,, osaut,6679,udp,Osorno Automation,[Peter_Hombach],[Peter_Hombach],2011-03-16,,,,, ,6680-6686,,Unassigned,,,,,,,, clever-ctrace,6687,tcp,CleverView for cTrace Message Service,[David_Cheng],[David_Cheng],2010-02-01,,,,, ,6687,udp,Reserved,,,,,,,, clever-tcpip,6688,tcp,CleverView for TCP/IP Message Service,[David_Cheng],[David_Cheng],2009-10-13,,,,, ,6688,udp,Reserved,,,,,,,, tsa,6689,tcp,Tofino Security Appliance,[Scott_Howard],[Scott_Howard],2009-10-13,,,,, tsa,6689,udp,Tofino Security Appliance,[Scott_Howard],[Scott_Howard],2009-10-13,,,,, cleverdetect,6690,tcp,CLEVERDetect Message Service,[Applied_Expert_Systems_Inc],[David_Cheng],2014-12-03,,,,, ,6690,udp,Reserved,,,,,,,, ,6691-6695,,Unassigned,,,,,,,, ,6696,tcp,Reserved,,,,,,,, babel,6696,udp,Babel Routing Protocol,,,,2011-08-15,[RFC6126],,, ircs-u,6697,tcp,Internet Relay Chat via TLS/SSL,,,2014-02-11,,[RFC7194],,, ,6697,udp,Reserved,,,2014-02-11,,,,, ,6698-6699,,Unassigned,,,,,,,, ,6700,,Unassigned,,,2010-01-26,,,,, kti-icad-srvr,6701,tcp,KTI/ICAD Nameserver,[Stanley_Knutson],[Stanley_Knutson],,,,,, |
10580 10581 10582 10583 10584 10585 10586 | ,6706,tcp,Reserved,,,,,,,, frc-lp,6706,sctp,ForCES LP (Low priority) channel,,,,,[RFC5811],,, ,6707-6713,,Unassigned,,,,,,,, ibprotocol,6714,tcp,Internet Backplane Protocol,[Alessandro_Bassi],[Alessandro_Bassi],,,,,, ibprotocol,6714,udp,Internet Backplane Protocol,[Alessandro_Bassi],[Alessandro_Bassi],,,,,, fibotrader-com,6715,tcp,Fibotrader Communications,[Robert_Wetzold],[Robert_Wetzold],2006-01,,,,, fibotrader-com,6715,udp,Fibotrader Communications,[Robert_Wetzold],[Robert_Wetzold],2006-01,,,,, | | | 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 | ,6706,tcp,Reserved,,,,,,,, frc-lp,6706,sctp,ForCES LP (Low priority) channel,,,,,[RFC5811],,, ,6707-6713,,Unassigned,,,,,,,, ibprotocol,6714,tcp,Internet Backplane Protocol,[Alessandro_Bassi],[Alessandro_Bassi],,,,,, ibprotocol,6714,udp,Internet Backplane Protocol,[Alessandro_Bassi],[Alessandro_Bassi],,,,,, fibotrader-com,6715,tcp,Fibotrader Communications,[Robert_Wetzold],[Robert_Wetzold],2006-01,,,,, fibotrader-com,6715,udp,Fibotrader Communications,[Robert_Wetzold],[Robert_Wetzold],2006-01,,,,, princity-agent,6716,tcp,Princity Agent,[ENSTEAM_Sp_z.o.o.],[Tomasz_Krakowiak],2014-07-07,2015-07-08,,,, ,6716,udp,Reserved,,,,,,,, ,6717-6766,,Unassigned,,,,,,,, bmc-perf-agent,6767,tcp,BMC PERFORM AGENT,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, bmc-perf-agent,6767,udp,BMC PERFORM AGENT,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, bmc-perf-mgrd,6768,tcp,BMC PERFORM MGRD,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, bmc-perf-mgrd,6768,udp,BMC PERFORM MGRD,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, adi-gxp-srvprt,6769,tcp,ADInstruments GxP Server,[Mathew_Pitchforth],[Mathew_Pitchforth],2005-08,,,,, |
10609 10610 10611 10612 10613 10614 10615 | dgpf-exchg,6785,udp,DGPF Individual Exchange,[Thomas_Weise],[Thomas_Weise],2006-04,,,,, smc-jmx,6786,tcp,Sun Java Web Console JMX,[Bill_Edwards],[Bill_Edwards],2005-08,,,,, smc-jmx,6786,udp,Sun Java Web Console JMX,[Bill_Edwards],[Bill_Edwards],2005-08,,,,, smc-admin,6787,tcp,Sun Web Console Admin,[Bill_Edwards],[Bill_Edwards],2005-08,,,,, smc-admin,6787,udp,Sun Web Console Admin,[Bill_Edwards],[Bill_Edwards],2005-08,,,,, smc-http,6788,tcp,SMC-HTTP,[Ratnadeep_Bhattachar],[Ratnadeep_Bhattachar],2002-11,,,,, smc-http,6788,udp,SMC-HTTP,[Ratnadeep_Bhattachar],[Ratnadeep_Bhattachar],2002-11,,,,, | | | | | | > > | 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 | dgpf-exchg,6785,udp,DGPF Individual Exchange,[Thomas_Weise],[Thomas_Weise],2006-04,,,,, smc-jmx,6786,tcp,Sun Java Web Console JMX,[Bill_Edwards],[Bill_Edwards],2005-08,,,,, smc-jmx,6786,udp,Sun Java Web Console JMX,[Bill_Edwards],[Bill_Edwards],2005-08,,,,, smc-admin,6787,tcp,Sun Web Console Admin,[Bill_Edwards],[Bill_Edwards],2005-08,,,,, smc-admin,6787,udp,Sun Web Console Admin,[Bill_Edwards],[Bill_Edwards],2005-08,,,,, smc-http,6788,tcp,SMC-HTTP,[Ratnadeep_Bhattachar],[Ratnadeep_Bhattachar],2002-11,,,,, smc-http,6788,udp,SMC-HTTP,[Ratnadeep_Bhattachar],[Ratnadeep_Bhattachar],2002-11,,,,, radg,6789,tcp,GSS-API for the Oracle Remote Administration Daemon,[Oracle_9],[Shawn_Emery],2002-08,2016-09-15,,,, ,6789,udp,Reserved,,,2002-08,2016-09-15,,,, hnmp,6790,tcp,HNMP,[Jude_George],[Jude_George],,,,,, hnmp,6790,udp,HNMP,[Jude_George],[Jude_George],,,,,, hnm,6791,tcp,Halcyon Network Manager,[Richard_Harriss],[Richard_Harriss],2005-05,,,,, hnm,6791,udp,Halcyon Network Manager,[Richard_Harriss],[Richard_Harriss],2005-05,,,,, ,6792-6800,,Unassigned,,,,,,,, acnet,6801,tcp,ACNET Control System Protocol,[Fermilab],[Rich_Neswold],2007-02,2017-07-13,,,, acnet,6801,udp,ACNET Control System Protocol,[Fermilab],[Rich_Neswold],2007-02,2017-07-13,,,, ,6802-6816,,Unassigned,,,,,,,, pentbox-sim,6817,tcp,PenTBox Secure IM Protocol,[Alberto_Ortega_Llama],[Alberto_Ortega_Llama],2009-11-04,,,,, ,6817,udp,Reserved,,,,,,,, ,6818-6830,,Unassigned,,,,,,,, ambit-lm,6831,tcp,ambit-lm,[Don_Hejna],[Don_Hejna],,,,,, ambit-lm,6831,udp,ambit-lm,[Don_Hejna],[Don_Hejna],,,,,, ,6832-6840,,Unassigned,,,,,,,, netmo-default,6841,tcp,Netmo Default,[Urs_Bertschinger],[Urs_Bertschinger],,,,,, netmo-default,6841,udp,Netmo Default,[Urs_Bertschinger],[Urs_Bertschinger],,,,,, netmo-http,6842,tcp,Netmo HTTP,[Urs_Bertschinger],[Urs_Bertschinger],,,,,, netmo-http,6842,udp,Netmo HTTP,[Urs_Bertschinger],[Urs_Bertschinger],,,,,, ,6843-6849,,Unassigned,,,,,,,, iccrushmore,6850,tcp,ICCRUSHMORE,[Dave_Hubbard],[Dave_Hubbard],,,,,, iccrushmore,6850,udp,ICCRUSHMORE,[Dave_Hubbard],[Dave_Hubbard],,,,,, ,6851-6867,,Unassigned,,,,,,,, acctopus-cc,6868,tcp,Acctopus Command Channel,[Stefan_Auweiler],[Stefan_Auweiler],2009-11-16,,,,, acctopus-st,6868,udp,Acctopus Status,[Stefan_Auweiler],[Stefan_Auweiler],2009-11-16,,,,, ,6869-6887,,Unassigned,,,,,,,, muse,6888,tcp,MUSE,[Muse_Communications],[Muse_Communications],,,,,, muse,6888,udp,MUSE,[Muse_Communications],[Muse_Communications],,,,,, ,6889,,Unassigned,,,,,,,, rtimeviewer,6900,tcp,R*TIME Viewer Data Interface,[Curtiss-Wright_Corporation],[Robert_Ammon],2016-12-14,,,,, ,6900,udp,Reserved,,,,,,,, jetstream,6901,tcp,Novell Jetstream messaging protocol,[Anil_Tyagi],[Anil_Tyagi],2010-06-11,,,,, ,6901,udp,Reserved,,,,,,,, ,6902-6934,,Unassigned,,,,,,,, ethoscan,6935,tcp,EthoScan Service,[Marty_Campbell],[Marty_Campbell],2011-06-10,,,,, ethoscan,6935,udp,EthoScan Service,[Marty_Campbell],[Marty_Campbell],2011-06-10,,,,, xsmsvc,6936,tcp,XenSource Management Service,[Roger_Klorese],[Roger_Klorese],2006-06,,,,, xsmsvc,6936,udp,XenSource Management Service,[Roger_Klorese],[Roger_Klorese],2006-06,,,,, |
10710 10711 10712 10713 10714 10715 10716 | talon-engine,7012,udp,Talon Engine,[Jim_Thompson],[Jim_Thompson],,,,,Known Unauthorized Use on 7011, microtalon-dis,7013,tcp,Microtalon Discovery,[Jim_Thompson],[Jim_Thompson],,,,,, microtalon-dis,7013,udp,Microtalon Discovery,[Jim_Thompson],[Jim_Thompson],,,,,, microtalon-com,7014,tcp,Microtalon Communications,[Jim_Thompson],[Jim_Thompson],,,,,, microtalon-com,7014,udp,Microtalon Communications,[Jim_Thompson],[Jim_Thompson],,,,,, talon-webserver,7015,tcp,Talon Webserver,[Jim_Thompson],[Jim_Thompson],,,,,, talon-webserver,7015,udp,Talon Webserver,[Jim_Thompson],[Jim_Thompson],,,,,, | | > > > > > | | > > > > | > > > | | 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 | talon-engine,7012,udp,Talon Engine,[Jim_Thompson],[Jim_Thompson],,,,,Known Unauthorized Use on 7011, microtalon-dis,7013,tcp,Microtalon Discovery,[Jim_Thompson],[Jim_Thompson],,,,,, microtalon-dis,7013,udp,Microtalon Discovery,[Jim_Thompson],[Jim_Thompson],,,,,, microtalon-com,7014,tcp,Microtalon Communications,[Jim_Thompson],[Jim_Thompson],,,,,, microtalon-com,7014,udp,Microtalon Communications,[Jim_Thompson],[Jim_Thompson],,,,,, talon-webserver,7015,tcp,Talon Webserver,[Jim_Thompson],[Jim_Thompson],,,,,, talon-webserver,7015,udp,Talon Webserver,[Jim_Thompson],[Jim_Thompson],,,,,, spg,7016,tcp,SPG Controls Carrier,[SPG_Controls_Ltd],[Steve_Barton_2],2017-03-27,,,,, spg,7016,udp,SPG Controls Carrier,[SPG_Controls_Ltd],[Steve_Barton_2],2017-03-27,,,,, grasp,7017,tcp,GeneRic Autonomic Signaling Protocol,[IESG],[IETF_Chair],2017-04-28,2017-07-20,[RFC-ietf-anima-grasp-15],,, grasp,7017,udp,GeneRic Autonomic Signaling Protocol,[IESG],[IETF_Chair],2017-04-28,2017-07-20,[RFC-ietf-anima-grasp-15],,, fisa-svc,7018,tcp,FISA Service,[FAUCONNET_Ingenierie],[FAUCONNET_Ingenierie],2011-05-19,,,,, ,7018,udp,Reserved,,,,,,,, doceri-ctl,7019,tcp,doceri drawing service control,[Paul_Brown],[Paul_Brown],2011-04-27,,,,, doceri-view,7019,udp,doceri drawing service screen view,[Paul_Brown],[Paul_Brown],2011-04-27,,,,, dpserve,7020,tcp,DP Serve,[Allan_Stanley],[Allan_Stanley],,,,,, dpserve,7020,udp,DP Serve,[Allan_Stanley],[Allan_Stanley],,,,,, dpserveadmin,7021,tcp,DP Serve Admin,[Allan_Stanley],[Allan_Stanley],,,,,, dpserveadmin,7021,udp,DP Serve Admin,[Allan_Stanley],[Allan_Stanley],,,,,, ctdp,7022,tcp,CT Discovery Protocol,[James_Kirkwood],[James_Kirkwood],2005-06,,,,, ctdp,7022,udp,CT Discovery Protocol,[James_Kirkwood],[James_Kirkwood],2005-06,,,,, ct2nmcs,7023,tcp,Comtech T2 NMCS,[Bryan_Wilcutt],[Bryan_Wilcutt],2005-06,,,,, ct2nmcs,7023,udp,Comtech T2 NMCS,[Bryan_Wilcutt],[Bryan_Wilcutt],2005-06,,,,, vmsvc,7024,tcp,Vormetric service,[Tom_Boyle],[Tom_Boyle],2005-06,,,,, vmsvc,7024,udp,Vormetric service,[Tom_Boyle],[Tom_Boyle],2005-06,,,,, vmsvc-2,7025,tcp,Vormetric Service II,[Tom_Boyle],[Tom_Boyle],2005-06,,,,, vmsvc-2,7025,udp,Vormetric Service II,[Tom_Boyle],[Tom_Boyle],2005-06,,,,, loreji-panel,7026,tcp,Loreji Webhosting Panel,[J.A._Smit],[DALTCORE],2018-02-21,,,,, ,7026,udp,Reserved,,,,,,,, ,7027-7029,,Unassigned,,,,,,,, op-probe,7030,tcp,ObjectPlanet probe,[Bjorn_Jarle_Kvande],[Bjorn_Jarle_Kvande],2002-04,,,,, op-probe,7030,udp,ObjectPlanet probe,[Bjorn_Jarle_Kvande],[Bjorn_Jarle_Kvande],2002-04,,,,, iposplanet,7031,tcp,IPOSPLANET retailing multi devices protocol,[Fabrice_Paget],[Fabrice_Paget],2012-10-23,,,,, ,7031,udp,Reserved,,,,,,,, ,7032-7039,,Unassigned,,,,,,,, ,7040,tcp,Reserved,,,,,,,, quest-disc,7040,udp,Quest application level network service discovery,[Quest_Software],[Henrik_Johnson],2012-04-09,,,,, ,7041-7069,,Unassigned,,,,,,,, arcp,7070,tcp,ARCP,[Jude_George],[Jude_George],,,,,, arcp,7070,udp,ARCP,[Jude_George],[Jude_George],,,,,, iwg1,7071,tcp,IWGADTS Aircraft Housekeeping Message,[Don_Sullivan],[Don_Sullivan],2010-02-16,,,,, iwg1,7071,udp,IWGADTS Aircraft Housekeeping Message,[Don_Sullivan],[Don_Sullivan],2010-02-16,,,,, iba-cfg,7072,tcp,iba Device Configuration Protocol,[iba_AG],[Alexander_Melamed],2018-02-12,,,,, iba-cfg-disc,7072,udp,iba Device Configuration Protocol,[iba_AG],[Alexander_Melamed],2018-02-12,,,,, martalk,7073,tcp,MarTalk protocol,[Mahr_GmbH_Göttingen],[Kevin_Bube],2013-09-02,,,,, ,7073,udp,Reserved,,,,,,,, ,7074-7079,,Unassigned,,,,,,,, empowerid,7080,tcp,EmpowerID Communication,[Matthew_Whited],[Matthew_Whited],2008-01-16,,,,, empowerid,7080,udp,EmpowerID Communication,[Matthew_Whited],[Matthew_Whited],2008-01-16,,,,, ,7081-7087,,Unassigned,,,,,,,, ,7088,tcp,Reserved,,,,,,,, zixi-transport,7088,udp,Zixi live video transport protocol,[Zixi],[Igor_Ratner],2015-11-16,,,,, ,7089-7094,,Unassigned,,,,,,,, jdp-disc,7095,udp,Java Discovery Protocol,[OpenJDK],[Florian_Weimer],2013-03-12,,,,, ,7095,tcp,Reserved,,,,,,,, ,7096-7098,,Unassigned,,,,,,,, lazy-ptop,7099,tcp,lazy-ptop,[Guy_Keren],[Guy_Keren],,,,,, lazy-ptop,7099,udp,lazy-ptop,[Guy_Keren],[Guy_Keren],,,,,, font-service,7100,tcp,X Font Service,[Stephen_Gildea],[Stephen_Gildea],,,,,, font-service,7100,udp,X Font Service,[Stephen_Gildea],[Stephen_Gildea],,,,,, elcn,7101,tcp,Embedded Light Control Network,[Michael_Scarito],[Michael_Scarito],2007-02,,,,, elcn,7101,udp,Embedded Light Control Network,[Michael_Scarito],[Michael_Scarito],2007-02,,,,, ,7102-7106,,Unassigned,,,,,,,, ,7107,tcp,Reserved,,,,,,,, aes-x170,7107,udp,AES-X170,[Richard_Foss],[Richard_Foss],2011-02-10,,,,, ,7108-7116,,Unassigned,,,,,,,, rothaga,7117,tcp,Encrypted chat and file transfer service,[Arcadian_Computers],[Jonathan_Pollock],2016-05-10,,,,, ,7117,udp,Reserved,,,,,,,, ,7118-7120,,Unassigned,,,,,,,, virprot-lm,7121,tcp,Virtual Prototypes License Manager,[Victor_Galis],[Victor_Galis],,,,,, virprot-lm,7121,udp,Virtual Prototypes License Manager,[Victor_Galis],[Victor_Galis],,,,,, ,7122-7127,,Unassigned,,,,,,,, scenidm,7128,tcp,intelligent data manager,[Paul_Ignatius],[Paul_Ignatius],2006-03,,,,, scenidm,7128,udp,intelligent data manager,[Paul_Ignatius],[Paul_Ignatius],2006-03,,,,, scenccs,7129,tcp,Catalog Content Search,[Anil_Sharma],[Anil_Sharma],2006-04,,,,, scenccs,7129,udp,Catalog Content Search,[Anil_Sharma],[Anil_Sharma],2006-04,,,,, |
10804 10805 10806 10807 10808 10809 10810 | janus-disc,7181,udp,Janus Guidewire Enterprise Discovery Service Bus,[Guidewire_Software_Inc],[Luca_Debiasi],2014-02-06,,,,, ,7181,tcp,Reserved,,,,,,,, ,7182-7199,,Unassigned,,,,,,,, fodms,7200,tcp,FODMS FLIP,[David_Anthony],[David_Anthony],,,,,, fodms,7200,udp,FODMS FLIP,[David_Anthony],[David_Anthony],,,,,, dlip,7201,tcp,DLIP,[Albert_Manfredi],[Albert_Manfredi],,,,,, dlip,7201,udp,DLIP,[Albert_Manfredi],[Albert_Manfredi],,,,,, | > > > > > > > > > > > > | | > > > | | | | 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 | janus-disc,7181,udp,Janus Guidewire Enterprise Discovery Service Bus,[Guidewire_Software_Inc],[Luca_Debiasi],2014-02-06,,,,, ,7181,tcp,Reserved,,,,,,,, ,7182-7199,,Unassigned,,,,,,,, fodms,7200,tcp,FODMS FLIP,[David_Anthony],[David_Anthony],,,,,, fodms,7200,udp,FODMS FLIP,[David_Anthony],[David_Anthony],,,,,, dlip,7201,tcp,DLIP,[Albert_Manfredi],[Albert_Manfredi],,,,,, dlip,7201,udp,DLIP,[Albert_Manfredi],[Albert_Manfredi],,,,,, pon-ictp,7202,tcp,"Inter-Channel Termination Protocol (ICTP) for multi-wavelength PON (Passive Optical Network) systems",[Broadband_Forum_2],[William_Lupton],2017-02-22,,"[TR-352][Inter-Channel-Termination protocol (ICTP) is a peer-to-peer protocol with a binary message format that is used by a set of optical line terminal (OLT) channel terminations (CT) comprising a 40-Gigabit-capable next-generation passive optical network (NG-PON2) system to exchange channel profile configuration and status information and to coordinate the operation of tunable optical network units (ONUs) in a multi-wavelength channel environment.]",,, ,7702,udp,Reserved,,,,,,,, ,7203-7214,,Unassigned,,,,,,,, PS-Server,7215,tcp,Communication ports for PaperStream Server services,[PFU_Systems_Inc.],[Hari_Asuri],2016-02-26,,,,, ,7215,udp,Reserved,,,,,,,, PS-Capture-Pro,7216,tcp,PaperStream Capture Professional,[PFU_Systems_Inc.],[Hari_Asuri],2016-02-26,,,,, ,7216,udp,Reserved,,,,,,,, ,7217-7226,,Unassigned,,,,,,,, ramp,7227,tcp,Registry A & M Protocol,[John_Havard],[John_Havard],2003-11,,,,, ramp,7227,udp,Registry A & M Protocol,[John_Havard],[John_Havard],2003-11,,,,, citrixupp,7228,tcp,Citrix Universal Printing Port,[Gary_Barton],[Gary_Barton],2011-02-24,,,,, ,7228,udp,Reserved,,,,,,,, citrixuppg,7229,tcp,Citrix UPP Gateway,[Gary_Barton],[Gary_Barton],2011-02-24,,,,, ,7229,udp,Reserved,,,,,,,, ,7230-7234,,Unassigned,,,,,,,, aspcoordination,7235,udp,ASP Coordination Protocol,[Wi-Fi_Alliance_2],[Mick_Conley],2013-12-31,,,,, ,7235,tcp,Reserved,,,,,,,, display,7236,tcp,Wi-Fi Alliance Wi-Fi Display Protocol,[Wi-Fi_Alliance],[Thomas_Sciorilli],2012-04-09,,,,,Defined TXT keys: _display.tcp. Display Protocol ,7236,udp,Reserved,,,,,,,, pads,7237,tcp,PADS (Public Area Display System) Server,[Willie_Jan_Bons],[Willie_Jan_Bons],2011-03-10,,,,, ,7237,udp,Reserved,,,,,,,, ,7238-7243,,Unassigned,,,,,,,, frc-hicp,7244,tcp,FrontRow Calypso Human Interface Control Protocol,[Frontrow_Calypso_LLC],[Scott_Halberg],2016-04-19,,,,, frc-hicp-disc,7244,udp,FrontRow Calypso Human Interface Control Protocol,[Frontrow_Calypso_LLC],[Scott_Halberg],2016-04-19,,,,, ,7245-7261,,Unassigned,,,,,,,, cnap,7262,tcp,Calypso Network Access Protocol,[Frontrow_Calypso_LLC],[Scott_Halberg],2009-06-02,,,,, cnap,7262,udp,Calypso Network Access Protocol,[Frontrow_Calypso_LLC],[Scott_Halberg],2009-06-02,,,,, ,7263-7271,,Unassigned,,,,,,,, watchme-7272,7272,tcp,WatchMe Monitoring 7272,[Oliver_Heinz],[Oliver_Heinz],2005-08,,,,, watchme-7272,7272,udp,WatchMe Monitoring 7272,[Oliver_Heinz],[Oliver_Heinz],2005-08,,,,, oma-rlp,7273,tcp,OMA Roaming Location,[Larry_A_Young],[Larry_A_Young],2005-08,,,,, oma-rlp,7273,udp,OMA Roaming Location,[Larry_A_Young],[Larry_A_Young],2005-08,,,,, oma-rlp-s,7274,tcp,OMA Roaming Location SEC,[Larry_A_Young],[Larry_A_Young],2005-08,,,,, oma-rlp-s,7274,udp,OMA Roaming Location SEC,[Larry_A_Young],[Larry_A_Young],2005-08,,,,, |
10873 10874 10875 10876 10877 10878 10879 | rtps-discovery,7400,tcp,RTPS Discovery,[Gerardo_Pardo_Castel],[Gerardo_Pardo_Castel],2005-10,,,,, rtps-discovery,7400,udp,RTPS Discovery,[Gerardo_Pardo_Castel],[Gerardo_Pardo_Castel],2005-10,,,,, rtps-dd-ut,7401,tcp,RTPS Data-Distribution User-Traffic,[Gerardo_Pardo_Castel],[Gerardo_Pardo_Castel],2005-10,,,,, rtps-dd-ut,7401,udp,RTPS Data-Distribution User-Traffic,[Gerardo_Pardo_Castel],[Gerardo_Pardo_Castel],2005-10,,,,, rtps-dd-mt,7402,tcp,RTPS Data-Distribution Meta-Traffic,[Gerardo_Pardo_Castel],[Gerardo_Pardo_Castel],2005-10,,,,, rtps-dd-mt,7402,udp,RTPS Data-Distribution Meta-Traffic,[Gerardo_Pardo_Castel],[Gerardo_Pardo_Castel],2005-10,,,,, ,7403-7409,,Unassigned,,,,,,,, | | | | > > | 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 | rtps-discovery,7400,tcp,RTPS Discovery,[Gerardo_Pardo_Castel],[Gerardo_Pardo_Castel],2005-10,,,,, rtps-discovery,7400,udp,RTPS Discovery,[Gerardo_Pardo_Castel],[Gerardo_Pardo_Castel],2005-10,,,,, rtps-dd-ut,7401,tcp,RTPS Data-Distribution User-Traffic,[Gerardo_Pardo_Castel],[Gerardo_Pardo_Castel],2005-10,,,,, rtps-dd-ut,7401,udp,RTPS Data-Distribution User-Traffic,[Gerardo_Pardo_Castel],[Gerardo_Pardo_Castel],2005-10,,,,, rtps-dd-mt,7402,tcp,RTPS Data-Distribution Meta-Traffic,[Gerardo_Pardo_Castel],[Gerardo_Pardo_Castel],2005-10,,,,, rtps-dd-mt,7402,udp,RTPS Data-Distribution Meta-Traffic,[Gerardo_Pardo_Castel],[Gerardo_Pardo_Castel],2005-10,,,,, ,7403-7409,,Unassigned,,,,,,,, ionixnetmon,7410,tcp,Ionix Network Monitor,[Maxime_Renaud],[Maxime_Renaud],2006-04,,,,, ionixnetmon,7410,udp,Ionix Network Monitor,[Maxime_Renaud],[Maxime_Renaud],2006-04,,,,, daqstream,7411,tcp,Streaming of measurement data,[Hottinger_Baldwin_Messtechnik_GmbH],[Stephan_Gatzka],2013-03-15,,,,, daqstream,7411,udp,Streaming of measurement data,[Hottinger_Baldwin_Messtechnik_GmbH],[Stephan_Gatzka],2013-03-15,,,,, ,7412-7419,,Unassigned,,,,,,,, ,7420,tcp,Reserved,,,,,,,, ipluminary,7420,udp,Multichannel real-time lighting control,[Tristan_Seifert_3],[Tristan_Seifert_3],2018-01-18,,,,, mtportmon,7421,tcp,Matisse Port Monitor,[Didier_Cabannes],[Didier_Cabannes],2004-11,,,,, mtportmon,7421,udp,Matisse Port Monitor,[Didier_Cabannes],[Didier_Cabannes],2004-11,,,,, ,7422-7425,,Unassigned,,,,,,,, pmdmgr,7426,tcp,OpenView DM Postmaster Manager,[Dave_Lamb],[Dave_Lamb],,,,,, pmdmgr,7426,udp,OpenView DM Postmaster Manager,[Dave_Lamb],[Dave_Lamb],,,,,, oveadmgr,7427,tcp,OpenView DM Event Agent Manager,[Dave_Lamb],[Dave_Lamb],,,,,, oveadmgr,7427,udp,OpenView DM Event Agent Manager,[Dave_Lamb],[Dave_Lamb],,,,,, |
10907 10908 10909 10910 10911 10912 10913 | sttunnel,7471,tcp,Stateless Transport Tunneling Protocol,[Bruce_Davie_3],[Bruce_Davie_3],2014-04-28,,,,, ,7471,udp,Reserved,,,,,,,, ,7472,,Unassigned,,,,,,,, rise,7473,tcp,Rise: The Vieneo Province,[Jason_Reskin],[Jason_Reskin],2007-03,,,,, rise,7473,udp,Rise: The Vieneo Province,[Jason_Reskin],[Jason_Reskin],2007-03,,,,, neo4j,7474,tcp,Neo4j Graph Database,[Neo_Technology_Inc],[Julian_Simpson],2013-02-08,,,,, ,7474,udp,Reserved,,,,,,,, | > > > | | 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 | sttunnel,7471,tcp,Stateless Transport Tunneling Protocol,[Bruce_Davie_3],[Bruce_Davie_3],2014-04-28,,,,, ,7471,udp,Reserved,,,,,,,, ,7472,,Unassigned,,,,,,,, rise,7473,tcp,Rise: The Vieneo Province,[Jason_Reskin],[Jason_Reskin],2007-03,,,,, rise,7473,udp,Rise: The Vieneo Province,[Jason_Reskin],[Jason_Reskin],2007-03,,,,, neo4j,7474,tcp,Neo4j Graph Database,[Neo_Technology_Inc],[Julian_Simpson],2013-02-08,,,,, ,7474,udp,Reserved,,,,,,,, ,7475-7477,,Unassigned,,,,,,,, openit,7478,tcp,IT Asset Management,[OpeniT_Inc],[Monette_Maano],2016-11-17,,,,, ,7478,udp,Reserved,,,,,,,, ,7479-7490,,Unassigned,,,,,,,, telops-lmd,7491,tcp,telops-lmd,[David_Spencer],[David_Spencer],,,,,, telops-lmd,7491,udp,telops-lmd,[David_Spencer],[David_Spencer],,,,,, ,7492-7499,,Unassigned,,,,,,,Known Unauthorized Use on port 7499, silhouette,7500,tcp,Silhouette User,[Anthony_Payne],[Anthony_Payne],2004-02,,,,, silhouette,7500,udp,Silhouette User,[Anthony_Payne],[Anthony_Payne],2004-02,,,,, ovbus,7501,tcp,HP OpenView Bus Daemon,[David_M_Rhodes],[David_M_Rhodes],,,,,Known Unauthorized Use on port 7501, ovbus,7501,udp,HP OpenView Bus Daemon,[David_M_Rhodes],[David_M_Rhodes],,,,,Known Unauthorized Use on port 7501, |
10943 10944 10945 10946 10947 10948 10949 | cwmp,7547,udp,DSL Forum CWMP,[Anton_Okmianski],[Anton_Okmianski],2006-01,,,,, tidp,7548,tcp,Threat Information Distribution Protocol,[Chui_Tin_Yen],[Chui_Tin_Yen],2006-02,,,,, tidp,7548,udp,Threat Information Distribution Protocol,[Chui_Tin_Yen],[Chui_Tin_Yen],2006-02,,,,, nls-tl,7549,tcp,Network Layer Signaling Transport Layer,[Melinda_Shore],[Melinda_Shore],2006-05,,,,, nls-tl,7549,udp,Network Layer Signaling Transport Layer,[Melinda_Shore],[Melinda_Shore],2006-05,,,,, ,7550,tcp,Reserved,,,,,,,, cloudsignaling,7550,udp,Cloud Signaling Service,[Scott_Dawson],[Scott_Dawson],2011-07-01,,,,, | > > | > > > | | 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 | cwmp,7547,udp,DSL Forum CWMP,[Anton_Okmianski],[Anton_Okmianski],2006-01,,,,, tidp,7548,tcp,Threat Information Distribution Protocol,[Chui_Tin_Yen],[Chui_Tin_Yen],2006-02,,,,, tidp,7548,udp,Threat Information Distribution Protocol,[Chui_Tin_Yen],[Chui_Tin_Yen],2006-02,,,,, nls-tl,7549,tcp,Network Layer Signaling Transport Layer,[Melinda_Shore],[Melinda_Shore],2006-05,,,,, nls-tl,7549,udp,Network Layer Signaling Transport Layer,[Melinda_Shore],[Melinda_Shore],2006-05,,,,, ,7550,tcp,Reserved,,,,,,,, cloudsignaling,7550,udp,Cloud Signaling Service,[Scott_Dawson],[Scott_Dawson],2011-07-01,,,,, controlone-con,7551,tcp,ControlONE Console signaling,[BYNE],[Andre_Nazario],2014-11-07,2017-06-13,,,, ,7551,udp,Reserved,,,,,,,, ,7552-7559,,Unassigned,,,,,,,, sncp,7560,tcp,Sniffer Command Protocol,[Dominick_Cafarelli],[Dominick_Cafarelli],2005-08,,,,, sncp,7560,udp,Sniffer Command Protocol,[Dominick_Cafarelli],[Dominick_Cafarelli],2005-08,,,,, ,7561-7562,,Unassigned,,,,,,,, cfw,7563,tcp,Control Framework,,,,,[RFC6230],,, ,7563,udp,Reserved,,,,,,,, ,7564-7565,,Unassigned,,,,,,,, vsi-omega,7566,tcp,VSI Omega,[Curtis_Smith],[Curtis_Smith],,,,,, vsi-omega,7566,udp,VSI Omega,[Curtis_Smith],[Curtis_Smith],,,,,, ,7567-7568,,Unassigned,,,,,,,, dell-eql-asm,7569,tcp,Dell EqualLogic Host Group Management,[James_E_King_III],[James_E_King_III],,,,,, ,7569,udp,Reserved,,,,,,,, aries-kfinder,7570,tcp,Aries Kfinder,[James_King_III],[James_King_III],,,,,, aries-kfinder,7570,udp,Aries Kfinder,[James_King_III],[James_King_III],,,,,, ,7571-7573,,Unassigned,,,,,,,, coherence,7574,tcp,Oracle Coherence Cluster Service,[Oracle_5],[Mark_Falco],2014-07-09,,,,, coherence-disc,7574,udp,Oracle Coherence Cluster discovery service,[Oracle_5],[Mark_Falco],2014-07-09,,,,, ,7575-7587,,Unassigned,,,,,,,, sun-lm,7588,tcp,Sun License Manager,[Sophie_Deng],[Sophie_Deng],,,,,, sun-lm,7588,udp,Sun License Manager,[Sophie_Deng],[Sophie_Deng],,,,,, ,7589-7605,,Unassigned,,,,,,,, mipi-debug,7606,tcp,MIPI Alliance Debug,[MIPI_Alliance],[Peter_Lefkin],2016-02-26,,,,, mipi-debug,7606,udp,MIPI Alliance Debug,[MIPI_Alliance],[Peter_Lefkin],2016-02-26,,,,, ,7607-7623,,Unassigned,,,,,,,, indi,7624,tcp,Instrument Neutral Distributed Interface,[Elwood_Downey],[Elwood_Downey],2002-04,,,,, indi,7624,udp,Instrument Neutral Distributed Interface,[Elwood_Downey],[Elwood_Downey],2002-04,,,,, ,7625,,Unassigned,,,,,,,, simco,7626,tcp,SImple Middlebox COnfiguration (SIMCO) Server,,,,,[RFC4540],,, ,7626,udp,De-registered,,,2006-01-30,,,,, simco,7626,sctp,SImple Middlebox COnfiguration (SIMCO),[Sebastian_Kiesel],[Sebastian_Kiesel],2006-01,,,,, soap-http,7627,tcp,SOAP Service Port,[Donald_Dylla],[Donald_Dylla],2004-12,,,,, |
10986 10987 10988 10989 10990 10991 10992 | ,7631,udp,Reserved,,,,,,,, ,7632,,Unassigned,,,,,,,, pmdfmgt,7633,tcp,PMDF Management,[Hunter_Goatley],[Hunter_Goatley],,,,,, pmdfmgt,7633,udp,PMDF Management,[Hunter_Goatley],[Hunter_Goatley],,,,,, ,7634-7647,,Unassigned,,,,,,,, cuseeme,7648,tcp,bonjour-cuseeme,[Marc_Manthey],[Marc_Manthey],2006-07,,,,, cuseeme,7648,udp,bonjour-cuseeme,[Marc_Manthey],[Marc_Manthey],2006-07,,,,, | > > > | > > > > > > | > > > | > > > | > > > > > > | | 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 | ,7631,udp,Reserved,,,,,,,, ,7632,,Unassigned,,,,,,,, pmdfmgt,7633,tcp,PMDF Management,[Hunter_Goatley],[Hunter_Goatley],,,,,, pmdfmgt,7633,udp,PMDF Management,[Hunter_Goatley],[Hunter_Goatley],,,,,, ,7634-7647,,Unassigned,,,,,,,, cuseeme,7648,tcp,bonjour-cuseeme,[Marc_Manthey],[Marc_Manthey],2006-07,,,,, cuseeme,7648,udp,bonjour-cuseeme,[Marc_Manthey],[Marc_Manthey],2006-07,,,,, ,7649-7662,,Unassigned,,,,,,,, rome,7663,tcp,Proprietary immutable distributed data storage,[TFOR],[David_von_Vistauxx],2018-02-07,,,,, rome,7663,udp,Proprietary immutable distributed data storage,[TFOR],[David_von_Vistauxx],2018-02-07,,,,, ,7664-7671,,Unassigned,,,,,,,, imqstomp,7672,tcp,iMQ STOMP Server,[Amy_Kang],[Amy_Kang],2009-03-10,,,,, ,7672,udp,Reserved,,,,,,,, imqstomps,7673,tcp,iMQ STOMP Server over SSL,[Amy_Kang],[Amy_Kang],2009-03-10,,,,, ,7673,udp,Reserved,,,,,,,, imqtunnels,7674,tcp,iMQ SSL tunnel,[Shailesh_S_Bavadeka],[Shailesh_S_Bavadeka],2002-04,,,,, imqtunnels,7674,udp,iMQ SSL tunnel,[Shailesh_S_Bavadeka],[Shailesh_S_Bavadeka],2002-04,,,,, imqtunnel,7675,tcp,iMQ Tunnel,[Shailesh_S_Bavadeka],[Shailesh_S_Bavadeka],2002-04,,,,, imqtunnel,7675,udp,iMQ Tunnel,[Shailesh_S_Bavadeka],[Shailesh_S_Bavadeka],2002-04,,,,, imqbrokerd,7676,tcp,iMQ Broker Rendezvous,[Joseph_Di_Pol],[Joseph_Di_Pol],2002-04,,,,, imqbrokerd,7676,udp,iMQ Broker Rendezvous,[Joseph_Di_Pol],[Joseph_Di_Pol],2002-04,,,,, sun-user-https,7677,tcp,Sun App Server - HTTPS,[Abhijit_Kumar],[Abhijit_Kumar],2005-11,,,,, sun-user-https,7677,udp,Sun App Server - HTTPS,[Abhijit_Kumar],[Abhijit_Kumar],2005-11,,,,, ,7678-7679,,Unassigned,,,,,,,, pando-pub,7680,tcp,Pando Media Public Distribution,[Laird_Popkin],[Laird_Popkin],2008-02-27,,,,, pando-pub,7680,udp,Pando Media Public Distribution,[Laird_Popkin],[Laird_Popkin],2008-02-27,,,,, ,7681-7682,,Unassigned,,,,,,,, dmt,7683,tcp,Cleondris DMT,[Cleondris_GmbH],[Christian_Plattner],2015-03-31,,,,, ,7683,udp,Reserved,,,,,,,, ,7684-7686,,Unassigned,,,,,,,, bolt,7687,tcp,Bolt database connection,[Neo_Technology_Inc],[Julian_Simpson],2016-09-29,,,,, ,7687,udp,Reserved,,,,,,,, ,7688,,Unassigned,,,,,,,, collaber,7689,tcp,Collaber Network Service,[Rajesh_Akkineni],[Rajesh_Akkineni],2007-01,,,,, collaber,7689,udp,Collaber Network Service,[Rajesh_Akkineni],[Rajesh_Akkineni],2007-01,,,,, ,7690-7696,,Unassigned,,,,,,,, klio,7697,tcp,KLIO communications,[Helmut_Giritzer_2],[Helmut_Giritzer_2],2005-08,,,,, klio,7697,udp,KLIO communications,[Helmut_Giritzer_2],[Helmut_Giritzer_2],2005-08,,,,, ,7698-7699,,Unassigned,,,,,,,, em7-secom,7700,tcp,EM7 Secure Communications,[Christopher_Cordray],[Christopher_Cordray],2008-06-05,,,,, ,7700,udp,Reserved,,,,,,,, ,7701,tcp,Reserved,,,,,,,, ,7701,udp,Reserved,,,,,,,, nfapi,7701,sctp,SCF nFAPI defining MAC/PHY split,[Small_Cell_Forum],[Richard_Kennedy],2017-01-24,,,,, ,7702-7706,,Unassigned,,,,,,,, sync-em7,7707,tcp,EM7 Dynamic Updates,[Christopher_Cordray],[Christopher_Cordray],2004-11,,,,, sync-em7,7707,udp,EM7 Dynamic Updates,[Christopher_Cordray],[Christopher_Cordray],2004-11,,,,, scinet,7708,tcp,scientia.net,[Christoph_Anton_Mitt],[Christoph_Anton_Mitt],2006-01,,,,, scinet,7708,udp,scientia.net,[Christoph_Anton_Mitt],[Christoph_Anton_Mitt],2006-01,,,,, ,7709-7719,,Unassigned,,,,,,,, medimageportal,7720,tcp,MedImage Portal,[Robert_Helton],[Robert_Helton],2003-10,,,,, medimageportal,7720,udp,MedImage Portal,[Robert_Helton],[Robert_Helton],2003-10,,,,, ,7721-7723,,Unassigned,,,,,,,, nsdeepfreezectl,7724,tcp,Novell Snap-in Deep Freeze Control,[David_Crowe],[David_Crowe],2008-01-07,,,,, nsdeepfreezectl,7724,udp,Novell Snap-in Deep Freeze Control,[David_Crowe],[David_Crowe],2008-01-07,,,,, nitrogen,7725,tcp,Nitrogen Service,[Randy_Lomnes],[Randy_Lomnes],2004-11,,,,, nitrogen,7725,udp,Nitrogen Service,[Randy_Lomnes],[Randy_Lomnes],2004-11,,,,, freezexservice,7726,tcp,FreezeX Console Service,[David_Crowe],[David_Crowe],2005-06,,,,, freezexservice,7726,udp,FreezeX Console Service,[David_Crowe],[David_Crowe],2005-06,,,,, trident-data,7727,tcp,Trident Systems Data,[Jeremy_McClintock],[Jeremy_McClintock],2005-08,,,,, trident-data,7727,udp,Trident Systems Data,[Jeremy_McClintock],[Jeremy_McClintock],2005-08,,,,, osvr,7728,tcp,Open-Source Virtual Reality,[Open_Source_Virtual_Reality_OSVR.com],[Yuval_Boger_2],2015-07-14,,,,, osvr,7728,udp,Open-Source Virtual Reality,[Open_Source_Virtual_Reality_OSVR.com],[Yuval_Boger_2],2015-07-14,,,,, osvr,7728,sctp,Open-Source Virtual Reality,[Open_Source_Virtual_Reality_OSVR.com],[Yuval_Boger_2],2015-07-14,,,,, ,7729-7733,,Unassigned,,,,,,,, smip,7734,tcp,Smith Protocol over IP,[Jim_Pettinato],[Jim_Pettinato],2007-04,,,,, smip,7734,udp,Smith Protocol over IP,[Jim_Pettinato],[Jim_Pettinato],2007-04,,,,, ,7735-7737,,Unassigned,,,,,,,, aiagent,7738,tcp,HP Enterprise Discovery Agent,[Matthew_Darwin],[Matthew_Darwin],2005-08,,,,, aiagent,7738,udp,HP Enterprise Discovery Agent,[Matthew_Darwin],[Matthew_Darwin],2005-08,,,,, ,7739-7740,,Unassigned,,,,,,,, scriptview,7741,tcp,ScriptView Network,[Reinhard_Wolf],[Reinhard_Wolf],2010-08-19,,,,, scriptview,7741,udp,ScriptView Network,[Reinhard_Wolf],[Reinhard_Wolf],2010-08-19,,,,, msss,7742,tcp,Mugginsoft Script Server Service,[Jonathan_Mitchell],[Jonathan_Mitchell],2008-09-08,,,,, ,7742,udp,Reserved,,,,,,,, sstp-1,7743,tcp,Sakura Script Transfer Protocol,[Kouichi_Takeda],[Kouichi_Takeda],,,,,, sstp-1,7743,udp,Sakura Script Transfer Protocol,[Kouichi_Takeda],[Kouichi_Takeda],,,,,, raqmon-pdu,7744,tcp,RAQMON PDU,,,,,[RFC4712],,, raqmon-pdu,7744,udp,RAQMON PDU,,,,,[RFC4712],,, ,7745-7746,,Unassigned,,,,,,,, prgp,7747,tcp,Put/Run/Get Protocol,[Jayasooriah],[Jayasooriah],2008-02-22,,,,, prgp,7747,udp,Put/Run/Get Protocol,[Jayasooriah],[Jayasooriah],2008-02-22,,,,, ,7748-7776,,Unassigned,,,,,,,, inetfs,7775,tcp,A File System using TLS over a wide area network,[Roger_Allan],[Roger_Allan],2016-01-28,,,,, ,7775,udp,Reserved,,,,,,,, ,7776,,Unassigned,,,,,,,, cbt,7777,tcp,cbt,[Tony_Ballardie],[Tony_Ballardie],,,,,Known Unauthorized Use on port 7777, cbt,7777,udp,cbt,[Tony_Ballardie],[Tony_Ballardie],,,,,Known Unauthorized Use on port 7777, interwise,7778,tcp,Interwise,[Joseph_Gray],[Joseph_Gray],,,,,, interwise,7778,udp,Interwise,[Joseph_Gray],[Joseph_Gray],,,,,, vstat,7779,tcp,VSTAT,[Vinh_Nguyn],[Vinh_Nguyn],,,,,, vstat,7779,udp,VSTAT,[Vinh_Nguyn],[Vinh_Nguyn],,,,,, ,7780,,Unassigned,,,,,,,, accu-lmgr,7781,tcp,accu-lmgr,[Moises_E_Hernandez],[Moises_E_Hernandez],,,,,, accu-lmgr,7781,udp,accu-lmgr,[Moises_E_Hernandez],[Moises_E_Hernandez],,,,,, ,7782-7783,,Unassigned,,,,,,,, s-bfd,7784,udp,Seamless Bidirectional Forwarding Detection (S-BFD),[IESG],[IETF_Chair],2014-12-24,2016-07-14,[RFC7881],,, ,7784,tcp,Reserved,,,,,,,, ,7785,,Unassigned,,,,,,,Known Unauthorized Use on port 7785, minivend,7786,tcp,MINIVEND,[Mike_Heins],[Mike_Heins],,,,,Known Unauthorized Use on port 7786, minivend,7786,udp,MINIVEND,[Mike_Heins],[Mike_Heins],,,,,Known Unauthorized Use on port 7786, popup-reminders,7787,tcp,Popup Reminders Receive,[Robert_Harvey],[Robert_Harvey],2006-01,,,,Known Unauthorized Use on port 7787, popup-reminders,7787,udp,Popup Reminders Receive,[Robert_Harvey],[Robert_Harvey],2006-01,,,,Known Unauthorized Use on port 7787, ,7788,,Unassigned,,,,,,,Known Unauthorized Use on port 7788, office-tools,7789,tcp,Office Tools Pro Receive,[Robert_Harvey],[Robert_Harvey],2006-01,,,,Known Unauthorized Use on port 7789, office-tools,7789,udp,Office Tools Pro Receive,[Robert_Harvey],[Robert_Harvey],2006-01,,,,Known Unauthorized Use on port 7789, |
11155 11156 11157 11158 11159 11160 11161 | irdmi,8000,udp,iRDMI,[Gil_Shafriri],[Gil_Shafriri],,,,,, vcom-tunnel,8001,tcp,VCOM Tunnel,[Mark_Lewandowski],[Mark_Lewandowski],,,,,Known Unauthorized Use on port 8001, vcom-tunnel,8001,udp,VCOM Tunnel,[Mark_Lewandowski],[Mark_Lewandowski],,,,,Known Unauthorized Use on port 8001, teradataordbms,8002,tcp,Teradata ORDBMS,[Curt_Ellmann],[Curt_Ellmann],,,,,, teradataordbms,8002,udp,Teradata ORDBMS,[Curt_Ellmann],[Curt_Ellmann],,,,,, mcreport,8003,tcp,Mulberry Connect Reporting Service,[Dave_Stoneham],[Dave_Stoneham],2008-03-10,,,,, mcreport,8003,udp,Mulberry Connect Reporting Service,[Dave_Stoneham],[Dave_Stoneham],2008-03-10,,,,, | > | < > > > > > > > > > > > > | > > | | > | 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 | irdmi,8000,udp,iRDMI,[Gil_Shafriri],[Gil_Shafriri],,,,,, vcom-tunnel,8001,tcp,VCOM Tunnel,[Mark_Lewandowski],[Mark_Lewandowski],,,,,Known Unauthorized Use on port 8001, vcom-tunnel,8001,udp,VCOM Tunnel,[Mark_Lewandowski],[Mark_Lewandowski],,,,,Known Unauthorized Use on port 8001, teradataordbms,8002,tcp,Teradata ORDBMS,[Curt_Ellmann],[Curt_Ellmann],,,,,, teradataordbms,8002,udp,Teradata ORDBMS,[Curt_Ellmann],[Curt_Ellmann],,,,,, mcreport,8003,tcp,Mulberry Connect Reporting Service,[Dave_Stoneham],[Dave_Stoneham],2008-03-10,,,,, mcreport,8003,udp,Mulberry Connect Reporting Service,[Dave_Stoneham],[Dave_Stoneham],2008-03-10,,,,, p2pevolvenet,8004,tcp,Opensource Evolv Enterprise Platform P2P Network Node Connection Protocol,[Tris_Puki],[Adrians_Borsteins],2018-01-16,,,,, ,8004,udp,Reserved,,,,,,,, mxi,8005,tcp,MXI Generation II for z/OS,[Rob_Scott],[Rob_Scott],2007-05,,,,, mxi,8005,udp,MXI Generation II for z/OS,[Rob_Scott],[Rob_Scott],2007-05,,,,, wpl-analytics,8006,tcp,World Programming analytics,[World_Programming_Limited],[Thomas_Quarendon],2017-04-04,,,,, wpl-disc,8006,udp,World Programming analytics discovery,[World_Programming_Limited],[Thomas_Quarendon],2017-04-04,,,,, warppipe,8007,tcp,I/O oriented cluster computing software,[MirrorWeb_LTD],[Jonathan_Kingsley],2017-07-19,,,,, warppipe,8007,udp,I/O oriented cluster computing software,[MirrorWeb_LTD],[Jonathan_Kingsley],2017-07-19,,,,, http-alt,8008,tcp,HTTP Alternate,[James_Gettys],[James_Gettys],,,,,, http-alt,8008,udp,HTTP Alternate,[James_Gettys],[James_Gettys],,,,,, nvme-disc,8009,tcp,NVMe over Fabrics Discovery Service,[NVM_Express_Inc],[Amber_Huffman],2018-03-27,,,,, ,8009,udp,Reserved,,,,,,,, ,8010,,Reserved,,,,2018-01-09,,,yes, ,8011-8014,,Unassigned,,,,,,,, cfg-cloud,8015,tcp,Configuration Cloud Service,[admin_at_cfg_cloud],[Goksel_Darcan],2019-01-09,,,,, ,8015,udp,Reserved,,,,,,,, ads-s,8016,tcp,Beckhoff Automation Device Specification,[Beckhoff_Automation_GmbH_Co_KG],[Henning_Mersch_2],2019-02-28,,,,, ,8016,udp,Reserved,,,,,,,, ,8017-8018,,Unassigned,,,,,,,, qbdb,8019,tcp,QB DB Dynamic Port,[Sridhar_Krishnamurth],[Sridhar_Krishnamurth],2008-02-15,,,,, qbdb,8019,udp,QB DB Dynamic Port,[Sridhar_Krishnamurth],[Sridhar_Krishnamurth],2008-02-15,,,,, intu-ec-svcdisc,8020,tcp,Intuit Entitlement Service and Discovery,[Daniel_C_McGloin],[Daniel_C_McGloin],2005-05,,,,, intu-ec-svcdisc,8020,udp,Intuit Entitlement Service and Discovery,[Daniel_C_McGloin],[Daniel_C_McGloin],2005-05,,,,, intu-ec-client,8021,tcp,Intuit Entitlement Client,[Daniel_C_McGloin],[Daniel_C_McGloin],2005-05,,,,, intu-ec-client,8021,udp,Intuit Entitlement Client,[Daniel_C_McGloin],[Daniel_C_McGloin],2005-05,,,,, oa-system,8022,tcp,oa-system,[Marie_France_Dubreui],[Marie_France_Dubreui],,,,,, oa-system,8022,udp,oa-system,[Marie_France_Dubreui],[Marie_France_Dubreui],,,,,, arca-api,8023,tcp,ARCATrust vault API,[ARCATrust_SA],[Yacince_Felk],2018-07-05,,,,, arca-api,8023,udp,ARCATrust vault API,[ARCATrust_SA],[Yacince_Felk],2018-07-05,,,,, ,8024,,Unassigned,,,,,,,, ca-audit-da,8025,tcp,CA Audit Distribution Agent,[Henning_Smith],[Henning_Smith],2006-07,,,,, ca-audit-da,8025,udp,CA Audit Distribution Agent,[Henning_Smith],[Henning_Smith],2006-07,,,,, ca-audit-ds,8026,tcp,CA Audit Distribution Server,[Henning_Smith],[Henning_Smith],2006-07,,,,, ca-audit-ds,8026,udp,CA Audit Distribution Server,[Henning_Smith],[Henning_Smith],2006-07,,,,, ,8027-8031,,Unassigned,,,,,,,, pro-ed,8032,tcp,ProEd,,,,,,,, pro-ed,8032,udp,ProEd,,,,,,,, mindprint,8033,tcp,MindPrint,[Larry_Tusoni],[Larry_Tusoni],,,,,, mindprint,8033,udp,MindPrint,[Larry_Tusoni],[Larry_Tusoni],,,,,, vantronix-mgmt,8034,tcp,.vantronix Management,[Reyk_Floeter],[Reyk_Floeter],2008-02-27,,,,, vantronix-mgmt,8034,udp,.vantronix Management,[Reyk_Floeter],[Reyk_Floeter],2008-02-27,,,,, ,8035-8039,,Unassigned,,,,,,,, ampify,8040,tcp,Ampify Messaging Protocol,[Tav_Espian],[Tav_Espian],2010-08-10,,,,, ampify,8040,udp,Ampify Messaging Protocol,[Tav_Espian],[Tav_Espian],2010-08-10,,,,, enguity-xccetp,8041,tcp,Xcorpeon ASIC Carrier Ethernet Transport,[Enguity_Technology_Corp],[Kraig_Beahn_Jr],2017-06-28,,,,, enguity-xccetp,8041,udp,Xcorpeon ASIC Carrier Ethernet Transport,[Enguity_Technology_Corp],[Kraig_Beahn_Jr],2017-06-28,,,,, fs-agent,8042,tcp,FireScope Agent,[Matt_Rogers],[Matt_Rogers],2008-10-16,,,,, ,8042,udp,Reserved,,,,,,,, fs-server,8043,tcp,FireScope Server,[Matt_Rogers],[Matt_Rogers],2008-10-16,,,,, ,8043,udp,Reserved,,,,,,,, fs-mgmt,8044,tcp,FireScope Management Interface,[Matt_Rogers],[Matt_Rogers],2008-10-16,,,,, ,8044,udp,Reserved,,,,,,,, ,8045-8050,,Unassigned,,,,,,,, |
11216 11217 11218 11219 11220 11221 11222 | senomix08,8059,tcp,Senomix Timesheets Client [1 year assignment],[Charles_O_Dale],[Charles_O_Dale],2006-07,,,,, senomix08,8059,udp,Senomix Timesheets Client [1 year assignment],[Charles_O_Dale],[Charles_O_Dale],2006-07,,,,, ,8060,tcp,Reserved,,,,,,,, aero,8060,udp,Asymmetric Extended Route Optimization (AERO),[IESG],[IETF_Chair],,,[RFC6706],,, ,8061-8065,,Unassigned,,,,,,,, toad-bi-appsrvr,8066,tcp,Toad BI Application Server,[Quest_Software_2],[Greg_Cottman_3],2013-04-19,,,,, ,8066,udp,Reserved,,,,,,,, | > > > > > | > > > > > | > > | | > > > > > | | 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 | senomix08,8059,tcp,Senomix Timesheets Client [1 year assignment],[Charles_O_Dale],[Charles_O_Dale],2006-07,,,,, senomix08,8059,udp,Senomix Timesheets Client [1 year assignment],[Charles_O_Dale],[Charles_O_Dale],2006-07,,,,, ,8060,tcp,Reserved,,,,,,,, aero,8060,udp,Asymmetric Extended Route Optimization (AERO),[IESG],[IETF_Chair],,,[RFC6706],,, ,8061-8065,,Unassigned,,,,,,,, toad-bi-appsrvr,8066,tcp,Toad BI Application Server,[Quest_Software_2],[Greg_Cottman_3],2013-04-19,,,,, ,8066,udp,Reserved,,,,,,,, infi-async,8067,tcp,Infinidat async replication,[INFINIDAT],[Eldar_Kleiner],2015-05-01,,,,, ,8067,udp,Reserved,,,,,,,, ,8068-8069,,Unassigned,,,,,,,, ucs-isc,8070,tcp,Oracle Unified Communication Suite's Indexed Search Converter,[Oracle_Corp],[Bharathi_Sivaramakrishnan],2017-02-10,,,,, ,8070,udp,Reserved,,,,,,,, ,8071-8073,,Unassigned,,,,,,,, gadugadu,8074,tcp,Gadu-Gadu,[Marcin_Gozdalik],[Marcin_Gozdalik],2006-05,,,,, gadugadu,8074,udp,Gadu-Gadu,[Marcin_Gozdalik],[Marcin_Gozdalik],2006-05,,,,, ,8075-8076,,Unassigned,,,,,,,, mles,8077,tcp,"Mles is a client-server data distribution protocol targeted to serve as a lightweight and reliable distributed publish/subscribe database service.",[Juhamatti_Kuusisaari],[Juhamatti_Kuusisaari],2017-02-24,,,,, ,8077,udp,Reserved,,,,,,,, ,8078-8079,,Unassigned,,,,,,,, http-alt,8080,tcp,HTTP Alternate (see port 80),[Stephen_Casner],[Stephen_Casner],,,,,, http-alt,8080,udp,HTTP Alternate (see port 80),[Stephen_Casner],[Stephen_Casner],,,,,, sunproxyadmin,8081,tcp,Sun Proxy Admin Service,[Arvind_Srinivasan],[Arvind_Srinivasan],2005-08,,,,, sunproxyadmin,8081,udp,Sun Proxy Admin Service,[Arvind_Srinivasan],[Arvind_Srinivasan],2005-08,,,,, us-cli,8082,tcp,Utilistor (Client),[Andy_Brewerton],[Andy_Brewerton],2005-08,,,,, us-cli,8082,udp,Utilistor (Client),[Andy_Brewerton],[Andy_Brewerton],2005-08,,,,, us-srv,8083,tcp,Utilistor (Server),[Andy_Brewerton],[Andy_Brewerton],2005-08,,,,, us-srv,8083,udp,Utilistor (Server),[Andy_Brewerton],[Andy_Brewerton],2005-08,,,,, websnp,8084,tcp,Snarl Network Protocol over HTTP,[full_phat_products],[Chris_Peel_2],2019-08-08,,,,, ,8084,udp,Reserved,,,,,,,, ,8085,,Unassigned,,,,,,,, d-s-n,8086,tcp,Distributed SCADA Networking Rendezvous Port,[Gary_Hampton],[Gary_Hampton],2008-02-27,,,,, d-s-n,8086,udp,Distributed SCADA Networking Rendezvous Port,[Gary_Hampton],[Gary_Hampton],2008-02-27,,,,, simplifymedia,8087,tcp,Simplify Media SPP Protocol,[Emmanuel_Saint_Loube],[Emmanuel_Saint_Loube],2008-08-08,,,,, simplifymedia,8087,udp,Simplify Media SPP Protocol,[Emmanuel_Saint_Loube],[Emmanuel_Saint_Loube],2008-08-08,,,,, radan-http,8088,tcp,Radan HTTP,[Steve_Hay],[Steve_Hay],2008-06-13,,,,, radan-http,8088,udp,Radan HTTP,[Steve_Hay],[Steve_Hay],2008-06-13,,,,, ,8089,,Unassigned,,,,,,,, opsmessaging,8090,tcp,Vehicle to station messaging,[LAN-ACES_Inc],[Robert_Ripberger],2017-02-08,,,,, ,8090,udp,Reserved,,,,,,,, jamlink,8091,tcp,Jam Link Framework,[Evgeniy_Filatov],[Evgeniy_Filatov],2009-11-25,,,,, ,8091,udp,Reserved,,,,,,,, ,8092-8096,,Unassigned,,,,,,,, sac,8097,tcp,SAC Port Id,[Girish_Bhat],[Girish_Bhat],2006-04,,,,, sac,8097,udp,SAC Port Id,[Girish_Bhat],[Girish_Bhat],2006-04,,,,, ,8098-8099,,Unassigned,,,,,,,, xprint-server,8100,tcp,Xprint Server,[John_McKernan],[John_McKernan],,,,,, xprint-server,8100,udp,Xprint Server,[John_McKernan],[John_McKernan],,,,,, ldoms-migr,8101,tcp,Logical Domains Migration,[Liam_Merwick],[Liam_Merwick],2009-01-16,,,,, ,8101,udp,Reserved,,,,,,,, kz-migr,8102,tcp,Oracle Kernel zones migration server,[Oracle_4],[John_Levon],2013-12-24,,,,, ,8102,udp,Reserved,,,,,,,, ,8103-8110,,Unassigned,,,,,,,, ,8111,tcp,Reserved,,,,,,,, skynetflow,8111,udp,Skynetflow network services,[skynetflow.com],[Dmitrii_Ogarkov],2019-05-28,,,,, ,8112-8114,,Unassigned,,,,,,,, mtl8000-matrix,8115,tcp,MTL8000 Matrix,[David_Pinch],[David_Pinch],2002-04,,,,, mtl8000-matrix,8115,udp,MTL8000 Matrix,[David_Pinch],[David_Pinch],2002-04,,,,, cp-cluster,8116,tcp,Check Point Clustering,[Roni_Moshitzky],[Roni_Moshitzky],,,,,, cp-cluster,8116,udp,Check Point Clustering,[Roni_Moshitzky],[Roni_Moshitzky],,,,,, purityrpc,8117,tcp,Purity replication clustering and remote management,[Pure_Storage],[Steve_Hodgson],2013-08-13,,,,, ,8117,udp,Reserved,,,,,,,, privoxy,8118,tcp,Privoxy HTTP proxy,[Andreas_Oesterhelt],[Andreas_Oesterhelt],2002-06,,,,, |
11274 11275 11276 11277 11278 11279 11280 | indigo-vrmi,8130,tcp,INDIGO-VRMI,[Colin_Caughie],[Colin_Caughie],,,,,, indigo-vrmi,8130,udp,INDIGO-VRMI,[Colin_Caughie],[Colin_Caughie],,,,,, indigo-vbcp,8131,tcp,INDIGO-VBCP,[Colin_Caughie],[Colin_Caughie],,,,,, indigo-vbcp,8131,udp,INDIGO-VBCP,[Colin_Caughie],[Colin_Caughie],,,,,, dbabble,8132,tcp,dbabble,[Chris_Pugmire],[Chris_Pugmire],,,,,, dbabble,8132,udp,dbabble,[Chris_Pugmire],[Chris_Pugmire],,,,,, ,8133-8139,,Unassigned,,,,,,,, | | | 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 | indigo-vrmi,8130,tcp,INDIGO-VRMI,[Colin_Caughie],[Colin_Caughie],,,,,, indigo-vrmi,8130,udp,INDIGO-VRMI,[Colin_Caughie],[Colin_Caughie],,,,,, indigo-vbcp,8131,tcp,INDIGO-VBCP,[Colin_Caughie],[Colin_Caughie],,,,,, indigo-vbcp,8131,udp,INDIGO-VBCP,[Colin_Caughie],[Colin_Caughie],,,,,, dbabble,8132,tcp,dbabble,[Chris_Pugmire],[Chris_Pugmire],,,,,, dbabble,8132,udp,dbabble,[Chris_Pugmire],[Chris_Pugmire],,,,,, ,8133-8139,,Unassigned,,,,,,,, puppet,8140,tcp,The Puppet master service,[Puppet],[Charles_Dunbar],2014-09-18,,,,, ,8140,udp,Reserved,,,,,,,, ,8141-8147,,Unassigned,,,,,,,, isdd,8148,tcp,i-SDD file transfer,[Frank_Waarsenburg],[Frank_Waarsenburg],2004-11,,,,, isdd,8148,udp,i-SDD file transfer,[Frank_Waarsenburg],[Frank_Waarsenburg],2004-11,,,,, ,8149,tcp,Reserved,,,,,,,, eor-game,8149,udp,Edge of Reality game data,[Sky_Schulz],[Sky_Schulz],2011-05-09,,,,, ,8150-8152,,Unassigned,,,,,,,, |
11300 11301 11302 11303 11304 11305 11306 | ,8181,udp,Reserved,,,,,,,, vmware-fdm,8182,tcp,VMware Fault Domain Manager,[Ron_Passerini],[Ron_Passerini],2010-04-27,,,,, vmware-fdm,8182,udp,VMware Fault Domain Manager,[Ron_Passerini],[Ron_Passerini],2010-04-27,,,,, proremote,8183,tcp,ProRemote,[Alex_Lelievre],[Alex_Lelievre],2009-08-18,,,,, ,8183,udp,Reserved,,,,,,,, itach,8184,tcp,Remote iTach Connection,[Barend_Jacobus_van_d],[Barend_Jacobus_van_d],2010-04-27,,,,, itach,8184,udp,Remote iTach Connection,[Barend_Jacobus_van_d],[Barend_Jacobus_van_d],2010-04-27,,,,, | | > > | 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 | ,8181,udp,Reserved,,,,,,,, vmware-fdm,8182,tcp,VMware Fault Domain Manager,[Ron_Passerini],[Ron_Passerini],2010-04-27,,,,, vmware-fdm,8182,udp,VMware Fault Domain Manager,[Ron_Passerini],[Ron_Passerini],2010-04-27,,,,, proremote,8183,tcp,ProRemote,[Alex_Lelievre],[Alex_Lelievre],2009-08-18,,,,, ,8183,udp,Reserved,,,,,,,, itach,8184,tcp,Remote iTach Connection,[Barend_Jacobus_van_d],[Barend_Jacobus_van_d],2010-04-27,,,,, itach,8184,udp,Remote iTach Connection,[Barend_Jacobus_van_d],[Barend_Jacobus_van_d],2010-04-27,,,,, ,8185-8189,,Unassigned,,,,,,,, gcp-rphy,8190,tcp,Generic control plane for RPHY,[CableLabs],[Karthik_Sundaresan],2015-11-24,,,,, ,8190,udp,Reserved,,,,,,,, limnerpressure,8191,tcp,Limner Pressure,[Aaron_Kleinsteiber],[Aaron_Kleinsteiber],2014-01-16,,,,, ,8191,udp,Reserved,,,,,,,, spytechphone,8192,tcp,SpyTech Phone Service,[Bill_Kay],[Bill_Kay],2006-04,,,,, spytechphone,8192,udp,SpyTech Phone Service,[Bill_Kay],[Bill_Kay],2006-04,,,,, ,8193,,Unassigned,,,,,,,, blp1,8194,tcp,Bloomberg data API,[Albert_Hou],[Albert_Hou],2006-05,,,,, blp1,8194,udp,Bloomberg data API,[Albert_Hou],[Albert_Hou],2006-05,,,,, |
11330 11331 11332 11333 11334 11335 11336 | lm-instmgr,8205,udp,LM Instmgr,[Chris_Flynn],[Chris_Flynn],,,,,, lm-dta,8206,tcp,LM Dta,[Chris_Flynn],[Chris_Flynn],,,,,, lm-dta,8206,udp,LM Dta,[Chris_Flynn],[Chris_Flynn],,,,,, lm-sserver,8207,tcp,LM SServer,[Chris_Flynn],[Chris_Flynn],,,,,, lm-sserver,8207,udp,LM SServer,[Chris_Flynn],[Chris_Flynn],,,,,, lm-webwatcher,8208,tcp,LM Webwatcher,[Chris_Flynn],[Chris_Flynn],,,,,, lm-webwatcher,8208,udp,LM Webwatcher,[Chris_Flynn],[Chris_Flynn],,,,,, | > > > | > > > > | > > > > > > | > > > > > | > > | > > | > > > | | 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 | lm-instmgr,8205,udp,LM Instmgr,[Chris_Flynn],[Chris_Flynn],,,,,, lm-dta,8206,tcp,LM Dta,[Chris_Flynn],[Chris_Flynn],,,,,, lm-dta,8206,udp,LM Dta,[Chris_Flynn],[Chris_Flynn],,,,,, lm-sserver,8207,tcp,LM SServer,[Chris_Flynn],[Chris_Flynn],,,,,, lm-sserver,8207,udp,LM SServer,[Chris_Flynn],[Chris_Flynn],,,,,, lm-webwatcher,8208,tcp,LM Webwatcher,[Chris_Flynn],[Chris_Flynn],,,,,, lm-webwatcher,8208,udp,LM Webwatcher,[Chris_Flynn],[Chris_Flynn],,,,,, ,8209-8210,,Unassigned,,,,,,,, ,8211,tcp,Reserved,,,,,,,, aruba-papi,8211,udp,Aruba Networks AP management,[Aruba_Networks],[Jon_Green],2018-10-04,,,,, ,8212-8229,,Unassigned,,,,,,,, rexecj,8230,tcp,RexecJ Server,[Curtiss_Howard],[Curtiss_Howard],2004-11,,,,, rexecj,8230,udp,RexecJ Server,[Curtiss_Howard],[Curtiss_Howard],2004-11,,,,, ,8231,tcp,Reserved,,,,,,,, hncp-udp-port,8231,udp,HNCP,[IESG],[IETF_Chair],2016-01-13,,[RFC7788],,, ,8232,tcp,Reserved,,,,,,,, hncp-dtls-port,8232,udp,HNCP over DTLS,[IESG],[IETF_Chair],2016-01-13,,[RFC7788],,, ,8233-8242,,Unassigned,,,,,,,, synapse-nhttps,8243,tcp,Synapse Non Blocking HTTPS,[Ruwan_Linton],[Ruwan_Linton],2008-07-10,,,,, synapse-nhttps,8243,udp,Synapse Non Blocking HTTPS,[Ruwan_Linton],[Ruwan_Linton],2008-07-10,,,,, ,8244-8265,,Unassigned,,,,,,,, ,8266,tcp,Reserved,,,,,,,, espeasy-p2p,8266,udp,ESPeasy peer-2-peer communication,[ESPeasy],[Gijs_Noorlander],2018-11-28,,,,, ,8267-8269,,Unassigned,,,,,,,, robot-remote,8270,tcp,Robot Framework Remote Library Interface,[Robot_Framework_Foundation],[Chris_Newman],2017-01-26,,,,, ,8270,udp,Reserved,,,,,,,, ,8271-8275,,Unassigned,,,,,,,, pando-sec,8276,tcp,Pando Media Controlled Distribution,[Laird_Popkin],[Laird_Popkin],2008-02-27,,,,, pando-sec,8276,udp,Pando Media Controlled Distribution,[Laird_Popkin],[Laird_Popkin],2008-02-27,,,,, ,8277-8279,,Unassigned,,,,,,,, synapse-nhttp,8280,tcp,Synapse Non Blocking HTTP,[Ruwan_Linton],[Ruwan_Linton],2008-06-05,,,,, synapse-nhttp,8280,udp,Synapse Non Blocking HTTP,[Ruwan_Linton],[Ruwan_Linton],2008-06-05,,,,, ,8281,,Unassigned,,,,,,,, libelle,8282,tcp,Libelle EnterpriseBus,[Libelle_AG],[Hans-Joachim_Krueger],2016-02-17,,,,, libelle-disc,8282,udp,Libelle EnterpriseBus discovery,[Libelle_AG],[Hans-Joachim_Krueger],2016-02-17,,,,, ,8282,sctp,Reserved,,,,,,,, ,8282,dccp,Reserved,,,,,,,, ,8283-8291,,Unassigned,,,,,,,, blp3,8292,tcp,Bloomberg professional,[Albert_Hou],[Albert_Hou],2006-05,,,,, blp3,8292,udp,Bloomberg professional,[Albert_Hou],[Albert_Hou],2006-05,,,,, hiperscan-id,8293,tcp,Hiperscan Identification Service,[Thomas_Klose],[Thomas_Klose],2009-12-15,,,,, ,8293,udp,Reserved,,,,,,,, blp4,8294,tcp,Bloomberg intelligent client,[Albert_Hou],[Albert_Hou],2006-05,,,,, blp4,8294,udp,Bloomberg intelligent client,[Albert_Hou],[Albert_Hou],2006-05,,,,, ,8295-8299,,Unassigned,,,,,,,, tmi,8300,tcp,Transport Management Interface,[Steve_Kneizys],[Steve_Kneizys],2006-11,,,,, tmi,8300,udp,Transport Management Interface,[Steve_Kneizys],[Steve_Kneizys],2006-11,,,,, amberon,8301,tcp,Amberon PPC/PPS,[Ronald_Snyder],[Ronald_Snyder],2006-03,,,,, amberon,8301,udp,Amberon PPC/PPS,[Ronald_Snyder],[Ronald_Snyder],2006-03,,,,, ,8302-8312,,Unassigned,,,,,,,, hub-open-net,8313,tcp,Hub Open Network,[Grexie],[Tim_Behrsin],2012-06-13,,,,,Defined TXT keys: _hub._tcp.host.example.com ,8313,udp,Reserved,,,,,,,, ,8314-8319,,Unassigned,,,,,,,, tnp-discover,8320,tcp,Thin(ium) Network Protocol,[Aly_Orady],[Aly_Orady],2007-08-07,,,,, tnp-discover,8320,udp,Thin(ium) Network Protocol,[Aly_Orady],[Aly_Orady],2007-08-07,,,,, tnp,8321,tcp,Thin(ium) Network Protocol,[Aly_Orady],[Aly_Orady],2007-08-07,,,,, tnp,8321,udp,Thin(ium) Network Protocol,[Aly_Orady],[Aly_Orady],2007-08-07,,,,, garmin-marine,8322,tcp,Garmin Marine,[Garmin_International_Inc],[Nathan_Karstens],2015-07-23,,,,, garmin-marine,8322,udp,Garmin Marine,[Garmin_International_Inc],[Nathan_Karstens],2015-07-23,,,,, ,8323-8350,,Unassigned,,,,,,,, server-find,8351,tcp,Server Find,[Chris_Brown],[Chris_Brown],,,,,, server-find,8351,udp,Server Find,[Chris_Brown],[Chris_Brown],,,,,, ,8352-8375,,Unassigned,,,,,,,, cruise-enum,8376,tcp,Cruise ENUM,[Steve_Husak],[Steve_Husak],,,,,, cruise-enum,8376,udp,Cruise ENUM,[Steve_Husak],[Steve_Husak],,,,,, cruise-swroute,8377,tcp,Cruise SWROUTE,[Steve_Husak],[Steve_Husak],,,,,, cruise-swroute,8377,udp,Cruise SWROUTE,[Steve_Husak],[Steve_Husak],,,,,, cruise-config,8378,tcp,Cruise CONFIG,[Steve_Husak],[Steve_Husak],,,,,, cruise-config,8378,udp,Cruise CONFIG,[Steve_Husak],[Steve_Husak],,,,,, cruise-diags,8379,tcp,Cruise DIAGS,[Steve_Husak],[Steve_Husak],,,,,, cruise-diags,8379,udp,Cruise DIAGS,[Steve_Husak],[Steve_Husak],,,,,, cruise-update,8380,tcp,Cruise UPDATE,[Steve_Husak],[Steve_Husak],,,,,, cruise-update,8380,udp,Cruise UPDATE,[Steve_Husak],[Steve_Husak],,,,,, ,8381-8382,,Unassigned,,,,,,,, m2mservices,8383,tcp,M2m Services,[Carlos_Arteaga_2],[Carlos_Arteaga_2],2004-11,,,,, m2mservices,8383,udp,M2m Services,[Carlos_Arteaga_2],[Carlos_Arteaga_2],2004-11,,,,, marathontp,8384,udp,Marathon Transport Protocol,[Inertia_Systemes],[Jasmin_Blouin],2015-06-11,,,,, ,8384,tcp,Reserved,,,,,,,, ,8385-8399,,Unassigned,,,,,,,, cvd,8400,tcp,cvd,[Aaron_Bilbrey],[Aaron_Bilbrey],,,,,, cvd,8400,udp,cvd,[Aaron_Bilbrey],[Aaron_Bilbrey],,,,,, sabarsd,8401,tcp,sabarsd,[Aaron_Bilbrey],[Aaron_Bilbrey],,,,,, sabarsd,8401,udp,sabarsd,[Aaron_Bilbrey],[Aaron_Bilbrey],,,,,, abarsd,8402,tcp,abarsd,[Aaron_Bilbrey],[Aaron_Bilbrey],,,,,, abarsd,8402,udp,abarsd,[Aaron_Bilbrey],[Aaron_Bilbrey],,,,,, admind,8403,tcp,admind,[Aaron_Bilbrey],[Aaron_Bilbrey],,,,,, admind,8403,udp,admind,[Aaron_Bilbrey],[Aaron_Bilbrey],,,,,, svcloud,8404,tcp,SuperVault Cloud,[Nine_Technology_LLC],[Alex_Stoev],2009-09-14,2011-08-01,,,, ,8404,udp,Reserved,,,,,,,, svbackup,8405,tcp,SuperVault Backup,[Nine_Technology_LLC],[Alex_Stoev],2009-09-14,2011-08-01,,,, ,8405,udp,Reserved,,,,,,,, ,8406-8414,,Unassigned,,,,,,,, dlpx-sp,8415,tcp,Delphix Session Protocol,[Delphix_Corp],[Peng_Dai],2012-11-01,,,,, ,8415,udp,Reserved,,,,,,,, espeech,8416,tcp,eSpeech Session Protocol,[Scott_Tarone],[Scott_Tarone],2002-11,,,,, espeech,8416,udp,eSpeech Session Protocol,[Scott_Tarone],[Scott_Tarone],2002-11,,,,, espeech-rtp,8417,tcp,eSpeech RTP Protocol,[Scott_Tarone],[Scott_Tarone],2003-04,,,,, espeech-rtp,8417,udp,eSpeech RTP Protocol,[Scott_Tarone],[Scott_Tarone],2003-04,,,,, ,8418-8422,,Unassigned,,,,,,,, aritts,8423,tcp,Aristech text-to-speech server,[Aristech_GmbH],[Mirko_Hering],2017-03-30,,,,, ,8423,udp,Reserved,,,,,,,, ,8424-8441,,Unassigned,,,,,,,, cybro-a-bus,8442,tcp,CyBro A-bus Protocol,[Damir_Skrjanec],[Damir_Skrjanec],2007-05,,,,, cybro-a-bus,8442,udp,CyBro A-bus Protocol,[Damir_Skrjanec],[Damir_Skrjanec],2007-05,,,,, pcsync-https,8443,tcp,PCsync HTTPS,,,,,,,, pcsync-https,8443,udp,PCsync HTTPS,,,,,,,, pcsync-http,8444,tcp,PCsync HTTP,[Katy_Lynn_McCullough],[Katy_Lynn_McCullough],,,,,, pcsync-http,8444,udp,PCsync HTTP,[Katy_Lynn_McCullough],[Katy_Lynn_McCullough],,,,,, copy,8445,tcp,Port for copy peer sync feature,[Copy],[Jason_Dictos],2012-09-19,,,,, |
11433 11434 11435 11436 11437 11438 11439 | ,8475-8499,,Unassigned,,,,,,,, fmtp,8500,tcp,Flight Message Transfer Protocol,[Eivan_Cerasi],[Eivan_Cerasi],2003-12,,,,, fmtp,8500,udp,Flight Message Transfer Protocol,[Eivan_Cerasi],[Eivan_Cerasi],2003-12,,,,, cmtp-mgt,8501,tcp,CYTEL Message Transfer Management,,,,,,,, cmtp-av,8501,udp,CYTEL Message Transfer Audio and Video,[Frank_Jakel],[Frank_Jakel],2011-04-29,,,,, ftnmtp,8502,tcp,FTN Message Transfer Protocol,[Yuri_Myakotin],[Yuri_Myakotin],2014-01-07,,,,, ,8502,udp,Reserved,,,,,,,, | > > | | | | 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 | ,8475-8499,,Unassigned,,,,,,,, fmtp,8500,tcp,Flight Message Transfer Protocol,[Eivan_Cerasi],[Eivan_Cerasi],2003-12,,,,, fmtp,8500,udp,Flight Message Transfer Protocol,[Eivan_Cerasi],[Eivan_Cerasi],2003-12,,,,, cmtp-mgt,8501,tcp,CYTEL Message Transfer Management,,,,,,,, cmtp-av,8501,udp,CYTEL Message Transfer Audio and Video,[Frank_Jakel],[Frank_Jakel],2011-04-29,,,,, ftnmtp,8502,tcp,FTN Message Transfer Protocol,[Yuri_Myakotin],[Yuri_Myakotin],2014-01-07,,,,, ,8502,udp,Reserved,,,,,,,, lsp-self-ping,8503,udp,MPLS LSP Self-Ping,[IESG],[IETF_Chair],2015-06-11,2016-02-01,[RFC7746],,, ,8503,tcp,Reserved,,,,,,,, ,8504-8553,,Unassigned,,,,,,,, rtsp-alt,8554,tcp,RTSP Alternate (see port 554),[Stephen_Casner_2],[Stephen_Casner_2],,,,,, rtsp-alt,8554,udp,RTSP Alternate (see port 554),[Stephen_Casner_2],[Stephen_Casner_2],,,,,, d-fence,8555,tcp,SYMAX D-FENCE,[Thomas_Geisel],[Thomas_Geisel],2003-01,,,,, d-fence,8555,udp,SYMAX D-FENCE,[Thomas_Geisel],[Thomas_Geisel],2003-01,,,,, ,8556-8566,,Unassigned,,,,,,,, dof-tunnel,8567,tcp,DOF Tunneling Protocol,[OpenDOF],[Bryant_Eastham],2005-08,2015-04-23,,,, dof-tunnel,8567,udp,DOF Tunneling Protocol,[OpenDOF],[Bryant_Eastham],2005-08,2015-04-23,,,, ,8568-8599,,Unassigned,,,,,,,, asterix,8600,tcp,Surveillance Data,[Eivan_Cerasi],[Eivan_Cerasi],2005-11,,,,, asterix,8600,udp,Surveillance Data,[Eivan_Cerasi],[Eivan_Cerasi],2005-11,,,,, ,8601-8608,,Unassigned,,,,,,,, ,8609,tcp,Reserved,,,,,,,, canon-cpp-disc,8609,udp,Canon Compact Printer Protocol Discovery,[Canon_Inc],[Ryusuke_Okuhara],2012-06-08,2012-06-15,,,, canon-mfnp,8610,tcp,Canon MFNP Service,[Ritsuto_Sako],[Ritsuto_Sako],2009-05-04,,,,, |
11494 11495 11496 11497 11498 11499 11500 | ,8751-8762,,Unassigned,,,,,,,, mc-appserver,8763,tcp,MC-APPSERVER,[Romeo_Kasanwidjojo],[Romeo_Kasanwidjojo],,,,,, mc-appserver,8763,udp,MC-APPSERVER,[Romeo_Kasanwidjojo],[Romeo_Kasanwidjojo],,,,,, openqueue,8764,tcp,OPENQUEUE,[Matt_Jensen],[Matt_Jensen],,,,,, openqueue,8764,udp,OPENQUEUE,[Matt_Jensen],[Matt_Jensen],,,,,, ultraseek-http,8765,tcp,Ultraseek HTTP,[Walter_Underwood],[Walter_Underwood],,,,,, ultraseek-http,8765,udp,Ultraseek HTTP,[Walter_Underwood],[Walter_Underwood],,,,,, | | | > > > > | > > > > > > > > > | | | | 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 | ,8751-8762,,Unassigned,,,,,,,, mc-appserver,8763,tcp,MC-APPSERVER,[Romeo_Kasanwidjojo],[Romeo_Kasanwidjojo],,,,,, mc-appserver,8763,udp,MC-APPSERVER,[Romeo_Kasanwidjojo],[Romeo_Kasanwidjojo],,,,,, openqueue,8764,tcp,OPENQUEUE,[Matt_Jensen],[Matt_Jensen],,,,,, openqueue,8764,udp,OPENQUEUE,[Matt_Jensen],[Matt_Jensen],,,,,, ultraseek-http,8765,tcp,Ultraseek HTTP,[Walter_Underwood],[Walter_Underwood],,,,,, ultraseek-http,8765,udp,Ultraseek HTTP,[Walter_Underwood],[Walter_Underwood],,,,,, amcs,8766,tcp,Agilent Connectivity Service,[Keysight_Technologies_Inc],[Tom_Fay],2013-01-16,2016-09-12,,,, amcs,8766,udp,Agilent Connectivity Service,[Keysight_Technologies_Inc],[Tom_Fay],2013-01-16,2016-09-12,,,, core-of-source,8767,tcp,Online mobile multiplayer game,[Alt_Solve_Sdn_Bhd],[Almaz_Hong],2019-07-24,,,,, ,8767,udp,Reserved,,,,,,,, sandpolis,8768,tcp,Sandpolis Server,[Tyler_Cook],[Tyler_Cook],2019-11-22,,,,, ,8768,udp,Reserved,,,,,,,, ,8769,,Unassigned,,,,,,,, dpap,8770,tcp,Digital Photo Access Protocol (iPhoto),[Amandeep_Jawa_2],[Amandeep_Jawa_2],2004-11,,,,,"Defined TXT keys: txtvers, Version, iPSh Version, Machine ID, Machine Name, Password" dpap,8770,udp,Digital Photo Access Protocol (iPhoto),[Amandeep_Jawa_2],[Amandeep_Jawa_2],2004-11,,,,,"Defined TXT keys: txtvers, Version, iPSh Version, Machine ID, Machine Name, Password" ,8771-8777,,Unassigned,,,,,,,, uec,8778,tcp,Stonebranch Universal Enterprise Controller,[Stonebranch_Inc],[Nathan_Hammond_2],2013-06-25,,,,, ,8778,udp,Reserved,,,,,,,, ,8779-8785,,Unassigned,,,,,,,, msgclnt,8786,tcp,Message Client,,,,,,,, msgclnt,8786,udp,Message Client,,,,,,,, msgsrvr,8787,tcp,Message Server,[Michael_O_Brien],[Michael_O_Brien],2003-03,,,,, msgsrvr,8787,udp,Message Server,[Michael_O_Brien],[Michael_O_Brien],2003-03,,,,, ,8788-8792,,Unassigned,,,,,,,, acd-pm,8793,tcp,Accedian Performance Measurement,[Marco_Mascitto],[Marco_Mascitto],,,,,, acd-pm,8793,udp,Accedian Performance Measurement,[Marco_Mascitto],[Marco_Mascitto],,,,,, ,8794-8799,,Unassigned,,,,,,,, sunwebadmin,8800,tcp,Sun Web Server Admin Service,[Jyri_J_Virkki],[Jyri_J_Virkki],2005-12,,,,, sunwebadmin,8800,udp,Sun Web Server Admin Service,[Jyri_J_Virkki],[Jyri_J_Virkki],2005-12,,,,, ,8801-8803,,Unassigned,,,,,,,Known UNAUTHORIZED USE: Port 8801, truecm,8804,tcp,truecm,[Scott_Kramer],[Scott_Kramer],,,,,, truecm,8804,udp,truecm,[Scott_Kramer],[Scott_Kramer],,,,,, ,8805,tcp,Reserved,,,,,,,, pfcp,8805,udp,Destination Port number for PFCP,[Kimmo_Kymalainen],[Kimmo_Kymalainen],2017-05-08,,,,, ,8806,,Unassigned,,,,,,,, ,8807,tcp,Reserved,,,,,,,, hes-clip,8807,udp,HES-CLIP Interoperability protocol,[Tim_Schoechle],[Ludo_Bertsch],2018-09-07,,,,, ,8808,tcp,Reserved,,,,,,,, ssports-bcast,8808,udp,STATSports Broadcast Service,[Statsports_International],[Catalin_Caranfil],2016-12-22,,,,, ,8809,tcp,Reserved,,,,,,,, 3gpp-monp,8809,udp,MCPTT Off-Network Protocol (MONP),[ThreeGPP_3],[Frederic_Firmin],2019-04-15,,,,, ,8810-8872,,Unassigned,,,,,,,, dxspider,8873,tcp,dxspider linking protocol,[Dirk_Koopman],[Dirk_Koopman],2005-08,,,,, dxspider,8873,udp,dxspider linking protocol,[Dirk_Koopman],[Dirk_Koopman],2005-08,,,,, ,8874-8879,,Unassigned,,,,,,,, cddbp-alt,8880,tcp,CDDBP,[Steve_Scherf],[Steve_Scherf],,,,,, cddbp-alt,8880,udp,CDDBP,[Steve_Scherf],[Steve_Scherf],,,,,, galaxy4d,8881,tcp,Galaxy4D Online Game Engine,[Galaxy4D],[Olivier_St-Laurent],2012-06-18,,,,, ,8881,udp,Reserved,,,,,,,, ,8882,,Unassigned,,,,,,,Unauthorized Use Known on port 8882, secure-mqtt,8883,tcp,Secure MQTT,[OASIS],[Robin_Cover],2008-02-27,2015-03-06,,,, secure-mqtt,8883,udp,Secure MQTT,[OASIS],[Robin_Cover],2008-02-27,2015-03-06,,,, ,8884-8887,,Unassigned,,,,,,,, ddi-tcp-1,8888,tcp,NewsEDGE server TCP (TCP 1),[Fred_Yao],[Fred_Yao],,,,,Known Unauthorized Use on port 8888, ddi-udp-1,8888,udp,NewsEDGE server UDP (UDP 1),[Fred_Yao],[Fred_Yao],,,,,Known Unauthorized Use on port 8888, ddi-tcp-2,8889,tcp,Desktop Data TCP 1,[Fred_Yao],[Fred_Yao],,,,,Known Unauthorized Use on port 8889, ddi-udp-2,8889,udp,NewsEDGE server broadcast,[Fred_Yao],[Fred_Yao],,,,,Known Unauthorized Use on port 8889, ddi-tcp-3,8890,tcp,Desktop Data TCP 2,[Fred_Yao],[Fred_Yao],,,,,Known Unauthorized Use on port 8890, ddi-udp-3,8890,udp,NewsEDGE client broadcast,[Fred_Yao],[Fred_Yao],,,,,Known Unauthorized Use on port 8890, |
11566 11567 11568 11569 11570 11571 11572 | twds,8937,tcp,Transaction Warehouse Data Service,[Lance_M_Steenson],[Lance_M_Steenson],2009-09-18,,,,, ,8937,udp,Reserved,,,,,,,, ,8938-8952,,Unassigned,,,,,,,, ub-dns-control,8953,tcp,unbound dns nameserver control,[NLnet_Labs_Support],[NLnet_Labs_Support],2011-05-10,2011-07-11,,,, ,8953,udp,Reserved,,,,,,,, cumulus-admin,8954,tcp,Cumulus Admin Port,[Thomas_Schleu],[Thomas_Schleu],,,,,, cumulus-admin,8954,udp,Cumulus Admin Port,[Thomas_Schleu],[Thomas_Schleu],,,,,, | > > > > > | | | | | | > > | > > > > | > > > | | > | 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 | twds,8937,tcp,Transaction Warehouse Data Service,[Lance_M_Steenson],[Lance_M_Steenson],2009-09-18,,,,, ,8937,udp,Reserved,,,,,,,, ,8938-8952,,Unassigned,,,,,,,, ub-dns-control,8953,tcp,unbound dns nameserver control,[NLnet_Labs_Support],[NLnet_Labs_Support],2011-05-10,2011-07-11,,,, ,8953,udp,Reserved,,,,,,,, cumulus-admin,8954,tcp,Cumulus Admin Port,[Thomas_Schleu],[Thomas_Schleu],,,,,, cumulus-admin,8954,udp,Cumulus Admin Port,[Thomas_Schleu],[Thomas_Schleu],,,,,, ,8955-8979,,Unassigned,,,,,,,, nod-provider,8980,tcp,Network of Devices Provider,[David_Muller],[David_Muller],2015-02-22,,,,, nod-provider,8980,udp,Network of Devices Provider,[David_Muller],[David_Muller],2015-02-22,,,,, nod-client,8981,udp,Network of Devices Client,[David_Muller],[David_Muller],2015-02-22,,,,, ,8981,tcp,Reserved,,,,,,,, ,8982-8988,,Unassigned,,,,,,,, sunwebadmins,8989,tcp,Sun Web Server SSL Admin Service,[Jyri_J_Virkki],[Jyri_J_Virkki],2005-12,,,,, sunwebadmins,8989,udp,Sun Web Server SSL Admin Service,[Jyri_J_Virkki],[Jyri_J_Virkki],2005-12,,,,, http-wmap,8990,tcp,webmail HTTP service,[Chris_Newman],[Chris_Newman],2007-12-03,,,,, http-wmap,8990,udp,webmail HTTP service,[Chris_Newman],[Chris_Newman],2007-12-03,,,,, https-wmap,8991,tcp,webmail HTTPS service,[Chris_Newman],[Chris_Newman],2007-12-03,,,,, https-wmap,8991,udp,webmail HTTPS service,[Chris_Newman],[Chris_Newman],2007-12-03,,,,, ,8992-8996,,Unassigned,,,,,,,, oracle-ms-ens,8997,tcp,Oracle Messaging Server Event Notification Service,[Oracle_6],[Hubert_Vijay_Arokiasamy],2014-10-28,,,,, ,8997,udp,Reserved,,,,,,,, canto-roboflow,8998,tcp,Canto RoboFlow Control,[Canto],[Thomas_Schleu_2],2014-02-26,,,,, ,8998,udp,Reserved,,,,,,,, bctp,8999,tcp,Brodos Crypto Trade Protocol,[Alexander_Sahler],[Alexander_Sahler],2002-02,,,,, bctp,8999,udp,Brodos Crypto Trade Protocol,[Alexander_Sahler],[Alexander_Sahler],2002-02,,,,, cslistener,9000,tcp,CSlistener,[David_Jones],[David_Jones],,,,,, cslistener,9000,udp,CSlistener,[David_Jones],[David_Jones],,,,,, etlservicemgr,9001,tcp,ETL Service Manager,[Stephen_McCrea],[Stephen_McCrea],2002-03,,,,Known Unauthorized Use on port 9001, etlservicemgr,9001,udp,ETL Service Manager,[Stephen_McCrea],[Stephen_McCrea],2002-03,,,,Known Unauthorized Use on port 9001, dynamid,9002,tcp,DynamID authentication,[Jerome_Dusautois],[Jerome_Dusautois],2002-03,,,,, dynamid,9002,udp,DynamID authentication,[Jerome_Dusautois],[Jerome_Dusautois],2002-03,,,,, ,9003-9004,,Unassigned,,,,,,,, golem,9005,tcp,Golem Inter-System RPC,[Jose_Luis_Tallon],[Jose_Luis_Tallon],2015-03-09,,,,, ,9005,udp,Reserved,,,,,,,, ,9006,,De-Commissioned Port,,,2000-02-24,,,,, ,9007,tcp,Reserved,,,,,,,, ogs-client,9007,udp,Open Grid Services Client,[Gareth_Nelson_2],[Gareth_Nelson_2],2008-08-22,,,,, ogs-server,9008,tcp,Open Grid Services Server,[Gareth_Nelson_2],[Gareth_Nelson_2],2008-08-22,,,,, ,9008,udp,Reserved,,,,,,,, pichat,9009,tcp,Pichat Server,[Mark_Seuffert],[Mark_Seuffert],2004-11,,,,, pichat,9009,udp,Pichat Server,[Mark_Seuffert],[Mark_Seuffert],2004-11,,,,, sdr,9010,tcp,Secure Data Replicator Protocol,[Sufyan_Almajali],[Sufyan_Almajali],2008-06-27,,,,, ,9010,udp,Reserved,,,,,,,, ,9011,tcp,Reserved,,,,,,,, d-star,9011,udp,D-Star Routing digital voice+data for amateur radio,[QuadNet2_USA_IRC_Network],[Thomas_A_Early],2018-03-16,,,,, ,9012-9019,,Unassigned,,,,,,,, tambora,9020,tcp,TAMBORA,[Jason_van_Zyl],[Jason_van_Zyl],2002-03,,,,, tambora,9020,udp,TAMBORA,[Jason_van_Zyl],[Jason_van_Zyl],2002-03,,,,, panagolin-ident,9021,tcp,Pangolin Identification,[William_Benner_2],[William_Benner_2],2002-03,,,,, panagolin-ident,9021,udp,Pangolin Identification,[William_Benner_2],[William_Benner_2],2002-03,,,,, paragent,9022,tcp,PrivateArk Remote Agent,[Gal_Cucuy],[Gal_Cucuy],2002-03,,,,, paragent,9022,udp,PrivateArk Remote Agent,[Gal_Cucuy],[Gal_Cucuy],2002-03,,,,, swa-1,9023,tcp,Secure Web Access - 1,[Tim_McGranaghan],[Tim_McGranaghan],,,,,, swa-1,9023,udp,Secure Web Access - 1,[Tim_McGranaghan],[Tim_McGranaghan],,,,,, swa-2,9024,tcp,Secure Web Access - 2,[Tim_McGranaghan],[Tim_McGranaghan],,,,,, swa-2,9024,udp,Secure Web Access - 2,[Tim_McGranaghan],[Tim_McGranaghan],,,,,, swa-3,9025,tcp,Secure Web Access - 3,[Tim_McGranaghan],[Tim_McGranaghan],,,,,, swa-3,9025,udp,Secure Web Access - 3,[Tim_McGranaghan],[Tim_McGranaghan],,,,,, swa-4,9026,tcp,Secure Web Access - 4,[Tim_McGranaghan],[Tim_McGranaghan],,,,,, swa-4,9026,udp,Secure Web Access - 4,[Tim_McGranaghan],[Tim_McGranaghan],,,,,, ,9027-9049,,Unassigned,,,,,,,, versiera,9050,tcp,Versiera Agent Listener,[Frank_Pikelner],[Frank_Pikelner],2010-01-15,,,,, ,9050,udp,Reserved,,,,,,,, fio-cmgmt,9051,tcp,Fusion-io Central Manager Service,[Jim_Sermersheim],[Jim_Sermersheim],2010-01-15,,,,, ,9051,udp,Reserved,,,,,,,, ,9052-9059,,Unassigned,,,,,,,, CardWeb-IO,9060,tcp,CardWeb request-response I/O exchange,[Virtual_Electric_Inc],[David_Wyatt],2016-10-07,,,,, CardWeb-RT,9060,udp,CardWeb realtime device data,[Virtual_Electric_Inc],[David_Wyatt],2016-10-07,,,,, ,9061-9079,,Unassigned,,,,,,,, glrpc,9080,tcp,Groove GLRPC,[Adrian_Popescu],[Adrian_Popescu],2002-09,,,,, glrpc,9080,udp,Groove GLRPC,[Adrian_Popescu],[Adrian_Popescu],2002-09,,,,, ,9081,tcp,Reserved,,,,,,,, cisco-aqos,9081,udp,Required for Adaptive Quality of Service,[Manish_Surolia],[Manish_Surolia],2017-10-27,,,,, lcs-ap,9082,sctp,LCS Application Protocol,[Kimmo_Kymalainen],[Kimmo_Kymalainen],2010-06-04,,,,, emc-pp-mgmtsvc,9083,tcp,EMC PowerPath Mgmt Service,[Jim_Perreault],[Jim_Perreault],2010-06-04,,,,, ,9083,udp,Reserved,,,,,,,, aurora,9084,tcp,IBM AURORA Performance Visualizer,[Jeroen_Massar_2],[Jeroen_Massar_2],2008-08-21,,,,, aurora,9084,udp,IBM AURORA Performance Visualizer,[Jeroen_Massar_2],[Jeroen_Massar_2],2008-08-21,,,,, aurora,9084,sctp,IBM AURORA Performance Visualizer,[Jeroen_Massar_2],[Jeroen_Massar_2],2008-08-21,,,,, ibm-rsyscon,9085,tcp,IBM Remote System Console,[William_LePera],[William_LePera],2008-06-18,,,,, |
11665 11666 11667 11668 11669 11670 11671 | peerwire,9104,udp,PeerWire,[Steven_Gerhardt],[Steven_Gerhardt],2004-02,,,,, xadmin,9105,tcp,Xadmin Control Service,,,,,[Ariën Huisken <xadmin&huisken-systems.nl> 15 June 2009],,, xadmin,9105,udp,Xadmin Control Service,,,,,[Ariën Huisken <xadmin&huisken-systems.nl> 15 June 2009],,, astergate,9106,tcp,Astergate Control Service,[Ari_Huisken],[Ari_Huisken],2010-01-04,,,,, astergate-disc,9106,udp,Astergate Discovery Service,[Ari_Huisken],[Ari_Huisken],2010-01-04,,,,, astergatefax,9107,tcp,AstergateFax Control Service,[Gijs_Middelkamp],[Gijs_Middelkamp],2010-02-03,,,,, ,9107,udp,Reserved,,,,,,,, | > > > | | 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 | peerwire,9104,udp,PeerWire,[Steven_Gerhardt],[Steven_Gerhardt],2004-02,,,,, xadmin,9105,tcp,Xadmin Control Service,,,,,[Ariën Huisken <xadmin&huisken-systems.nl> 15 June 2009],,, xadmin,9105,udp,Xadmin Control Service,,,,,[Ariën Huisken <xadmin&huisken-systems.nl> 15 June 2009],,, astergate,9106,tcp,Astergate Control Service,[Ari_Huisken],[Ari_Huisken],2010-01-04,,,,, astergate-disc,9106,udp,Astergate Discovery Service,[Ari_Huisken],[Ari_Huisken],2010-01-04,,,,, astergatefax,9107,tcp,AstergateFax Control Service,[Gijs_Middelkamp],[Gijs_Middelkamp],2010-02-03,,,,, ,9107,udp,Reserved,,,,,,,, ,9108-9110,,Unassigned,,,,,,,, hexxorecore,9111,tcp,"Multiple Purpose, Distributed Message Bus",[Hexxore],[Patrick_Roozeboom],2018-07-31,,,,, hexxorecore,9111,udp,"Multiple Purpose, Distributed Message Bus",[Hexxore],[Patrick_Roozeboom],2018-07-31,,,,, ,9112-9118,,Unassigned,,,,,,,, mxit,9119,tcp,MXit Instant Messaging,[Marnus_Freeman],[Marnus_Freeman],2006-02,,,,, mxit,9119,udp,MXit Instant Messaging,[Marnus_Freeman],[Marnus_Freeman],2006-02,,,,, ,9120-9121,,Unassigned,,,,,,,, grcmp,9122,tcp,Global Relay compliant mobile instant messaging protocol,[Global_Relay],[Mike_Sample],2012-11-28,,,,, ,9122,udp,Reserved,,,,,,,, grcp,9123,tcp,Global Relay compliant instant messaging protocol,[Global_Relay],[Mike_Sample],2012-11-28,,,,, ,9123,udp,Reserved,,,,,,,, |
11780 11781 11782 11783 11784 11785 11786 | ,9312,udp,Reserved,,,,,,,, ,9313-9317,,Unassigned,,,,,,,, secure-ts,9318,tcp,PKIX TimeStamp over TLS,[Niklas_Weiss],[Niklas_Weiss],2004-11,,,,, secure-ts,9318,udp,PKIX TimeStamp over TLS,[Niklas_Weiss],[Niklas_Weiss],2004-11,,,,, ,9319-9320,,Unassigned,,,,,,,, guibase,9321,tcp,guibase,[Yutaka_Ono],[Yutaka_Ono],,,,,, guibase,9321,udp,guibase,[Yutaka_Ono],[Yutaka_Ono],,,,,, | > > > | > | | 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 | ,9312,udp,Reserved,,,,,,,, ,9313-9317,,Unassigned,,,,,,,, secure-ts,9318,tcp,PKIX TimeStamp over TLS,[Niklas_Weiss],[Niklas_Weiss],2004-11,,,,, secure-ts,9318,udp,PKIX TimeStamp over TLS,[Niklas_Weiss],[Niklas_Weiss],2004-11,,,,, ,9319-9320,,Unassigned,,,,,,,, guibase,9321,tcp,guibase,[Yutaka_Ono],[Yutaka_Ono],,,,,, guibase,9321,udp,guibase,[Yutaka_Ono],[Yutaka_Ono],,,,,, ,9322-9338,,Unassigned,,,,,,,, gnmi-gnoi,9339,tcp,gRPC Network Mgmt/Operations Interface,[Google_Netops],[gNxi_Maintainers],2019-05-09,,,,, ,9339,udp,Reserved,,,,,,,, ,9340-9342,,Unassigned,,,,,,,, mpidcmgr,9343,tcp,MpIdcMgr,[Yutaka_Ono],[Yutaka_Ono],,,,,, mpidcmgr,9343,udp,MpIdcMgr,[Yutaka_Ono],[Yutaka_Ono],,,,,, mphlpdmc,9344,tcp,Mphlpdmc,[Yutaka_Ono],[Yutaka_Ono],,,,,, mphlpdmc,9344,udp,Mphlpdmc,[Yutaka_Ono],[Yutaka_Ono],,,,,, rancher,9345,tcp,Rancher Agent,[Rancher_Labs_Inc],[Vincent_Fiduccia],2015-04-14,,,,, ,9345,udp,Reserved,,,,,,,, ctechlicensing,9346,tcp,C Tech Licensing,[Reed_Copsey_Jr],[Reed_Copsey_Jr],,,,,, ctechlicensing,9346,udp,C Tech Licensing,[Reed_Copsey_Jr],[Reed_Copsey_Jr],,,,,, ,9347-9373,,Unassigned,,,,,,,, fjdmimgr,9374,tcp,fjdmimgr,[Yutaka_Ono],[Yutaka_Ono],,,,,, fjdmimgr,9374,udp,fjdmimgr,[Yutaka_Ono],[Yutaka_Ono],,,,,, ,9375-9379,,Unassigned,,,,,,,, boxp,9380,tcp,Brivs! Open Extensible Protocol,[Danko_Alexeyev],[Danko_Alexeyev],2007-08-08,,,,, |
11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 | streamcomm-ds,9612,tcp,StreamComm User Directory,[Brian_C_Wiles],[Brian_C_Wiles],,,,,, streamcomm-ds,9612,udp,StreamComm User Directory,[Brian_C_Wiles],[Brian_C_Wiles],,,,,, ,9613,,Unassigned,,,,,,,, iadt-tls,9614,tcp,iADT Protocol over TLS,[Paul_A_Suhler],[Paul_A_Suhler],2009-02-05,,,,, ,9614,udp,Reserved,,,,,,,, ,9615,,Unassigned,,,,,,,, erunbook-agent,9616,tcp,"eRunbook Agent IANA assigned this well-formed service name as a replacement for ""erunbook_agent"".",[Gerhard_Wagner],[Gerhard_Wagner],2009-03-10,,,,, erunbook_agent,9616,tcp,eRunbook Agent,[Gerhard_Wagner],[Gerhard_Wagner],2009-03-10,,,,,"This entry is an alias to ""erunbook-agent"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,9616,udp,Reserved,,,,,,,, erunbook-server,9617,tcp,"eRunbook Server IANA assigned this well-formed service name as a replacement for ""erunbook_server"".",[Gerhard_Wagner],[Gerhard_Wagner],2009-03-10,,,,, erunbook_server,9617,tcp,eRunbook Server,[Gerhard_Wagner],[Gerhard_Wagner],2009-03-10,,,,,"This entry is an alias to ""erunbook-server"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,9617,udp,Reserved,,,,,,,, condor,9618,tcp,Condor Collector Service,[Todd_Tannenbaum],[Todd_Tannenbaum],2008-04-03,,,,, condor,9618,udp,Condor Collector Service,[Todd_Tannenbaum],[Todd_Tannenbaum],2008-04-03,,,,, | > > > > | 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 | streamcomm-ds,9612,tcp,StreamComm User Directory,[Brian_C_Wiles],[Brian_C_Wiles],,,,,, streamcomm-ds,9612,udp,StreamComm User Directory,[Brian_C_Wiles],[Brian_C_Wiles],,,,,, ,9613,,Unassigned,,,,,,,, iadt-tls,9614,tcp,iADT Protocol over TLS,[Paul_A_Suhler],[Paul_A_Suhler],2009-02-05,,,,, ,9614,udp,Reserved,,,,,,,, ,9615,,Unassigned,,,,,,,, erunbook-agent,9616,tcp,"eRunbook Agent IANA assigned this well-formed service name as a replacement for ""erunbook_agent"".",[Gerhard_Wagner],[Gerhard_Wagner],2009-03-10,,,,, erunbook_agent,9616,tcp,eRunbook Agent,[Gerhard_Wagner],[Gerhard_Wagner],2009-03-10,,,,,"This entry is an alias to ""erunbook-agent"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,9616,udp,Reserved,,,,,,,, erunbook-server,9617,tcp,"eRunbook Server IANA assigned this well-formed service name as a replacement for ""erunbook_server"".",[Gerhard_Wagner],[Gerhard_Wagner],2009-03-10,,,,, erunbook_server,9617,tcp,eRunbook Server,[Gerhard_Wagner],[Gerhard_Wagner],2009-03-10,,,,,"This entry is an alias to ""erunbook-server"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,9617,udp,Reserved,,,,,,,, condor,9618,tcp,Condor Collector Service,[Todd_Tannenbaum],[Todd_Tannenbaum],2008-04-03,,,,, condor,9618,udp,Condor Collector Service,[Todd_Tannenbaum],[Todd_Tannenbaum],2008-04-03,,,,, |
11934 11935 11936 11937 11938 11939 11940 | sstp-2,9801,udp,Sakura Script Transfer Protocol-2,[Kouichi_Takeda_2],[Kouichi_Takeda_2],,,,,, davsrcs,9802,tcp,WebDAV Source TLS/SSL,[Rob_Isaac],[Rob_Isaac],2003-07,,,,, davsrcs,9802,udp,WebDAV Source TLS/SSL,[Rob_Isaac],[Rob_Isaac],2003-07,,,,, ,9803-9874,,Unassigned,,,,,,,, sapv1,9875,tcp,Session Announcement v1,,,,,[RFC2974],,, sapv1,9875,udp,Session Announcement v1,,,,,[RFC2974],,, sd,9876,tcp,Session Director,[Van_Jacobson],[Van_Jacobson],,,,,, | > | | 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 | sstp-2,9801,udp,Sakura Script Transfer Protocol-2,[Kouichi_Takeda_2],[Kouichi_Takeda_2],,,,,, davsrcs,9802,tcp,WebDAV Source TLS/SSL,[Rob_Isaac],[Rob_Isaac],2003-07,,,,, davsrcs,9802,udp,WebDAV Source TLS/SSL,[Rob_Isaac],[Rob_Isaac],2003-07,,,,, ,9803-9874,,Unassigned,,,,,,,, sapv1,9875,tcp,Session Announcement v1,,,,,[RFC2974],,, sapv1,9875,udp,Session Announcement v1,,,,,[RFC2974],,, sd,9876,tcp,Session Director,[Van_Jacobson],[Van_Jacobson],,,,,, x510,9877,tcp,The X.510 wrapper protocol,[ITU/TSB_(ITU-T_Study_Group_17)],[Erik_Andersen],2019-09-30,,[ITU-T X.510 / ISO/IEC 9584-11],,, ,9877,udp,Reserved,,,,,,,, kca-service,9878,udp,The KX509 Kerberized Certificate Issuance Protocol in Use in 2012,[IESG],[IETF_Chair],2012-07-12,,[RFC6717],,,"Historically, this service has been referred to as ""kca_service"", but this service name does not meet the registry requirements." ,9878,tcp,Reserved,,,,,,,, ,9879-9887,,Unassigned,,,,,,,, cyborg-systems,9888,tcp,CYBORG Systems,[Malcolm_Graham],[Malcolm_Graham],,,,,, cyborg-systems,9888,udp,CYBORG Systems,[Malcolm_Graham],[Malcolm_Graham],,,,,, gt-proxy,9889,tcp,Port for Cable network related data proxy or repeater,[Dawei_Qi],[Dawei_Qi],2010-07-07,,,,, gt-proxy,9889,udp,Port for Cable network related data proxy or repeater,[Dawei_Qi],[Dawei_Qi],2010-07-07,,,,, |
11985 11986 11987 11988 11989 11990 11991 | alljoyn,9956,udp,Alljoyn Name Service,[Qualcomm_Innovation_Center],[Craig_Dowell],2011-12-21,,,,, ,9957-9965,,Unassigned,,,,,,,, odnsp,9966,tcp,OKI Data Network Setting Protocol,[Masato_Sato],[Masato_Sato],2006-05,,,,, odnsp,9966,udp,OKI Data Network Setting Protocol,[Masato_Sato],[Masato_Sato],2006-05,,,,, ,9967-9977,,Unassigned,,,,,,,, xybrid-rt,9978,tcp,XYBRID RT Server,[Rx_Networks_Inc],[Drew_Davies],2013-01-24,,,,, ,9978,udp,Reserved,,,,,,,, | > > > > > | | 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 | alljoyn,9956,udp,Alljoyn Name Service,[Qualcomm_Innovation_Center],[Craig_Dowell],2011-12-21,,,,, ,9957-9965,,Unassigned,,,,,,,, odnsp,9966,tcp,OKI Data Network Setting Protocol,[Masato_Sato],[Masato_Sato],2006-05,,,,, odnsp,9966,udp,OKI Data Network Setting Protocol,[Masato_Sato],[Masato_Sato],2006-05,,,,, ,9967-9977,,Unassigned,,,,,,,, xybrid-rt,9978,tcp,XYBRID RT Server,[Rx_Networks_Inc],[Drew_Davies],2013-01-24,,,,, ,9978,udp,Reserved,,,,,,,, visweather,9979,tcp,Valley Information Systems Weather station data,[Valley_Information_Systems_Inc],[Michael_Walsh_2],2017-05-12,,,,, ,9979,udp,Reserved,,,,,,,, ,9980,,Unassigned,,,,,,,, pumpkindb,9981,tcp,Event sourcing database engine with a built-in programming language,[Eventsourcing_Inc],[Yurii_Rashkovskii],2017-04-18,,,,, ,9981,udp,Reserved,,,,,,,, ,9982-9986,,Unassigned,,,,,,,, dsm-scm-target,9987,tcp,DSM/SCM Target Interface,[Mike_Dyslin],[Mike_Dyslin],2006-08,,,,, dsm-scm-target,9987,udp,DSM/SCM Target Interface,[Mike_Dyslin],[Mike_Dyslin],2006-08,,,,, nsesrvr,9988,tcp,Software Essentials Secure HTTP server,[Narayanan_Raju],[Narayanan_Raju],2009-02-05,,,,, ,9988,udp,Reserved,,,,,,,, ,9989-9989,,Unassigned,,,,,,,, osm-appsrvr,9990,tcp,OSM Applet Server,[Vinay_Gupta],[Vinay_Gupta],2003-08,,,,, osm-appsrvr,9990,udp,OSM Applet Server,[Vinay_Gupta],[Vinay_Gupta],2003-08,,,,, |
12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 | ndmp,10000,tcp,Network Data Management Protocol,[Brian_Ehrmantraut],[Brian_Ehrmantraut],,,,,, ndmp,10000,udp,Network Data Management Protocol,[Brian_Ehrmantraut],[Brian_Ehrmantraut],,,,,, scp-config,10001,tcp,SCP Configuration,[Michael_Benz],[Michael_Benz],2010-08-06,,,,, scp-config,10001,udp,SCP Configuration,[Michael_Benz],[Michael_Benz],2010-08-06,,,,, documentum,10002,tcp,EMC-Documentum Content Server Product,[Reza_Bagherian],[Reza_Bagherian],2007-07-19,,,,, documentum,10002,udp,EMC-Documentum Content Server Product,[Reza_Bagherian],[Reza_Bagherian],2007-07-19,,,,, documentum-s,10003,tcp,"EMC-Documentum Content Server Product IANA assigned this well-formed service name as a replacement for ""documentum_s"".",[Reza_Bagherian],[Reza_Bagherian],2007-07-19,,,,, documentum_s,10003,tcp,EMC-Documentum Content Server Product,[Reza_Bagherian],[Reza_Bagherian],2007-07-19,,,,,"This entry is an alias to ""documentum-s"". This entry is now historic, not usable for use with many common service discovery mechanisms." documentum-s,10003,udp,"EMC-Documentum Content Server Product IANA assigned this well-formed service name as a replacement for ""documentum_s"".",[Reza_Bagherian],[Reza_Bagherian],2007-07-19,,,,, documentum_s,10003,udp,EMC-Documentum Content Server Product,[Reza_Bagherian],[Reza_Bagherian],2007-07-19,,,,,"This entry is an alias to ""documentum-s"". This entry is now historic, not usable for use with many common service discovery mechanisms." emcrmirccd,10004,tcp,EMC Replication Manager Client,[Robert_Boudrie],[Robert_Boudrie],2008-06-09,,,,, ,10004,udp,Reserved,,,,,,,, emcrmird,10005,tcp,EMC Replication Manager Server,[Robert_Boudrie],[Robert_Boudrie],2008-06-09,,,,, ,10005,udp,Reserved,,,,,,,, netapp-sync,10006,tcp,Sync replication protocol among different NetApp platforms,[NetApp_2],[Paul_Mu],2014-08-07,,,,, ,10006,udp,Reserved,,,,,,,, mvs-capacity,10007,tcp,MVS Capacity,[Donna_Dillenberger],[Donna_Dillenberger],,,,,, mvs-capacity,10007,udp,MVS Capacity,[Donna_Dillenberger],[Donna_Dillenberger],,,,,, octopus,10008,tcp,Octopus Multiplexer,[Chris_Koeritz_2],[Chris_Koeritz_2],2002-10,,,,, octopus,10008,udp,Octopus Multiplexer,[Chris_Koeritz_2],[Chris_Koeritz_2],2002-10,,,,, swdtp-sv,10009,tcp,Systemwalker Desktop Patrol,[Akira_Ide],[Akira_Ide],2006-03,,,,, swdtp-sv,10009,udp,Systemwalker Desktop Patrol,[Akira_Ide],[Akira_Ide],2006-03,,,,, rxapi,10010,tcp,ooRexx rxapi services,[David_Ashley],[David_Ashley],2009-07-24,,,,, ,10010,udp,Reserved,,,,,,,, | > > > > > > > | | 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 | ndmp,10000,tcp,Network Data Management Protocol,[Brian_Ehrmantraut],[Brian_Ehrmantraut],,,,,, ndmp,10000,udp,Network Data Management Protocol,[Brian_Ehrmantraut],[Brian_Ehrmantraut],,,,,, scp-config,10001,tcp,SCP Configuration,[Michael_Benz],[Michael_Benz],2010-08-06,,,,, scp-config,10001,udp,SCP Configuration,[Michael_Benz],[Michael_Benz],2010-08-06,,,,, documentum,10002,tcp,EMC-Documentum Content Server Product,[Reza_Bagherian],[Reza_Bagherian],2007-07-19,,,,, documentum,10002,udp,EMC-Documentum Content Server Product,[Reza_Bagherian],[Reza_Bagherian],2007-07-19,,,,, documentum-s,10003,tcp,"EMC-Documentum Content Server Product IANA assigned this well-formed service name as a replacement for ""documentum_s"".",[Reza_Bagherian],[Reza_Bagherian],2007-07-19,,,,, documentum_s,10003,tcp,EMC-Documentum Content Server Product,[Reza_Bagherian],[Reza_Bagherian],2007-07-19,,,,,"This entry is an alias to ""documentum-s"". This entry is now historic, not usable for use with many common service discovery mechanisms." documentum-s,10003,udp,"EMC-Documentum Content Server Product IANA assigned this well-formed service name as a replacement for ""documentum_s"".",[Reza_Bagherian],[Reza_Bagherian],2007-07-19,,,,, documentum_s,10003,udp,EMC-Documentum Content Server Product,[Reza_Bagherian],[Reza_Bagherian],2007-07-19,,,,,"This entry is an alias to ""documentum-s"". This entry is now historic, not usable for use with many common service discovery mechanisms." emcrmirccd,10004,tcp,EMC Replication Manager Client,[Robert_Boudrie],[Robert_Boudrie],2008-06-09,,,,, ,10004,udp,Reserved,,,,,,,, emcrmird,10005,tcp,EMC Replication Manager Server,[Robert_Boudrie],[Robert_Boudrie],2008-06-09,,,,, ,10005,udp,Reserved,,,,,,,, netapp-sync,10006,tcp,Sync replication protocol among different NetApp platforms,[NetApp_2],[Paul_Mu],2014-08-07,,,,, ,10006,udp,Reserved,,,,,,,, mvs-capacity,10007,tcp,MVS Capacity,[Donna_Dillenberger],[Donna_Dillenberger],,,,,, mvs-capacity,10007,udp,MVS Capacity,[Donna_Dillenberger],[Donna_Dillenberger],,,,,, octopus,10008,tcp,Octopus Multiplexer,[Chris_Koeritz_2],[Chris_Koeritz_2],2002-10,,,,, octopus,10008,udp,Octopus Multiplexer,[Chris_Koeritz_2],[Chris_Koeritz_2],2002-10,,,,, swdtp-sv,10009,tcp,Systemwalker Desktop Patrol,[Akira_Ide],[Akira_Ide],2006-03,,,,, swdtp-sv,10009,udp,Systemwalker Desktop Patrol,[Akira_Ide],[Akira_Ide],2006-03,,,,, rxapi,10010,tcp,ooRexx rxapi services,[David_Ashley],[David_Ashley],2009-07-24,,,,, ,10010,udp,Reserved,,,,,,,, ,10011-10019,,Unassigned,,,,,,,, abb-hw,10020,tcp,Hardware configuration and maintenance,[ABB],[Adam_Norén],2017-03-28,,,,, ,10020,udp,Reserved,,,,,,,, ,10021-10049,,Unassigned,,,,,,,, zabbix-agent,10050,tcp,Zabbix Agent,[Alexei_Vladishev],[Alexei_Vladishev],2006-02,,,,, zabbix-agent,10050,udp,Zabbix Agent,[Alexei_Vladishev],[Alexei_Vladishev],2006-02,,,,, zabbix-trapper,10051,tcp,Zabbix Trapper,[Alexei_Vladishev],[Alexei_Vladishev],2006-02,,,,, zabbix-trapper,10051,udp,Zabbix Trapper,[Alexei_Vladishev],[Alexei_Vladishev],2006-02,,,,, ,10052-10054,,Unassigned,,,,,,,, qptlmd,10055,tcp,Quantapoint FLEXlm Licensing Service,[Justin_Vegso],[Justin_Vegso],2010-07-01,,,,, ,10055,udp,Reserved,,,,,,,, |
12084 12085 12086 12087 12088 12089 12090 | netiq-qcheck,10114,udp,NetIQ Qcheck,[Michael_Sharpe],[Michael_Sharpe],2010-09-14,,,,, netiq-endpt,10115,tcp,NetIQ Endpoint,[Gary_Weichinger],[Gary_Weichinger],,,,,, netiq-endpt,10115,udp,NetIQ Endpoint,[Gary_Weichinger],[Gary_Weichinger],,,,,, netiq-voipa,10116,tcp,NetIQ VoIP Assessor,[Gary_Weichinger],[Gary_Weichinger],,,,,, netiq-voipa,10116,udp,NetIQ VoIP Assessor,[Gary_Weichinger],[Gary_Weichinger],,,,,, iqrm,10117,tcp,NetIQ IQCResource Managament Svc,[Michael_Sharpe],[Michael_Sharpe],2010-09-14,,,,, iqrm,10117,udp,NetIQ IQCResource Managament Svc,[Michael_Sharpe],[Michael_Sharpe],2010-09-14,,,,, | > > > | > > | > > | | 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 | netiq-qcheck,10114,udp,NetIQ Qcheck,[Michael_Sharpe],[Michael_Sharpe],2010-09-14,,,,, netiq-endpt,10115,tcp,NetIQ Endpoint,[Gary_Weichinger],[Gary_Weichinger],,,,,, netiq-endpt,10115,udp,NetIQ Endpoint,[Gary_Weichinger],[Gary_Weichinger],,,,,, netiq-voipa,10116,tcp,NetIQ VoIP Assessor,[Gary_Weichinger],[Gary_Weichinger],,,,,, netiq-voipa,10116,udp,NetIQ VoIP Assessor,[Gary_Weichinger],[Gary_Weichinger],,,,,, iqrm,10117,tcp,NetIQ IQCResource Managament Svc,[Michael_Sharpe],[Michael_Sharpe],2010-09-14,,,,, iqrm,10117,udp,NetIQ IQCResource Managament Svc,[Michael_Sharpe],[Michael_Sharpe],2010-09-14,,,,, ,10118-10124,,Unassigned,,,,,,,, cimple,10125,tcp,HotLink CIMple REST API,[HotLink_Corporation],[Richard_Offer],2014-12-18,,,,, ,10125,udp,Reserved,,,,,,,, ,10126-10127,,Unassigned,,,,,,,, bmc-perf-sd,10128,tcp,BMC-PERFORM-SERVICE DAEMON,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, bmc-perf-sd,10128,udp,BMC-PERFORM-SERVICE DAEMON,[Portnoy_Boxman],[Portnoy_Boxman],,,,,, bmc-gms,10129,tcp,BMC General Manager Server,[Dima_Seliverstov],[Dima_Seliverstov],2009-07-28,,,,, ,10129,udp,Reserved,,,,,,,, ,10130-10159,,Unassigned,,,,,,,, qb-db-server,10160,tcp,QB Database Server,[Wei_Wang],[Wei_Wang],2005-11,,,,, qb-db-server,10160,udp,QB Database Server,[Wei_Wang],[Wei_Wang],2005-11,,,,, snmptls,10161,tcp,SNMP-TLS,,,,,[RFC6353],,, snmpdtls,10161,udp,SNMP-DTLS,,,,,[RFC6353],,, snmptls-trap,10162,tcp,SNMP-Trap-TLS,,,,,[RFC6353],,, snmpdtls-trap,10162,udp,SNMP-Trap-DTLS,,,,,[RFC6353],,, ,10163-10199,,Unassigned,,,,,,,, trisoap,10200,tcp,Trigence AE Soap Service,[Brigitte_Gagne],[Brigitte_Gagne],2006-08,,,,, trisoap,10200,udp,Trigence AE Soap Service,[Brigitte_Gagne],[Brigitte_Gagne],2006-08,,,,, rsms,10201,tcp,Remote Server Management Service,[Patrick_H_Piper],[Patrick_H_Piper],2009-03-06,,,,, rscs,10201,udp,Remote Server Control and Test Service,[Patrick_H_Piper],[Patrick_H_Piper],2009-03-06,,,,, ,10202-10251,,Unassigned,,,,,,,, apollo-relay,10252,tcp,Apollo Relay Port,[Anthony_Carrabino],[Anthony_Carrabino],2003-08,,,,, apollo-relay,10252,udp,Apollo Relay Port,[Anthony_Carrabino],[Anthony_Carrabino],2003-08,,,,, eapol-relay,10253,udp,Relay of EAPOL frames,[Wi-SUN_Alliance],[Phil_Beecher],2015-06-26,,,,, ,10253,tcp,Reserved,,,,,,,, ,10254-10259,,Unassigned,,,,,,,, axis-wimp-port,10260,tcp,Axis WIMP Port,[Stefan_Eriksson],[Stefan_Eriksson],,,,,, axis-wimp-port,10260,udp,Axis WIMP Port,[Stefan_Eriksson],[Stefan_Eriksson],,,,,, tile-ml,10261,tcp,Tile remote machine learning,[_1026_Labs],[Rob_Earhart],2016-09-27,,,,, ,10261,udp,Reserved,,,,,,,, ,10262-10287,,Unassigned,,,,,,,, blocks,10288,tcp,Blocks,[Carl_Malamud],[Carl_Malamud],,,,,, blocks,10288,udp,Blocks,[Carl_Malamud],[Carl_Malamud],,,,,, ,10289-10320,,Unassigned,,,,,,,, cosir,10321,tcp,Computer Op System Information Report,[Kevin_C_Barber],[Kevin_C_Barber],2009-01-13,,,,, ,10321,udp,Reserved,,,,,,,, ,10322-10438,,Unassigned,,,,,,,, bngsync,10439,udp,BalanceNG session table synchronization protocol,[Inlab_Software_GmbH],[Thomas_G._Obermair],2014-05-02,,,,, |
12130 12131 12132 12133 12134 12135 12136 | MOS-upper,10541,udp,MOS Running Order Port,[Eric_Thorniley],[Eric_Thorniley],2007-09-17,,,,, MOS-aux,10542,tcp,MOS Low Priority Port,[Eric_Thorniley],[Eric_Thorniley],2007-09-17,,,,, MOS-aux,10542,udp,MOS Low Priority Port,[Eric_Thorniley],[Eric_Thorniley],2007-09-17,,,,, MOS-soap,10543,tcp,MOS SOAP Default Port,[Eric_Thorniley],[Eric_Thorniley],2007-09-17,,,,, MOS-soap,10543,udp,MOS SOAP Default Port,[Eric_Thorniley],[Eric_Thorniley],2007-09-17,,,,, MOS-soap-opt,10544,tcp,MOS SOAP Optional Port,[Eric_Thorniley],[Eric_Thorniley],2007-09-17,,,,, MOS-soap-opt,10544,udp,MOS SOAP Optional Port,[Eric_Thorniley],[Eric_Thorniley],2007-09-17,,,,, | > > > | < | > > > | | 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 | MOS-upper,10541,udp,MOS Running Order Port,[Eric_Thorniley],[Eric_Thorniley],2007-09-17,,,,, MOS-aux,10542,tcp,MOS Low Priority Port,[Eric_Thorniley],[Eric_Thorniley],2007-09-17,,,,, MOS-aux,10542,udp,MOS Low Priority Port,[Eric_Thorniley],[Eric_Thorniley],2007-09-17,,,,, MOS-soap,10543,tcp,MOS SOAP Default Port,[Eric_Thorniley],[Eric_Thorniley],2007-09-17,,,,, MOS-soap,10543,udp,MOS SOAP Default Port,[Eric_Thorniley],[Eric_Thorniley],2007-09-17,,,,, MOS-soap-opt,10544,tcp,MOS SOAP Optional Port,[Eric_Thorniley],[Eric_Thorniley],2007-09-17,,,,, MOS-soap-opt,10544,udp,MOS SOAP Optional Port,[Eric_Thorniley],[Eric_Thorniley],2007-09-17,,,,, ,10545-10547,,Unassigned,,,,,,,, serverdocs,10548,tcp,Apple Document Sharing Service,[Apple_Inc_3],[Jason_Thorpe],2015-09-29,,,,, ,10548,udp,Reserved,,,,,,,, ,10549-10630,,Unassigned,,,,,,,, printopia,10631,tcp,Printopia Serve,[Decisive_Tactics_Inc],[Chris_Kent],2011-10-24,2015-04-09,,,, ,10631,udp,Reserved,,,,,,,, ,10632-10799,,Unassigned,,,,,,,, gap,10800,tcp,Gestor de Acaparamiento para Pocket PCs,[Juan_Carlos_Olivares],[Juan_Carlos_Olivares],2006-03,,,,, gap,10800,udp,Gestor de Acaparamiento para Pocket PCs,[Juan_Carlos_Olivares],[Juan_Carlos_Olivares],2006-03,,,,, ,10801-10804,,Unassigned,,,,,,,, lpdg,10805,tcp,LUCIA Pareja Data Group,[Alvaro_P_Dominguez],[Alvaro_P_Dominguez],2006-02,,,,, lpdg,10805,udp,LUCIA Pareja Data Group,[Alvaro_P_Dominguez],[Alvaro_P_Dominguez],2006-02,,,,, ,10806-10808,,Unassigned,,,,,,,, nbd,10809,tcp,Linux Network Block Device,[Wouter_Verhelst],[Wouter_Verhelst],2010-08-02,,,,, ,10809,udp,Reserved,,,,,,,, ,10810,tcp,Reserved,,,,,,,, nmc-disc,10810,udp,Nuance Mobile Care Discovery,[Gordon_Waddell],[Gordon_Waddell],2011-03-21,,,,, ,10811-10859,,Unassigned,,,,,,,, helix,10860,tcp,Helix Client/Server,[Matthew_Strange][Larry_Atkin_2],[Matthew_Strange][Larry_Atkin_2],2009-03-06,,,,, helix,10860,udp,Helix Client/Server,[Matthew_Strange][Larry_Atkin_2],[Matthew_Strange][Larry_Atkin_2],2009-03-06,,,,, ,10861-10879,,Unassigned,,,,,,,, bveapi,10880,tcp,BVEssentials HTTP API,[Tri_Tech_Computers_Ltd],[James_Emerton],2012-11-19,,,,, bveapi,10880,udp,BVEssentials HTTP API,[Tri_Tech_Computers_Ltd],[James_Emerton],2012-11-19,,,,, ,10881-10932,,Unassigned,,,,,,,, octopustentacle,10933,tcp,Listen port used by the Octopus Deploy Tentacle deployment agent,[Octopus_Deploy_Pty_Ltd],[Paul_Stovell],2015-01-28,,,,, ,10933,udp,Reserved,,,,,,,, ,10934-10989,,Unassigned,,,,,,,, rmiaux,10990,tcp,Auxiliary RMI Port,[Eugen_Bacic_2],[Eugen_Bacic_2],,,,,, rmiaux,10990,udp,Auxiliary RMI Port,[Eugen_Bacic_2],[Eugen_Bacic_2],,,,,, ,10991-10999,,Unassigned,,,,,,,, irisa,11000,tcp,IRISA,[V_A_Brauner],[V_A_Brauner],,,,,, irisa,11000,udp,IRISA,[V_A_Brauner],[V_A_Brauner],,,,,, metasys,11001,tcp,Metasys,[Tobin_Schuster],[Tobin_Schuster],,,,,, metasys,11001,udp,Metasys,[Tobin_Schuster],[Tobin_Schuster],,,,,, |
12262 12263 12264 12265 12266 12267 12268 | ,11797-11875,,Unassigned,,,,,,,, xoraya,11876,tcp,X2E Xoraya Multichannel protocol,[Hannes_K],[Hannes_K],2010-09-13,,,,, xoraya,11876,udp,X2E Xoraya Multichannel protocol,[Hannes_K],[Hannes_K],2010-09-13,,,,, ,11877,tcp,Reserved,,,,,,,, x2e-disc,11877,udp,X2E service discovery protocol,[Hannes_K],[Hannes_K],2010-09-13,,,,, ,11878-11966,,Unassigned,,,,,,,, sysinfo-sp,11967,tcp,SysInfo Service Protocol,[Mike_Cooper],[Mike_Cooper],2003-03,,,,, | | > > > | | 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 | ,11797-11875,,Unassigned,,,,,,,, xoraya,11876,tcp,X2E Xoraya Multichannel protocol,[Hannes_K],[Hannes_K],2010-09-13,,,,, xoraya,11876,udp,X2E Xoraya Multichannel protocol,[Hannes_K],[Hannes_K],2010-09-13,,,,, ,11877,tcp,Reserved,,,,,,,, x2e-disc,11877,udp,X2E service discovery protocol,[Hannes_K],[Hannes_K],2010-09-13,,,,, ,11878-11966,,Unassigned,,,,,,,, sysinfo-sp,11967,tcp,SysInfo Service Protocol,[Mike_Cooper],[Mike_Cooper],2003-03,,,,, sysinfo-sp,11967,udp,SysInfo Service Protocol,[Mike_Cooper],[Mike_Cooper],2003-03,,,,, ,11968-11970,,Unassigned,,,,,,,, tibsd,11971,tcp,TiBS Service,[Teradactyl_LLC],[Kristen_Webb],2019-05-17,,,,, ,11971,udp,Reserved,,,,,,,, ,11972-11996,,Unassigned,,,,,,,, wmereceiving,11997,sctp,WorldMailExpress,[Greg_Foutz],[Greg_Foutz],2006-03,,,,, wmedistribution,11998,sctp,WorldMailExpress,[Greg_Foutz],[Greg_Foutz],2006-03,,,,, wmereporting,11999,sctp,WorldMailExpress,[Greg_Foutz],[Greg_Foutz],2006-03,,,,, entextxid,12000,tcp,IBM Enterprise Extender SNA XID Exchange,[Eugene_Cox],[Eugene_Cox],,,,,, entextxid,12000,udp,IBM Enterprise Extender SNA XID Exchange,[Eugene_Cox],[Eugene_Cox],,,,,, entextnetwk,12001,tcp,IBM Enterprise Extender SNA COS Network Priority,[Eugene_Cox],[Eugene_Cox],,,,,, entextnetwk,12001,udp,IBM Enterprise Extender SNA COS Network Priority,[Eugene_Cox],[Eugene_Cox],,,,,, |
12295 12296 12297 12298 12299 12300 12301 | ,12010,udp,Reserved,,,,,,,, ,12011,,Unassigned,,,,,,,, vipera,12012,tcp,Vipera Messaging Service,[Silvano_Maffeis_2],[Silvano_Maffeis_2],2005-08,,,,, vipera,12012,udp,Vipera Messaging Service,[Silvano_Maffeis_2],[Silvano_Maffeis_2],2005-08,,,,, vipera-ssl,12013,tcp,Vipera Messaging Service over SSL Communication,[Silvano_Maffeis_2],[Silvano_Maffeis_2],2008-01-16,,,,, vipera-ssl,12013,udp,Vipera Messaging Service over SSL Communication,[Silvano_Maffeis_2],[Silvano_Maffeis_2],2008-01-16,,,,, ,12014-12108,,Unassigned,,,,,,,, | | | | 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 | ,12010,udp,Reserved,,,,,,,, ,12011,,Unassigned,,,,,,,, vipera,12012,tcp,Vipera Messaging Service,[Silvano_Maffeis_2],[Silvano_Maffeis_2],2005-08,,,,, vipera,12012,udp,Vipera Messaging Service,[Silvano_Maffeis_2],[Silvano_Maffeis_2],2005-08,,,,, vipera-ssl,12013,tcp,Vipera Messaging Service over SSL Communication,[Silvano_Maffeis_2],[Silvano_Maffeis_2],2008-01-16,,,,, vipera-ssl,12013,udp,Vipera Messaging Service over SSL Communication,[Silvano_Maffeis_2],[Silvano_Maffeis_2],2008-01-16,,,,, ,12014-12108,,Unassigned,,,,,,,, rets-ssl,12109,tcp,RETS over SSL,[Jeremy_Crawford],[Jeremy_Crawford],2003-02,,,,, rets-ssl,12109,udp,RETS over SSL,[Jeremy_Crawford],[Jeremy_Crawford],2003-02,,,,, ,12110-12120,,Unassigned,,,,,,,, nupaper-ss,12121,tcp,NuPaper Session Service,[David_Warden_2],[David_Warden_2],2005-11,,,,, nupaper-ss,12121,udp,NuPaper Session Service,[David_Warden_2],[David_Warden_2],2005-11,,,,, ,12122-12167,,Unassigned,,,,,,,, cawas,12168,tcp,CA Web Access Service,[Jon_Press],[Jon_Press],2005-08,,,,, cawas,12168,udp,CA Web Access Service,[Jon_Press],[Jon_Press],2005-08,,,,, ,12169-12171,,Unassigned,,,,,,,, |
12403 12404 12405 12406 12407 12408 12409 | sage-best-com2,14034,tcp,sage Best! Config Server 2,[Christian_Rubach],[Christian_Rubach],,,,,, sage-best-com2,14034,udp,sage Best! Config Server 2,[Christian_Rubach],[Christian_Rubach],,,,,, ,14035-14140,,Unassigned,,,,,,,, vcs-app,14141,tcp,VCS Application,[Ming_Xu],[Ming_Xu],,,,,, vcs-app,14141,udp,VCS Application,[Ming_Xu],[Ming_Xu],,,,,, icpp,14142,tcp,IceWall Cert Protocol,[Tsutomu_Fujinami],[Tsutomu_Fujinami],2005-08,,,,, icpp,14142,udp,IceWall Cert Protocol,[Tsutomu_Fujinami],[Tsutomu_Fujinami],2005-08,,,,, | > > | > > > | | 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 | sage-best-com2,14034,tcp,sage Best! Config Server 2,[Christian_Rubach],[Christian_Rubach],,,,,, sage-best-com2,14034,udp,sage Best! Config Server 2,[Christian_Rubach],[Christian_Rubach],,,,,, ,14035-14140,,Unassigned,,,,,,,, vcs-app,14141,tcp,VCS Application,[Ming_Xu],[Ming_Xu],,,,,, vcs-app,14141,udp,VCS Application,[Ming_Xu],[Ming_Xu],,,,,, icpp,14142,tcp,IceWall Cert Protocol,[Tsutomu_Fujinami],[Tsutomu_Fujinami],2005-08,,,,, icpp,14142,udp,IceWall Cert Protocol,[Tsutomu_Fujinami],[Tsutomu_Fujinami],2005-08,,,,, icpps,14143,tcp,IceWall Cert Protocol over TLS,[Kenta_Kambara],[Kenta_Kambara],2016-05-24,,,,, ,14143,udp,Reserved,,,,,,,, ,14144,,Unassigned,,,,,,,, gcm-app,14145,tcp,GCM Application,[Ming_Xu],[Ming_Xu],,,,,, gcm-app,14145,udp,GCM Application,[Ming_Xu],[Ming_Xu],,,,,, ,14146-14148,,Unassigned,,,,,,,, vrts-tdd,14149,tcp,Veritas Traffic Director,[Sameer_Deokule],[Sameer_Deokule],2002-03,,,,, vrts-tdd,14149,udp,Veritas Traffic Director,[Sameer_Deokule],[Sameer_Deokule],2002-03,,,,, vcscmd,14150,tcp,Veritas Cluster Server Command Server,[Anand_Bhalerao],[Anand_Bhalerao],2008-10-02,,,,, ,14150,udp,Reserved,,,,,,,, ,14151-14153,,Unassigned,,,,,,,, vad,14154,tcp,Veritas Application Director,[Rajeev_Verma],[Rajeev_Verma],2006-02,,,,, vad,14154,udp,Veritas Application Director,[Rajeev_Verma],[Rajeev_Verma],2006-02,,,,, ,14155-14249,,Unassigned,,,,,,,, cps,14250,tcp,Fencing Server,[Mayank_Vasa],[Mayank_Vasa],2008-04-03,,,,, cps,14250,udp,Fencing Server,[Mayank_Vasa],[Mayank_Vasa],2008-04-03,,,,, ,14251-14413,,Unassigned,,,,,,,, ca-web-update,14414,tcp,CA eTrust Web Update Service,[Robert_Ciochon],[Robert_Ciochon],2006-08,,,,, ca-web-update,14414,udp,CA eTrust Web Update Service,[Robert_Ciochon],[Robert_Ciochon],2006-08,,,,, ,14415-14499,,Unassigned,,,,,,,, xpra,14500,tcp,xpra network protocol,[Xpra],[Antoine_Martin],2016-10-05,,,,, ,14500,udp,Reserved,,,,,,,, ,14501-14935,,Unassigned,,,,,,,, hde-lcesrvr-1,14936,tcp,hde-lcesrvr-1,[Horizon_Digital_Ente],[Horizon_Digital_Ente],,,,,, hde-lcesrvr-1,14936,udp,hde-lcesrvr-1,[Horizon_Digital_Ente],[Horizon_Digital_Ente],,,,,, hde-lcesrvr-2,14937,tcp,hde-lcesrvr-2,[Horizon_Digital_Ente],[Horizon_Digital_Ente],,,,,, hde-lcesrvr-2,14937,udp,hde-lcesrvr-2,[Horizon_Digital_Ente],[Horizon_Digital_Ente],,,,,, ,14938-14999,,Unassigned,,,,,,,, hydap,15000,tcp,Hypack Data Aquisition,[HYPACK_Inc],[Mircea_Neacsu],,2011-10-27,,,, hydap,15000,udp,Hypack Data Aquisition,[HYPACK_Inc],[Mircea_Neacsu],,2011-10-27,,,, |
12444 12445 12446 12447 12448 12449 12450 | ,15346-15362,,Unassigned,,,,,,,, 3link,15363,tcp,3Link Negotiation,[Brant_Thomsen],[Brant_Thomsen],2003-01,,,,, 3link,15363,udp,3Link Negotiation,[Brant_Thomsen],[Brant_Thomsen],2003-01,,,,, ,15364-15554,,Unassigned,,,,,,,, cisco-snat,15555,tcp,Cisco Stateful NAT,[Kaushik_Biswas],[Kaushik_Biswas],2006-03,,,,, cisco-snat,15555,udp,Cisco Stateful NAT,[Kaushik_Biswas],[Kaushik_Biswas],2006-03,,,,, ,15556-15659,,Unassigned,,,,,,,, | | | | 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 | ,15346-15362,,Unassigned,,,,,,,, 3link,15363,tcp,3Link Negotiation,[Brant_Thomsen],[Brant_Thomsen],2003-01,,,,, 3link,15363,udp,3Link Negotiation,[Brant_Thomsen],[Brant_Thomsen],2003-01,,,,, ,15364-15554,,Unassigned,,,,,,,, cisco-snat,15555,tcp,Cisco Stateful NAT,[Kaushik_Biswas],[Kaushik_Biswas],2006-03,,,,, cisco-snat,15555,udp,Cisco Stateful NAT,[Kaushik_Biswas],[Kaushik_Biswas],2006-03,,,,, ,15556-15659,,Unassigned,,,,,,,, bex-xr,15660,tcp,Backup Express Restore Server,[Catalogic_Software_Inc],[Chi_Shih_Chang],2008-03-19,2015-02-04,,,, bex-xr,15660,udp,Backup Express Restore Server,[Catalogic_Software_Inc],[Chi_Shih_Chang],2008-03-19,2015-02-04,,,, ,15661-15739,,Unassigned,,,,,,,, ptp,15740,tcp,Picture Transfer Protocol,[Petronel_Bigioi],[Petronel_Bigioi],2004-11,,,,,Defined TXT keys: guid=<Device guid> ptp,15740,udp,Picture Transfer Protocol,[Petronel_Bigioi],[Petronel_Bigioi],2004-11,,,,,Defined TXT keys: guid=<Device guid> ,15741-15997,,Unassigned,,,,,,,, ,15998,tcp,Reserved,,,,,,,, 2ping,15998,udp,2ping Bi-Directional Ping Service,[Ryan_Finnie],[Ryan_Finnie],2010-10-06,,,,, programmar,15999,tcp,ProGrammar Enterprise,[Norman_Wilson],[Norman_Wilson],2010-10-06,,,,, |
12492 12493 12494 12495 12496 12497 12498 | netserialext3,16367,tcp,Network Serial Extension Ports Three,[Michael_J_Hoy],[Michael_J_Hoy],,,,,, netserialext3,16367,udp,Network Serial Extension Ports Three,[Michael_J_Hoy],[Michael_J_Hoy],,,,,, netserialext4,16368,tcp,Network Serial Extension Ports Four,[Michael_J_Hoy],[Michael_J_Hoy],,,,,, netserialext4,16368,udp,Network Serial Extension Ports Four,[Michael_J_Hoy],[Michael_J_Hoy],,,,,, ,16369-16383,,Unassigned,,,,,,,, connected,16384,tcp,Connected Corp,[Nicole_C_Ouellette],[Nicole_C_Ouellette],2004-02,,,,, connected,16384,udp,Connected Corp,[Nicole_C_Ouellette],[Nicole_C_Ouellette],2004-02,,,,, | > > | > > > | | 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 | netserialext3,16367,tcp,Network Serial Extension Ports Three,[Michael_J_Hoy],[Michael_J_Hoy],,,,,, netserialext3,16367,udp,Network Serial Extension Ports Three,[Michael_J_Hoy],[Michael_J_Hoy],,,,,, netserialext4,16368,tcp,Network Serial Extension Ports Four,[Michael_J_Hoy],[Michael_J_Hoy],,,,,, netserialext4,16368,udp,Network Serial Extension Ports Four,[Michael_J_Hoy],[Michael_J_Hoy],,,,,, ,16369-16383,,Unassigned,,,,,,,, connected,16384,tcp,Connected Corp,[Nicole_C_Ouellette],[Nicole_C_Ouellette],2004-02,,,,, connected,16384,udp,Connected Corp,[Nicole_C_Ouellette],[Nicole_C_Ouellette],2004-02,,,,, rdgs,16385,tcp,Reliable Datagram Sockets,[Oracle_7],[Sowmini_Varadhan],2015-04-30,,,,, ,16385,udp,Reserved,,,,,,,, ,16386-16618,,Unassigned,,,,,,,, xoms,16619,tcp,X509 Objects Management Service,[Francis_GASCHET],[Francis_GASCHET],2008-09-08,,,,, ,16619,udp,Reserved,,,,,,,, ,16620-16664,,Unassigned,,,,,,,, axon-tunnel,16665,tcp,Reliable multipath data transport for high latencies,[Bridgeworks],[Paul_Burgess],2014-09-26,,,,, ,16665,udp,Reserved,,,,,,,, ,16666,tcp,Reserved,,,,,,,, vtp,16666,udp,Vidder Tunnel Protocol,[Vidder_Inc],[Ted_Schroeder_2],2011-10-24,,,,, ,16667-16788,,Unassigned,,,,,,,, cadsisvr,16789,tcp,This server provides callable services to mainframe External Security Managers from any TCP/IP platform,[CA_Technologies],[Thomas_Sakowski],2015-06-02,,,,, ,16789,udp,Reserved,,,,,,,, ,16790-16899,,Unassigned,,,,,,,, newbay-snc-mc,16900,tcp,Newbay Mobile Client Update Service,[Srinivasa_Nayudu],[Srinivasa_Nayudu],2009-07-06,,,,, newbay-snc-mc,16900,udp,Newbay Mobile Client Update Service,[Srinivasa_Nayudu],[Srinivasa_Nayudu],2009-07-06,,,,, ,16901-16949,,Unassigned,,,,,,,, sgcip,16950,tcp,Simple Generic Client Interface Protocol,[John_Aquilino],[John_Aquilino],,,,,, sgcip,16950,udp,Simple Generic Client Interface Protocol,[John_Aquilino],[John_Aquilino],,,,,, ,16951-16990,,Unassigned,,,,,,,, intel-rci-mp,16991,tcp,INTEL-RCI-MP,[Jane_Dashevsky],[Jane_Dashevsky],,,,,, |
12534 12535 12536 12537 12538 12539 12540 | chipper,17219,udp,Chipper,[Ronald_Jimmink],[Ronald_Jimmink],,,,,, avtp,17220,tcp,IEEE 1722 Transport Protocol for Time Sensitive Applications,[Transport_Protocol_for_Time-Sensitive_Networking_TG],[Ashley_Butterworth],2014-03-07,,,,, avtp,17220,udp,IEEE 1722 Transport Protocol for Time Sensitive Applications,[Transport_Protocol_for_Time-Sensitive_Networking_TG],[Ashley_Butterworth],2014-03-07,,,,, avdecc,17221,tcp,"IEEE 1722.1 AVB Discovery, Enumeration, Connection management, and Control",[IEEE_1722_1],[Jeffrey_Daniel_Koftinoff],2011-11-01,,,,, avdecc,17221,udp,"IEEE 1722.1 AVB Discovery, Enumeration, Connection management, and Control",[IEEE_1722_1],[Jeffrey_Daniel_Koftinoff],2011-11-01,,,,, ,17222,tcp,Reserved,,,,,,,, cpsp,17222,udp,Control Plane Synchronization Protocol (SPSP),[Randall_Stewart_2],[Randall_Stewart_2],2011-11-10,,,,, | > > > > > > | | 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 | chipper,17219,udp,Chipper,[Ronald_Jimmink],[Ronald_Jimmink],,,,,, avtp,17220,tcp,IEEE 1722 Transport Protocol for Time Sensitive Applications,[Transport_Protocol_for_Time-Sensitive_Networking_TG],[Ashley_Butterworth],2014-03-07,,,,, avtp,17220,udp,IEEE 1722 Transport Protocol for Time Sensitive Applications,[Transport_Protocol_for_Time-Sensitive_Networking_TG],[Ashley_Butterworth],2014-03-07,,,,, avdecc,17221,tcp,"IEEE 1722.1 AVB Discovery, Enumeration, Connection management, and Control",[IEEE_1722_1],[Jeffrey_Daniel_Koftinoff],2011-11-01,,,,, avdecc,17221,udp,"IEEE 1722.1 AVB Discovery, Enumeration, Connection management, and Control",[IEEE_1722_1],[Jeffrey_Daniel_Koftinoff],2011-11-01,,,,, ,17222,tcp,Reserved,,,,,,,, cpsp,17222,udp,Control Plane Synchronization Protocol (SPSP),[Randall_Stewart_2],[Randall_Stewart_2],2011-11-10,,,,, isa100-gci,17223,tcp,ISA100 GCI is a service utilizing a common interface between an ISA100 Wireless gateway and a client application,[ISA100_Wireless_Compliance_Institute],[Jay_Werb],2015-07-24,,,,, ,17223,udp,Reserved,,,,,,,, trdp-pd,17224,udp,Train Realtime Data Protocol (TRDP) Process Data,[IEC_Central_Office],[Gianosvaldo_Fadin],2015-07-24,,,,, ,17224,tcp,Reserved,,,,,,,, trdp-md,17225,tcp,Train Realtime Data Protocol (TRDP) Message Data,[IEC_Central_Office],[Gianosvaldo_Fadin],2015-07-24,,,,, trdp-md,17225,udp,Train Realtime Data Protocol (TRDP) Message Data,[IEC_Central_Office],[Gianosvaldo_Fadin],2015-07-24,,,,, ,17226-17233,,Unassigned,,,,,,,, integrius-stp,17234,tcp,Integrius Secure Tunnel Protocol,[Christian_Klemetsson],[Christian_Klemetsson],2010-03-04,,,,, integrius-stp,17234,udp,Integrius Secure Tunnel Protocol,[Christian_Klemetsson],[Christian_Klemetsson],2010-03-04,,,,, ssh-mgmt,17235,tcp,SSH Tectia Manager,[Ville_Laurikari],[Ville_Laurikari],2005-08,,,,, ssh-mgmt,17235,udp,SSH Tectia Manager,[Ville_Laurikari],[Ville_Laurikari],2005-08,,,,, ,17236-17499,,Unassigned,,,,,,,, db-lsp,17500,tcp,Dropbox LanSync Protocol,[Paul_Bohm],[Paul_Bohm],2010-01-21,,,,, db-lsp-disc,17500,udp,Dropbox LanSync Discovery,[Paul_Bohm],[Paul_Bohm],2010-01-21,,,,, |
12600 12601 12602 12603 12604 12605 12606 | ac-cluster,18463,tcp,AC Cluster,[Lisa_Zhong],[Lisa_Zhong],,,,,, ac-cluster,18463,udp,AC Cluster,[Lisa_Zhong],[Lisa_Zhong],,,,,, ,18464-18633,,Unassigned,,,,,,,, rds-ib,18634,tcp,Reliable Datagram Service,[Andy_Grover],[Andy_Grover],2009-02-27,,,,, rds-ib,18634,udp,Reliable Datagram Service,[Andy_Grover],[Andy_Grover],2009-02-27,,,,, rds-ip,18635,tcp,Reliable Datagram Service over IP,[Andy_Grover],[Andy_Grover],2009-05-20,,,,, rds-ip,18635,udp,Reliable Datagram Service over IP,[Andy_Grover],[Andy_Grover],2009-05-20,,,,, | > > > | | 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 | ac-cluster,18463,tcp,AC Cluster,[Lisa_Zhong],[Lisa_Zhong],,,,,, ac-cluster,18463,udp,AC Cluster,[Lisa_Zhong],[Lisa_Zhong],,,,,, ,18464-18633,,Unassigned,,,,,,,, rds-ib,18634,tcp,Reliable Datagram Service,[Andy_Grover],[Andy_Grover],2009-02-27,,,,, rds-ib,18634,udp,Reliable Datagram Service,[Andy_Grover],[Andy_Grover],2009-02-27,,,,, rds-ip,18635,tcp,Reliable Datagram Service over IP,[Andy_Grover],[Andy_Grover],2009-05-20,,,,, rds-ip,18635,udp,Reliable Datagram Service over IP,[Andy_Grover],[Andy_Grover],2009-05-20,,,,, ,18636-18667,,Unassigned,,,,,,,, vdmmesh,18668,tcp,Manufacturing Execution Systems Mesh Communication,[Van_Doren_MES],[Edwin_van_de_Burgt],2016-10-31,,,,, vdmmesh-disc,18668,udp,Manufacturing Execution Systems Mesh Communication,[Van_Doren_MES],[Edwin_van_de_Burgt],2016-10-31,,,,, ,18669-18768,,Unassigned,,,,,,,, ique,18769,tcp,IQue Protocol,[Avi_Drissman],[Avi_Drissman],2002-07,,,,, ique,18769,udp,IQue Protocol,[Avi_Drissman],[Avi_Drissman],2002-07,,,,, ,18770-18880,,Unassigned,,,,,,,, infotos,18881,tcp,Infotos,[Marcel_Dube],[Marcel_Dube],2004-11,,,,, infotos,18881,udp,Infotos,[Marcel_Dube],[Marcel_Dube],2004-11,,,,, ,18882-18887,,Unassigned,,,,,,,, apc-necmp,18888,tcp,APCNECMP,[Michael_Yip],[Michael_Yip],,,,,, |
12624 12625 12626 12627 12628 12629 12630 | ,19020,udp,Reserved,,,,,,,, ,19021-19190,,Unassigned,,,,,,,, opsec-uaa,19191,tcp,OPSEC UAA,[Reuven_Harrison],[Reuven_Harrison],,,,,, opsec-uaa,19191,udp,OPSEC UAA,[Reuven_Harrison],[Reuven_Harrison],,,,,, ,19192-19193,,Unassigned,,,,,,,, ua-secureagent,19194,tcp,UserAuthority SecureAgent,[Reuven_Harrison_2],[Reuven_Harrison_2],2003-01,,,,, ua-secureagent,19194,udp,UserAuthority SecureAgent,[Reuven_Harrison_2],[Reuven_Harrison_2],2003-01,,,,, | > > > | | 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 | ,19020,udp,Reserved,,,,,,,, ,19021-19190,,Unassigned,,,,,,,, opsec-uaa,19191,tcp,OPSEC UAA,[Reuven_Harrison],[Reuven_Harrison],,,,,, opsec-uaa,19191,udp,OPSEC UAA,[Reuven_Harrison],[Reuven_Harrison],,,,,, ,19192-19193,,Unassigned,,,,,,,, ua-secureagent,19194,tcp,UserAuthority SecureAgent,[Reuven_Harrison_2],[Reuven_Harrison_2],2003-01,,,,, ua-secureagent,19194,udp,UserAuthority SecureAgent,[Reuven_Harrison_2],[Reuven_Harrison_2],2003-01,,,,, ,19195-19219,,Unassigned,,,,,,,, cora,19220,tcp,Client Connection Management and Data Exchange Service,[Softvise_GmbH],[Ronny_Krüger],2016-11-10,,,,, cora-disc,19220,udp,Discovery for Client Connection Management and Data Exchange Service,[Softvise_GmbH],[Ronny_Krüger],2016-11-10,,,,, ,19221-19282,,Unassigned,,,,,,,, keysrvr,19283,tcp,Key Server for SASSAFRAS,[Mark_Valence],[Mark_Valence],,,,,, keysrvr,19283,udp,Key Server for SASSAFRAS,[Mark_Valence],[Mark_Valence],,,,,, ,19284-19314,,Unassigned,,,,,,,, keyshadow,19315,tcp,Key Shadow for SASSAFRAS,[Mark_Valence],[Mark_Valence],,,,,, keyshadow,19315,udp,Key Shadow for SASSAFRAS,[Mark_Valence],[Mark_Valence],,,,,, ,19316-19397,,Unassigned,,,,,,,, mtrgtrans,19398,tcp,mtrgtrans,[Katsuhito_Muroi],[Katsuhito_Muroi],,,,,, |
12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 | ss-idi-disc,20012,udp,Samsung Interdevice Interaction discovery,[Hong_Jungkih],[Hong_Jungkih],,,,,, ss-idi,20013,tcp,Samsung Interdevice Interaction,[Hong_Jungkih],[Hong_Jungkih],,,,,, ,20013,udp,Reserved,,,,,,,, opendeploy,20014,tcp,OpenDeploy Listener,[Todd_Scallan],[Todd_Scallan],2005-08,,,,, opendeploy,20014,udp,OpenDeploy Listener,[Todd_Scallan],[Todd_Scallan],2005-08,,,,, ,20015-20033,,Unassigned,,,,,,,, nburn-id,20034,tcp,"NetBurner ID Port IANA assigned this well-formed service name as a replacement for ""nburn_id"".",[Paul_Breed],[Paul_Breed],2003-11,,,,, nburn_id,20034,tcp,NetBurner ID Port,[Paul_Breed],[Paul_Breed],2003-11,,,,,"This entry is an alias to ""nburn-id"". This entry is now historic, not usable for use with many common service discovery mechanisms." nburn-id,20034,udp,"NetBurner ID Port IANA assigned this well-formed service name as a replacement for ""nburn_id"".",[Paul_Breed],[Paul_Breed],2003-11,,,,, nburn_id,20034,udp,NetBurner ID Port,[Paul_Breed],[Paul_Breed],2003-11,,,,,"This entry is an alias to ""nburn-id"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,20035-20045,,Unassigned,,,,,,,, tmophl7mts,20046,tcp,TMOP HL7 Message Transfer Service,[Tim_Riley],[Tim_Riley],2009-07-31,,,,, tmophl7mts,20046,udp,TMOP HL7 Message Transfer Service,[Tim_Riley],[Tim_Riley],2009-07-31,,,,, ,20047-20047,,Unassigned,,,,,,,, mountd,20048,tcp,NFS mount protocol,[Nicolas_Williams],[Nicolas_Williams],2010-08-09,,,,, mountd,20048,udp,NFS mount protocol,[Nicolas_Williams],[Nicolas_Williams],2010-08-09,,,,, | > > > > | | | > > > | | 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 | ss-idi-disc,20012,udp,Samsung Interdevice Interaction discovery,[Hong_Jungkih],[Hong_Jungkih],,,,,, ss-idi,20013,tcp,Samsung Interdevice Interaction,[Hong_Jungkih],[Hong_Jungkih],,,,,, ,20013,udp,Reserved,,,,,,,, opendeploy,20014,tcp,OpenDeploy Listener,[Todd_Scallan],[Todd_Scallan],2005-08,,,,, opendeploy,20014,udp,OpenDeploy Listener,[Todd_Scallan],[Todd_Scallan],2005-08,,,,, ,20015-20033,,Unassigned,,,,,,,, nburn-id,20034,tcp,"NetBurner ID Port IANA assigned this well-formed service name as a replacement for ""nburn_id"".",[Paul_Breed],[Paul_Breed],2003-11,,,,, nburn_id,20034,tcp,NetBurner ID Port,[Paul_Breed],[Paul_Breed],2003-11,,,,,"This entry is an alias to ""nburn-id"". This entry is now historic, not usable for use with many common service discovery mechanisms." nburn-id,20034,udp,"NetBurner ID Port IANA assigned this well-formed service name as a replacement for ""nburn_id"".",[Paul_Breed],[Paul_Breed],2003-11,,,,, nburn_id,20034,udp,NetBurner ID Port,[Paul_Breed],[Paul_Breed],2003-11,,,,,"This entry is an alias to ""nburn-id"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,20035-20045,,Unassigned,,,,,,,, tmophl7mts,20046,tcp,TMOP HL7 Message Transfer Service,[Tim_Riley],[Tim_Riley],2009-07-31,,,,, tmophl7mts,20046,udp,TMOP HL7 Message Transfer Service,[Tim_Riley],[Tim_Riley],2009-07-31,,,,, ,20047-20047,,Unassigned,,,,,,,, mountd,20048,tcp,NFS mount protocol,[Nicolas_Williams],[Nicolas_Williams],2010-08-09,,,,, mountd,20048,udp,NFS mount protocol,[Nicolas_Williams],[Nicolas_Williams],2010-08-09,,,,, nfsrdma,20049,tcp,Network File System (NFS) over RDMA,,,,2017-09-05,[RFC8267],,, nfsrdma,20049,udp,Network File System (NFS) over RDMA,,,,2017-09-05,[RFC8267],,, nfsrdma,20049,sctp,Network File System (NFS) over RDMA,,,,2017-09-05,[RFC8267],,, ,20050-20056,,Unassigned,,,,,,,, avesterra,20057,tcp,AvesTerra Hypergraph Transfer Protocol (HGTP),[Georgetown_University],[J.C._Smart],2016-06-06,,,,, ,20057,udp,Reserved,,,,,,,, ,20058-20166,,Unassigned,,,,,,,, tolfab,20167,tcp,TOLfab Data Change,[Pierre_Couderc],[Pierre_Couderc],2006-03,,,,, tolfab,20167,udp,TOLfab Data Change,[Pierre_Couderc],[Pierre_Couderc],2006-03,,,,, ,20168-20201,,Unassigned,,,,,,,, ipdtp-port,20202,tcp,IPD Tunneling Port,[Vikki_Yin_Wei],[Vikki_Yin_Wei],2003-01,,,,, ipdtp-port,20202,udp,IPD Tunneling Port,[Vikki_Yin_Wei],[Vikki_Yin_Wei],2003-01,,,,, ,20203-20221,,Unassigned,,,,,,,, ipulse-ics,20222,tcp,iPulse-ICS,[Meggie_Garica_Woodru],[Meggie_Garica_Woodru],,,,,, |
12716 12717 12718 12719 12720 12721 12722 | athand-mmp,20999,tcp,At Hand MMP,[Stepan_Riha],[Stepan_Riha],,,,,, athand-mmp,20999,udp,AT Hand MMP,[Stepan_Riha],[Stepan_Riha],,,,,, irtrans,21000,tcp,IRTrans Control,[Marcus_Mueller],[Marcus_Mueller],2004-11,,,,, irtrans,21000,udp,IRTrans Control,[Marcus_Mueller],[Marcus_Mueller],2004-11,,,,, ,21001-21009,,Unassigned,,,,,,,, notezilla-lan,21010,tcp,Notezilla.Lan Server,[Conceptworld_Corporation],[Gautam_Jain],2013-08-20,,,,, ,21010,udp,Reserved,,,,,,,, | > > > > > > > > | | 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 | athand-mmp,20999,tcp,At Hand MMP,[Stepan_Riha],[Stepan_Riha],,,,,, athand-mmp,20999,udp,AT Hand MMP,[Stepan_Riha],[Stepan_Riha],,,,,, irtrans,21000,tcp,IRTrans Control,[Marcus_Mueller],[Marcus_Mueller],2004-11,,,,, irtrans,21000,udp,IRTrans Control,[Marcus_Mueller],[Marcus_Mueller],2004-11,,,,, ,21001-21009,,Unassigned,,,,,,,, notezilla-lan,21010,tcp,Notezilla.Lan Server,[Conceptworld_Corporation],[Gautam_Jain],2013-08-20,,,,, ,21010,udp,Reserved,,,,,,,, ,21011-21211,,Unassigned,,,,,,,, trinket-agent,21212,tcp,Distributed artificial intelligence,[Holvonix_LLC],[Advay_Mengle],2017-11-29,,,,, ,21212,udp,Reserved,,,,,,,, cohesity-agent,21213,tcp,Cohesity backup agents,[Cohesity_Inc],[Sashi_Madduri],2019-08-01,,,,, ,21213,udp,Reserved,,,,,,,, ,21214-21220,,Unassigned,,,,,,,, aigairserver,21221,tcp,Services for Air Server,[AIG_S.L.],[Edelmiro_Gonzalez_Martinez],2017-03-16,,,,, ,21221,udp,Reserved,,,,,,,, ,21222-21552,,Unassigned,,,,,,,, rdm-tfs,21553,tcp,Raima RDM TFS,[Paul_Johnson],[Paul_Johnson],2011-05-02,,,,, ,21553,udp,Reserved,,,,,,,, dfserver,21554,tcp,MineScape Design File Server,[Michael_Purser],[Michael_Purser],2006-06,,,,, dfserver,21554,udp,MineScape Design File Server,[Michael_Purser],[Michael_Purser],2006-06,,,,, ,21555-21589,,Unassigned,,,,,,,, vofr-gateway,21590,tcp,VoFR Gateway,[Marty_Borden],[Marty_Borden],,,,,, vofr-gateway,21590,udp,VoFR Gateway,[Marty_Borden],[Marty_Borden],,,,,, |
12766 12767 12768 12769 12770 12771 12772 | ,22222,udp,Reserved,,,,,,,, ,22223-22272,,Unassigned,,,,,,,, wnn6,22273,tcp,wnn6,[Yasunari_Gon_Yamasit],[Yasunari_Gon_Yamasit],,,,,, wnn6,22273,udp,wnn6,[Yasunari_Gon_Yamasit],[Yasunari_Gon_Yamasit],,,,,, ,22274-22304,,Unassigned,,,,,,,, cis,22305,tcp,CompactIS Tunnel,[Justin_Paupore],[Justin_Paupore],2007-08-16,,,,, cis,22305,udp,CompactIS Tunnel,[Justin_Paupore],[Justin_Paupore],2007-08-16,,,,, | > > > | | 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 | ,22222,udp,Reserved,,,,,,,, ,22223-22272,,Unassigned,,,,,,,, wnn6,22273,tcp,wnn6,[Yasunari_Gon_Yamasit],[Yasunari_Gon_Yamasit],,,,,, wnn6,22273,udp,wnn6,[Yasunari_Gon_Yamasit],[Yasunari_Gon_Yamasit],,,,,, ,22274-22304,,Unassigned,,,,,,,, cis,22305,tcp,CompactIS Tunnel,[Justin_Paupore],[Justin_Paupore],2007-08-16,,,,, cis,22305,udp,CompactIS Tunnel,[Justin_Paupore],[Justin_Paupore],2007-08-16,,,,, ,22306-22334,,Unassigned,,,,,,,, shrewd-control,22335,tcp,Initium Labs Security and Automation Control,[Initium_Labs_LLC],[Manbir_Sahni],2015-03-06,,,,, shrewd-stream,22335,udp,Initium Labs Security and Automation Streaming,[Initium_Labs_LLC],[Manbir_Sahni],2015-03-06,,,,, ,22336-22342,,Unassigned,,,,,,,, cis-secure,22343,tcp,CompactIS Secure Tunnel,[Justin_Paupore],[Justin_Paupore],2007-08-16,,,,, cis-secure,22343,udp,CompactIS Secure Tunnel,[Justin_Paupore],[Justin_Paupore],2007-08-16,,,,, ,22344-22346,,Unassigned,,,,,,,, wibukey,22347,tcp,WibuKey Standard WkLan,[Wolfgang_Voelker],[Wolfgang_Voelker],2007-06,,,,, wibukey,22347,udp,WibuKey Standard WkLan,[Wolfgang_Voelker],[Wolfgang_Voelker],2007-06,,,,, ,22348-22349,,Unassigned,,,,,,,, codemeter,22350,tcp,CodeMeter Standard,[Wolfgang_Voelker],[Wolfgang_Voelker],2007-06,,,,, |
12811 12812 12813 12814 12815 12816 12817 | inovaport6,23005,udp,Inova LightLink Server Type 6,[Chris_Koeritz_3],[Chris_Koeritz_3],2006-10,,,,, ,23006-23052,,Unassigned,,,,,,,, gntp,23053,tcp,Generic Notification Transport Protocol,[Growl_Project],[Chris_Forsythe],2012-02-07,,,,, ,23053,udp,Reserved,,,,,,,, ,23054-23271,,Unassigned,,,,,,,, ,23272,tcp,Reserved,,,,,,,, s102,23272,udp,S102 application,[Kimmo_Kymalainen],[Kimmo_Kymalainen],2009-08-26,,,,, | > > > | | 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 | inovaport6,23005,udp,Inova LightLink Server Type 6,[Chris_Koeritz_3],[Chris_Koeritz_3],2006-10,,,,, ,23006-23052,,Unassigned,,,,,,,, gntp,23053,tcp,Generic Notification Transport Protocol,[Growl_Project],[Chris_Forsythe],2012-02-07,,,,, ,23053,udp,Reserved,,,,,,,, ,23054-23271,,Unassigned,,,,,,,, ,23272,tcp,Reserved,,,,,,,, s102,23272,udp,S102 application,[Kimmo_Kymalainen],[Kimmo_Kymalainen],2009-08-26,,,,, ,23273-23293,,Unassigned,,,,,,,, 5afe-dir,23294,tcp,5AFE SDN Directory,[Ayoda_GmbH],[Laurenz_Eschwey],2016-04-01,,,,, 5afe-disc,23294,udp,5AFE SDN Directory discovery,[Ayoda_GmbH],[Laurenz_Eschwey],2016-04-01,,,,, ,23295-23332,,Unassigned,,,,,,,, elxmgmt,23333,tcp,Emulex HBAnyware Remote Management,[Maziar_Tamadon],[Maziar_Tamadon],2007-11-06,,,,, elxmgmt,23333,udp,Emulex HBAnyware Remote Management,[Maziar_Tamadon],[Maziar_Tamadon],2007-11-06,,,,, ,23334-23399,,Unassigned,,,,,,,, novar-dbase,23400,tcp,Novar Data,[Keith_Kilroy],[Keith_Kilroy],2006-02,,,,, novar-dbase,23400,udp,Novar Data,[Keith_Kilroy],[Keith_Kilroy],2006-02,,,,, novar-alarm,23401,tcp,Novar Alarm,[Keith_Kilroy],[Keith_Kilroy],2006-02,,,,, novar-alarm,23401,udp,Novar Alarm,[Keith_Kilroy],[Keith_Kilroy],2006-02,,,,, |
12855 12856 12857 12858 12859 12860 12861 | vista-4gl,24249,tcp,Vista 4GL,[Mark_Itzcovitz],[Mark_Itzcovitz],,,,,, vista-4gl,24249,udp,Vista 4GL,[Mark_Itzcovitz],[Mark_Itzcovitz],,,,,, ,24250-24320,,Unassigned,,,,,,,, ild,24321,tcp,Isolv Local Directory,[Mitchell_Bass],[Mitchell_Bass],2005-08,,,,, ild,24321,udp,Isolv Local Directory,[Mitchell_Bass],[Mitchell_Bass],2005-08,,,,, hid,24322,udp,Transport of Human Interface Device data streams,[Freebox_SAS],[Nicolas_Pouillon],2012-12-14,,,,, ,24322,tcp,Reserved,,,,,,,, | > > | > > > > > > > | | 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 | vista-4gl,24249,tcp,Vista 4GL,[Mark_Itzcovitz],[Mark_Itzcovitz],,,,,, vista-4gl,24249,udp,Vista 4GL,[Mark_Itzcovitz],[Mark_Itzcovitz],,,,,, ,24250-24320,,Unassigned,,,,,,,, ild,24321,tcp,Isolv Local Directory,[Mitchell_Bass],[Mitchell_Bass],2005-08,,,,, ild,24321,udp,Isolv Local Directory,[Mitchell_Bass],[Mitchell_Bass],2005-08,,,,, hid,24322,udp,Transport of Human Interface Device data streams,[Freebox_SAS],[Nicolas_Pouillon],2012-12-14,,,,, ,24322,tcp,Reserved,,,,,,,, vrmg-ip,24323,tcp,Verimag mobile class protocol over TCP,[Verimag_OOO],[Denis_Ionov],2018-08-15,,,,, ,24323,udp,Reserved,,,,,,,, ,24324-24385,,Unassigned,,,,,,,, intel-rci,24386,tcp,"Intel RCI IANA assigned this well-formed service name as a replacement for ""intel_rci"".",[Mark_Lewis_2],[Mark_Lewis_2],,,,,, intel_rci,24386,tcp,Intel RCI,[Mark_Lewis_2],[Mark_Lewis_2],,,,,,"This entry is an alias to ""intel-rci"". This entry is now historic, not usable for use with many common service discovery mechanisms." intel-rci,24386,udp,"Intel RCI IANA assigned this well-formed service name as a replacement for ""intel_rci"".",[Mark_Lewis_2],[Mark_Lewis_2],,,,,, intel_rci,24386,udp,Intel RCI,[Mark_Lewis_2],[Mark_Lewis_2],,,,,,"This entry is an alias to ""intel-rci"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,24387-24464,,Unassigned,,,,,,,, tonidods,24465,tcp,Tonido Domain Server,[Madhan_Kanagavel],[Madhan_Kanagavel],2008-07-18,,,,, tonidods,24465,udp,Tonido Domain Server,[Madhan_Kanagavel],[Madhan_Kanagavel],2008-07-18,,,,, ,24466-24553,,Unassigned,,,,,,,, binkp,24554,tcp,BINKP,[Max_Masyutin],[Max_Masyutin],,,,,, binkp,24554,udp,BINKP,[Max_Masyutin],[Max_Masyutin],,,,,, ,24555-24576,,Unassigned,,,,,,,, bilobit,24577,tcp,bilobit Service,[bilobit_GmbH],[Martin_Schmuker],2014-08-15,,,,, bilobit-update,24577,udp,bilobit Service Update,[bilobit_GmbH],[Martin_Schmuker],2014-08-15,,,,, ,24578-24665,,Unassigned,,,,,,,, sdtvwcam,24666,tcp,Service used by SmarDTV to communicate between a CAM and a second screen application,[SmarDTV],[Vincent_Demortier],2015-03-04,,,,, ,24666,udp,Reserved,,,,,,,, ,24667-24675,,Unassigned,,,,,,,, canditv,24676,tcp,Canditv Message Service,[Gary_Aston],[Gary_Aston],2009-03-10,,,,, canditv,24676,udp,Canditv Message Service,[Gary_Aston],[Gary_Aston],2009-03-10,,,,, flashfiler,24677,tcp,FlashFiler,[Ben_Oram],[Ben_Oram],,,,,, flashfiler,24677,udp,FlashFiler,[Ben_Oram],[Ben_Oram],,,,,, proactivate,24678,tcp,Turbopower Proactivate,[Ben_Oram],[Ben_Oram],,,,,, proactivate,24678,udp,Turbopower Proactivate,[Ben_Oram],[Ben_Oram],,,,,, ,24679,,Unassigned,,,,,,,, |
12949 12950 12951 12952 12953 12954 12955 | quake,26000,udp,quake,[Yasunari_Gon_Yamasit],[Yasunari_Gon_Yamasit],,,,,, ,26001-26132,,Unassigned,,,,,,,, scscp,26133,tcp,Symbolic Computation Software Composability Protocol,[Alexander_Konovalov],[Alexander_Konovalov],2007-11-27,,,,, scscp,26133,udp,Symbolic Computation Software Composability Protocol,[Alexander_Konovalov],[Alexander_Konovalov],2007-11-27,,,,, ,26134-26207,,Unassigned,,,,,,,, wnn6-ds,26208,tcp,wnn6-ds,[Yasunari_Gon_Yamasit],[Yasunari_Gon_Yamasit],,,,,, wnn6-ds,26208,udp,wnn6-ds,[Yasunari_Gon_Yamasit],[Yasunari_Gon_Yamasit],,,,,, | > > > | | | | > > > > > | | 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 | quake,26000,udp,quake,[Yasunari_Gon_Yamasit],[Yasunari_Gon_Yamasit],,,,,, ,26001-26132,,Unassigned,,,,,,,, scscp,26133,tcp,Symbolic Computation Software Composability Protocol,[Alexander_Konovalov],[Alexander_Konovalov],2007-11-27,,,,, scscp,26133,udp,Symbolic Computation Software Composability Protocol,[Alexander_Konovalov],[Alexander_Konovalov],2007-11-27,,,,, ,26134-26207,,Unassigned,,,,,,,, wnn6-ds,26208,tcp,wnn6-ds,[Yasunari_Gon_Yamasit],[Yasunari_Gon_Yamasit],,,,,, wnn6-ds,26208,udp,wnn6-ds,[Yasunari_Gon_Yamasit],[Yasunari_Gon_Yamasit],,,,,, ,26209-26256,,Unassigned,,,,,,,, cockroach,26257,tcp,CockroachDB,[Cockroach_Labs_Inc],[Ben_Darnell],2015-09-29,,,,, ,26257,udp,Reserved,,,,,,,, ,26258-26259,,Unassigned,,,,,,,, ezproxy,26260,tcp,eZproxy,[Albert_C_Yang],[Albert_C_Yang],,,,,, ezproxy,26260,udp,eZproxy,[Albert_C_Yang],[Albert_C_Yang],,,,,, ezmeeting,26261,tcp,eZmeeting,[Albert_C_Yang],[Albert_C_Yang],,,,,, ezmeeting,26261,udp,eZmeeting,[Albert_C_Yang],[Albert_C_Yang],,,,,, k3software-svr,26262,tcp,K3 Software-Server,[Jim_Baldridge],[Jim_Baldridge],,,,,, k3software-svr,26262,udp,K3 Software-Server,[Jim_Baldridge],[Jim_Baldridge],,,,,, k3software-cli,26263,tcp,K3 Software-Client,[Jim_Baldridge],[Jim_Baldridge],,,,,, k3software-cli,26263,udp,K3 Software-Client,[Jim_Baldridge],[Jim_Baldridge],,,,,, ,26264,,De-registered,,,,2006-04-06,,,, ,26265-26485,,Unassigned,,,,,,,, exoline-tcp,26486,tcp,EXOline-TCP,[AB_Regin],[Simon_Jonsson],2008-12-24,2018-09-13,,,, exoline-udp,26486,udp,EXOline-UDP,[AB_Regin],[Simon_Jonsson],2008-12-24,2018-09-13,,,, exoconfig,26487,tcp,EXOconfig,[Urban_Fosseus],[Urban_Fosseus],2008-12-24,,,,, exoconfig,26487,udp,EXOconfig,[Urban_Fosseus],[Urban_Fosseus],2008-12-24,,,,, ,26488,,Unassigned,,,,,,,, exonet,26489,tcp,EXOnet,[Urban_Fosseus],[Urban_Fosseus],2008-12-24,,,,, exonet,26489,udp,EXOnet,[Urban_Fosseus],[Urban_Fosseus],2008-12-24,,,,, ,26490-26999,,Unassigned,,,,,,,, flex-lm,27000-27009,,FLEX LM (1-10),[Flexera_Software],[Paul_Bland],,2018-02-15,,,, flex-lmadmin,27010,tcp,A protocol for managing license services,[Flexera],[Paul_Bland],2018-08-22,,,,, ,27010,udp,Reserved,,,,,,,, ,27011-27016,,Unassigned,,,,,,,, mongodb,27017,tcp,Mongo database system,[MongoDB_Inc.],[Akshay_Kumar],2019-02-21,,,,, ,27017,udp,Reserved,,,,,,,, ,27018-27344,,Unassigned,,,,,,,Unauthorized Use Known on ports 27018 and 27019, imagepump,27345,tcp,ImagePump,[Richard_Minner],[Richard_Minner],,,,,, imagepump,27345,udp,ImagePump,[Richard_Minner],[Richard_Minner],,,,,, ,27346-27441,,Unassigned,,,,,,,, jesmsjc,27442,tcp,Job controller service,[Chris_Newman],[Chris_Newman],2010-10-15,,,,, jesmsjc,27442,udp,Job controller service,[Chris_Newman],[Chris_Newman],2010-10-15,,,,, ,27443-27503,,Unassigned,,,,,,,, kopek-httphead,27504,tcp,Kopek HTTP Head Port,[Sten_H_Danielsen],[Sten_H_Danielsen],2002-07,,,,, |
12993 12994 12995 12996 12997 12998 12999 | tw-auth-key,27999,udp,Attribute Certificate Services,[Alex_Duncan_2],[Alex_Duncan_2],,,,,, nxlmd,28000,tcp,NX License Manager,[Anthony_Greatorex],[Anthony_Greatorex],2004-11,,,,Unauthorized Use Known on port 28000, nxlmd,28000,udp,NX License Manager,[Anthony_Greatorex],[Anthony_Greatorex],2004-11,,,,, pqsp,28001,tcp,PQ Service,[Peter_Laschtowitz],[Peter_Laschtowitz],2009-09-15,,,,, ,28001,udp,Reserved,,,,,,,, ,28002-28118,,Unassigned,,,,,,,"Unauthorized Use Known on ports 28017, 28018 and 28019", ,28119,tcp,Reserved,,,,,,,, | | > > > | | 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 | tw-auth-key,27999,udp,Attribute Certificate Services,[Alex_Duncan_2],[Alex_Duncan_2],,,,,, nxlmd,28000,tcp,NX License Manager,[Anthony_Greatorex],[Anthony_Greatorex],2004-11,,,,Unauthorized Use Known on port 28000, nxlmd,28000,udp,NX License Manager,[Anthony_Greatorex],[Anthony_Greatorex],2004-11,,,,, pqsp,28001,tcp,PQ Service,[Peter_Laschtowitz],[Peter_Laschtowitz],2009-09-15,,,,, ,28001,udp,Reserved,,,,,,,, ,28002-28118,,Unassigned,,,,,,,"Unauthorized Use Known on ports 28017, 28018 and 28019", ,28119,tcp,Reserved,,,,,,,, a27-ran-ran,28119,udp,A27 cdma2000 RAN Management,[ThreeGPP_2],[Zhiming_Li],2012-04-13,,,,, ,28120-28199,,Unassigned,,,,,,,, voxelstorm,28200,tcp,VoxelStorm game server,[VoxelStorm],[Eugene_Hopkinson],2012-11-08,,,,, voxelstorm,28200,udp,VoxelStorm game server,[VoxelStorm],[Eugene_Hopkinson],2012-11-08,,,,, ,28201-28239,,Unassigned,,,,,,,, siemensgsm,28240,tcp,Siemens GSM,[David_Anuszewski],[David_Anuszewski],2004-11,,,,, siemensgsm,28240,udp,Siemens GSM,[David_Anuszewski],[David_Anuszewski],2004-11,,,,, ,28241-28588,,Unassigned,,,,,,,, bosswave,28589,tcp,Building operating system services wide area verified exchange,[University_of_California_Berkeley],[Michael_Andersen],2016-06-13,,,,, ,28589,udp,Reserved,,,,,,,, ,28590-29117,,Unassigned,,,,,,,, ,29118,tcp,Reserved,,,,,,,, ,29118,udp,Reserved,,,,,,,, sgsap,29118,sctp,SGsAP in 3GPP,[GPP_Specifications],[GPP_Specifications],2009-06-11,,,,, ,29119-29166,,Unassigned,,,,,,,, otmp,29167,tcp,ObTools Message Protocol,[Paul_Clark],[Paul_Clark],2006-02,,,,, otmp,29167,udp,ObTools Message Protocol,[Paul_Clark],[Paul_Clark],2006-02,,,,, ,29168,tcp,Reserved,,,,,,,, |
13024 13025 13026 13027 13028 13029 13030 | pago-services1,30001,udp,Pago Services 1,[Balduin_Mueller_Plat],[Balduin_Mueller_Plat],2002-03,,,,, pago-services2,30002,tcp,Pago Services 2,[Balduin_Mueller_Plat],[Balduin_Mueller_Plat],2002-03,,,,, pago-services2,30002,udp,Pago Services 2,[Balduin_Mueller_Plat],[Balduin_Mueller_Plat],2002-03,,,,, amicon-fpsu-ra,30003,tcp,Amicon FPSU-IP Remote Administration,[Amicon_OOO],[Alexey_Novotorzhin],2013-04-25,,,,, amicon-fpsu-ra,30003,udp,Amicon FPSU-IP Remote Administration,[Amicon_OOO],[Alexey_Novotorzhin],2013-04-25,,,,, amicon-fpsu-s,30004,udp,Amicon FPSU-IP VPN,[Amicon_OOO],[Alexey_Novotorzhin],2013-04-25,,,,, ,30004,tcp,Reserved,,,,,,,, | > > > > | > > > | > > > | > > > > > > > > > > > > > | | 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 | pago-services1,30001,udp,Pago Services 1,[Balduin_Mueller_Plat],[Balduin_Mueller_Plat],2002-03,,,,, pago-services2,30002,tcp,Pago Services 2,[Balduin_Mueller_Plat],[Balduin_Mueller_Plat],2002-03,,,,, pago-services2,30002,udp,Pago Services 2,[Balduin_Mueller_Plat],[Balduin_Mueller_Plat],2002-03,,,,, amicon-fpsu-ra,30003,tcp,Amicon FPSU-IP Remote Administration,[Amicon_OOO],[Alexey_Novotorzhin],2013-04-25,,,,, amicon-fpsu-ra,30003,udp,Amicon FPSU-IP Remote Administration,[Amicon_OOO],[Alexey_Novotorzhin],2013-04-25,,,,, amicon-fpsu-s,30004,udp,Amicon FPSU-IP VPN,[Amicon_OOO],[Alexey_Novotorzhin],2013-04-25,,,,, ,30004,tcp,Reserved,,,,,,,, ,30005-30099,,Unassigned,,,,,,,, rwp,30100,tcp,Remote Window Protocol,[Maxim_Baklanovsky],[Maxim_Baklanovsky],2015-05-20,,,,, ,30100,udp,Reserved,,,,,,,, rwp,30100,sctp,Remote Window Protocol,[Maxim_Baklanovsky],[Maxim_Baklanovsky],2015-05-20,,,,, ,30101-30259,,Unassigned,,,,,,,, kingdomsonline,30260,tcp,Kingdoms Online (CraigAvenue),[Drake_Bankston],[Drake_Bankston],2009-08-18,,,,, kingdomsonline,30260,udp,Kingdoms Online (CraigAvenue),[Drake_Bankston],[Drake_Bankston],2009-08-18,,,,, ,30261-30399,,Unassigned,,,,,,,, gs-realtime,30400,tcp,GroundStar RealTime System,[INFORM_GmbH],[Detlef_Hilger],2017-08-10,2017-12-13,,,, ,30400,udp,Reserved,,,,,,,, ,30401-30831,,Unassigned,,,,,,,, samsung-disc,30832,udp,Samsung Convergence Discovery Protocol,[Samsung_2],[Young_Ki_Kim],2013-05-29,,,,, ,30832,tcp,Reserved,,,,,,,, ,30833-30998,,Unassigned,,,,,,,, ovobs,30999,tcp,OpenView Service Desk Client,[Service_Desk_Product],[Service_Desk_Product],2006-05,,,,, ovobs,30999,udp,OpenView Service Desk Client,[Service_Desk_Product],[Service_Desk_Product],2006-05,,,,, ,31000-31015,,Unassigned,,,,,,,, ka-sddp,31016,tcp,Kollective Agent Secure Distributed Delivery Protocol,[Kollective_Technology_Inc],[John_Wainwright],2016-12-11,,,,, ka-kdp,31016,udp,Kollective Agent Kollective Delivery Protocol,[Kollective_Technology_Inc],[John_Wainwright],2016-12-11,,,,, ,31017-31019,,Unassigned,,,,,,,, autotrac-acp,31020,tcp,Autotrac ACP 245,[Roberto_Jorge_Dino],[Roberto_Jorge_Dino],,,,,, ,31020,udp,Reserved,,,,,,,, ,31021-31028,,Unassigned,,,,,,,, ,31029,tcp,Reserved,,,,,,,, yawn,31029,udp,YaWN - Yet Another Windows Notifier,[David_Spivey],[David_Spivey],2010-08-30,,,,, ,31030-31399,,Unassigned,,,,,,,, pace-licensed,31400,tcp,PACE license server,[PACE_Anti-Piracy],[Allen_Cronce],2014-04-28,,,,, ,31400,udp,Reserved,,,,,,,, ,31401-31415,,Unassigned,,,,,,,, xqosd,31416,tcp,XQoS network monitor,[Joe_Elliott],[Joe_Elliott],2002-06,,,,, xqosd,31416,udp,XQoS network monitor,[Joe_Elliott],[Joe_Elliott],2002-06,,,,, ,31417-31456,,Unassigned,,,,,,,, tetrinet,31457,tcp,TetriNET Protocol,[Emmanuel_Bourg],[Emmanuel_Bourg],2004-11,,,,, tetrinet,31457,udp,TetriNET Protocol,[Emmanuel_Bourg],[Emmanuel_Bourg],2004-11,,,,, ,31458-31619,,Unassigned,,,,,,,, lm-mon,31620,tcp,lm mon,[System_Administrator],[System_Administrator],2003-06,,,,, lm-mon,31620,udp,lm mon,[System_Administrator],[System_Administrator],2003-06,,,,, ,31621-31684,,Unassigned,,,,,,,, dsx-monitor,31685,tcp,"DS Expert Monitor IANA assigned this well-formed service name as a replacement for ""dsx_monitor"".",[John_Lowery],[John_Lowery],2008-08-21,,,,, dsx_monitor,31685,tcp,DS Expert Monitor,[John_Lowery],[John_Lowery],2008-08-21,,,,,"This entry is an alias to ""dsx-monitor"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,31685,udp,Reserved,,,,,,,, ,31686-31764,,Unassigned,,,,,,,, gamesmith-port,31765,tcp,GameSmith Port,[Randy_Thompson],[Randy_Thompson],2002-08,,,,, gamesmith-port,31765,udp,GameSmith Port,[Randy_Thompson],[Randy_Thompson],2002-08,,,,, ,31766-31947,,Unassigned,,,,,,,, iceedcp-tx,31948,tcp,"Embedded Device Configuration Protocol TX IANA assigned this well-formed service name as a replacement for ""iceedcp_tx"".",[Oliver_Lewis],[Oliver_Lewis],2006-08,,,,, iceedcp_tx,31948,tcp,Embedded Device Configuration Protocol TX,[Oliver_Lewis],[Oliver_Lewis],2006-08,,,,,"This entry is an alias to ""iceedcp-tx"". This entry is now historic, not usable for use with many common service discovery mechanisms." iceedcp-tx,31948,udp,"Embedded Device Configuration Protocol TX IANA assigned this well-formed service name as a replacement for ""iceedcp_tx"".",[Oliver_Lewis],[Oliver_Lewis],2006-08,,,,, iceedcp_tx,31948,udp,Embedded Device Configuration Protocol TX,[Oliver_Lewis],[Oliver_Lewis],2006-08,,,,,"This entry is an alias to ""iceedcp-tx"". This entry is now historic, not usable for use with many common service discovery mechanisms." iceedcp-rx,31949,tcp,"Embedded Device Configuration Protocol RX IANA assigned this well-formed service name as a replacement for ""iceedcp_rx"".",[Oliver_Lewis],[Oliver_Lewis],2006-08,,,,, iceedcp_rx,31949,tcp,Embedded Device Configuration Protocol RX,[Oliver_Lewis],[Oliver_Lewis],2006-08,,,,,"This entry is an alias to ""iceedcp-rx"". This entry is now historic, not usable for use with many common service discovery mechanisms." iceedcp-rx,31949,udp,"Embedded Device Configuration Protocol RX IANA assigned this well-formed service name as a replacement for ""iceedcp_rx"".",[Oliver_Lewis],[Oliver_Lewis],2006-08,,,,, iceedcp_rx,31949,udp,Embedded Device Configuration Protocol RX,[Oliver_Lewis],[Oliver_Lewis],2006-08,,,,,"This entry is an alias to ""iceedcp-rx"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,31950-32033,,Unassigned,,,,,,,, iracinghelper,32034,tcp,iRacing helper service,[Randy_Cassidy],[Randy_Cassidy],2007-08-30,,,,, iracinghelper,32034,udp,iRacing helper service,[Randy_Cassidy],[Randy_Cassidy],2007-08-30,,,,, ,32035-32248,,Unassigned,,,,,,,, t1distproc60,32249,tcp,T1 Distributed Processor,[Peter_Beahan],[Peter_Beahan],2004-11,,,,, t1distproc60,32249,udp,T1 Distributed Processor,[Peter_Beahan],[Peter_Beahan],2004-11,,,,, ,32250-32399,,Unassigned,,,,,,,, plex,32400,tcp,Plex multimedia,[Plex_Inc.],[Sasha_Hilton],2016-06-02,,,,, ,32400,udp,Reserved,,,,,,,, ,32401-32482,,Unassigned,,,,,,,, apm-link,32483,tcp,Access Point Manager Link,[Tony_Diodato],[Tony_Diodato],2005-08,,,,, apm-link,32483,udp,Access Point Manager Link,[Tony_Diodato],[Tony_Diodato],2005-08,,,,, ,32484-32634,,Unassigned,,,,,,,, sec-ntb-clnt,32635,tcp,SecureNotebook-CLNT,[Eric_Cantineau],[Eric_Cantineau],2004-11,,,,, sec-ntb-clnt,32635,udp,SecureNotebook-CLNT,[Eric_Cantineau],[Eric_Cantineau],2004-11,,,,, DMExpress,32636,tcp,DMExpress,[Arnie_Farrelly],[Arnie_Farrelly],,,,,, DMExpress,32636,udp,DMExpress,[Arnie_Farrelly],[Arnie_Farrelly],,,,,, |
13128 13129 13130 13131 13132 13133 13134 | mlsn,32801,udp,Multiple Listing Service Network,[Corey_Leong],[Corey_Leong],2010-10-11,,,,, ,32802-32810,,Unassigned,,,,,,,, retp,32811,tcp,Real Estate Transport Protocol,[Corey_Leong],[Corey_Leong],2010-10-11,,,,, ,32811,udp,Reserved,,,,,,,, ,32812-32895,,Unassigned,,,,,,,, idmgratm,32896,tcp,Attachmate ID Manager,[George_Gianelos_2],[George_Gianelos_2],2003-03,,,,, idmgratm,32896,udp,Attachmate ID Manager,[George_Gianelos_2],[George_Gianelos_2],2003-03,,,,, | > > > | > > | | | > > > | | > > > > | > > > > | | > > > | > > | > > > > > > > > > > > > > > > > | > > > | > > > | | | | | | | | 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 | mlsn,32801,udp,Multiple Listing Service Network,[Corey_Leong],[Corey_Leong],2010-10-11,,,,, ,32802-32810,,Unassigned,,,,,,,, retp,32811,tcp,Real Estate Transport Protocol,[Corey_Leong],[Corey_Leong],2010-10-11,,,,, ,32811,udp,Reserved,,,,,,,, ,32812-32895,,Unassigned,,,,,,,, idmgratm,32896,tcp,Attachmate ID Manager,[George_Gianelos_2],[George_Gianelos_2],2003-03,,,,, idmgratm,32896,udp,Attachmate ID Manager,[George_Gianelos_2],[George_Gianelos_2],2003-03,,,,, ,32897-33059,,Unassigned,,,,,,,, mysqlx,33060,tcp,MySQL Database Extended Interface,[Oracle_8],[Omer_BarNir],2015-08-06,,,,, ,33060,udp,Reserved,,,,,,,, ,33061-33122,,Unassigned,,,,,,,, aurora-balaena,33123,tcp,Aurora (Balaena Ltd),[Andrew_Mather],[Andrew_Mather],2008-02-14,,,,, aurora-balaena,33123,udp,Aurora (Balaena Ltd),[Andrew_Mather],[Andrew_Mather],2008-02-14,,,,, ,33124-33330,,Unassigned,,,,,,,, diamondport,33331,tcp,DiamondCentral Interface,[Edward_Browdy],[Edward_Browdy],2002-07,,,,, diamondport,33331,udp,DiamondCentral Interface,[Edward_Browdy],[Edward_Browdy],2002-07,,,,, ,33332,,Unassigned,,,,,,,, dgi-serv,33333,tcp,Digital Gaslight Service,[George_Flanagin],[George_Flanagin],2010-03-02,,,,, ,33333,udp,Reserved,,,,,,,, speedtrace,33334,tcp,SpeedTrace TraceAgent,[Holger_Heinrich],[Holger_Heinrich],2012-02-01,,,,, speedtrace-disc,33334,udp,SpeedTrace TraceAgent Discovery,[Holger_Heinrich],[Holger_Heinrich],2012-02-01,,,,, ,33335-33433,,Unassigned,,,,,,,, traceroute,33434,tcp,traceroute use,[IANA],[IANA],,,,,, traceroute,33434,udp,traceroute use,[IANA],[IANA],,,,,, ,33435,tcp,Reserved,,,,,,,, mtrace,33435,udp,IP Multicast Traceroute,[IESG],[IETF_Chair],2017-12-13,2019-08-09,[RFC8487],,Known Unauthorized Use on port 33435, ,33436-33655,,Unassigned,,,,,,,Known Unauthorized Use on ports 33436-33534, snip-slave,33656,tcp,SNIP Slave,[Dr_Chris_Tucker],[Dr_Chris_Tucker],2005-08,,,,, snip-slave,33656,udp,SNIP Slave,[Dr_Chris_Tucker],[Dr_Chris_Tucker],2005-08,,,,, ,33657-34248,,Unassigned,,,,,,,, turbonote-2,34249,tcp,TurboNote Relay Server Default Port,[Peter_Hyde],[Peter_Hyde],,,,,, turbonote-2,34249,udp,TurboNote Relay Server Default Port,[Peter_Hyde],[Peter_Hyde],,,,,, ,34250-34377,,Unassigned,,,,,,,, p-net-local,34378,tcp,P-Net on IP local,[Kurt_Nissen],[Kurt_Nissen],2004-02,,,,, p-net-local,34378,udp,P-Net on IP local,[Kurt_Nissen],[Kurt_Nissen],2004-02,,,,, p-net-remote,34379,tcp,P-Net on IP remote,[Kurt_Nissen],[Kurt_Nissen],2004-02,,,,, p-net-remote,34379,udp,P-Net on IP remote,[Kurt_Nissen],[Kurt_Nissen],2004-02,,,,, ,34380-34566,,Unassigned,,,,,,,, dhanalakshmi,34567,tcp,dhanalakshmi.org EDI Service,[Girish_Gopalakrishna],[Girish_Gopalakrishna],2010-04-20,,,,, edi_service,34567,udp,dhanalakshmi.org EDI Service,[Girish_Gopalakrishna],[Girish_Gopalakrishna],2016-10-26,,,,, ,34568-34961,,Unassigned,,,,,,,, profinet-rt,34962,tcp,PROFInet RT Unicast,[Peter_Wenzel],[Peter_Wenzel],2004-11,,,,, profinet-rt,34962,udp,PROFInet RT Unicast,[Peter_Wenzel],[Peter_Wenzel],2004-11,,,,, profinet-rtm,34963,tcp,PROFInet RT Multicast,[Peter_Wenzel],[Peter_Wenzel],2004-11,,,,, profinet-rtm,34963,udp,PROFInet RT Multicast,[Peter_Wenzel],[Peter_Wenzel],2004-11,,,,, profinet-cm,34964,tcp,PROFInet Context Manager,[Peter_Wenzel],[Peter_Wenzel],2004-11,,,,, profinet-cm,34964,udp,PROFInet Context Manager,[Peter_Wenzel],[Peter_Wenzel],2004-11,,,,, ,34965-34979,,Unassigned,,,,,,,, ethercat,34980,tcp,EtherCAT Port,[Martin_Rostan],[Martin_Rostan],2003-11,,,,, ethercat,34980,udp,EtherCAT Port,[Martin_Rostan],[Martin_Rostan],2003-11,,,,, ,34981-34999,,Unassigned,,,,,,,, heathview,35000,tcp,HeathView,[Heathwest_Systems_Limited],[Andrew_Porrer],2013-03-21,,,,, ,35000,udp,Reserved,,,,,,,, rt-viewer,35001,tcp,ReadyTech Viewer,[ReadyTech_Corporation],[Kevin_Woodward],2013-09-13,,,,, rt-viewer,35001,udp,ReadyTech Viewer,[ReadyTech_Corporation],[Kevin_Woodward],2013-09-13,,,,, rt-sound,35002,tcp,ReadyTech Sound Server,[ReadyTech_Corporation],[Kevin_Woodward],2013-09-13,,,,, ,35002,udp,Reserved,,,,,,,, rt-devicemapper,35003,tcp,ReadyTech DeviceMapper Server,[ReadyTech_Corporation],[Kevin_Woodward],2013-09-13,,,,, ,35003,udp,Reserved,,,,,,,, rt-classmanager,35004,tcp,ReadyTech ClassManager,[ReadyTech_Corporation],[Kevin_Woodward],2013-09-13,,,,, rt-classmanager,35004,udp,ReadyTech ClassManager,[ReadyTech_Corporation],[Kevin_Woodward],2013-09-13,,,,, rt-labtracker,35005,tcp,ReadyTech LabTracker,[ReadyTech_Corporation],[Kevin_Woodward],2013-09-13,,,,, ,35005,udp,Reserved,,,,,,,, rt-helper,35006,tcp,ReadyTech Helper Service,[ReadyTech_Corporation],[Kevin_Woodward],2013-09-13,,,,, ,35006,udp,Reserved,,,,,,,, ,35007-35099,,Unassigned,,,,,,,, axio-disc,35100,tcp,Axiomatic discovery protocol,[Axiomatic_Technologies_Corporation],[Oleksandr_Bogush],2016-12-09,,,,, axio-disc,35100,udp,Axiomatic discovery protocol,[Axiomatic_Technologies_Corporation],[Oleksandr_Bogush],2016-12-09,,,,, ,35101-35353,,Unassigned,,,,,,,, kitim,35354,tcp,KIT Messenger,[Rudi_Visser],[Rudi_Visser],2011-07-07,,,,, ,35354,udp,Reserved,,,,,,,, altova-lm,35355,tcp,Altova License Management,[Alexander_Falk_2],[Alexander_Falk_2],2011-07-07,,,,, altova-lm-disc,35355,udp,Altova License Management Discovery,[Alexander_Falk_2],[Alexander_Falk_2],2011-07-07,,,,, guttersnex,35356,tcp,Gutters Note Exchange,[Squee_Application_Development],[Tristan_Seifert_2],2011-07-19,,,,, ,35356,udp,Reserved,,,,,,,, openstack-id,35357,tcp,OpenStack ID Service,[Rackspace_Hosting],[Ziad_Sawalha],2011-08-15,,,,, ,35357,udp,Reserved,,,,,,,, ,35358-36000,,Unassigned,,,,,,,, allpeers,36001,tcp,AllPeers Network,[Cedric_Maloux],[Cedric_Maloux],2007-04,,,,, allpeers,36001,udp,AllPeers Network,[Cedric_Maloux],[Cedric_Maloux],2007-04,,,,, ,36002-36410,,Unassigned,,,,,,,, wlcp,36411,udp,Wireless LAN Control plane Protocol (WLCP),[ThreeGPP_3],[Frederic_Firmin],2014-11-14,,,,, ,36411,tcp,Reserved,,,,,,,, ,36412,tcp,Reserved,,,,,,,, ,36412,udp,Reserved,,,,,,,, s1-control,36412,sctp,S1-Control Plane (3GPP),[Kimmo_Kymalainen],[Kimmo_Kymalainen],2009-09-01,,,,, ,36413-36421,,Unassigned,,,,,,,, ,36422,tcp,Reserved,,,,,,,, ,36422,udp,Reserved,,,,,,,, x2-control,36422,sctp,X2-Control Plane (3GPP),[Kimmo_Kymalainen],[Kimmo_Kymalainen],2009-09-01,,,,, slmap,36423,sctp,SLm Interface Application Protocol,[ThreeGPP_4],[Kimmo_Kymalainen],2015-06-18,,,,, nq-ap,36424,sctp,Nq and Nq' Application Protocol,[ThreeGPP_4],[Kimmo_Kymalainen],2015-06-18,,,,, ,36425-36442,,Unassigned,,,,,,,, m2ap,36443,sctp,M2 Application Part,[Dario_S_Tonesi],[Dario_S_Tonesi],2011-02-07,,,,, m3ap,36444,sctp,M3 Application Part,[Dario_S_Tonesi],[Dario_S_Tonesi],2011-02-07,,,,, ,36445-36461,,Unassigned,,,,,,,, ,36462,tcp,Reserved,,,,,,,, ,36462,udp,Reserved,,,,,,,, xw-control,36462,sctp,Xw-Control Plane (3GPP),[Boubacar_KIMNBA_DIT_ADAMOU],[Boubacar_KIMNBA_DIT_ADAMOU],2015-11-13,,,,, ,36463-36523,,Unassigned,,,,,,,, febooti-aw,36524,tcp,Febooti Automation Workshop,[Maris_Bormanis],[Maris_Bormanis],2011-06-10,,,,, ,36524,udp,Reserved,,,,,,,, ,36525-36601,,Unassigned,,,,,,,, observium-agent,36602,tcp,Observium statistics collection agent,[Observium],[Adam_Armstrong],2013-05-10,,,,, ,36602,udp,Reserved,,,,,,,, ,36603-36699,,Unassigned,,,,,,,, mapx,36700,tcp,MapX communication,[MicroTechniX],[Yarochkin_Michail],2014-10-13,,,,, ,36700,udp,Reserved,,,,,,,, ,36701-36864,,Unassigned,,,,,,,, kastenxpipe,36865,tcp,KastenX Pipe,[Guy_Cheng],[Guy_Cheng],,,,,, kastenxpipe,36865,udp,KastenX Pipe,[Guy_Cheng],[Guy_Cheng],,,,,, ,36866-37474,,Unassigned,,,,,,,, neckar,37475,tcp,science + computing's Venus Administration Port,[Ralf_Allrutz],[Ralf_Allrutz],2002-02,,,,, neckar,37475,udp,science + computing's Venus Administration Port,[Ralf_Allrutz],[Ralf_Allrutz],2002-02,,,,, ,37476-37482,,Unassigned,,,,,,,, gdrive-sync,37483,tcp,Google Drive Sync,[Google_Inc],[Jason_Schiller],2013-02-01,2015-07-31,,,, ,37483,udp,Reserved,,,,,,,, ,37484-37600,,Unassigned,,,,,,,, eftp,37601,tcp,Epipole File Transfer Protocol,[Epipole_Limited],[Colin_Buchanan],2014-11-13,,,,, ,37601,udp,Reserved,,,,,,,, ,37602-37653,,Unassigned,,,,,,,, unisys-eportal,37654,tcp,Unisys ClearPath ePortal,[Sung_U_Ro],[Sung_U_Ro],2006-01,,,,, unisys-eportal,37654,udp,Unisys ClearPath ePortal,[Sung_U_Ro],[Sung_U_Ro],2006-01,,,,, ,37655-37999,,Unassigned,,,,,,,, ivs-database,38000,tcp,InfoVista Server Database,[InfoVista],[Sebastien_Bouchex_Bellomie],2014-05-23,,,,, ,38000,udp,Reserved,,,,,,,, ivs-insertion,38001,tcp,InfoVista Server Insertion,[InfoVista],[Sebastien_Bouchex_Bellomie],2014-05-23,,,,, ,38001,udp,Reserved,,,,,,,, cresco-control,38002,tcp,Cresco Controller,[UofK],[Cody_Bumgardner],2014-11-21,,,,, crescoctrl-disc,38002,udp,Cresco Controller Discovery,[UofK],[Cody_Bumgardner],2014-11-21,,,,, ,38003-38200,,Unassigned,,,,,,,, galaxy7-data,38201,tcp,Galaxy7 Data Tunnel,[Tatham_Oddie],[Tatham_Oddie],2002-09,,,,, galaxy7-data,38201,udp,Galaxy7 Data Tunnel,[Tatham_Oddie],[Tatham_Oddie],2002-09,,,,, fairview,38202,tcp,Fairview Message Service,[Jim_Lyle],[Jim_Lyle],2005-11,,,,,"Defined TXT keys: DevID=<device id>, DevType=<device type>, DevStat=<device status>" fairview,38202,udp,Fairview Message Service,[Jim_Lyle],[Jim_Lyle],2005-11,,,,,"Defined TXT keys: DevID=<device id>, DevType=<device type>, DevStat=<device status>" agpolicy,38203,tcp,AppGate Policy Server,[Martin_Forssen],[Martin_Forssen],2004-11,,,,, agpolicy,38203,udp,AppGate Policy Server,[Martin_Forssen],[Martin_Forssen],2004-11,,,,, ,38204-38411,,Unassigned,,,,,,,, ,38412,tcp,Reserved,,,,,,,, ,38412,udp,Reserved,,,,,,,, ng-control,38412,sctp,NG Control Plane (3GPP),[Luis_Lopes],[Luis_Lopes],2017-05-18,2017-05-19,,,, ,38413-38421,,Unassigned,,,,,,,, ,38422,tcp,Reserved,,,,,,,, ,38422,udp,Reserved,,,,,,,, xn-control,38422,sctp,Xn Control Plane (3GPP),[Luis_Lopes],[Luis_Lopes],2017-05-18,2017-05-19,,,, ,38423-38461,,Unassigned,,,,,,,, ,38462,tcp,Reserved,,,,,,,, ,38462,udp,Reserved,,,,,,,, e1-interface,38462,sctp,E1 signalling transport (3GPP),[Huawei_Technologies_France],[Yang_Xudong][Issam_Toufik],2018-11-06,2018-11-15,,,, ,38463-38471,,Unassigned,,,,,,,, ,38472,tcp,Reserved,,,,,,,, ,38472,udp,Reserved,,,,,,,, f1-control,38472,sctp,F1 Control Plane (3GPP),[Luis_Lopes],[Luis_Lopes],2017-06-23,,,,, ,38473-38799,,Unassigned,,,,,,,, sruth,38800,tcp,"Sruth is a service for the distribution of routinely- generated but arbitrary files based on a publish/subscribe distribution model and implemented using a peer-to-peer transport mechanism",[University_Corporation_for_Atmospheric_Research],[Steven_Emmerson],2012-05-07,,,,, ,38800,udp,Reserved,,,,,,,, ,38801-38864,,Unassigned,,,,,,,, secrmmsafecopya,38865,tcp,Security approval process for use of the secRMM SafeCopy program,[Squadra_Technologies],[Anthony_LaMark],2012-03-14,,,,, ,38865,udp,Reserved,,,,,,,, ,38866-39680,,Unassigned,,,,,,,, turbonote-1,39681,tcp,TurboNote Default Port,[Peter_Hyde],[Peter_Hyde],,,,,, turbonote-1,39681,udp,TurboNote Default Port,[Peter_Hyde],[Peter_Hyde],,,,,, ,39682-39999,,Unassigned,,,,,,,, safetynetp,40000,tcp,SafetyNET p,[Roland_Rupp],[Roland_Rupp],2006-11,,,,, safetynetp,40000,udp,SafetyNET p,[Roland_Rupp],[Roland_Rupp],2006-11,,,,, ,40001-40022,,Unassigned,,,,,,,, ,40023,tcp,Reserved,,,,,,,, k-patentssensor,40023,udp,K-PatentsSensorInformation,[K-Patents_Oy],[Saku_Lahteenmaki],2015-12-02,2017-05-12,,,, ,40024-40403,,Unassigned,,,,,,,, sptx,40404,tcp,Simplify Printing TX,[Tricerat],[Eric_Musgrave],2013-12-09,,,,, ,40404,udp,Reserved,,,,,,,, ,40405-40840,,Unassigned,,,,,,,, cscp,40841,tcp,CSCP,[Michael_Dodge],[Michael_Dodge],,,,,, cscp,40841,udp,CSCP,[Michael_Dodge],[Michael_Dodge],,,,,, csccredir,40842,tcp,CSCCREDIR,[Sudhir_Menon],[Sudhir_Menon],,,,,, csccredir,40842,udp,CSCCREDIR,[Sudhir_Menon],[Sudhir_Menon],,,,,, csccfirewall,40843,tcp,CSCCFIREWALL,[Sudhir_Menon],[Sudhir_Menon],,,,,, csccfirewall,40843,udp,CSCCFIREWALL,[Sudhir_Menon],[Sudhir_Menon],,,,,, ,40844-40852,,Unassigned,,,,,,,, ,40853,tcp,Reserved,,,,,,,, ortec-disc,40853,udp,ORTEC Service Discovery,[Jesse_Ursery],[Jesse_Ursery],2010-11-22,,,,, ,40854-41110,,Unassigned,,,,,,,, fs-qos,41111,tcp,Foursticks QoS Protocol,[Chee_Kent_Lam],[Chee_Kent_Lam],2002-04,,,,, fs-qos,41111,udp,Foursticks QoS Protocol,[Chee_Kent_Lam],[Chee_Kent_Lam],2002-04,,,,, ,41112-41120,,Unassigned,,,,,,,, tentacle,41121,tcp,Tentacle Server,[Sancho_Lerena],[Sancho_Lerena],2009-06-02,,,,, ,41121,udp,Reserved,,,,,,,, ,41122-41229,,Unassigned,,,,,,,, z-wave-s,41230,tcp,Z-Wave Protocol over SSL/TLS,[Sigma_Designs_3],[Anders_Brandt_4],2015-06-26,,,,, z-wave-s,41230,udp,Z-Wave Protocol over DTLS,[Sigma_Designs_3],[Anders_Brandt_4],2015-06-26,,,,, ,41231-41793,,Unassigned,,,,,,,, crestron-cip,41794,tcp,Crestron Control Port,[Crestron_Electronics],[John_Pavlik],2003-01,2019-10-17,,,, crestron-cip,41794,udp,Crestron Control Port,[Crestron_Electronics],[John_Pavlik],2003-01,2019-10-17,,,, crestron-ctp,41795,tcp,Crestron Terminal Port,[Crestron_Electronics],[John_Pavlik],2003-01,2019-10-17,,,, crestron-ctp,41795,udp,Crestron Terminal Port,[Crestron_Electronics],[John_Pavlik],2003-01,2019-10-17,,,, crestron-cips,41796,tcp,Crestron Secure Control Port,[Crestron_Electronics],[John_Pavlik],2012-06-27,2019-10-17,,,, ,41796,udp,Reserved,,,,,,,, crestron-ctps,41797,tcp,Crestron Secure Terminal Port,[Crestron_Electronics],[John_Pavlik],2012-06-27,2019-10-17,,,, ,41797,udp,Reserved,,,,,,,, ,41798-42507,,Unassigned,,,,,,,Unauthorized Use Known on port 42000, candp,42508,tcp,Computer Associates network discovery protocol,[Jon_Press],[Jon_Press],2005-09,,,,, candp,42508,udp,Computer Associates network discovery protocol,[Jon_Press],[Jon_Press],2005-09,,,,, candrp,42509,tcp,CA discovery response,[Jon_Press],[Jon_Press],2005-08,,,,, candrp,42509,udp,CA discovery response,[Jon_Press],[Jon_Press],2005-08,,,,, caerpc,42510,tcp,CA eTrust RPC,[Jon_Press],[Jon_Press],2005-08,,,,, |
13302 13303 13304 13305 13306 13307 13308 | ip-provision,43190,tcp,IP-PROVISION,[Roman_Kriis],[Roman_Kriis],,,,,, ip-provision,43190,udp,IP-PROVISION,[Roman_Kriis],[Roman_Kriis],,,,,, noit-transport,43191,tcp,Reconnoiter Agent Data Transport,[Theo_Schlossnagle],[Theo_Schlossnagle],2009-05-19,,,,, ,43191,udp,Reserved,,,,,,,, ,43192-43209,,Unassigned,,,,,,,, shaperai,43210,tcp,Shaper Automation Server Management,[Shaper_Automation],[Yohann_Sulaiman],2012-06-22,,,,, shaperai-disc,43210,udp,Shaper Automation Server Management Discovery,[Shaper_Automation],[Yohann_Sulaiman],2012-06-22,,,,, | | > > | | > > | > > > > | | | > > | > > > | > > > | | 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 | ip-provision,43190,tcp,IP-PROVISION,[Roman_Kriis],[Roman_Kriis],,,,,, ip-provision,43190,udp,IP-PROVISION,[Roman_Kriis],[Roman_Kriis],,,,,, noit-transport,43191,tcp,Reconnoiter Agent Data Transport,[Theo_Schlossnagle],[Theo_Schlossnagle],2009-05-19,,,,, ,43191,udp,Reserved,,,,,,,, ,43192-43209,,Unassigned,,,,,,,, shaperai,43210,tcp,Shaper Automation Server Management,[Shaper_Automation],[Yohann_Sulaiman],2012-06-22,,,,, shaperai-disc,43210,udp,Shaper Automation Server Management Discovery,[Shaper_Automation],[Yohann_Sulaiman],2012-06-22,,,,, ,43211-43437,,Unassigned,,,,,,,, ,43438,tcp,Reserved,,,,,,,, hmip-routing,43438,udp,HmIP LAN Routing,[eQ-3_Entwicklung_GmbH],[Tido_de_Vries],2018-02-28,,,,, eq3-update,43439,tcp,EQ3 firmware update,[eQ-3_Entwicklung_GmbH],[Tido_de_Vries],2012-02-10,2014-05-09,,,, eq3-config,43439,udp,EQ3 discovery and configuration,[eQ-3_Entwicklung_GmbH],[Tido_de_Vries],2012-02-10,2014-05-09,,,, ew-mgmt,43440,tcp,Cisco EnergyWise Management,,,,,,,, ew-disc-cmd,43440,udp,Cisco EnergyWise Discovery and Command Flooding,[John_Parello],[John_Parello],2009-05-19,,,,, ciscocsdb,43441,tcp,Cisco NetMgmt DB Ports,[Cisco_Systems],[Cisco_Systems],2005-11,,,,, ciscocsdb,43441,udp,Cisco NetMgmt DB Ports,[Cisco_Systems],[Cisco_Systems],2005-11,,,,, ,43442-44122,,Unassigned,,,,,,,, z-wave-tunnel,44123,tcp,Z-Wave Secure Tunnel,[Sigma_Designs_Inc],[Anders_Brandt_3],2012-10-12,2015-06-26,,,, ,44123,udp,Reserved,,,,,,,, ,44124-44320,,Unassigned,,,,,,,, pmcd,44321,tcp,PCP server (pmcd),[Ken_McDonell],[Ken_McDonell],2010-12-20,,,,, pmcd,44321,udp,PCP server (pmcd),[Ken_McDonell],[Ken_McDonell],2010-12-20,,,,, pmcdproxy,44322,tcp,PCP server (pmcd) proxy,[Ken_McDonell],[Ken_McDonell],2003-07,2010-12-20,,,, pmcdproxy,44322,udp,PCP server (pmcd) proxy,[Ken_McDonell],[Ken_McDonell],2003-07,2010-12-20,,,, pmwebapi,44323,tcp,HTTP binding for Performance Co-Pilot client API,[Performance_Co-Pilot_PCP_Project],[Ken_McDonell_2],2013-10-09,,,,, ,44323,udp,Unassigned,,,,,,,,"""pcp"" assignment withdrawn, moved to port 5351 per RFC6887" ,44324-44443,,Unassigned,,,,,,,, cognex-dataman,44444,tcp,Cognex DataMan Management Protocol,[Cognex],[Mario_Joussen],2012-08-28,,,,, ,44444,udp,Reserved,,,,,,,, acronis-backup,44445,tcp,Acronis Backup Gateway service port,[Acronis],[Kevin_Reed],2019-11-25,,,,, ,44445,udp,Reserved,,,,,,,, ,44446-44543,,Unassigned,,,,,,,Known UNAUTHORIZED USE: Ports 44515 & 44516, ,44544,tcp,Reserved,,,,,,,, domiq,44544,udp,DOMIQ Building Automation,[DOMIQ_Sp_zoo],[Filip_Zawadiak],2011-08-29,,,,, ,44545-44552,,Unassigned,,,,,,,, rbr-debug,44553,tcp,REALbasic Remote Debug,[Aaron_Ballman],[Aaron_Ballman],2004-11,,,,, rbr-debug,44553,udp,REALbasic Remote Debug,[Aaron_Ballman],[Aaron_Ballman],2004-11,,,,, ,44554-44599,,Unassigned,,,,,,,, ,44600,tcp,Reserved,,,,,,,, asihpi,44600,udp,AudioScience HPI,[Eliot_Blennerhassett],[Eliot_Blennerhassett],2011-07-07,,,,, ,44601-44817,,Unassigned,,,,,,,, EtherNet-IP-2,44818,tcp,"EtherNet/IP messaging IANA assigned this well-formed service name as a replacement for ""EtherNet/IP-2"".",[Brian_Batke_2],[Brian_Batke_2],,,,,,New contact added for port 44818 on 2008-02-01 EtherNet/IP-2,44818,tcp,EtherNet/IP messaging,[Brian_Batke_2],[Brian_Batke_2],,,,,,"New contact added for port 44818 on 2008-02-01 This entry is an alias to ""EtherNet-IP-2"". This entry is now historic, not usable for use with many common service discovery mechanisms." EtherNet-IP-2,44818,udp,"EtherNet/IP messaging IANA assigned this well-formed service name as a replacement for ""EtherNet/IP-2"".",[Brian_Batke_2],[Brian_Batke_2],,,,,,New contact added for port 44818 on 2008-02-01 EtherNet/IP-2,44818,udp,EtherNet/IP messaging,[Brian_Batke_2],[Brian_Batke_2],,,,,,"New contact added for port 44818 on 2008-02-01 This entry is an alias to ""EtherNet-IP-2"". This entry is now historic, not usable for use with many common service discovery mechanisms." ,44819-44899,,Unassigned,,,,,,,, m3da,44900,tcp,M3DA is used for efficient machine-to-machine communications,[Eclipse_Foundation],[Didier_Lahay],2013-02-22,,,,, m3da-disc,44900,udp,M3DA Discovery is used for efficient machine-to-machine communications,[Eclipse_Foundation],[Didier_Lahay],2013-02-22,,,,, ,44901-44999,,Unassigned,,,,,,,, asmp,45000,tcp,Nuance AutoStore Status Monitoring Protocol (data transfer),[Nuance_Communications_Inc4],[Andrew_Andrews],2011-09-01,2017-04-26,,,, asmp-mon,45000,udp,Nuance AutoStore Status Monitoring Protocol (device monitoring),[Nuance_Communications_Inc4],[Andrew_Andrews],2011-09-01,2017-04-26,,,, asmps,45001,tcp,Nuance AutoStore Status Monitoring Protocol (secure data transfer),[Nuance_Communications_Inc4],[Andrew_Andrews],2011-09-01,2017-04-26,,,, ,45001,udp,Reserved,,,,,,,, rs-status,45002,tcp,Redspeed Status Monitor,[Redspeed_International_Ltd],[Simon_Griffiths],2015-03-10,,,,, ,45002,udp,Reserved,,,,,,,, ,45003-45044,,Unassigned,,,,,,,, synctest,45045,tcp,Remote application control protocol,[Eleks_Ltd],[Andriy_Skop],2013-04-08,,,,, ,45045,udp,Reserved,,,,,,,, ,45046-45053,,Unassigned,,,,,,,, invision-ag,45054,tcp,InVision AG,[Matthias_Schroer],[Matthias_Schroer],,,,,, invision-ag,45054,udp,InVision AG,[Matthias_Schroer],[Matthias_Schroer],,,,,, ,45055-45513,,Unassigned,,,,,,,, cloudcheck,45514,tcp,ASSIA CloudCheck WiFi Management System,[ASSIA_Inc],[Leonardo_Dagum],2016-08-29,,,,, cloudcheck-ping,45514,udp,ASSIA CloudCheck WiFi Management keepalive,[ASSIA_Inc],[Leonardo_Dagum],2016-08-29,,,,, ,45515-45677,,Unassigned,,,,,,,, eba,45678,tcp,EBA PRISE,[Patrick_Kara],[Patrick_Kara],,,,,, eba,45678,udp,EBA PRISE,[Patrick_Kara],[Patrick_Kara],,,,,, ,45679-45823,,Unassigned,,,,,,,, dai-shell,45824,tcp,Server for the DAI family of client-server products,[Data_Access_Inc],[Adam_Robinson],2012-04-30,,,,, ,45824,udp,Reserved,,,,,,,, qdb2service,45825,tcp,Qpuncture Data Access Service,[Michael_Yun],[Michael_Yun],2007-10-24,,,,, qdb2service,45825,udp,Qpuncture Data Access Service,[Michael_Yun],[Michael_Yun],2007-10-24,,,,, ,45826-45965,,Unassigned,,,,,,,, ssr-servermgr,45966,tcp,SSRServerMgr,[Jeremy_Gilliat],[Jeremy_Gilliat],,,,,, ssr-servermgr,45966,udp,SSRServerMgr,[Jeremy_Gilliat],[Jeremy_Gilliat],,,,,, ,45967-46335,,Unassigned,,,,,,,, inedo,46336,tcp,Listen port used for Inedo agent communication,[Inedo],[Steve_Dennis],2016-01-12,,,,, ,46336,udp,Reserved,,,,,,,, ,46337-46997,,Unassigned,,,,,,,, spremotetablet,46998,tcp,Connection between a desktop computer or server and a signature tablet to capture handwritten signatures,[SOFTPRO_GmbH],[Christoph_Hipp],2012-07-19,2013-08-02,,,, ,46998,udp,Reserved,,,,,,,, mediabox,46999,tcp,MediaBox Server,[Alexander_Graef],[Alexander_Graef],2004-11,,,,, mediabox,46999,udp,MediaBox Server,[Alexander_Graef],[Alexander_Graef],2004-11,,,,, mbus,47000,tcp,Message Bus,[Dirk_Kutscher],[Dirk_Kutscher],,,,,, mbus,47000,udp,Message Bus,[Dirk_Kutscher],[Dirk_Kutscher],,,,,, winrm,47001,tcp,Windows Remote Management Service,[Ryan_Mack],[Ryan_Mack],2009-04-29,,,,, |
13408 13409 13410 13411 13412 13413 13414 | nimhub,48002,udp,Nimbus Hub,[Carstein_Seeberg_2],[Carstein_Seeberg_2],,,,,, nimgtw,48003,tcp,Nimbus Gateway,[Carstein_Seeberg_2],[Carstein_Seeberg_2],,,,,, nimgtw,48003,udp,Nimbus Gateway,[Carstein_Seeberg_2],[Carstein_Seeberg_2],,,,,, nimbusdb,48004,tcp,NimbusDB Connector,[Stephen_Harrison],[Stephen_Harrison],2011-01-24,,,,, ,48004,udp,Reserved,,,,,,,, nimbusdbctrl,48005,tcp,NimbusDB Control,[Stephen_Harrison],[Stephen_Harrison],2011-01-24,,,,, ,48005,udp,Reserved,,,,,,,, | | > > | 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 | nimhub,48002,udp,Nimbus Hub,[Carstein_Seeberg_2],[Carstein_Seeberg_2],,,,,, nimgtw,48003,tcp,Nimbus Gateway,[Carstein_Seeberg_2],[Carstein_Seeberg_2],,,,,, nimgtw,48003,udp,Nimbus Gateway,[Carstein_Seeberg_2],[Carstein_Seeberg_2],,,,,, nimbusdb,48004,tcp,NimbusDB Connector,[Stephen_Harrison],[Stephen_Harrison],2011-01-24,,,,, ,48004,udp,Reserved,,,,,,,, nimbusdbctrl,48005,tcp,NimbusDB Control,[Stephen_Harrison],[Stephen_Harrison],2011-01-24,,,,, ,48005,udp,Reserved,,,,,,,, ,48006-48047,,Unassigned,,,,,,,, juka,48048,tcp,Juliar Programming Language Protocol,[Juliar],[Andrei_Mak],2018-02-16,2019-03-08,,,, ,48048,udp,Reserved,,,,,,,, 3gpp-cbsp,48049,tcp,3GPP Cell Broadcast Service Protocol,[Gert_Thomasen],[Gert_Thomasen],2009-12-07,,,,, ,48049,udp,Reserved,,,,,,,, weandsf,48050,tcp,WeFi Access Network Discovery and Selection Function,[WeFi_Inc],[Eran_Naveh],2013-07-19,,,,, ,48050,udp,Reserved,,,,,,,, ,48051-48127,,Unassigned,,,,,,,, isnetserv,48128,tcp,Image Systems Network Services,[Bengt_Gustafsson],[Bengt_Gustafsson],2006-05,,,,, isnetserv,48128,udp,Image Systems Network Services,[Bengt_Gustafsson],[Bengt_Gustafsson],2006-05,,,,, |
13430 13431 13432 13433 13434 13435 13436 | iqobject,48619,udp,iqobject,[Bjorn_de_Bonnenfant],[Bjorn_de_Bonnenfant],2003-11,,,,, ,48620-48652,,Unassigned,,,,,,,, robotraconteur,48653,tcp,Robot Raconteur transport,[Wason_Technology_LLC],[John_Wason],2014-01-27,,,,, robotraconteur,48653,udp,Robot Raconteur transport,[Wason_Technology_LLC],[John_Wason],2014-01-27,,,,, ,48654-48999,,Unassigned,,,,,,,, matahari,49000,tcp,Matahari Broker,[Matahari_Project],[Zane_Bitter],2011-08-31,,,,, ,49000,udp,Reserved,,,,,,,, | > > | > > | 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 | iqobject,48619,udp,iqobject,[Bjorn_de_Bonnenfant],[Bjorn_de_Bonnenfant],2003-11,,,,, ,48620-48652,,Unassigned,,,,,,,, robotraconteur,48653,tcp,Robot Raconteur transport,[Wason_Technology_LLC],[John_Wason],2014-01-27,,,,, robotraconteur,48653,udp,Robot Raconteur transport,[Wason_Technology_LLC],[John_Wason],2014-01-27,,,,, ,48654-48999,,Unassigned,,,,,,,, matahari,49000,tcp,Matahari Broker,[Matahari_Project],[Zane_Bitter],2011-08-31,,,,, ,49000,udp,Reserved,,,,,,,, nusrp,49001,tcp,Nuance Unity Service Request Protocol,[Nuance_Communications_Inc3],[Andrew_Andrews],2017-04-20,,,,, nusdp-disc,49001,udp,Nuance Unity Service Discovery Protocol,[Nuance_Communications_Inc3],[Andrew_Andrews],2017-04-20,,,,, ,49002-49149,,Unassigned,,,,,,,, inspider,49150,tcp,InSpider System,[AnRobot],[Zhang_Xinnan],2017-11-06,,,,, ,49150,udp,Reserved,,,,,,,, ,49151,,IANA Reserved,,,,,,,, argus,,,ARGUS Protocol,,,,,,,, arp,,,Address Resolution Protocol,,,,,,,, bbn-rcc-mon,,,BBN RCC Monitoring,,,,,,,, bootp,,,Bootstrap Protocol,,,,,,,, br-sat-mon,,,Backroom SATNET Monitoring,,,,,,,, cftp,,,CFTP,,,,,,,, |
13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 | ip=<IP address> note=<Location> use=<Status> mainprog=<Main program version> bootprog=<Boot program version>" airsharing,,,Air Sharing,[Erik_Rogers][Dave_Howell],[Erik_Rogers][Dave_Howell],,,,,,Defined TXT keys: None airsharingpro,,,Air Sharing Pro,[Erik_Rogers][Dave_Howell],[Erik_Rogers][Dave_Howell],,,,,,Defined TXT keys: None aloe-gwp,,tcp,Aloe Gateway Protocol,[Layered_Logic],[Brooks_Bell],2012-01-04,,,,,Defined TXT keys: Version aloe-pp,,tcp,Aloe Pairing Protocol,[Layered_Logic],[Brooks_Bell],2012-01-04,,,,,"Defined TXT keys: Version, DeviceName, DeviceModel, DeviceSystem, DeviceSystemVersion, AppName, AppVersion" amba-cam,,udp,Ambarella Cameras,[Louis_Sun],[Louis_Sun],,,,,,"Defined TXT keys: product=<product model name> description=<string name> version=<firmware version>" amiphd-p2p,,,"P2PTapWar Sample Application from ""iPhone SDK Development"" Book",[Chris_Adamson],[Chris_Adamson],,,,,,Defined TXT keys: None ams-htm,,,Proprietary protocol for Accu-Med HTM,[AccuMed_Services],[Sam_Carleton_2],2011-10-20,,,,,Defined TXT keys: None animolmd,,,Animo License Manager,[Phil_Barrett],[Phil_Barrett],,,,,,Defined TXT keys: None animobserver,,,Animo Batch Server,[Phil_Barrett],[Phil_Barrett],,,,,,Defined TXT keys: None anquetsync,,,Anquet map synchronization between desktop and handheld devices,[Paul_Lesurf],[Paul_Lesurf],,,,,,Defined TXT keys: Proprietary antrmai,,tcp,ANT Galio web services,[ANT_Software],[Simon_Middleton],2012-12-06,,,,,"Defined TXT keys: txtvers, man" appelezvous,,,Appelezvous,[Marco_Piovanelli],[Marco_Piovanelli],,,,,,Defined TXT keys: None apple-ausend,,,Apple Audio Units,[James_McCartney],[James_McCartney],,,,,,Defined TXT keys: None apple-mobdev,,tcp,Apple Mobile Device Protocol,[Apple_2],[Paul_Chinn][Justin_Ko],2011-10-20,,,,,Defined TXT keys: None apple-midi,,udp,Apple MIDI,[Doug_Wyatt],[Doug_Wyatt],,,,,,Defined TXT keys: None applerdbg,,,Apple Remote Debug Services (OpenGL Profiler),[Dave_Springer],[Dave_Springer],,,,,,Defined TXT keys: None appletv,,,Apple TV,[Amandeep_Jawa_3],[Amandeep_Jawa_3],,,,,,"Defined TXT keys: txtvers, PrVs, OSsi, MniT" appletv-itunes,,,Apple TV discovery of iTunes,[Amandeep_Jawa_3],[Amandeep_Jawa_3],,,,,,Defined TXT keys: txtvers appletv-pair,,,Apple TV Pairing,[Amandeep_Jawa_3],[Amandeep_Jawa_3],,,,,,Defined TXT keys: txtvers aquamon,,,AquaMon,,,,,,,,Defined TXT keys: None arcnet,,udp,Arcturus Networks Inc. Hardware Services,[Arcturus_Networks_Inc],[Michael_Durrant],2011-10-20,,,,,Defined TXT keys: None arn,,tcp,Active Registry Network for distribution of values and streams,[Mictron],[Michael_Wiklund],2013-10-17,,,,,Defined TXT keys: None aroundsound,,,AroundSound's information sharing protocol,[Winzig_LLC],[Around_Sound],2011-10-20,,,,,Defined TXT keys: Proprietary astnotify,,udp,Asterisk Caller-ID Notification Service,[Sven_Slezak],[Sven_Slezak],,,,,,"Defined TXT keys: prefix=<country code prefix> (numeric, additionally '+')" astralite,,,Astralite,[Tongji_University],[Tongji_University],,,,,,Defined TXT keys: None async,,,address-o-sync,[Markus_Brand],[Markus_Brand],,,,,,Defined TXT keys: None atlassianapp,,,"Atlassian Application (JIRA, Confluence, Fisheye, Crucible, Crowd, Bamboo) discovery service",[Denise_Fernandez],[Denise_Fernandez],,,,,,Defined TXT keys: app.url av,,,Allen Vanguard Hardware Service,[Mike_Bush],[Mike_Bush],,,,,,Defined TXT keys: Proprietary avatars,,tcp,Libravatar federated avatar hosting service.,[libravatar_org],[Francois_Marier],2011-10-11,,,,,Defined TXT keys: none avatars-sec,,tcp,Libravatar federated avatar hosting service.,[libravatar_org],[Francois_Marier],2011-10-11,,,,,Defined TXT keys: none axis-video,,,Axis Video Cameras,[Kristina_Sten],[Kristina_Sten],,,,,,Defined TXT keys: None b3d-convince,,,3M Unitek Digital Orthodontic System,[Rajiv_Aaron_Manglani],[Rajiv_Aaron_Manglani],,,,,,"Defined TXT keys: txtvers=1, protovers=<api version>, guid=<32 hex digits>" babyphone,,,BabyPhone,[Johan_Kool],[Johan_Kool],,,,,,Defined TXT keys: None barroomcomedy,,tcp,Peer to peer file sharing for a media player application,[Fred_Zimmerman],[Fred_Zimmerman],2013-11-05,,,,,Defined TXT keys: None bcloud-server,,tcp,Buddycloud Server Delegation,[buddycloud],[Simon_Tennant_2],2014-06-19,,,,,"Defined TXT keys: v, host" bdsk,,,BibDesk Sharing,[Adam_Maxwell],[Adam_Maxwell],,,,,,"Defined TXT keys: txtvers, authenticate" beacon,,,Beacon Remote Service,[Jeffrey_Sadeli],[Jeffrey_Sadeli],,,,,,"Defined TXT keys: version=<product version>, company=<product company>" beamer,,,Beamer Data Sharing Protocol,[Frank_Szczerba],[Frank_Szczerba],,,,,,Defined TXT keys: None beatpack,,,BeatPack Synchronization Server for BeatMaker,[Mathieu_Garcia],[Mathieu_Garcia],,,,,,Defined TXT keys: None beatsdirect,,tcp,Beats Direct allows for the discovery and control of devices,[Beats_Electronics_LLC],[Eddie_Borjas],2013-06-03,,,,,Defined TXT keys: None | > > > > > > > > > > > > > > > > > | 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 | ip=<IP address> note=<Location> use=<Status> mainprog=<Main program version> bootprog=<Boot program version>" airsharing,,,Air Sharing,[Erik_Rogers][Dave_Howell],[Erik_Rogers][Dave_Howell],,,,,,Defined TXT keys: None airsharingpro,,,Air Sharing Pro,[Erik_Rogers][Dave_Howell],[Erik_Rogers][Dave_Howell],,,,,,Defined TXT keys: None alazartech-atn,,tcp,Alazar Technologies ATN Communication Protocol,[Alazar_Technologies],[Romain_Deterre],2016-05-26,,,,,Defined TXT keys: None aloe-gwp,,tcp,Aloe Gateway Protocol,[Layered_Logic],[Brooks_Bell],2012-01-04,,,,,Defined TXT keys: Version aloe-pp,,tcp,Aloe Pairing Protocol,[Layered_Logic],[Brooks_Bell],2012-01-04,,,,,"Defined TXT keys: Version, DeviceName, DeviceModel, DeviceSystem, DeviceSystemVersion, AppName, AppVersion" amba-cam,,udp,Ambarella Cameras,[Louis_Sun],[Louis_Sun],,,,,,"Defined TXT keys: product=<product model name> description=<string name> version=<firmware version>" amiphd-p2p,,,"P2PTapWar Sample Application from ""iPhone SDK Development"" Book",[Chris_Adamson],[Chris_Adamson],,,,,,Defined TXT keys: None ams-htm,,,Proprietary protocol for Accu-Med HTM,[AccuMed_Services],[Sam_Carleton_2],2011-10-20,,,,,Defined TXT keys: None animolmd,,,Animo License Manager,[Phil_Barrett],[Phil_Barrett],,,,,,Defined TXT keys: None animobserver,,,Animo Batch Server,[Phil_Barrett],[Phil_Barrett],,,,,,Defined TXT keys: None anquetsync,,,Anquet map synchronization between desktop and handheld devices,[Paul_Lesurf],[Paul_Lesurf],,,,,,Defined TXT keys: Proprietary antrmai,,tcp,ANT Galio web services,[ANT_Software],[Simon_Middleton],2012-12-06,,,,,"Defined TXT keys: txtvers, man" anyremote,,tcp,remote control of Linux PCs from Android and J2ME,[Mikhail_Fedotov],[Mikhail_Fedotov],2014-12-10,,,,,Defined TXT keys: None appelezvous,,,Appelezvous,[Marco_Piovanelli],[Marco_Piovanelli],,,,,,Defined TXT keys: None apple-ausend,,,Apple Audio Units,[James_McCartney],[James_McCartney],,,,,,Defined TXT keys: None apple-mobdev,,tcp,Apple Mobile Device Protocol,[Apple_2],[Paul_Chinn][Justin_Ko],2011-10-20,,,,,Defined TXT keys: None apple-midi,,udp,Apple MIDI,[Doug_Wyatt],[Doug_Wyatt],,,,,,Defined TXT keys: None applerdbg,,,Apple Remote Debug Services (OpenGL Profiler),[Dave_Springer],[Dave_Springer],,,,,,Defined TXT keys: None appletv,,,Apple TV,[Amandeep_Jawa_3],[Amandeep_Jawa_3],,,,,,"Defined TXT keys: txtvers, PrVs, OSsi, MniT" appletv-itunes,,,Apple TV discovery of iTunes,[Amandeep_Jawa_3],[Amandeep_Jawa_3],,,,,,Defined TXT keys: txtvers appletv-pair,,,Apple TV Pairing,[Amandeep_Jawa_3],[Amandeep_Jawa_3],,,,,,Defined TXT keys: txtvers aquamon,,,AquaMon,,,,,,,,Defined TXT keys: None arcnet,,udp,Arcturus Networks Inc. Hardware Services,[Arcturus_Networks_Inc],[Michael_Durrant],2011-10-20,,,,,Defined TXT keys: None arn,,tcp,Active Registry Network for distribution of values and streams,[Mictron],[Michael_Wiklund],2013-10-17,,,,,Defined TXT keys: None aroundsound,,,AroundSound's information sharing protocol,[Winzig_LLC],[Around_Sound],2011-10-20,,,,,Defined TXT keys: Proprietary aseba,,tcp,protocol for an event-based architecture for distributed control of mobile robots,[Mobsya_Association],[S_Magnenat],2016-08-18,,,,,"Defined TXT keys: txtvers, type, protovers, ids, pids" astnotify,,udp,Asterisk Caller-ID Notification Service,[Sven_Slezak],[Sven_Slezak],,,,,,"Defined TXT keys: prefix=<country code prefix> (numeric, additionally '+')" astralite,,,Astralite,[Tongji_University],[Tongji_University],,,,,,Defined TXT keys: None async,,,address-o-sync,[Markus_Brand],[Markus_Brand],,,,,,Defined TXT keys: None atnet,,udp,AT protocol over IP,[Selectron_BVBA],[Jan_Verschaeve],2018-03-20,,,,,Defined TXT keys: None atlassianapp,,,"Atlassian Application (JIRA, Confluence, Fisheye, Crucible, Crowd, Bamboo) discovery service",[Denise_Fernandez],[Denise_Fernandez],,,,,,Defined TXT keys: app.url attero-ad,,tcp,Attero Tech Audio Device,[Attero_Tech_LLC],[David_Vaughn],2015-09-24,,,,,"Defined TXT keys: txtvers, protovers, CtrlType, Model" attero-ad,,udp,Attero Tech Audio Device,[Attero_Tech_LLC],[David_Vaughn],2015-09-24,,,,,"Defined TXT keys: txtvers, protovers, CtrlType, Model" audirvana-ap,,tcp,Audirvana Remote Access Protocol,[Audirvana_SCS],[Damien_Plisson],2015-07-21,,,,,"Defined TXT keys: txtvers, protovers" autosendimages,,tcp,automatic sending Image data protocol,[Canon_Inc_2],[Kazuo_Moritomo],2017-04-17,,,,, autotargets-ap,,tcp,Access Point for AutoTargets system,[Automated_Target_Solutions_Inc.],[Nathan_Walker],2015-12-28,,,,,Defined TXT keys: none av,,,Allen Vanguard Hardware Service,[Mike_Bush],[Mike_Bush],,,,,,Defined TXT keys: Proprietary av-chat-ring-01,,tcp,TCP SpyChat Stream Message Exchange,[Alexios_Vasileiadis],[Alexios_Vasileiadis],2018-05-03,,,,,"Defined TXT keys: There are two TXT record keys: 1st key: ""txt-vers"" associated with an 'int' entry. 2nd key: ""conn-stat"" associated with an 'int' entry." avatars,,tcp,Libravatar federated avatar hosting service.,[libravatar_org],[Francois_Marier],2011-10-11,,,,,Defined TXT keys: none avatars-sec,,tcp,Libravatar federated avatar hosting service.,[libravatar_org],[Francois_Marier],2011-10-11,,,,,Defined TXT keys: none axis-nvr,,tcp,Axis Network Video Recorders,[Axis_Communications_AB],[Erik_Linge],2018-05-24,,,,,Defined TXT keys: None axis-nvr,,udp,Axis Network Video Recorders,[Axis_Communications_AB],[Erik_Linge],2018-05-24,,,,,Defined TXT keys: None axis-video,,,Axis Video Cameras,[Kristina_Sten],[Kristina_Sten],,,,,,Defined TXT keys: None autotunnel,,udp,IPSEC VPN tunnel over UDP,[Stuart_Cheshire],[Stuart_Cheshire],2019-05-04,,[RFC6281],,,Defined TXT Keys: None b3d-convince,,,3M Unitek Digital Orthodontic System,[Rajiv_Aaron_Manglani],[Rajiv_Aaron_Manglani],,,,,,"Defined TXT keys: txtvers=1, protovers=<api version>, guid=<32 hex digits>" babyphone,,,BabyPhone,[Johan_Kool],[Johan_Kool],,,,,,Defined TXT keys: None bandhelper-rc,,tcp,Remote Control for BandHelper app,[Arlo_Leach],[Arlo_Leach],2017-04-21,,,,,Defined TXT keys: None bandhelper-ss,,tcp,Screen sharing for BandHelper app,[Arlo_Leach],[Arlo_Leach],2017-04-21,,,,,Defined TXT keys: None barroomcomedy,,tcp,Peer to peer file sharing for a media player application,[Fred_Zimmerman],[Fred_Zimmerman],2013-11-05,,,,,Defined TXT keys: None bcloud-server,,tcp,Buddycloud Server Delegation,[buddycloud],[Simon_Tennant_2],2014-06-19,,,,,"Defined TXT keys: v, host" bdsk,,,BibDesk Sharing,[Adam_Maxwell],[Adam_Maxwell],,,,,,"Defined TXT keys: txtvers, authenticate" beacon,,,Beacon Remote Service,[Jeffrey_Sadeli],[Jeffrey_Sadeli],,,,,,"Defined TXT keys: version=<product version>, company=<product company>" beamer,,,Beamer Data Sharing Protocol,[Frank_Szczerba],[Frank_Szczerba],,,,,,Defined TXT keys: None beatpack,,,BeatPack Synchronization Server for BeatMaker,[Mathieu_Garcia],[Mathieu_Garcia],,,,,,Defined TXT keys: None beatsdirect,,tcp,Beats Direct allows for the discovery and control of devices,[Beats_Electronics_LLC],[Eddie_Borjas],2013-06-03,,,,,Defined TXT keys: None |
13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 | boundaryscan,,udp,Proprietary,[Uwe_Ziegler],[Uwe_Ziegler],,,,,,"Defined TXT keys: blocked=<name of the device>, version=<firmware/instrument controller version>" bousg,,,Bag Of Unusual Strategy Games,,,,,,,,Defined TXT keys: None boutfitness,,tcp,Bout Fitness Synchronization Service,[Bout_Fitness_LLC],[Jesse_Curry],2014-06-16,,,,,Defined TXT keys: None boutfitness,,udp,Bout Fitness Synchronization Service,[Bout_Fitness_LLC],[Jesse_Curry],2014-06-16,,,,,Defined TXT keys: None boxraysrvr,,tcp,Boxray Devices Host Server,[Caprice_Productions],[Lance_Drake],2012-07-05,,,,,Defined TXT keys: none bq-cromo,,tcp,bq Cromo protocol,[MUNDO_READER_SL],[Adan_Munoz],2014-09-05,,,,,Defined TXT keys: None bq-cromo,,udp,bq Cromo protocol,[MUNDO_READER_SL],[Adan_Munoz],2014-09-05,,,,,Defined TXT keys: None bri,,,RFID Reader Basic Reader Interface,[Thaddeus_Ternes],[Thaddeus_Ternes],,,,,,Defined TXT keys: None bridgeprotocol,,tcp,JSON RPC Bridge Protocol,[Michel_Stam_2],[Michel_Stam_2],2012-11-20,,,,,"Defined TXT keys: path, version" bsqdea,,,Backup Simplicity,[Qdea],[Qdea],,,,,,Defined TXT keys: None btp,,tcp,Beats Transfer Protocol allows for the discovery and control of devices,[Beats_Electronics_LLC_2],[Yunho_Huh],2014-02-17,2014-06-27,,,,Defined TXT keys: None buddycloud-api,,tcp,buddycloud API,[buddycloud],[Simon_Tennant],2013-05-20,,,,,"Defined TXT keys: v, host, protocol, path, port" caldav,,tcp,Calendaring Extensions to WebDAV (CalDAV) - non-TLS,[IESG],[IETF_Chair],2012-02-17,,[RFC6764],,,This is an extension of the http service. Defined TXT keys: path=<context path> caldavs,,tcp,Calendaring Extensions to WebDAV (CalDAV) - over TLS,[IESG],[IETF_Chair],2012-02-17,,[RFC6764],,,This is an extension of the https service. Defined TXT keys: path=<context path> caltalk,,,CalTalk,[Joe_Groff],[Joe_Groff],,,,,,Defined TXT keys: None | > > > | > > > > > > > > > > > | > > > > > > > | | > > > > > > > > > > > > > | 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 | boundaryscan,,udp,Proprietary,[Uwe_Ziegler],[Uwe_Ziegler],,,,,,"Defined TXT keys: blocked=<name of the device>, version=<firmware/instrument controller version>" bousg,,,Bag Of Unusual Strategy Games,,,,,,,,Defined TXT keys: None boutfitness,,tcp,Bout Fitness Synchronization Service,[Bout_Fitness_LLC],[Jesse_Curry],2014-06-16,,,,,Defined TXT keys: None boutfitness,,udp,Bout Fitness Synchronization Service,[Bout_Fitness_LLC],[Jesse_Curry],2014-06-16,,,,,Defined TXT keys: None boxraysrvr,,tcp,Boxray Devices Host Server,[Caprice_Productions],[Lance_Drake],2012-07-05,,,,,Defined TXT keys: none bq-cromo,,tcp,bq Cromo protocol,[MUNDO_READER_SL],[Adan_Munoz],2014-09-05,,,,,Defined TXT keys: None bq-cromo,,udp,bq Cromo protocol,[MUNDO_READER_SL],[Adan_Munoz],2014-09-05,,,,,Defined TXT keys: None breas,,tcp,Breas,[Breas_Medical_AB],[Jonas_Sjostedt],2015-09-09,,,,,Defined TXT keys: None breas,,udp,Breas,[Breas_Medical_AB],[Jonas_Sjostedt],2015-09-09,,,,,Defined TXT keys: None bri,,,RFID Reader Basic Reader Interface,[Thaddeus_Ternes],[Thaddeus_Ternes],,,,,,Defined TXT keys: None bridgeprotocol,,tcp,JSON RPC Bridge Protocol,[Michel_Stam_2],[Michel_Stam_2],2012-11-20,,,,,"Defined TXT keys: path, version" bsqdea,,,Backup Simplicity,[Qdea],[Qdea],,,,,,Defined TXT keys: None btp,,tcp,Beats Transfer Protocol allows for the discovery and control of devices,[Beats_Electronics_LLC_2],[Yunho_Huh],2014-02-17,2014-06-27,,,,Defined TXT keys: None buddycloud-api,,tcp,buddycloud API,[buddycloud],[Simon_Tennant],2013-05-20,,,,,"Defined TXT keys: v, host, protocol, path, port" buzzer,,tcp,Service for opening electric doors,[Mnemo.ai],[Arturo_Falck],2017-12-22,,,,,Defined TXT keys: None caldav,,tcp,Calendaring Extensions to WebDAV (CalDAV) - non-TLS,[IESG],[IETF_Chair],2012-02-17,,[RFC6764],,,This is an extension of the http service. Defined TXT keys: path=<context path> caldavs,,tcp,Calendaring Extensions to WebDAV (CalDAV) - over TLS,[IESG],[IETF_Chair],2012-02-17,,[RFC6764],,,This is an extension of the https service. Defined TXT keys: path=<context path> caltalk,,,CalTalk,[Joe_Groff],[Joe_Groff],,,,,,Defined TXT keys: None canon-chmp,,tcp,Canon HTTP Management Protocol,[Canon_Inc_3],[Tomoyuki_Hansaki],2014-09-03,2015-03-16,,,,"Defined TXT keys: txtvers, mpath" carddav,,tcp,vCard Extensions to WebDAV (CardDAV) - non-TLS,[IESG],[IETF_Chair],2012-02-17,,[RFC6352],,,This is an extension of the http service. Defined TXT keys: path=<context path> carddavs,,tcp,vCard Extensions to WebDAV (CardDAV) - over TLS,[IESG],[IETF_Chair],2012-02-17,,[RFC6352],,,This is an extension of the https service. Defined TXT keys: path=<context path> cardsend,,,Card Send Protocol,[Jeff_Grossman],[Jeff_Grossman],,,,,,Defined TXT keys: Proprietary carousel,,tcp,Carousel Player Protocol,[Tightrope_Media_Systems],[Scott_Jann],2011-10-17,,,,,Defined TXT keys: None cctv,,,IP and Closed-Circuit Television for Securitiy applications,[Frank_Rottmann],[Frank_Rottmann],,,,,,"Defined TXT keys: u=<username>, p=<password>, path=<path to XML file>" cerebra,,tcp,Control the Cerebra Aquarium Controller,[Vertex_Technologies_Inc],[Christopher_Schlacta],2018-04-20,,,,,Defined TXT keys: None certificates,,tcp,Server for S/MIME and PGP certificates,[IESG],[John_Levine],2016-07-26,,[draft-bhjl-x509-srv-01],,,Defined TXT keys: None cheat,,,The Cheat,[Chaz_McGarvey],[Chaz_McGarvey],,,,,,Defined TXT keys: None chess,,,Project Gridlock,,,,,,,,Defined TXT keys: None chfts,,,Fluid Theme Server,,,,,,,,Defined TXT keys: None chili,,,The CHILI Radiology System,[Andre_Schroter],[Andre_Schroter],,,,,,Defined TXT keys: None ciao,,tcp,Ciao Arduino Protocol,[Mike_Colagrosso],[Mike_Colagrosso],2011-10-24,,,,,Defined TXT keys: see www.ciaoapp.com cip4discovery,,,Discovery of JDF (CIP4 Job Definition Format) enabled devices,[Stefan_Daun],[Stefan_Daun],,,,,,Defined TXT keys: None clipboard,,,Clipboard Sharing,,,,,,,,Defined TXT keys: None clique,,udp,Clique Link-Local Multicast Chat Room,[Telepathy_project],[Telepathy_project],,,,,,Defined TXT keys: see http://telepathy.freedesktop.org/xmpp/clique clscts,,,Oracle CLS Cluster Topology Service,[David_Brower],[David_Brower],,,,,,Defined TXT keys: None collection,,,Published Collection Object,[Brady_Anderson],[Brady_Anderson],,,,,,Defined TXT keys: version=? commfort,,tcp,A client-server chat for LAN or Internet with video chat support,[CommFort_software_Ltd.],[Maxim_Mirgorodsky],2016-03-03,,,,,"Defined TXT keys: commfort, chat, communications, client-server, local chat, LAN, network, voice chat, video chat, video communication, video conference, file transfer" com-ocs-es-mcc,,,ElectraStar media centre control protocol,[OC],[OC],,,,,,Defined TXT keys: None conecube,,udp,DNS SRV service for smarthome server,[cone_smart_solution],[Christoph_Bimminger],2019-04-22,,,,,Defined TXT keys: none contactserver,,,Now Contact,,,,,,,,Defined TXT keys: None coolanetaudio,,tcp,Coolatoola Network Audio,[Coolatoola.com],[Tim_Hewett],2014-01-03,,,,,Defined TXT keys: None corroboree,,,Corroboree Server,[Heath_Raftery],[Heath_Raftery],,,,,,Defined TXT keys: None coviot,,tcp,Service for coviot branded devices,[Coviot],[Adnan_Senyurt],2017-05-19,,,,,"Defined TXT keys: FW_VERSION, PROTOCOL_VERSION, SERVICE_DESCRIPTION" coviot,,udp,Service for coviot branded devices,[Coviot],[Adnan_Senyurt],2017-05-19,,,,,"Defined TXT keys: FW_VERSION, PROTOCOL_VERSION, SERVICE_DESCRIPTION" cpnotebook2,,,NoteBook 2,[Circus_Ponies_Suppor],[Circus_Ponies_Suppor],,,,,,Defined TXT keys: None csi-mmws,,tcp,Canfield Scientific Inc - Mirror Mobile Web Services,[Canfield_Scientific_Inc],[James_Crismale],2013-07-02,,,,,Defined TXT keys: path cw-codetap,,,CodeWarrior HTI Xscale PowerTAP,[Ted_Woodward],[Ted_Woodward],,,,,,Defined TXT keys: None cw-dpitap,,,CodeWarrior HTI DPI PowerTAP,[Ted_Woodward],[Ted_Woodward],,,,,,Defined TXT keys: None cw-oncetap,,,CodeWarrior HTI OnCE PowerTAP,[Ted_Woodward],[Ted_Woodward],,,,,,Defined TXT keys: None cw-powertap,,,CodeWarrior HTI COP PowerTAP,[Ted_Woodward],[Ted_Woodward],,,,,,Defined TXT keys: None cytv,,,CyTV - Network streaming for Elgato EyeTV,[Andreas_Junghans],[Andreas_Junghans],,,,,,Defined TXT keys: None dacp,,,Digital Audio Control Protocol (iTunes),[Amandeep_Jawa_3],[Amandeep_Jawa_3],,,,,,"Defined TXT keys: txtvers, Ver, DbId" dancepartner,,,Dance partner application for iPhone,[Rory_McClure],[Rory_McClure],,,,,,Defined TXT keys: None darkhorsetimer,,tcp,Timer LAN service,[Dark_Horse_GmbH_Co_KG],[Ludwig_Kannicht],2015-06-02,,,,,Defined TXT keys: None dataturbine,,,Open Source DataTurbine Streaming Data Middleware,[Tony_Fountain],[Tony_Fountain],,,,,,Defined TXT keys: None dbaudio,,tcp,d&b audiotechnik remote network,[d_b_audiotechnik],[Christian_Laendner],2011-10-06,,,,,"Defined TXT keys:txtvers=<TXT-Record version> protovers=<version of proprietary protocol> guid=<type> name=<name> sn=<serial number> device=<cleartext type> fwver=<firmware version>" dbaudio,,udp,d&b audiotechnik remote network,[d_b_audiotechnik],[Christian_Laendner],2011-10-06,,,,,"Defined TXT keys:txtvers=<TXT-Record version> protovers=<version of proprietary protocol> guid=<type> name=<name> sn=<serial number> device=<cleartext type> fwver=<firmware version>" dccp-ping,,dccp,ping/traceroute using DCCP,[Samuel_Jero],[Samuel_Jero],2012-11-14,,,1885957735,,Defined TXT keys: None dell-soo-ds,,tcp,Spotlight on Oracle Diagnostic Server,[Dell_2],[Rob_Griffin_3],2013-10-03,,,,,Defined TXT keys: None dell-soo-ds,,udp,Spotlight on Oracle Diagnostic Server,[Dell_2],[Rob_Griffin_3],2013-10-03,,,,,Defined TXT keys: None dell-soss-ds-w,,tcp,Spotlight on SQL Server Diagnostic Server HTTP,[Dell_2],[Rob_Griffin_3],2013-10-03,,,,,Defined TXT keys: None dell-ssms-ds,,tcp,Spotlight SSMS Plugin Diagnostic Server,[Dell_2],[Rob_Griffin_3],2013-10-03,,,,,Defined TXT keys: None demoncamremote,,tcp,Peer-to-peer real-time video streaming,[James_Alan_Bush],[James_Alan_Bush],2017-09-26,,,,,Defined TXT keys: None demoncamremote,,udp,Peer-to-peer real-time video streaming,[James_Alan_Bush],[James_Alan_Bush],2017-09-26,,,,,Defined TXT keys: None device-info,,,Device Info,[Stuart_Cheshire][Marc_Krochmal],[Stuart_Cheshire][Marc_Krochmal],,,,,,Not a service type. Special name reserved for DNS-SD device info. devonsync,,tcp,DEVONthink synchronization protocol,[DEVONtechnologies_LLC],[Rob_Rix][Eric_Boehnisch-Volkmann],2011-10-18,,,,,Defined TXT keys: None at present dhanda-g,,tcp,DHANDAg is going for a site,[DHANDAg],[Deepam],2017-12-29,,,,,Defined TXT keys: None dhanda-g,,udp,DHANDAg is going for a site,[DHANDAg],[Deepam],2017-12-29,,,,,Defined TXT keys: None dhanda-g,,sctp,DHANDAg is going for a site,[DHANDAg],[Deepam],2017-12-29,,,,,Defined TXT keys: None dictation,,,Use of a dictation service by a hand-held device,[Nuance_Communications_Inc],[Mark_Jackson],2011-10-27,,,,,"Defined TXT keys: ver, name" difi,,,EyeHome,[Elgato],[Elgato],,,,,,Defined TXT keys: None disconnect,,,DisConnect Peer to Peer Game Protocol,[Michael_S_Bogovich],[Michael_S_Bogovich],,,,,,Defined TXT keys: None displaysrc,,tcp,Wi-Fi Alliance Display Source service,[Wi-Fi_Alliance_3],[Gaurav_Jain],2017-03-14,,,,,Defined TXT keys: None dist-opencl,,,Distributed OpenCL discovery protocol,[William_Dillon],[William_Dillon],,2013-04-10,,,,"Defined TXT keys: TCPendpoint, UDPendpoint, UUID" ditrios,,,Ditrios SOA Framework Protocol,[Mark_Schmatz],[Mark_Schmatz],,,,,,Defined TXT keys: http://www.ditrios.org/index.php?link=tutorial/index#zeroconf divelogsync,,,Dive Log Data Sharing and Synchronization Protocol,[Greg_McLaughlin],[Greg_McLaughlin],,,,,,Defined TXT keys: None dlpx-sp,,tcp,Delphix Session Protocol,[Delphix_Corp],[Peng_Dai],2012-10-02,,,,,Defined TXT keys: None dltimesync,,udp,Local Area Dynamic Time Synchronisation Protocol,[Geoff_Back_3],[Geoff_Back_3],,,,,,Defined TXT keys: None dns-llq-tls,,tcp,DNS Long-Lived Queries over TLS,[Stuart_Cheshire],[Stuart_Cheshire],2019-05-04,,[RFC6281],,,Defined TXT Keys: None dns-push-tls,,tcp,DNS Push Notification Service Type,[IESG],[IETF_Chair],2019-11-25,,"[RFC-ietf-dnssd-push-25, Section 6.1]",,,Defined TXT Keys: None dns-query-tls,,tcp,DNS queries to the authoritative server over TLS,[Stuart_Cheshire],[Stuart_Cheshire],2019-05-04,,,,,Defined TXT Keys: None dns-sd,,,DNS Service Discovery,[Stuart_Cheshire][Marc_Krochmal],[Stuart_Cheshire][Marc_Krochmal],,,,,,Not a service type. Special name reserved for DNS-SD meta queries. dns-update,,tcp,DNS Dynamic Update Service,[Stuart_Cheshire],[Stuart_Cheshire],2019-05-04,,,,,"DNS Dynamic Update Service for a given domain may not necessarily be provided by the principal name servers as advertised by the domain's ""NS"" records, and may not necessarily always be provided on port 53. The ""_dns-update._udp.<domain>."" SRV record gives the target host and port where DNS Dynamic Update Service is provided for the named domain." dns-update,,udp,DNS Dynamic Update Service,[Stuart_Cheshire],[Stuart_Cheshire],,2019-05-04,,,,"DNS Dynamic Update Service for a given domain may not necessarily be provided by the principal name servers as advertised by the domain's ""NS"" records, and may not necessarily always be provided on port 53. The ""_dns-update._udp.<domain>."" SRV record gives the target host and port where DNS Dynamic Update Service is provided for the named domain." dns-update-tls,,tcp,DNS Dynamic Update Service over TLS,[Stuart_Cheshire],[Stuart_Cheshire],2019-05-04,,[RFC6281],,,"DNS Dynamic Update Service for a given domain may not necessarily be provided by the principal name servers as advertised by the domain's ""NS"" records, and may not necessarily always be provided on port 53. The ""_dns-update._udp.<domain>."" SRV record gives the target host and port where DNS Dynamic Update Service is provided for the named domain." dop,,,Roar (Death of Productivity),[Massive_Flow_Product],[Massive_Flow_Product],,,,,,Defined TXT keys: name=<full username> dropcopy,,,DropCopy,[base_t_Interactive],[base_t_Interactive],,,,,,Defined TXT keys: None dsgsync,,,Datacolor SpyderGallery Desktop Sync Protocol,[Datacolor],[Heath_Barber],2011-10-14,,,,,Defined TXT keys: Proprietary dsl-sync,,,Data Synchronization Protocol for Discovery Software products,[John_Hogg],[John_Hogg],,,,,,Defined TXT keys: Proprietary dtrmtdesktop,,,Desktop Transporter Remote Desktop Protocol,[Daniel_Stodle],[Daniel_Stodle],,,,,,Defined TXT keys: None duckrace,,tcp,A communication protocol that allows a school teacher to set work activities to students over a LAN.,[Stinky_Kitten_Limited],[Gary_Atkinson],2013-10-03,,,,,Defined TXT keys: txtvers uuid devicename dxtgsync,,,Documents To Go Desktop Sync Protocol,[Tim_Boyle],[Tim_Boyle],,,,,,Defined TXT keys: Proprietary ea-dttx-poker,,,Protocol for EA Downtown Texas Hold 'em,[Ben_Lewis],[Ben_Lewis],,,,,,Defined TXT keys: None earphoria,,,Earphoria,[Rogue_Amoeba],[Rogue_Amoeba],,,,,,Defined TXT keys: None easyspndlg-sync,,tcp,Sync service for the Easy Spend Log app,[Aaron_L_Bratcher],[Aaron_L_Bratcher],2011-10-17,,,,,Defined TXT keys: None eb-amuzi,,,Amuzi peer-to-peer session synchronization protocol,[Zachary_Gramana],[Zachary_Gramana],,,,,,Defined TXT keys: Proprietary eb-sync,,tcp,Easy Books App data sync helper for Mac OS X and iOS,[Geode_Software_Ltd],[Mathew_Waters],2014-05-14,,,,,Defined TXT keys: None eb-sync,,udp,Easy Books App data sync helper for Mac OS X and iOS,[Geode_Software_Ltd],[Mathew_Waters],2014-05-14,,,,,Defined TXT keys: None ebms,,,ebXML Messaging,[Matthew_MacKenzie],[Matthew_MacKenzie],,,,,,Defined TXT keys: Endpoint=</path/to/endpoint> ecms,,,Northrup Grumman/Mission Systems/ESL Data Flow Protocol,[Dan_Goff],[Dan_Goff],,,,,,Defined TXT keys: None ebreg,,,ebXML Registry,[Matthew_MacKenzie],[Matthew_MacKenzie],,,,,,Defined TXT keys: HttpBinding=</path/to/registry/http/binding> ecbyesfsgksc,,,Net Monitor Anti-Piracy Service,[Guy_Meyer],[Guy_Meyer],,,,,,Defined TXT keys: None edcp,,udp,LaCie Ethernet Disk Configuration Protocol,[Nicolas_Bouilleaud],[Nicolas_Bouilleaud],,,,,,"Defined TXT keys: ip, mac, dhcp, mask, gtwy, wins, name, version" edge1,,tcp,Edge1 Base Station,[Skycatch_Inc.],[Ruben_Beltran_del_Rio_3],2018-02-09,,,,,Defined TXT keys: None edsservice,,tcp,Provides resolution of EDS services available on a given network,[Morpho_Detection_LLC],[Natarajan_Subramanian],2016-07-19,,,,,Defined TXT keys: None eeg,,tcp,EEG System Discovery across local and wide area networks,[Shifted_Current],[Joel_Aaron_Clipperton],2012-09-11,,,,,Defined TXT keys: Type efkon-elite,,tcp,EFKON Lightweight Interface to Traffic Events,[EFKON_AG],[Thomas_Kemmer],2011-10-20,,,,,"Defined TXT keys: txtvers, protovers, model, serial, scheme, path" egistix,,,Egistix Auto-Discovery,[Dave_Lindquist_2],[Dave_Lindquist_2],,,,,,Defined TXT keys: None eheap,,,Interactive Room Software Infrastructure (Event Sharing),,,,,,,,Defined TXT keys: None embrace,,,DataEnvoy,[Rob_MacGregor],[Rob_MacGregor],,,,,,Defined TXT keys: None enphase-envoy,,tcp,Enphase Energy Envoy,[Enphase_Energy_Inc],[Chris_Eich],2011-11-08,,,,,"Defined TXT keys: - txtvers - protovers - serialnum" ep,,,Endpoint Protocol (EP) for use in Home Automation systems,[Tommy_van_der_Vorst],[Tommy_van_der_Vorst],,,,,,Defined TXT keys: dns-sd_mdns esp,,tcp,Extensis Server Protocol,[Loren_Barr],[Loren_Barr],2006-12,,,,,Defined TXT keys: none est,,tcp,Enrollment Over Secure Transport,[Jack_Visoky],[Jack_Visoky],2017-10-06,,,,,[RFC7030]. Defined TXT keys: none eucalyptus,,,Eucalyptus Discovery,[Support_Team],[Support_Team],,,,,,Defined TXT keys: Eucalyptus-DNS-SD eventserver,,,Now Up-to-Date,,,,,,,,Defined TXT keys: None evp,,tcp,EvP - Generic EVENT protocol,[Quentin_Glidic],,2013-06-05,,,,,Defined TXT keys: None evs-notif,,,EVS Notification Center Protocol,[Eric_Gillet],[Eric_Gillet],,,,,,"Defined TXT keys: ID, Address" ewalletsync,,,Synchronization Protocol for Ilium Software's eWallet,[Dan_Amstutz],[Dan_Amstutz],,,,,,Defined TXT keys: name=<friendly device name> ewelink,,tcp,eWeLink devices supporting LAN Control,[Shenzhen_CoolKit_Technology_Co._Ltd.],[Michael_Hu],2019-01-17,,,,,"Defined TXT keys: txtvers, id, type, apivers, encrypt, data1, data2, data3, data4, iv" example,,,Example Service Type,,,,,,,,"Not a real service type. Special 'pretend' service types (""_example._udp"" and ""_example._tcp"") reserved for use in illustrative examples in books and other documentation." exb,,,Exbiblio Cascading Service Protocol,[Claes_Fredrik_Mannby],[Claes_Fredrik_Mannby],,,,,,Defined TXT keys: Will be described at www.exbiblio.com extensissn,,,Extensis Serial Number,[Extensis],[Extensis],,,,,,Defined TXT keys: None eyetvsn,,,EyeTV Sharing,[Elgato],[Elgato],,,,,,"Defined TXT keys: txtvers=1, keyhash=<4 bytes>" facespan,,,FaceSpan,[Kerry_Hazelgren],[Kerry_Hazelgren],,,,,,Defined TXT keys: None faxstfx,,,FAXstf,[Smith_Micro],[Smith_Micro],,,,,,Defined TXT keys: None feed-sharing,,,NetNewsWire 2.0,[Ranchero_Software],[Ranchero_Software],,,,,,Defined TXT keys: None feldwesen,,tcp,proprietary,[Kiel_University_of_Applied_Sciences],[Matthias-Christian_Ott],2016-06-19,,,,,Defined TXT keys: None firetask,,,Firetask task sharing and synchronization protocol,[Gerald_Aquila],[Gerald_Aquila],,,,,,Defined TXT keys: None fish,,,Fish,[Oriol_Ferrer_Mesia],[Oriol_Ferrer_Mesia],,,,,,Defined TXT keys: None fix,,,Financial Information Exchange (FIX) Protocol,[Joakim_Johansson],[Joakim_Johansson],,,,,,"Defined TXT keys: Currently valid enumerated values: FIX Session Protocol Versions (SESSIONVERSION): 1.1 FIX Application Protocol Versions (APPLICATIONVERSION): 2.7, 3.0, 4.0, 4.1, 4.2, 4.3, 4.4, 5.0 Possible TXT records defined and their values (replace uppercase text with enumerations from the list above): txtvers=1 |
13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 | frameforge-lic,,,FrameForge License,[James_W_Walker],[James_W_Walker],,,,,,Defined TXT keys: Proprietary freehand,,,FreeHand MusicPad Pro Interface Protocol,[Ted_Schroeder],[Ted_Schroeder],,,,,,Defined TXT keys: None frog,,,Frog Navigation Systems,[Rene_Jager],[Rene_Jager],,,,,,"Defined TXT keys: type, name, id" ftpcroco,,,Crocodile FTP Server,[Xnet_Communications],[Xnet_Communications],,,,,,Defined TXT keys: None fv-cert,,udp,Fairview Certificate,[Jim_Lyle_2],[Jim_Lyle_2],,,,,,"Defined TXT keys: DevID=<device id>, DevPK=<device public key>" fv-key,,udp,Fairview Key,[Jim_Lyle_2],[Jim_Lyle_2],,,,,,Defined TXT keys: KeyID=<device id> fv-time,,udp,Fairview Time/Date,[Jim_Lyle_2],[Jim_Lyle_2],,,,,,Defined TXT keys: None garagepad,,,Entrackment Client Service,[Talkative_AB],[Talkative_AB],,,,,,Defined TXT keys: None gforce-ssmp,,,G-Force Control via SoundSpectrum's SSMP TCP Protocol,[Andy_O_Meara],[Andy_O_Meara],,,,,,Defined TXT keys: None glasspad,,,GlassPad Data Exchange Protocol,[Emmanuel_Merali],[Emmanuel_Merali],,,,,,Defined TXT keys: guid glasspadserver,,,GlassPadServer Data Exchange Protocol,[Emmanuel_Merali],[Emmanuel_Merali],,,,,,Defined TXT keys: guid glrdrvmon,,,OpenGL Driver Monitor,[Dave_Springer],[Dave_Springer],,,,,,Defined TXT keys: None | > > | > > | 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 | frameforge-lic,,,FrameForge License,[James_W_Walker],[James_W_Walker],,,,,,Defined TXT keys: Proprietary freehand,,,FreeHand MusicPad Pro Interface Protocol,[Ted_Schroeder],[Ted_Schroeder],,,,,,Defined TXT keys: None frog,,,Frog Navigation Systems,[Rene_Jager],[Rene_Jager],,,,,,"Defined TXT keys: type, name, id" ftpcroco,,,Crocodile FTP Server,[Xnet_Communications],[Xnet_Communications],,,,,,Defined TXT keys: None fv-cert,,udp,Fairview Certificate,[Jim_Lyle_2],[Jim_Lyle_2],,,,,,"Defined TXT keys: DevID=<device id>, DevPK=<device public key>" fv-key,,udp,Fairview Key,[Jim_Lyle_2],[Jim_Lyle_2],,,,,,Defined TXT keys: KeyID=<device id> fv-time,,udp,Fairview Time/Date,[Jim_Lyle_2],[Jim_Lyle_2],,,,,,Defined TXT keys: None g2metric-lynx,,tcp,Used for the Lynx System,[G2_Metric],[Paul_Forsans],2019-06-13,,,,,Defined TXT keys: None garagepad,,,Entrackment Client Service,[Talkative_AB],[Talkative_AB],,,,,,Defined TXT keys: None giffer,,tcp,gif collection browsing,[Taber_Buhl],[Taber_Buhl],2015-09-24,,,,,Defined TXT keys: version=<protocol version> gforce-ssmp,,,G-Force Control via SoundSpectrum's SSMP TCP Protocol,[Andy_O_Meara],[Andy_O_Meara],,,,,,Defined TXT keys: None glasspad,,,GlassPad Data Exchange Protocol,[Emmanuel_Merali],[Emmanuel_Merali],,,,,,Defined TXT keys: guid glasspadserver,,,GlassPadServer Data Exchange Protocol,[Emmanuel_Merali],[Emmanuel_Merali],,,,,,Defined TXT keys: guid glrdrvmon,,,OpenGL Driver Monitor,[Dave_Springer],[Dave_Springer],,,,,,Defined TXT keys: None googexpeditions,,tcp,Service related to Google Expeditions which is a technology for enabling multi-participant virtual fieldtrip experiences over a local wireless network. See http://g.co/expeditions for more details,[Google_Inc],[Jason_Schiller],2015-07-31,,,,,Defined TXT keys: None googexpeditions,,udp,Service related to Google Expeditions which is a technology for enabling multi-participant virtual fieldtrip experiences over a local wireless network. See http://g.co/expeditions for more details,[Google_Inc],[Jason_Schiller],2015-07-31,,,,,Defined TXT keys: None googlecast,,tcp,Service related to Google Cast which is a technology for enabling multi-screen experiences. See developers.google.com/cast for more details,[Google_Inc],[Jason_Schiller],2014-01-16,,,,,Defined TXT keys: None goorstop,,tcp,For iOS Application named GoOrStop,[Charlie_Kim],[Charlie_Kim],2012-08-28,,,,,Defined TXT keys: None gopro-wake,,udp,GoPro proprietary protocol to wake devices,[GoPro],[Joe_Enke],2014-10-13,,,,,"Defined TXT keys: model, fw_version, platform_version, protocol_version, mac_address" gopro-web,,udp,GoPro proprietary protocol for devices,[GoPro],[Joe_Enke],2014-10-13,,,,,"Defined TXT keys: model, fw_version, platform_version, protocol_version, mac_address" gotit,,tcp,Network name Got It!,[Bill_Vlahos],[Bill_Vlahos],2013-12-13,,,,,Defined TXT keys: info=name gpnp,,,Grid Plug and Play,[David_Brower],[David_Brower],,,,,,Defined TXT keys: None grillezvous,,,Roxio ToastAnywhere(tm) Recorder Sharing,,,,,,,,Defined TXT keys: AppID=<application id> KeyHash=<application license key hash> groovesquid,,tcp,Groovesquid Democratic Music Control Protocol,[www_nsovocal_com],[Ruben_Beltran],2011-10-18,,,,,Defined TXT keys: None growl,,,Growl,,,,,,,,Defined TXT keys: None |
13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 | On subsequent accesses to the service, the GUID-based name is resolved, and that particular service instance is discovered, even if the user has subsequently changed the user-friendly name to something else. Note: Although each different logical service type needs to have its own different DNS-SD service type, all GUID-based names use the same pseudo-type: ""_guid._tcp"". There is no possibility of name conflict because (by definition) GUIDs are globally unique." h323,,,"H.323 Real-time audio, video and data communication call setup protocol",[Will_MacDonald],[Will_MacDonald],,,,,,Defined TXT keys: None help,,,HELP command,,,,,[RFC1078],,,TCP Port Service Multiplexer (TCPMUX) hg,,,Mercurial web-based repository access,,,,,,,,"Defined TXT keys: None path=<file system pathname to repository> description=<descriptive name of repository>" hinz,,,HINZMobil Synchronization protocol,[Jorg_Laschke],[Jorg_Laschke],,,,,,Defined TXT keys: None hmcp,,,Home Media Control Protocol,[Will_Lahr],[Will_Lahr],,,,,,Defined TXT keys: None home-sharing,,,iTunes Home Sharing,[Amandeep_Jawa_3],[Amandeep_Jawa_3],,,,,,"Defined TXT keys: txtvers, hQ, iTSh Version, MID, Database ID, dmb, Version, OSsi, hG, hC, Machine ID" homeauto,,,iDo Technology Home Automation Protocol,[Tony_de_Rijk],[Tony_de_Rijk],,,,,,Defined TXT keys: None homeconnect,,tcp,Home Connect Protocol,[BSH_Bosch_und_Siemens_Hausgeraete_GmbH],[Jens_Clauss],2013-06-11,,,,,Defined TXT keys: txtvers + Proprietary honeywell-vid,,udp,Honeywell Video Systems,[Shankar_Prasad],[Shankar_Prasad],,,,,,Defined TXT keys: None hotwayd,,,Hotwayd,,,,,,,,Defined TXT keys: None | > > | > | 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 | On subsequent accesses to the service, the GUID-based name is resolved, and that particular service instance is discovered, even if the user has subsequently changed the user-friendly name to something else. Note: Although each different logical service type needs to have its own different DNS-SD service type, all GUID-based names use the same pseudo-type: ""_guid._tcp"". There is no possibility of name conflict because (by definition) GUIDs are globally unique." h323,,,"H.323 Real-time audio, video and data communication call setup protocol",[Will_MacDonald],[Will_MacDonald],,,,,,Defined TXT keys: None hbbtv-ait,,tcp,HbbTV Application Information Table,[HbbTV_Association],[Paul_Higgs],2015-09-09,,,,,Defined TXT keys: None help,,,HELP command,,,,,[RFC1078],,,TCP Port Service Multiplexer (TCPMUX) hg,,,Mercurial web-based repository access,,,,,,,,"Defined TXT keys: None path=<file system pathname to repository> description=<descriptive name of repository>" hinz,,,HINZMobil Synchronization protocol,[Jorg_Laschke],[Jorg_Laschke],,,,,,Defined TXT keys: None hmcp,,,Home Media Control Protocol,[Will_Lahr],[Will_Lahr],,,,,,Defined TXT keys: None hola,,tcp,An application to communicate with other,[Navneet_Gupta],[Navneet_Gupta],2017-09-05,,,,,Defined TXT keys: None home-sharing,,,iTunes Home Sharing,[Amandeep_Jawa_3],[Amandeep_Jawa_3],,,,,,"Defined TXT keys: txtvers, hQ, iTSh Version, MID, Database ID, dmb, Version, OSsi, hG, hC, Machine ID" homeauto,,,iDo Technology Home Automation Protocol,[Tony_de_Rijk],[Tony_de_Rijk],,,,,,Defined TXT keys: None homeconnect,,tcp,Home Connect Protocol,[BSH_Bosch_und_Siemens_Hausgeraete_GmbH],[Jens_Clauss],2013-06-11,,,,,Defined TXT keys: txtvers + Proprietary honeywell-vid,,udp,Honeywell Video Systems,[Shankar_Prasad],[Shankar_Prasad],,,,,,Defined TXT keys: None hotwayd,,,Hotwayd,,,,,,,,Defined TXT keys: None howdy,,,Howdy messaging and notification protocol,[Ozate_Inc],[Joseph_Sickel],,2011-10-12,,,,Defined TXT keys: vers hpdeviceinfo,,tcp,The service provides information about connected HP devices,[HP_Inc],[Sanjay_Kumar],2016-08-26,,,,,Defined TXT keys: vers=<version> hpr-bldlnx,,,HP Remote Build System for Linux-based Systems,[Jeffrey_J_Walls],[Jeffrey_J_Walls],,,,,,"Defined TXT keys: rh73, rhel3, rhel4, deb31, suse102" hpr-bldwin,,,HP Remote Build System for Microsoft Windows Systems,[Jeffrey_J_Walls],[Jeffrey_J_Walls],,,,,,"Defined TXT keys: xp, vista" hpr-db,,,Identifies systems that house databases for the Remote Build System and Remote Test System,[Jeffrey_J_Walls],[Jeffrey_J_Walls],,,,,,"Defined TXT keys: bld, tst, mstr" hpr-rep,,,HP Remote Repository for Build and Test Results,[Jeffrey_J_Walls],[Jeffrey_J_Walls],,,,,,"Defined TXT keys: bld, tst, official" hpr-toollnx,,,HP Remote System that houses compilers and tools for Linux-based Systems,[Jeffrey_J_Walls],[Jeffrey_J_Walls],,,,,,"Defined TXT keys: rh73, rhel3, rhel4, deb31, suse102" hpr-toolwin,,,HP Remote System that houses compilers and tools for Microsoft Windows Systems,[Jeffrey_J_Walls],[Jeffrey_J_Walls],,,,,,"Defined TXT keys: xp, vista" hpr-tstlnx,,,HP Remote Test System for Linux-based Systems,[Jeffrey_J_Walls],[Jeffrey_J_Walls],,,,,,"Defined TXT keys: rh73, rhel3, rhel4, deb31, suse102" |
13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 | Work is currently being done on adding mechanisms to HTTP and TLS to allow the server to tell the client that it needs to activate TLS on the current connection before proceeding. If this becomes widely adopted, it further justifies the decision to not create a separate DNS-SD service type ""_https._tcp"", because security becomes just another one of the things that is negotiated on a per-connection basis (like content-type negotiation today) rather than being an entirely separate thing." htvncconf,,udp,HomeTouch Vnc Configuration,[Yuval_Rakavy],[Yuval_Rakavy],2012-07-10,,,,,Defined TXT keys: None hyperstream,,,Atempo HyperStream deduplication server,[Laurent_Charmet],[Laurent_Charmet],,,,,,"Defined TXT keys: version=x.y.z.w uuid=<36 bytes UUID string> host=<real host name>" iad1,,,BBN IAD,,,,2013-05-24,,,,This service name is no longer in use. iad2,,,BBN IAD,,,,2013-05-24,,,,This service name is no longer in use. iad3,,,BBN IAD,,,,2013-05-24,,,,This service name is no longer in use. iaudit,,tcp,Braemar Inventory audit,[Braemar_Consulting],[Richard_Thompson],2014-03-05,,,,,Defined TXT keys: None ibiz,,,iBiz Server,[IGG_Software],[IGG_Software],,,,,,Defined TXT keys: None ica-networking,,,Image Capture Networking,[Baskaran_Subramaniam],[Baskaran_Subramaniam],,,,,,Defined TXT keys: None ican,,,Northrup Grumman/TASC/ICAN Protocol,[Laurent_Mihalkovic],[Laurent_Mihalkovic],,,,,,Defined TXT keys: None ichalkboard,,,iChalk,[Math_Game_House_Soft],[Math_Game_House_Soft],,,,,,Defined TXT keys: None ichat,,,iChat 1.0,[Jens_Alfke],[Jens_Alfke],,,,,,Defined TXT keys: Proprietary iconquer,,,iConquer,[Andrew_Zamler_Carhar],[Andrew_Zamler_Carhar],,,,,,Defined TXT keys: None icontrolbox,,tcp,A Remote Control Application service used to control Computers on a Local Area Network,[Umair_Cheema],[Umair_Cheema],2013-07-08,,,,,Defined TXT keys: None idata,,,Generic Data Acquisition and Control Protocol,[Carson_Fenimore],[Carson_Fenimore],,,,,,Defined TXT keys: None idsync,,,SplashID Synchronization Service,[Justin_Cepelak],[Justin_Cepelak],,,,,,Defined TXT keys: Proprietary ifolder,,,Published iFolder,[Brady_Anderson],[Brady_Anderson],,,,,,Defined TXT keys: version=? ihouse,,,Idle Hands iHouse Protocol,[Toby_Smith],[Toby_Smith],,,,,,Defined TXT keys: None ii-drills,,,Instant Interactive Drills,[Ricky_Sharp],[Ricky_Sharp],,,,,,Defined TXT keys: None ii-konane,,,Instant Interactive Konane,[Ricky_Sharp],[Ricky_Sharp],,,,,,Defined TXT keys: None ilynx,,,iLynX,[iOS_Software],[iOS_Software],,,,,,Defined TXT keys: None im,,tcp,Instant Messaging,,,,,[RFC3861],,, im,,udp,Instant Messaging,,,,,[RFC3861],,, imagescal,,tcp,ImagesCal App Data Sharing,[Three_Lights_Software_LLC],[Gus_Asadi],2014-07-22,,,,,Defined TXT keys: None imidi,,,iMidi,[Robert_Grant],[Robert_Grant],,,,,,Defined TXT keys: None imgsync,,tcp,Protocol synchronizing Image data,[Canon_Inc_2],[Kazuo_Moritomo],2013-03-28,,,,,"Defined TXT keys: srvver, mf, md, mn, tid, srv, sid, myhwa, imglist, devAid, serAid, vever" ims-ni,,tcp,Noise Inspector,[IMS_merilni_sistemi],[Metod_Celestina],2012-08-24,,,,,"Defined TXT keys: SN (serial number), SVER (software version), HVER (hardware version), PVER (protocol version))" indigo-dvr,,,Indigo Security Digital Video Recorders,[Haram_Lee],[Haram_Lee],,,,,,Defined TXT keys: Proprietary infboard,,tcp,InfBoard interactive whiteboard protocol,[Eric_Sean_Conner],[Eric_Sean_Conner],2011-10-17,,,,,Defined TXT keys: Proprietary inova-ontrack,,,Inova Solutions OnTrack Display Protocol,,,,,,,,Defined TXT keys: None | > > > > > > > > | > > > > > > > > > > > > | 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 | Work is currently being done on adding mechanisms to HTTP and TLS to allow the server to tell the client that it needs to activate TLS on the current connection before proceeding. If this becomes widely adopted, it further justifies the decision to not create a separate DNS-SD service type ""_https._tcp"", because security becomes just another one of the things that is negotiated on a per-connection basis (like content-type negotiation today) rather than being an entirely separate thing." htvncconf,,udp,HomeTouch Vnc Configuration,[Yuval_Rakavy],[Yuval_Rakavy],2012-07-10,,,,,Defined TXT keys: None hue,,tcp,Philips hue protocol,[Signify],[Walter_Slegers],2017-11-01,2019-08-09,,,,"Defined TXT keys: bridgeid, modelid" huesync,,tcp,Philips Hue Sync control protocol,[Signify],[Twan_Kamp],2019-07-31,,,,,"Defined TXT keys: name, devicetype, uniqueid, path" hyperstream,,,Atempo HyperStream deduplication server,[Laurent_Charmet],[Laurent_Charmet],,,,,,"Defined TXT keys: version=x.y.z.w uuid=<36 bytes UUID string> host=<real host name>" iad1,,,BBN IAD,,,,2013-05-24,,,,This service name is no longer in use. iad2,,,BBN IAD,,,,2013-05-24,,,,This service name is no longer in use. iad3,,,BBN IAD,,,,2013-05-24,,,,This service name is no longer in use. iaudit,,tcp,Braemar Inventory audit,[Braemar_Consulting],[Richard_Thompson],2014-03-05,,,,,Defined TXT keys: None ibiz,,,iBiz Server,[IGG_Software],[IGG_Software],,,,,,Defined TXT keys: None ica-networking,,,Image Capture Networking,[Baskaran_Subramaniam],[Baskaran_Subramaniam],,,,,,Defined TXT keys: None ican,,,Northrup Grumman/TASC/ICAN Protocol,[Laurent_Mihalkovic],[Laurent_Mihalkovic],,,,,,Defined TXT keys: None ichalkboard,,,iChalk,[Math_Game_House_Soft],[Math_Game_House_Soft],,,,,,Defined TXT keys: None ichat,,,iChat 1.0,[Jens_Alfke],[Jens_Alfke],,,,,,Defined TXT keys: Proprietary ici,,,ICI,[Brent_Hines],[Brent_Hines],,,,,, iconquer,,,iConquer,[Andrew_Zamler_Carhar],[Andrew_Zamler_Carhar],,,,,,Defined TXT keys: None icontrolbox,,tcp,A Remote Control Application service used to control Computers on a Local Area Network,[Umair_Cheema],[Umair_Cheema],2013-07-08,,,,,Defined TXT keys: None idata,,,Generic Data Acquisition and Control Protocol,[Carson_Fenimore],[Carson_Fenimore],,,,,,Defined TXT keys: None idcws,,,Intermec Device Configuration Web Services,[Thaddeus_Ternes],[Thaddeus_Ternes],,,,,,Defined TXT keys: version=<x.xx> ideaquest,,tcp,IDEAQUEST Safety Monitoring System,[IDEAQUEST_Inc.],[Kimitaka_KAWAGUCHI],2016-12-12,,,,,Defined TXT keys: none idsync,,,SplashID Synchronization Service,[Justin_Cepelak],[Justin_Cepelak],,,,,,Defined TXT keys: Proprietary iffl,,,iFFL Bonjour service for communication between client and server applications.,[Kevin_Gregory],[Kevin_Gregory],2016-03-20,,,,,Defined TXT keys: None ifolder,,,Published iFolder,[Brady_Anderson],[Brady_Anderson],,,,,,Defined TXT keys: version=? ihouse,,,Idle Hands iHouse Protocol,[Toby_Smith],[Toby_Smith],,,,,,Defined TXT keys: None ii-drills,,,Instant Interactive Drills,[Ricky_Sharp],[Ricky_Sharp],,,,,,Defined TXT keys: None ii-konane,,,Instant Interactive Konane,[Ricky_Sharp],[Ricky_Sharp],,,,,,Defined TXT keys: None ilynx,,,iLynX,[iOS_Software],[iOS_Software],,,,,,Defined TXT keys: None im,,tcp,Instant Messaging,,,,,[RFC3861],,, im,,udp,Instant Messaging,,,,,[RFC3861],,, imagescal,,tcp,ImagesCal App Data Sharing,[Three_Lights_Software_LLC],[Gus_Asadi],2014-07-22,,,,,Defined TXT keys: None imidi,,,iMidi,[Robert_Grant],[Robert_Grant],,,,,,Defined TXT keys: None imgsync,,tcp,Protocol synchronizing Image data,[Canon_Inc_2],[Kazuo_Moritomo],2013-03-28,,,,,"Defined TXT keys: srvver, mf, md, mn, tid, srv, sid, myhwa, imglist, devAid, serAid, vever" ims-ni,,tcp,Noise Inspector,[IMS_merilni_sistemi],[Metod_Celestina],2012-08-24,,,,,"Defined TXT keys: SN (serial number), SVER (software version), HVER (hardware version), PVER (protocol version))" indigo-dvr,,,Indigo Security Digital Video Recorders,[Haram_Lee],[Haram_Lee],,,,,,Defined TXT keys: Proprietary infboard,,tcp,InfBoard interactive whiteboard protocol,[Eric_Sean_Conner],[Eric_Sean_Conner],2011-10-17,,,,,Defined TXT keys: Proprietary informacast,,tcp,Listing Singlewire InformaCast servers,[Singlewire_Software_LLC],[Jerry_Steinhauer],2019-03-11,,,,,Defined TXT keys: None innergroup,,tcp,Service for a Communications App,[Santo_Porpiglia],[Santo_Porpiglia],2015-05-28,,,,,Defined TXT keys: None inova-ontrack,,,Inova Solutions OnTrack Display Protocol,,,,,,,,Defined TXT keys: None iot,,tcp,Internet-of-things (IoT) JSON telegram service,[SEVENSTAX_GmbH],[Ralf_Schwarzer],2015-11-05,,,,,"Defined TXT keys: <type>:application specific kind of protocol; <vers>:version of the 'type'; <device>:device descriptor" iota,,tcp,iotaMed medical records server,[MITM],[Martin_Wehlou],2011-10-18,,,,,Defined TXT keys: none ipbroadcaster,,,IP Broadcaster,[base_t_Interactive],[base_t_Interactive],,,,,,Defined TXT keys: None ipspeaker,,,IP Speaker Control Protocol,[Dan_Mahn],[Dan_Mahn],,,,,,Defined TXT keys: None iqp,,tcp,Control protocol for Phase One devices,[Phase_One],[Christopher_Jacobsen],2018-01-16,,,,,"Defined TXT keys: txtvers,mk,md,us,un,ss,auth" ir-hvac-000,,tcp,HVAC SMIL Server,[Ingersoll_Rand_Inc],[John_Taylor],2011-09-28,,,,,Defined TXT keys: None irelay,,,iRelay application discovery service,[Marc_Diamante],[Marc_Diamante],,,,,,Defined TXT keys: Proprietary irmc,,,Intego Remote Management Console,[Olivier_Delecluse],[Olivier_Delecluse],,,,,,"Defined TXT keys: RMC Client Version=<version>, MAC Address=<address>" irobotmcs,,tcp,iRobot Monitor and Control Service,[iRobot_Corporation],[Tim_Farlow],2013-11-07,,,,,Defined TXT keys: None irobotmcs,,udp,iRobot Monitor and Control Service,[iRobot_Corporation],[Tim_Farlow],2013-11-07,,,,,Defined TXT keys: None iroid-sd,,tcp,Iroid Data Service Discovery,[iroïd],[Tom_Wagner],2016-04-22,,,,,Defined TXT keys: none irradiatd-iclip,,tcp,iClip clipboard transfer,[Irradiated_Software],[Thomas_Tempelmann],2012-06-19,,,,,Defined TXT keys: none irt-sharing,,tcp,Image Resizer Toolbox preview sharing service,[fnxsoftware.com],[Juan_Guerrero],2015-06-30,,,,,Defined TXT keys: irtshrng isparx,,,iSparx,[Philipp_Dreiss],[Philipp_Dreiss],,,,,,Defined TXT keys: None ispq-vc,,,iSpQ VideoChat,[Chris_Silverberg],[Chris_Silverberg],,,,,,Defined TXT keys: None ishare,,,iShare,[Steve_Dekorte],[Steve_Dekorte],,,,,,Defined TXT keys: None isticky,,,iSticky,[Insist],[Insist],,,,,,Defined TXT keys: None istorm,,,iStorm,[Math_Game_House_Soft],[Math_Game_House_Soft],,,,,,Defined TXT keys: None isynchronize,,tcp,iSynchronize data synchronization protocol,[Smart_Apps_LTD],[Sergey_Bolshedvorsky],2011-10-11,,,,,Defined TXT keys: none itap-publish,,tcp,iTap Publishing Service,[HLW_Software_Development_GmbH],[Michael_Lacher],2011-10-11,,,,,Defined TXT keys: uuid=<unique server key> itis-device,,,IT-IS International Ltd. Device,[Ben_Webster],[Ben_Webster],,,,,,"Defined TXT keys: type=<product type> configuration=<product configuration> description=<human readable description> version=<device and protocol version>" itsrc,,,iTunes Socket Remote Control,[Kevin_Leacock],[Kevin_Leacock],,,,,,Defined TXT keys: None ivef,,,Inter VTS Exchange Format,[Harry_ten_Berge],[Harry_ten_Berge],,,,,,Defined TXT keys: None iwork,,,iWork Server,[IGG_Software],[IGG_Software],,,,,,Defined TXT keys: None jcan,,,Northrup Grumman/TASC/JCAN Protocol,[Laurent_Mihalkovic],[Laurent_Mihalkovic],,,,,,Defined TXT keys: None jeditx,,,Jedit X,[Satoshi_Matsumoto],[Satoshi_Matsumoto],,,,,,Defined TXT keys: None jini,,,Jini Service Discovery,[Daniel_Steinberg],[Daniel_Steinberg],,,,,,Defined TXT keys: None jmap,,tcp,JSON Meta Application Protocol,[IESG],[IETF_Chair],2016-01-22,2019-07-16,[RFC8620],,,"This service name was previously assigned under the name ""JSON Mail Access Protocol"". This has been de-assigned and re-assigned with the approval of the previous assignee." jnx-kcsync,,tcp,jollys keychain cloud sync protocol,[Patrick_Stein],[Patrick_Stein],2011-10-24,,,,,"Defined TXT keys: hash=<40hex characters> salt=<40hex characters> uuid=<40hex characters> Example: hash=5e7580598c0d7064d4fc79faaeb42585e1a675f8 salt=f0164cb3a0c3d7efe75abea8fda86d2d56c8dda9 uuid=db61dc092922252e45bbb264f59147138c7fd5fa" jtag,,,Proprietary,[Uwe_Ziegler],[Uwe_Ziegler],,,,,,"Defined TXT keys: blocked=<name of the device>, version=<firmware/instrument controller version>" jukebox,,tcp,Jukebox Request Service,[Gary_Giebler_2],[Gary_Giebler_2],2011-10-18,,,,,Defined TXT keys: None jukejoint,,tcp,Music sharing protocol,[Phrenetic_Apps_LLC],[Christopher_Pow],2016-04-12,,,,,Defined TXT keys: none keynoteaccess,,tcp,KeynoteAccess is used for sending remote requests/responses when controlling a slideshow with Keynote Remote,[Apple],[Brad_Vaughan],2011-10-12,,,,,Defined TXT keys: None keynotepairing,,tcp,KeynotePairing is used to pair Keynote Remote with Keynote,[Apple],[Brad_Vaughan],2011-10-12,,,,,Defined TXT keys: None kiwin,,tcp,Topology Discovery,[Stephen_kiwin_PALM],[Stephen_kiwin_PALM],2015-06-30,,,,,"Defined TXT keys: kiwin, top" ktp,,,Kabira Transaction Platform,[Ramiro_Sarmiento],[Ramiro_Sarmiento],,,,,,Defined TXT keys: None kyma,,tcp,Symbolic Sound Kyma Service Discovery,[Symbolic_Sound_Corporation],[Kurt_Hebel],2018-11-28,,,,,Defined TXT keys: None la-maint,,,IMP Logical Address Maintenance,,,,2013-05-24,,,,This service name is no longer in use. labyrinth,,udp,Labyrinth local multiplayer protocol,[Andreas_Alptun],[Andreas_Alptun],,,,,,Defined TXT keys: None lan2p,,,Lan2P Peer-to-Peer Network Protocol,[Ben_Guild],[Ben_Guild],,,,,,Defined TXT keys: None lapse,,,Gawker,[Phil_Piwonka],[Phil_Piwonka],,,,,,Defined TXT keys: None larvaio-control,,tcp,Larva IP Controller,[larva.io_ltd],[Reijo_Sirila],2019-02-11,,,,,Defined TXT keys: None larvaio-control,,udp,Larva IP Controller,[larva.io_ltd],[Reijo_Sirila],2019-02-11,,,,,Defined TXT keys: None leaf,,,Lua Embedded Application Framework,[Ico_Doornekamp],[Ico_Doornekamp],,,,,,"Defined TXT keys: name=<readable name> product=<product name/model> version=<version number>" lexicon,,,Lexicon Vocabulary Sharing,[Jacob_Godwin_Jones],[Jacob_Godwin_Jones],,,,,,Defined TXT keys: None liaison,,,Liaison,[Brian_Cully],[Brian_Cully],,,,,,Defined TXT keys: None library,,,Delicious Library 2 Collection Data Sharing Protocol,[William_Shipley],[William_Shipley],,,,,,Defined TXT keys: None libratone,,,Protocol for setup and control of Libratone products,[Libratone_AS],[Claus_Jensen],2011-10-27,,,,,Defined TXT keys: None |
13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 | type=value (string) mac=value (12 hex digits)" lumiere,,tcp,A protocol to remotely control DMX512 devices over the network,[Gangsta_Ltd],[Jean-Charles_Boude],2011-10-13,,,,,Defined TXT keys: None lumis-lca,,tcp,Lumis Cache Appliance Protocol,[Lumis],[Rodrigo_Terra],2011-10-24,,,,,Defined TXT keys: none lux-dtp,,,Lux Solis Data Transport Protocol,[Laurence_Flath],[Laurence_Flath],,,,,,Defined TXT keys: None lxi,,,LXI,[Nick_Barendt_2],[Nick_Barendt_2],,,,,,"Defined TXT keys: txtvers, *IDN?=<response defined by IEEE 488; e.g., manufacturer, model, serial number, version>" lyrics,,,iPod Lyrics Service,[Gary_Giebler],[Gary_Giebler],,,,,,Defined TXT keys: Proprietary macfoh,,,MacFOH,[Shaun_Wexler],[Shaun_Wexler],,,,,,Defined TXT keys: None macfoh-admin,,,MacFOH admin services,[Shaun_Wexler],[Shaun_Wexler],,,,,,Defined TXT keys: None macfoh-audio,,udp,MacFOH audio stream,[Shaun_Wexler],[Shaun_Wexler],,,,,,Defined TXT keys: None macfoh-events,,udp,MacFOH show control events,[Shaun_Wexler],[Shaun_Wexler],,,,,,Defined TXT keys: None macfoh-data,,udp,MacFOH realtime data,[Shaun_Wexler],[Shaun_Wexler],,,,,,Defined TXT keys: None macfoh-db,,,MacFOH database,[Shaun_Wexler],[Shaun_Wexler],,,,,,Defined TXT keys: None macfoh-remote,,,MacFOH Remote,[Shaun_Wexler],[Shaun_Wexler],,,,,,Defined TXT keys: None macminder,,,Mac Minder,[Luma_Code],[Luma_Code],,,,,,Defined TXT keys: None maestro,,,Maestro Music Sharing Service,[Luke_Steffen],[Luke_Steffen],,,,,,Defined TXT keys: None magicdice,,,Magic Dice Game Protocol,[Mike_Yenco],[Mike_Yenco],,,,,,Defined TXT keys: None mandos,,,Mandos Password Server,[Mandos_Maintainers],[Mandos_Maintainers],,,,,,Defined TXT keys: None matrix,,,MATRIX Remote AV Switching,[Ken_Jibiki],[Ken_Jibiki],,,,,,Defined TXT keys: None mavlink,,tcp,MAVLink Micro Air Vehicle Communication Protocol,[Roderick_Mann],[Roderick_Mann],2011-10-20,,,,,Defined TXT keys: 0 mbconsumer,,,MediaBroker++ Consumer,[Nate_Rivard],[Nate_Rivard],,,,,,Defined TXT keys: None mbproducer,,,MediaBroker++ Producer,[Nate_Rivard],[Nate_Rivard],,,,,,Defined TXT keys: None mbserver,,,MediaBroker++ Server,[Nate_Rivard],[Nate_Rivard],,,,,,Defined TXT keys: None mconnect,,,ClairMail Connect,[Sachin_Desai],[Sachin_Desai],,,,,,Defined TXT keys: None mcrcp,,,MediaCentral,[equinux],[equinux],,,,,,Defined TXT keys: None mediaboard1,,,MediaBoardONE Asset and Information Manager data sharing and synchronization protocol,[Thomas_K_Fischer],[Thomas_K_Fischer],,,,,,Defined TXT keys: None mediatap,,tcp,Mediatap streaming protocol,[Mediatap_GbR],[Mario_Pörner],2011-10-11,,,,,Defined TXT keys: Proprietary mercurydock,,tcp,Mercury Dock Assistant,[Spider_Electronics],[Kenny_Millar],2014-03-10,,,,,"Defined TXT keys: status, signature, ver" mesamis,,,Mes Amis,[David_Priest],[David_Priest],,,,,,Defined TXT keys: None mi-raysat,,,Mental Ray for Maya,[Autodesk],[Autodesk],,,,,,Defined TXT keys: None | > > > > > > | > > > > > > > > > > > > > > > > > > > > | 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 | type=value (string) mac=value (12 hex digits)" lumiere,,tcp,A protocol to remotely control DMX512 devices over the network,[Gangsta_Ltd],[Jean-Charles_Boude],2011-10-13,,,,,Defined TXT keys: None lumis-lca,,tcp,Lumis Cache Appliance Protocol,[Lumis],[Rodrigo_Terra],2011-10-24,,,,,Defined TXT keys: none lux-dtp,,,Lux Solis Data Transport Protocol,[Laurence_Flath],[Laurence_Flath],,,,,,Defined TXT keys: None lxi,,,LXI,[Nick_Barendt_2],[Nick_Barendt_2],,,,,,"Defined TXT keys: txtvers, *IDN?=<response defined by IEEE 488; e.g., manufacturer, model, serial number, version>" lyrics,,,iPod Lyrics Service,[Gary_Giebler],[Gary_Giebler],,,,,,Defined TXT keys: Proprietary M30S1PT,,tcp,Moritz30-Project Standard protocol 1 Plain Text,[Moritz30],[Matthias_Merkel],2015-12-07,,,,,Defined TXT keys: None M30S1PT,,udp,Moritz30-Project Standard protocol 1 Plain Text,[Moritz30],[Matthias_Merkel],2015-12-07,,,,,Defined TXT keys: None macfoh,,,MacFOH,[Shaun_Wexler],[Shaun_Wexler],,,,,,Defined TXT keys: None macfoh-admin,,,MacFOH admin services,[Shaun_Wexler],[Shaun_Wexler],,,,,,Defined TXT keys: None macfoh-audio,,udp,MacFOH audio stream,[Shaun_Wexler],[Shaun_Wexler],,,,,,Defined TXT keys: None macfoh-events,,udp,MacFOH show control events,[Shaun_Wexler],[Shaun_Wexler],,,,,,Defined TXT keys: None macfoh-data,,udp,MacFOH realtime data,[Shaun_Wexler],[Shaun_Wexler],,,,,,Defined TXT keys: None macfoh-db,,,MacFOH database,[Shaun_Wexler],[Shaun_Wexler],,,,,,Defined TXT keys: None macfoh-remote,,,MacFOH Remote,[Shaun_Wexler],[Shaun_Wexler],,,,,,Defined TXT keys: None macminder,,,Mac Minder,[Luma_Code],[Luma_Code],,,,,,Defined TXT keys: None maestro,,,Maestro Music Sharing Service,[Luke_Steffen],[Luke_Steffen],,,,,,Defined TXT keys: None magicdice,,,Magic Dice Game Protocol,[Mike_Yenco],[Mike_Yenco],,,,,,Defined TXT keys: None mandos,,,Mandos Password Server,[Mandos_Maintainers],[Mandos_Maintainers],,,,,,Defined TXT keys: None mas,,tcp,Pravala Mobility and Aggregation Service,[Pravala_Networks_ULC],[Severn_Tsui],2016-06-01,,,,,Defined TXT keys: None mas,,udp,Pravala Mobility and Aggregation Service,[Pravala_Networks_ULC],[Severn_Tsui],2016-06-01,,,,,Defined TXT keys: None matrix,,,MATRIX Remote AV Switching,[Ken_Jibiki],[Ken_Jibiki],,,,,,Defined TXT keys: None mavlink,,tcp,MAVLink Micro Air Vehicle Communication Protocol,[Roderick_Mann],[Roderick_Mann],2011-10-20,,,,,Defined TXT keys: 0 mazepseudo-game,,udp,Peer to peer communication between instances of the Maze Pseudo game.,[Mad_Elf_Software_Inc.],[Kenneth_Suda],2016-02-02,2016-03-30,,,,Defined TXT keys: 1 TXT record key for the RSA public key used by the server instance. mbconsumer,,,MediaBroker++ Consumer,[Nate_Rivard],[Nate_Rivard],,,,,,Defined TXT keys: None mbproducer,,,MediaBroker++ Producer,[Nate_Rivard],[Nate_Rivard],,,,,,Defined TXT keys: None mbserver,,,MediaBroker++ Server,[Nate_Rivard],[Nate_Rivard],,,,,,Defined TXT keys: None mconnect,,,ClairMail Connect,[Sachin_Desai],[Sachin_Desai],,,,,,Defined TXT keys: None mcrcp,,,MediaCentral,[equinux],[equinux],,,,,,Defined TXT keys: None mediaboard1,,,MediaBoardONE Asset and Information Manager data sharing and synchronization protocol,[Thomas_K_Fischer],[Thomas_K_Fischer],,,,,,Defined TXT keys: None mediatap,,tcp,Mediatap streaming protocol,[Mediatap_GbR],[Mario_Pörner],2011-10-11,,,,,Defined TXT keys: Proprietary mercurydock,,tcp,Mercury Dock Assistant,[Spider_Electronics],[Kenny_Millar],2014-03-10,,,,,"Defined TXT keys: status, signature, ver" mesamis,,,Mes Amis,[David_Priest],[David_Priest],,,,,,Defined TXT keys: None mi-raysat,,,Mental Ray for Maya,[Autodesk],[Autodesk],,,,,,Defined TXT keys: None mieleacs,,tcp,Protocol for connected accessories,[Miele_and_Cie._KG],[Nils_Langhammer],2018-04-20,,,,,Defined TXT keys: txtvers and proprietary keys mieleathome,,tcp,Miele@home Protocol,[Miele_and_Cie._KG],[Nils_Langhammer],2014-03-13,,,,,Defined TXT keys: txtvers and proprietary keys mieleprof,,tcp,Miele protocol for prof. appliances,[Miele_and_Cie._KG],[Nils_Langhammer],2018-04-20,,,,,Defined TXT keys: txtvers and proprietary keys mielesemiprof,,tcp,Miele protocol for semi prof. appliances,[Miele_and_Cie._KG],[Nils_Langhammer],2018-04-20,,,,,Defined TXT keys: txtvers and proprietary keys mist,,tcp,"A Medical Interoperability Service Type, used to identify medical devices providing network interfaces.",[Jon_Griffeth],[Jon_Griffeth],2017-01-12,,,,,Defined TXT keys: https://www.praesentia.com/medkit/mist-service-type (dn dt md mf pr sn vn) mmm,,tcp,"Provides a client with access to the Mathematical Mesh, a user-focused PKI.",[Phillip_Hallam-Baker],[Phillip_Hallam-Baker],2015-11-18,,,,,Defined TXT keys: None mn-passage,,tcp,A Remote Control Application service used to control Computers on a Local Area Network,[Midnight_Oil_Enterprises_LLC],[Dan_Corkill],2013-07-09,,,,,Defined TXT keys: inherited from bonjour/iOS multipeer connectivity mn-passage,,udp,A Remote Control Application service used to control Computers on a Local Area Network,[Midnight_Oil_Enterprises_LLC],[Dan_Corkill],2013-07-09,,,,,Defined TXT keys: inherited from bonjour/iOS multipeer connectivity modolansrv,,,modo LAN Services,[Matt_Craig],[Matt_Craig],,,,,,Defined TXT keys: None mogeneti-auth,,tcp,Authentication service for Mogeneti Software Applications,[Mogeneti],[Bart_Rijpers],2012-09-26,,,,,Defined TXT keys: none moncon,,udp,Sonnox MCON monitor controller protocol,[Sonnox_Ltd],[Nicolas_Haynes],2018-08-15,,,,,Defined TXT keys: None moneysync,,,SplashMoney Synchronization Service,[Justin_Cepelak],[Justin_Cepelak],,,,,,Defined TXT keys: Proprietary moneyworks,,,MoneyWorks Gold and MoneyWorks Datacentre network service,[Rowan_Daniell],[Rowan_Daniell],,,,,,Defined TXT keys: None moodring,,,Bonjour Mood Ring tutorial program,[Daniel_Steinberg],[Daniel_Steinberg],,,,,,Defined TXT keys: txtvers=1 mood=<ascii digit from 0-4> mother,,,Mother script server protocol,[Jonathan],[Jonathan],,,,,,"Defined TXT keys: user, ssl" movieslate,,,MovieSlate digital clapperboard,[Cliff_Joyce],[Cliff_Joyce],,,,,,Defined TXT keys: Proprietary mp3sushi,,,MP3 Sushi,[Alexandre_Carlhian],[Alexandre_Carlhian],,,,,,Defined TXT keys: None mqtt,,,IBM MQ Telemetry Transport Broker,[AndySC],[AndySC],,,,,,"Defined TXT keys: topics=<open topic to subscribe to for information>, eg topic=/info" mslingshot,,,Martian SlingShot,[Martin_Technology],[Martin_Technology],,,,,,"Defined TXT keys: displayName, passwordRequired, acceptsUpdates" msrps,,tcp,MSRP protocol over TLS,,,,2014-04-25,[RFC4976],,,Defined TXT keys: mumble,,,Mumble VoIP communication protocol,[Thorvald_Natvig],[Thorvald_Natvig],,,,,,Defined TXT keys: None musicmachine,,,Protocol for a distributed music playing service,[Johan_Mjones],[Johan_Mjones],,,,,,"Defined TXT keys: apiversion, passreq" mysync,,,MySync Protocol,[Martin_Redington],[Martin_Redington],,,,,,Defined TXT keys: None mttp,,,MenuTunes Sharing,[iThink_Software],[iThink_Software],,,,,,Defined TXT keys: None mxim-art2,,,Maxim Integrated Products Automated Roadtest Mk II,[Zach_Metzinger],[Zach_Metzinger],,,,,,Defined TXT keys: Proprietary mxim-ice,,,Maxim Integrated Products In-circuit Emulator,[Zach_Metzinger],[Zach_Metzinger],,,,,,Defined TXT keys: Proprietary mxs,,,MatrixStore,[Object_Matrix],[Object_Matrix],,,,,,"Defined TXT keys: None mxs.system.id=<system id> mxs.system.version=<system layer version> mxs.cluster.id=<cluster id the system belongs to>" naio,,tcp,NetAcquire server input/output protocol,[NetAcquire_Corporation],[David_Hauck],2018-06-20,,,,,"Defined TXT keys: txtvers, fn" nasmon,,tcp,Proprietary communication protocol for NAS Monitor,[Infinite_Loop],[Claus_Broch2],2012-10-09,,,,,Defined TXT keys: Proprietary nasmon,,udp,Proprietary communication protocol for NAS Monitor,[Infinite_Loop],[Claus_Broch2],2012-10-09,,,,,Defined TXT keys: Proprietary nasunifiler,,tcp,This DNS-SD service is used by mobile clients to locate the Nasuni Filer (a storage product) for a given company.,[Nasuni_Corporation],[David_Shaw-Nasuni],2016-01-22,,,,,Defined TXT keys: companyfullname == The name of the company hosting the Nasuni Filer ncbroadcast,,,Network Clipboard Broadcasts,[Thom_McGrath],[Thom_McGrath],,,,,,Defined TXT keys: Contact The ZAZ Software <networkclipboard at thezaz.com> ncdirect,,,Network Clipboard Direct Transfers,[Thom_McGrath],[Thom_McGrath],,,,,,Defined TXT keys: Contact The ZAZ Software <networkclipboard at thezaz.com> ncount-issuer,,tcp,The issuer service in the n-Count electronic value transfer system,[n-Count_Technology_BV],[Eduard_de_Jong],2013-01-22,,,,,Defined TXT keys: None ncsyncserver,,,Network Clipboard Sync Server,[Thom_McGrath],[Thom_McGrath],,,,,,Defined TXT keys: Contact The ZAZ Software <networkclipboard at thezaz.com> nedap-aepu,,tcp,Nedap AEOS processing unit,[Nedap],[Leon_van_der_Voort_van_der_Kleij],2014-08-28,,,,,Defined TXT keys: None neoriders,,udp,NeoRiders Client Discovery Protocol,[Jesse_W_Towner],[Jesse_W_Towner],,,,,,Defined TXT keys: None netready,,tcp,UpdateLogic NetReady Device Identification,[UpdateLogic_Inc],[Chris_Nigbur],2014-10-27,,,,,Defined TXT keys: Proprietary netrestore,,,NetRestore,[Mike_Bombich],[Mike_Bombich],,,,,,"Defined TXT keys: message, status, progress" netvu-video,,tcp,AD Group NetVu Connected Video,[AD_Holdings],[Kelvin_Lawson],2011-10-11,,,,,Defined TXT keys: none nextcap,,tcp,Proprietary communication protocol for NextCap capture solution,[NextDay_Aps],[Claus_Broch],2012-04-24,,,,,Defined TXT keys: Proprietary nextcap,,udp,Proprietary communication protocol for NextCap capture solution,[NextDay_Aps],[Claus_Broch],2012-04-24,,,,,Defined TXT keys: Proprietary nfs-domainroot,,tcp,"NFS service for the domain root, the root of an organization's published file namespace.",[IESG],[IETF_Chair],2012-04-24,,[RFC6641],,,Defined TXT keys: None ngr-keydist,,tcp,NGR Key Distribution,[nyantec],[Mikael_Voss],2017-04-18,,,,,Defined TXT keys: None ni,,tcp,National Instruments Network Device,[National_Instruments],[Joshua_Prewitt],2011-10-24,,,,,"Defined TXT keys: MAC, DevClass, ProdId, ProdName, SerialNo, Status, ImgPath, Comment" ni-ftp,,tcp,NI FTP,[Steve_Kille],[Steve_Kille],2017-05-18,,,,,Defined TXT keys: None ni-ftp,,udp,NI FTP,[Steve_Kille],[Steve_Kille],2017-05-18,,,,,Defined TXT keys: None ni-mail,,tcp,NI MAIL,[Steve_Kille],[Steve_Kille],2017-05-18,,,,,Defined TXT keys: None ni-mail,,udp,NI MAIL,[Steve_Kille],[Steve_Kille],2017-05-18,,,,,Defined TXT keys: None ni-rt,,tcp,National Instruments Real-Time Target,[National_Instruments],[Joshua_Prewitt],2011-10-24,,,,,"Defined TXT keys: MAC, OS, OSVer, ProcArch" ni-sysapi,,tcp,National Instruments System API Service,[National_Instruments],[Joshua_Prewitt],2011-10-24,,,,,"Defined TXT keys: MAC, Experts, Version" nodel,,tcp,Lightweight event based control protocol utilising JavaScript Object Notation,[Lumicom],[Michael_Cartmel],2013-02-07,,,,,Defined TXT keys: None ntlx-arch,,,American Dynamics Intellex Archive Management Service,[Gary_Sands],[Gary_Sands],,,,,,"Defined TXT keys: txtvers, macaddress, protovers, model, serial" ntlx-ent,,,American Dynamics Intellex Enterprise Management Service,[Gary_Sands],[Gary_Sands],,,,,,"Defined TXT keys: txtvers, macaddress, protovers, model, serial" ntlx-video,,,American Dynamics Intellex Video Service,[Gary_Sands],[Gary_Sands],,,,,,"Defined TXT keys: txtvers, macaddress, protovers, model, serial, control, event" ntx,,udp,Tenasys,[Carl_Ellis],[Carl_Ellis],,,,,,Defined TXT keys: None nusdp,,tcp,Nuance Unity Service Discovery Protocol,[Nuance_Communications_Inc],[Andrew_Andrews],2017-04-20,,,,,Defined TXT keys: None oak,,tcp,Oak Device Services,[Oak_Labs_Inc.],[Flynn_Joffray],2017-02-09,,,,,Defined TXT keys: None oak,,udp,Oak Device Services,[Oak_Labs_Inc.],[Flynn_Joffray],2017-02-09,,,,,Defined TXT keys: None obf,,,Observations Framework,[Matthew_Baker],[Matthew_Baker],,,,,,Defined TXT keys: version=<value> objective,,,Means for clients to locate servers in an Objective (http://www.objective.com) instance.,[Marc_Bailey],[Marc_Bailey],,,,,,"Defined TXT keys: txtvers='1' type={'production'|'standby'|'test'|'demo'} protocol={['SOAP'],['CORBA']} transport=['iiop']|['http']" oca,,tcp,"Insecure OCP.1 protocol, which is the insecure TCP/IP implementation of the Object Control Architecture",[OCA_Alliance],[Stephan_van_Tienen],2012-10-11,,,,,Defined TXT keys: txtvers=1 protovers=x oca,,udp,"Insecure OCP.1 protocol, which is the insecure TCP/IP implementation of the Object Control Architecture",[OCA_Alliance],[Stephan_van_Tienen],2012-10-11,,,,,Defined TXT keys: txtvers=1 protovers=x ocasec,,tcp,"Secure OCP.1 protocol, which is the secure TCP/IP implementation of the Object Control Architecture",[OCA_Alliance],[Stephan_van_Tienen],2012-10-11,,,,,Defined TXT keys: txtvers=1 protovers=x ocasec,,udp,"Secure OCP.1 protocol, which is the secure TCP/IP implementation of the Object Control Architecture",[OCA_Alliance],[Stephan_van_Tienen],2012-10-11,,,,,Defined TXT keys: txtvers=1 protovers=x ocaws,,tcp,Insecure OCP.1 hosted on a WebSocket,[OCA_Alliance],[Stephan_van_Tienen],2017-05-19,,,,,Defined TXT keys: txtvers protovers path oce,,,Oce Common Exchange Protocol,[Dion_Slijp],[Dion_Slijp],,,,,,"Defined TXT keys: type, version" od-master,,,OpenDirectory Master,[Jason_Thorpe],[Jason_Thorpe],,,,,,Defined TXT keys: None odabsharing,,,OD4Contact,[Objective_Decision],[Objective_Decision],,,,,,Defined TXT keys: None odisk,,,Optical Disk Sharing,[Bob_Bradley_2],[Bob_Bradley_2],,,,,,"Defined TXT keys: sys, dkX" officetime-sync,,,OfficeTime Synchronization Protocol,[Support],[Support],,,,,,Defined TXT keys: None ofocus-conf,,,OmniFocus setting configuration,[Timothy_J_Wood],[Timothy_J_Wood],,,,,,Defined TXT keys: None ofocus-sync,,,OmniFocus document synchronization,[Timothy_J_Wood],[Timothy_J_Wood],,,,,,Defined TXT keys: Proprietary ola,,tcp,Web Interface for the Open Lighting Architecture Software,[Open_Lighting_Project],[Simon_Newton_2],2013-12-09,2014-02-25,,,,"Subtypes: _www-http Defined TXT keys: None" olpc-activity1,,udp,One Laptop per Child activity,[One_Laptop_per_Child],[One_Laptop_per_Child],,,,,,Defined TXT keys: Shared_Activity_Protocol_1.0 oma-bcast-sg,,,OMA BCAST Service Guide Discovery Service,[Stefan_Ekenberg],[Stefan_Ekenberg],,,,,,Defined TXT keys: None omadm-bootstrap,,tcp,Open Mobile Alliance (OMA) Device Management (DM) Bootstrap Server Discovery Service,[Open_Mobile_Alliance],[Open_Mobile_Alliance_Device_Management_DM_Working_Group],2011-08-19,,,,,Defined TXT keys: None omni-bookmark,,,OmniWeb,[The_Omni_Group],[The_Omni_Group],,,,,,Defined TXT keys: None omni-live,,,Service for remote control of Omnisphere virtual instrument,[Glenn_Olander_2],[Glenn_Olander_2],,,,,,Defined TXT keys: omni-livetxt.html openbase,,,OpenBase SQL,,,,,,,,Defined TXT keys: None opencu,,udp,Conferencing Protocol,[Marc_Manthey_2],[Marc_Manthey_2],,,,,,Defined TXT keys: None openpath,,tcp,Discovery of OpenPath appliances,[OpenPath_Security_Inc],[John_Hickey],2018-01-11,,,,,Defined TXT keys: Proprietary oprofile,,,oprofile server protocol,[Rob_Bradford],[Rob_Bradford],,,,,,Defined TXT keys: None oscit,,udp,Open Sound Control Interface Transfer,[Gaspard_Bucher],[Gaspard_Bucher],,,,,,Defined TXT keys: None ovready,,,ObjectVideo OV Ready Protocol,[Gary_Myers],[Gary_Myers],,,,,,"Defined TXT keys: txtvers, protovers" owhttpd,,,OWFS (1-wire file system) web server,[Paul_H_Alfille],[Paul_H_Alfille],,,,,,Defined TXT keys: txtvers parentcontrol,,,Remote Parental Controls,[John_Scalo],[John_Scalo],,,,,,Defined TXT keys: None passwordwallet,,,PasswordWallet Data Synchronization Protocol,[Sanford_Selznick],[Sanford_Selznick],,,,,,Defined TXT keys: None pcast,,,Mac OS X Podcast Producer Server,[Nick_Brosnahan],[Nick_Brosnahan],,,,,,Defined TXT keys: None |
14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 | photoshow,,tcp,Show Photos over TCP,[Hamed_Ishbaitah],[Hamed_Ishbaitah],2014-07-30,,,,,Defined TXT keys: None photosmithsync,,tcp,Photosmith's iPad to Lightroom sync protocol,[Photosmith],[Chris_Horne],2011-10-27,,,,,Defined TXT keys: None pictua,,,Pictua Intercommunication Protocol,[Isaack_Rasmussen],[Isaack_Rasmussen],,,,,,Defined TXT keys: None piesync,,,pieSync Computer to Computer Synchronization,[Timothy_Wayper],[Timothy_Wayper],,,,,,Defined TXT keys: None piu,,,Pedestal Interface Unit by RPM-PSI,[James_Nikolai],[James_Nikolai],,,,,,Defined TXT keys: None pkixrep,,,Public Key Infrastructure Repository Locator Service,,,,,[RFC4386],,, poch,,,Parallel OperatiOn and Control Heuristic (Pooch),[Dean_Dauger],[Dean_Dauger],,,,,,Defined TXT keys: None podcastproxy,,tcp,Protocol for communication between Podcast,[Moritz_Schmale],[Moritz_Schmale],2011-10-07,,,,,Defined TXT keys: None pokeeye,,,"Communication channel for ""Poke Eye"" Elgato EyeTV remote controller",[Kristoffer_Lawson],[Kristoffer_Lawson],,,,,,Defined TXT keys: None powereasy-erp,,,PowerEasy ERP,[Ulaganathan_Sriramul],[Ulaganathan_Sriramul],,,,,,"Defined TXT keys: ip, port, name, instance, cgi-alias, major-version, minor-version, custom" powereasy-pos,,,PowerEasy Point of Sale,[Murthy_Parthasarathi],[Murthy_Parthasarathi],,,,,,"Defined TXT keys: ip, port, type, device-id, major-version, minor-version, custom" pplayer-ctrl,,,Piano Player Remote Control,[Juraj_Zopp],[Juraj_Zopp],,,,,,Defined TXT keys: Proprietary pres,,tcp,Presence,,,,,[RFC3861],,, pres,,udp,Presence,,,,,[RFC3861],,, presence,,,Peer-to-peer messaging / Link-Local Messaging,[XMPP_Registrar],[XMPP_Registrar],,,,,,"Defined TXT keys: See http://www.xmpp.org/registrar/linklocal.html | > > > | | | | < | < | > > > > > | 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 | photoshow,,tcp,Show Photos over TCP,[Hamed_Ishbaitah],[Hamed_Ishbaitah],2014-07-30,,,,,Defined TXT keys: None photosmithsync,,tcp,Photosmith's iPad to Lightroom sync protocol,[Photosmith],[Chris_Horne],2011-10-27,,,,,Defined TXT keys: None pictua,,,Pictua Intercommunication Protocol,[Isaack_Rasmussen],[Isaack_Rasmussen],,,,,,Defined TXT keys: None piesync,,,pieSync Computer to Computer Synchronization,[Timothy_Wayper],[Timothy_Wayper],,,,,,Defined TXT keys: None piu,,,Pedestal Interface Unit by RPM-PSI,[James_Nikolai],[James_Nikolai],,,,,,Defined TXT keys: None pkixrep,,,Public Key Infrastructure Repository Locator Service,,,,,[RFC4386],,, poch,,,Parallel OperatiOn and Control Heuristic (Pooch),[Dean_Dauger],[Dean_Dauger],,,,,,Defined TXT keys: None pochi,,tcp,A presenter to audience transfer service,[Ringo_Wathelet],[Ringo_Wathelet],2018-07-11,,,,,"Defined TXT keys: key ""txtvers"" for specification versioning, and key ""name"" representing the advertising presentation string value name for the audience application to retrieve and display." podcastproxy,,tcp,Protocol for communication between Podcast,[Moritz_Schmale],[Moritz_Schmale],2011-10-07,,,,,Defined TXT keys: None pokeeye,,,"Communication channel for ""Poke Eye"" Elgato EyeTV remote controller",[Kristoffer_Lawson],[Kristoffer_Lawson],,,,,,Defined TXT keys: None powereasy-erp,,,PowerEasy ERP,[Ulaganathan_Sriramul],[Ulaganathan_Sriramul],,,,,,"Defined TXT keys: ip, port, name, instance, cgi-alias, major-version, minor-version, custom" powereasy-pos,,,PowerEasy Point of Sale,[Murthy_Parthasarathi],[Murthy_Parthasarathi],,,,,,"Defined TXT keys: ip, port, type, device-id, major-version, minor-version, custom" pplayer-ctrl,,,Piano Player Remote Control,[Juraj_Zopp],[Juraj_Zopp],,,,,,Defined TXT keys: Proprietary pres,,tcp,Presence,,,,,[RFC3861],,, pres,,udp,Presence,,,,,[RFC3861],,, presence,,,Peer-to-peer messaging / Link-Local Messaging,[XMPP_Registrar],[XMPP_Registrar],,,,,,"Defined TXT keys: See http://www.xmpp.org/registrar/linklocal.html Note: Registration updated May 2007. Was formerly listed as ""iChat AV"" (Apple's IM client for Mac OS X) with TXT keys: txtvers, port.p2pj, phsh, vc, 1st, AIM, msg, status, last When first shipped in Mac OS X 10.2, iChat's peer-to-peer messaging protocol was created to solve the problem of serverless messaging between peers on the same link. However, there is nothing inherent in the protocol that limits it to being only link-local; it was simply an artifact of iChat in Mac OS X 10.2 using link-local Multicast DNS to discover peers. With the advent of Wide-Area DNS-SD, it is also possible to use iChat's peer-to-peer messaging between machines on different links." print-caps,,,Retrieve a description of a device's print capabilities,[Troy_Bergstrand],[Troy_Bergstrand],,,,,,Defined TXT keys: None printopia,,tcp,Printopia Server,[Decisive_Tactics_Inc],[Chris_Kent],2011-10-24,2015-04-11,,,,"Defined TXT keys: uuid, vers, pvers" profilemac,,,Profile for Mac medical practice management software,[David_Sinclair_2],[David_Sinclair_2],,,,,,Defined TXT keys: None prolog,,,Prolog,[Mike_Brady],[Mike_Brady],,,,,,Defined TXT keys: version=<version number> protonet,,,Protonet node and service discovery protocol,[Ali_Jelveh],[Ali_Jelveh],,,,,,"Defined TXT keys: version, notes" psap,,udp,Progal Service Advertising Protocol,[Soren_Weber],[Soren_Weber],,,,,,"Defined TXT keys: c0, c1, ..., cn" psia,,,Physical Security Interoperability Alliance Protocol,[Frank_Yeh],[Frank_Yeh],,,,,,"Defined TXT keys: txtvers, protovers" pstmailsync,,tcp,File synchronization protocol for Pst Mail Sync,[Arrow_Bit_SL],[Javier_Nigro],2012-04-26,,,,,Defined TXT keys: uuid=<unique instance identifier> pstmailsync-ssl,,tcp,Secured file synchronization protocol for Pst Mail Sync,[Arrow_Bit_SL],[Javier_Nigro],2012-04-26,,,,,Defined TXT keys: uuid=<unique instance identifier> ptnetprosrv2,,,PTNetPro Service,[Apple_Computer],[Apple_Computer],,,,,,"Defined TXT keys: None Profiling and performance analysis protocol for Shark 4.0 and BigTop." ptp-init,,tcp,Picture Transfer Protocol(PTP) Initiator,[Canon_Inc],[Tatsuhiko_Sakai],2011-10-03,,,,,"Defined TXT keys: srvver, mn, mf, md, srv, tid" ptp-req,,,PTP Initiation Request Protocol,[Mark_Wood],[Mark_Wood],,,,,,"Defined TXT keys: txtvers, guid, c0, c1, c2, ..., where the number of c_n attributes is variable" puzzle,,,Protocol used for puzzle games,[Michael_Thomason],[Michael_Thomason],,,,,,Defined TXT keys: None pvaccess,,tcp,Experimental Physics and Industrial Control System,[Matej_Sekoranja],[Matej_Sekoranja],2012-03-23,,,,,Defined TXT keys: None qbox,,,QBox Appliance Locator,[Geoff_Back_4],[Geoff_Back_4],,,,,,Defined TXT keys: None qttp,,,QuickTime Transfer Protocol,[Stuart_Cheshire],[Stuart_Cheshire],,,,,,Defined TXT keys: u=<username> p=<password> path=<path to document> (Same as for _http._tcp) quad,,tcp,Distributed Game Data,[Niall_Hogg],[Niall_Hogg],2011-10-25,,,,,Defined TXT keys: Proprietary quinn,,,Quinn Game Server,[Simon_Haertel],[Simon_Haertel],,,,,,Defined TXT keys: None qwizcollab,,tcp,"Broadcast of Qwizdom Presentation sessions for joining by a client, such as Qwizdom Notes+.",[Qwizdom_Inc.],[Matthew_Owings],2015-09-21,,,,,Defined TXT keys: None rakket,,,Rakket Client Protocol,[Orion_Reblitz_Richar],[Orion_Reblitz_Richar],,,,,,Defined TXT keys: None radiotag,,,RadioTAG: Event tagging for radio services,[Andy_Buckingham],[Andy_Buckingham],,,,,,Defined TXT keys: None radiovis,,,RadioVIS: Visualisation for radio services,[Andy_Buckingham],[Andy_Buckingham],,,,,,Defined TXT keys: None radioepg,,,RadioEPG: Electronic Programme Guide for radio services,[Andy_Buckingham],[Andy_Buckingham],,,,,,Defined TXT keys: None radioport,,tcp,RadioPort Message Service,[Bob_Iannucci],[Bob_Iannucci],2011-11-23,,,,,Defined TXT keys: NONE radioport,,udp,RadioPort Message Service,[Bob_Iannucci],[Bob_Iannucci],2011-11-23,,,,,Defined TXT keys: NONE radiusdtls,,udp,"Authentication, Accounting, and Dynamic Authorization via the RADIUS protocol. This service name is used to construct the SRV service label ""_radiusdtls"" for discovery of RADIUS/DTLS servers.",[IESG],[IETF_Chair],2015-03-23,2015-10-06,[RFC7585],,,Defined TXT keys: None radiustls,,tcp,"Authentication, Accounting, and Dynamic Authorization via the RADIUS protocol. This service name is used to construct the SRV service label ""_radiustls"" for discovery of RADIUS/TLS servers.",[IESG],[IETF_Chair],2015-03-23,2015-10-06,[RFC7585],,,Defined TXT keys: None railduino,,tcp,Model Railroad Messaging,[Railduino],[Volker_Wiegand_2],2018-01-08,,,,,Defined TXT keys: role=master raop,,,Remote Audio Output Protocol (AirTunes),[BonjourDev],[BonjourDev],,2011-10-14,,,,Defined TXT keys: None rbr,,,RBR Instrument Communication,[Greg_Johnson],[Greg_Johnson],,,,,,Defined TXT keys: None rce,,,PowerCard,[DeVoeSquared],[DeVoeSquared],,,,,,Defined TXT keys: None rdp,,,Windows Remote Desktop Protocol,[Jugaari],[Jugaari],,,,,,Defined TXT keys: None realplayfavs,,,RealPlayer Shared Favorites,[RealNetworks],[RealNetworks],,,,,,Defined TXT keys: None recipe-box,,tcp,The Recipe Box Exchange,[Corpus_Collusion],[Kathy_Tafel],2011-08-23,,,,,Defined TXT keys: txtvers recipe-sharing,,tcp,Recipe Sharing Protocol,[Daniel_G_Taylor],[Daniel_G_Taylor],2007-11,,,,,Defined TXT keys: [http://www.recipemanager.org/rsp/rsp10draft.html#dnssd] |
14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 | retrospect,,,Retrospect backup and restore service,[Michael_Marks],[Michael_Marks],,,,,,Defined TXT keys: None rfbc,,,Remote Frame Buffer Client (Used by VNC viewers in listen-mode),[Ole_Morten_Duesund],[Ole_Morten_Duesund],,,,,,"Defined TXT keys: server=dns-name/ip-address:port of currently displayed VNC server. Empty if not showing anything/available." rfid,,,RFID Reader Mach1(tm) Protocol,[Paul_Dietrich],[Paul_Dietrich],,,,,,Defined TXT keys: None rgb,,tcp,RGB Spectrum Device Discovery,[RGB_Spectrum],[Steve_Hershey],2011-10-10,,,,,"Defined TXT keys: Keyboard, Mouse, Option1, Option2, Option3, Option4, ModelName" riousbprint,,,Remote I/O USB Printer Protocol,[Rob_Newberry],[Rob_Newberry],,,,,,Defined TXT keys: See BonjourPrinting.pdf. roambot,,tcp,Roambot communication,[Roambotics_Inc],[Scott_Menor],2013-10-18,,,,,Defined TXT keys: None roku-rcp,,,Roku Control Protocol,[Don_Woodward],[Don_Woodward],,,,,,Defined TXT keys: txtvers=1 rql,,,RemoteQuickLaunch,[Daniel_Heffernan],[Daniel_Heffernan],,,,,,Defined TXT keys: None rr-disc,,,Robot Raconteur discovery,[Wason_Technology_LLC],[John_Wason],2014-01-27,,,,,Defined TXT keys: None rsmp-server,,,Remote System Management Protocol (Server Instance),[Geoff_Back_3],[Geoff_Back_3],,,,,,Defined TXT keys: apiver=<major.minor> rubygems,,,RubyGems GemServer,[Rich_Kilmer],[Rich_Kilmer],,,,,,Defined TXT keys: None rym-rrc,,tcp,Raymarine remote control protocol,[Raymarine_UK_Limited],[Geoffrey_Beer],2012-05-24,2012-06-04,,,,"Defined TXT keys: raymarine-mfd-rrc-version, raymarine-mfd-model, raymarine-mfd-serial" safarimenu,,,Safari Menu,[Jesus_De_Meyer],[Jesus_De_Meyer],,,,,,Defined TXT keys: None sallingbridge,,,Salling Clicker Sharing,[Jonas_Salling],[Jonas_Salling],,,,,,Defined TXT keys: None sallingclicker,,,Salling Clicker Service,[Jonas_Salling],[Jonas_Salling],,,,,,Defined TXT keys: None salutafugijms,,,Salutafugi Peer-To-Peer Java Message Service Implementation,[David_Walend],[David_Walend],,,,,,Defined TXT keys: SalutaProperties sandvox,,,Sandvox,[Karelia_Software],[Karelia_Software],,,,,,Defined TXT keys: None savagesoft,,tcp,Proprietary Client Server Protocol,[Andy_Savage],[Andy_Savage],2012-07-13,,,,,Defined TXT keys: None sc-golf,,,StrawberryCat Golf Protocol,[Phil_Willoughby],[Phil_Willoughby],,,,,,Defined TXT keys: None scanner,,,Bonjour Scanning,[Baskaran_Subramaniam],[Baskaran_Subramaniam],,,,,,Defined TXT keys: None schick,,,Schick,[Heiko_Kretschmer],[Heiko_Kretschmer],,,,,,Defined TXT keys: None scone,,,Scone,[James_Moore],[James_Moore],,,,,,Defined TXT keys: None scpi-raw,,,IEEE 488.2 (SCPI) Socket,[Nick_Barendt_3],[Nick_Barendt_3],,,,,,Defined TXT keys: None scpi-telnet,,,IEEE 488.2 (SCPI) Telnet,[Nick_Barendt_3],[Nick_Barendt_3],,,,,,Defined TXT keys: None sdsharing,,,Speed Download,[Yazsoft],[Yazsoft],,,,,,Defined TXT keys: None see,,,SubEthaEdit 2,[TheCodingMonkeys],[TheCodingMonkeys],,,,,,"Defined TXT keys: txtvers=1, name=<Full Name>, userid=<User ID>, version=2" seeCard,,,seeCard,[Stefan_Pantke],[Stefan_Pantke],,,,,,Defined TXT keys: None senteo-http,,,Senteo Assessment Software Protocol,[Michael_Boyle],[Michael_Boyle],,,,,,Defined TXT keys: None sentillion-vlc,,,Sentillion Vault System,[George_Hartz],[George_Hartz],,,,,,Defined TXT keys: None sentillion-vlt,,,Sentillion Vault Systems Cluster,[George_Hartz],[George_Hartz],,,,,,Defined TXT keys: None sepvsync,,,SEPV Application Data Synchronization Protocol,[Kazuya_Ogata],[Kazuya_Ogata],,,,,,Defined TXT keys: Proprietary serendipd,,,serendiPd Shared Patches for Pure Data,[Hans_Christoph_Stein],[Hans_Christoph_Stein],,,,,,Defined TXT keys: None servereye,,,ServerEye AgentContainer Communication Protocol,[Andreas_Behr],[Andreas_Behr],,,,,,Defined TXT keys: None servermgr,,,Mac OS X Server Admin,[Jeff_Albouze],[Jeff_Albouze],,,,,,Defined TXT keys: None | > > > > > > > > > > > > > > > > > > > > > | > > > > > > > | > > > > > > > > > > > > > < < > > > > > < < < < < < < < < < < < > > > > > > > > > > > > > > > > | 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 | retrospect,,,Retrospect backup and restore service,[Michael_Marks],[Michael_Marks],,,,,,Defined TXT keys: None rfbc,,,Remote Frame Buffer Client (Used by VNC viewers in listen-mode),[Ole_Morten_Duesund],[Ole_Morten_Duesund],,,,,,"Defined TXT keys: server=dns-name/ip-address:port of currently displayed VNC server. Empty if not showing anything/available." rfid,,,RFID Reader Mach1(tm) Protocol,[Paul_Dietrich],[Paul_Dietrich],,,,,,Defined TXT keys: None rgb,,tcp,RGB Spectrum Device Discovery,[RGB_Spectrum],[Steve_Hershey],2011-10-10,,,,,"Defined TXT keys: Keyboard, Mouse, Option1, Option2, Option3, Option4, ModelName" riousbprint,,,Remote I/O USB Printer Protocol,[Rob_Newberry],[Rob_Newberry],,,,,,Defined TXT keys: See BonjourPrinting.pdf. roambot,,tcp,Roambot communication,[Roambotics_Inc],[Scott_Menor],2013-10-18,,,,,Defined TXT keys: None robustirc,,tcp,"Like ircu (RFC1459), but failure tolerant due to strong consistency among n>=3 servers",[Michael_Stapelberg],[Michael_Stapelberg],2015-01-07,,,,,Defined TXT keys: None roku-rcp,,,Roku Control Protocol,[Don_Woodward],[Don_Woodward],,,,,,Defined TXT keys: txtvers=1 roomcast-capi,,tcp,RoomCast Control Protocol,[Colin_Corby],[Colin_Corby],2017-02-01,,,,,"Defined TXT keys: protocolVersion, uuid" roomcast-mapi,,tcp,RoomCast Management Protocol,[Colin_Corby],[Colin_Corby],2017-02-01,,,,,"Defined TXT keys: protocolVersion, uuid" rql,,,RemoteQuickLaunch,[Daniel_Heffernan],[Daniel_Heffernan],,,,,,Defined TXT keys: None rr-disc,,,Robot Raconteur discovery,[Wason_Technology_LLC],[John_Wason],2014-01-27,,,,,Defined TXT keys: None rradict,,tcp,"Ruckus Radio Access Device, Installation, Commissioning and Troubleshooting service.",[Dave_Stephenson],[Dave_Stephenson],2016-03-09,,,,,"Defined TXT keys: txtvers=<version>, serial=<serial number>, mac=<mac-address>, model=<model number>, opMode=<operational mode>, tx=<transmitter-status>, timing=<timing-status>" rsmp-server,,,Remote System Management Protocol (Server Instance),[Geoff_Back_3],[Geoff_Back_3],,,,,,Defined TXT keys: apiver=<major.minor> rubygems,,,RubyGems GemServer,[Rich_Kilmer],[Rich_Kilmer],,,,,,Defined TXT keys: None rxxmiele,,tcp,Miele protocol robot cleaners,[Miele_and_Cie._KG],[Nils_Langhammer],2018-04-20,,,,,Defined TXT keys: txtvers and proprietary keys rym-rrc,,tcp,Raymarine remote control protocol,[Raymarine_UK_Limited],[Geoffrey_Beer],2012-05-24,2012-06-04,,,,"Defined TXT keys: raymarine-mfd-rrc-version, raymarine-mfd-model, raymarine-mfd-serial" safarimenu,,,Safari Menu,[Jesus_De_Meyer],[Jesus_De_Meyer],,,,,,Defined TXT keys: None sallingbridge,,,Salling Clicker Sharing,[Jonas_Salling],[Jonas_Salling],,,,,,Defined TXT keys: None sallingclicker,,,Salling Clicker Service,[Jonas_Salling],[Jonas_Salling],,,,,,Defined TXT keys: None salutafugijms,,,Salutafugi Peer-To-Peer Java Message Service Implementation,[David_Walend],[David_Walend],,,,,,Defined TXT keys: SalutaProperties sandvox,,,Sandvox,[Karelia_Software],[Karelia_Software],,,,,,Defined TXT keys: None savagesoft,,tcp,Proprietary Client Server Protocol,[Andy_Savage],[Andy_Savage],2012-07-13,,,,,Defined TXT keys: None sc-golf,,,StrawberryCat Golf Protocol,[Phil_Willoughby],[Phil_Willoughby],,,,,,Defined TXT keys: None scanner,,,Bonjour Scanning,[Baskaran_Subramaniam],[Baskaran_Subramaniam],,,,,,Defined TXT keys: None schdca,,tcp,schindler internal messaging service,[Schindler_Aufzuege_ag],[Arno_Odermatt],2018-12-19,,,,,Defined TXT keys: None schick,,,Schick,[Heiko_Kretschmer],[Heiko_Kretschmer],,,,,,Defined TXT keys: None schims,,tcp,schindler internal messaging service,[Schindler_Aufzuege_ag],[Arno_Odermatt],2015-12-05,,,,,Defined TXT keys: None schlog,,tcp,logging service,[Schindler_Aufzuege_ag],[Arno_Odermatt],2015-12-05,,,,,Defined TXT keys: None schmpp,,tcp,Schindler maintenance portal protocol,[Schindler_Aufzuege_ag],[Arno_Odermatt],2015-04-30,,,,,Defined TXT keys: None schoms,,tcp,schindler object messaging system,[Schindler_Aufzuege_ag],[Arno_Odermatt],2015-05-12,,,,,Defined TXT keys: None schsap,,tcp,Schindler service authentication portal,[Schindler_Aufzuege_ag],[Arno_Odermatt],2015-04-30,,,,,Defined TXT keys: None schsrmp,,tcp,Schindler internal messaging service,[Schindler_Aufzuege_ag],[Arno_Odermatt],2017-07-07,2017-07-10,,,,Defined TXT keys: None schvpp,,tcp,schindler internal messaging service,[Schindler_Aufzuege_ag],[Arno_Odermatt],2018-12-19,,,,,Defined TXT keys: None scone,,,Scone,[James_Moore],[James_Moore],,,,,,Defined TXT keys: None scoop-sftp,,tcp,"The service name is used by the SFTP protocol to upload log files from vehicles to road side units in a securely way in a cooperative intelligent transportation system.",[SCOOP_at_F_Project],[Houda_Labiod],2016-02-04,,,,,Defined TXT keys: None scoop-sftp,,udp,"The service name is used by the SFTP protocol to upload log files from vehicles to road side units in a securely way in a cooperative intelligent transportation system.",[SCOOP_at_F_Project],[Houda_Labiod],2016-02-04,,,,,Defined TXT keys: None scpi-raw,,,IEEE 488.2 (SCPI) Socket,[Nick_Barendt_3],[Nick_Barendt_3],,,,,,Defined TXT keys: None scpi-telnet,,,IEEE 488.2 (SCPI) Telnet,[Nick_Barendt_3],[Nick_Barendt_3],,,,,,Defined TXT keys: None sdsharing,,,Speed Download,[Yazsoft],[Yazsoft],,,,,,Defined TXT keys: None see,,,SubEthaEdit 2,[TheCodingMonkeys],[TheCodingMonkeys],,,,,,"Defined TXT keys: txtvers=1, name=<Full Name>, userid=<User ID>, version=2" seeCard,,,seeCard,[Stefan_Pantke],[Stefan_Pantke],,,,,,Defined TXT keys: None senteo-http,,,Senteo Assessment Software Protocol,[Michael_Boyle],[Michael_Boyle],,,,,,Defined TXT keys: None sentillion-vlc,,,Sentillion Vault System,[George_Hartz],[George_Hartz],,,,,,Defined TXT keys: None sentillion-vlt,,,Sentillion Vault Systems Cluster,[George_Hartz],[George_Hartz],,,,,,Defined TXT keys: None sepvsync,,,SEPV Application Data Synchronization Protocol,[Kazuya_Ogata],[Kazuya_Ogata],,,,,,Defined TXT keys: Proprietary serendipd,,,serendiPd Shared Patches for Pure Data,[Hans_Christoph_Stein],[Hans_Christoph_Stein],,,,,,Defined TXT keys: None servereye,,,ServerEye AgentContainer Communication Protocol,[Andreas_Behr],[Andreas_Behr],,,,,,Defined TXT keys: None servermgr,,,Mac OS X Server Admin,[Jeff_Albouze],[Jeff_Albouze],,,,,,Defined TXT keys: None services,,,DNS Service Discovery,[Stuart_Cheshire][Marc_Krochmal],[Stuart_Cheshire][Marc_Krochmal],,,,,,Not a service type. Special name reserved for DNS-SD meta queries. sessionfs,,,Session File Sharing,[Anthony_Williams],[Anthony_Williams],,,,,,"Defined TXT keys: Text keys are the file extensions of any file the user plans to share, i.e. pdf, doc, mp3." setlistmaker-rc,,tcp,Remote Control for Set List Maker app,[Arlo_Leach],[Arlo_Leach],2017-04-21,,,,,Defined TXT keys: None setlistmaker-ss,,tcp,Screen sharing for Set List Maker app,[Arlo_Leach],[Arlo_Leach],2017-04-21,,,,,Defined TXT keys: None sftp-ssh,,,Secure File Transfer Protocol over SSH,[Bryan_Cole],[Bryan_Cole],,,,,,Defined TXT keys: u=<username> p=<password> path=<path> sge-exec,,,Sun Grid Engine (Execution Host),[Bill_Van_Etten],[Bill_Van_Etten],,,,,,Defined TXT keys: None sge-qmaster,,,Sun Grid Engine (Master),[Bill_Van_Etten],[Bill_Van_Etten],,,,,,Defined TXT keys: None shifter,,,Window Shifter server protocol,[Antoine_Martin],[Antoine_Martin],,,,,,"Defined TXT keys: username The login username to use (optional) ssh_tunnel Whether an SSH tunnel must be used (required) iface The network interface the server is on (required - may be empty) version Software version (required) ID Server Identifier (requried)" ship,,tcp,SHIP (Smart Home IP),[EEBus_Initiative],[Andreas_Westermann],2014-11-10,,,,,Defined TXT keys: txtvers=<txtVersionNumber> id=<uniqueDeviceIdentifier> path=<wssPath> seesport=<portForSmartEndToEndSecurityIfSupported> register=<registerFlag> shipsgm,,,Swift Office Ships,[Verek],[Verek],,,,,,Defined TXT keys: None shipsinvit,,,Swift Office Ships,[Verek],[Verek],,,,,,Defined TXT keys: None shoppersync,,,SplashShopper Synchronization Service,[Justin_Cepelak],[Justin_Cepelak],,,,,,Defined TXT keys: Proprietary shots-sync,,udp,"The protocol is used to sync database among iOS devices and Mac OS X computers.",[Ryota_Kurata],[Ryota_Kurata],2016-02-10,,,,,Defined TXT keys: None shoutcast,,,Nicecast,[Rogue_Amoeba_2],[Rogue_Amoeba_2],,,,,,Defined TXT keys: None siminsufflator,,tcp,Simulated insufflator synchronisation protocol,[Niels_Castle_2],[Niels_Castle_2],2014-06-18,,,,,Defined TXT keys: None simmon,,,Medical simulation patient monitor syncronisation protocol,[Niels_Castle],[Niels_Castle],,,,,,Defined TXT keys: None simusoftpong,,,simusoftpong iPhone game protocol,[Anders_Svensson],[Anders_Svensson],,,,,,Defined TXT keys: Proprietary sipuri,,,Session Initiation Protocol Uniform Resource Identifier,[Jae_Woo_Lee],[Jae_Woo_Lee],,,,,,Defined TXT keys: Defined in URL specification sironaxray,,,Sirona Xray Protocol,[Michael_Dalpiaz],[Michael_Dalpiaz],,,,,,Defined TXT keys: Manufacturer=Sirona skillscapture,,tcp,The protocol is used to transfer database records between an iOS device to a Mac OS X computer,[Legentis_Ltd],[David_Elliman],2013-07-01,,,,,Defined TXT keys: None skillscapture,,udp,The protocol is used to transfer database records between an iOS device to a Mac OS X computer,[Legentis_Ltd],[David_Elliman],2013-07-01,,,,,Defined TXT keys: None skype,,,Skype,,,,,,,,"Defined TXT keys: platform, status, auth, rversion, version" sleep-proxy,,udp,Sleep Proxy Server,[Stuart_Cheshire][Marc_Krochmal],[Stuart_Cheshire][Marc_Krochmal],,,,,,Defined TXT keys: None sleeptracker,,tcp,Sleeptracker(R) The loT Smartbed Platform,[Fullpower_Technologies_Inc],[Corporate_Compliance_Officer],2016-08-17,,,,,Defined TXT keys: serial=<serial> hostname=<host> osVer=<ver> appVer=<ver> unit=<name> environment=<env> slimcli,,,SliMP3 Server Command-Line Interface,[Dean_Blackketter_2],[Dean_Blackketter_2],,,,,,Defined TXT keys: None slimhttp,,,SliMP3 Server Web Interface,[Dean_Blackketter_2],[Dean_Blackketter_2],,,,,,Defined TXT keys: None slpda,,tcp,Remote Service Discovery in the Service Location,,,,,[RFC3832],,, slpda,,udp,Remote Service Discovery in the Service Location,,,,,[RFC3832],,, smag,,tcp,terminal access to laundry appliances,[Schulthess_Maschinen_AG],[Michael_Schwetz],2018-11-30,,,,,"Defined TXT keys: mName, tName, lName, Type, Timestamp" smartenergy,,,Smart Energy Profile,[Robby_Simpson],[Robby_Simpson],,,,,,Defined TXT keys: See http://www.zigbee.org/SmartEnergy smartsocket,,tcp,home control,[Robert_Diamond],[Robert_Diamond],2012-07-06,,,,,Defined TXT keys: None smb,,,Server Message Block over TCP/IP,,,,,,,,Defined TXT keys: u=<username> p=<password> path=<path> smimeca,,tcp,Domain signing certificate for S/MIME keys,[IESG],[John_Levine],2016-07-26,,[draft-bhjl-x509-srv-01],,,Defined TXT keys: None sms,,,Short Text Message Sending and Delivery Status Service,[Christian_Flintrup],[Christian_Flintrup],,,,,,Defined TXT keys: Proprietary smsync,,,Syncellence file synchronization protocol,[Dialectro_Software],[Gord_Peters],2011-10-20,,,,,"Defined TXT keys: device=<device type> protocol=<version number> os=<operating system name> osver=<operating system version>" soap,,,Simple Object Access Protocol,[Andrew_Donoho],[Andrew_Donoho],,,,,,Defined TXT keys: None socketcloud,,,Socketcloud distributed application framework,[Robert_Goodyear],[Robert_Goodyear],,,,,,"Defined TXT keys: system, service, process, context, direction, status, progress, health, directive, flags" soda,,tcp,Secure On Device API,[Smith_Micro_Software_Inc],[David_Sperling_2],2011-10-10,,,,,"Defined TXT keys: a. ssid=<Wi-Fi SSID of the device> b. bssid=<Wi-Fi BSSID of the device>" souschef,,,SousChef Recipe Sharing Protocol,[Ben],[Ben],,,,,,Defined TXT keys: None sox,,,Simple Object eXchange,[Igor_Mozolevsky],[Igor_Mozolevsky],,,,,,Defined TXT keys: Proprietary sparechange,,,SpareChange data sharing protocol,[Dave_Carrigan],[Dave_Carrigan],,,,,,Defined TXT keys: None sparql,,,SPARQL Protocol and RDF Query Language,[Alex_Tucker],[Alex_Tucker],,,,,,"Defined TXT keys: txtvers=1 path=<relative or absolute URL of endpoint> protovers=<number> [if not specified then default is 1.0, corresponding to SPARQL version] binding=<HTTP | SOAP> [if not specified then default is HTTP] vocabs=<space separated list of URIs> [RDF vocabularies or OWL ontologies used by the endpoint] metadata=<URL> [to fetch RDF/XML description of SPARQL service]" spearcat,,,sPearCat Host Discovery,[Pierre_Frisch_2],[Pierre_Frisch_2],,,,,,"Defined TXT keys: applicationname=<Application Name>, osname=<OS Name>, sslsupport=<Uses SSL>" spidap,,tcp,Sierra Photonics Inc. data protocol,[Sierra_Photonics_Inc],[Support_Staff],2011-10-20,,,,,Defined TXT keys: None spincrisis,,,Spin Crisis,[Sphera_Software],[Sphera_Software],,,,,,Defined TXT keys: None spiderelectron,,tcp,Binary message passing protocol,[Spider_Electron],[Kenny_Millar],2015-02-05,,,,,"Defined TXT keys: VER, STATUS" spl-itunes,,,launchTunes,[David_Nanian_2],[David_Nanian_2],,,,,,Defined TXT keys: None spr-itunes,,,netTunes,[David_Nanian_2],[David_Nanian_2],,,,,,Defined TXT keys: None splashsync,,,SplashData Synchronization Service,[Justin_Cepelak],[Justin_Cepelak],,,,,,Defined TXT keys: Proprietary spres,,tcp,SongPresenter,[Tobias_Hoffmann],[Tobias_Hoffmann],2012-10-09,,,,,"Defined TXT keys: version, name" spx-hmp,,tcp,SpinetiX HMP,[SpinetiX_S_A],[Diego_Santa_Cruz],2011-10-18,,,,,"Defined TXT keys: txtvers=1 cport= the port for the content HTTP server (secondary HTTP server used for content publishing) mode= the mode in which the HMP device is currently operating, one of ""normal"", ""safe"" or ""recovery"" serial= serial number of the HMP device firmware= firmware version string (e.g., 2.1.0-0.1.7844) model= model string (e.g., HMP100)" sqp,,tcp,Square Connect Control Protocol,[Square_Connect_Inc],[Mat_Henshall],2011-10-07,,,,,Defined TXT keys: Proprietary ss-sign,,tcp,Samsung Smart Interaction for Group Network,[Samsung],[Lee_HoJun],2013-01-03,,,,,Defined TXT keys: None ss-sign-disc,,udp,Samsung Smart Interaction for Group Network Discovery,[Samsung],[Lee_HoJun],2013-01-03,,,,,Defined TXT keys: None ssd-audio,,tcp,Studio Six Digital Wireless Audio,[Studio_Six_Digital_LLC],[Andrew_Smith],2018-10-26,,,,,Defined TXT keys: None ssh,,tcp,SSH Remote Login Protocol,[Tatu_Ylonen],[Tatu_Ylonen],,,,,,Defined TXT keys: u=<username> p=<password> ssscreenshare,,,Screen Sharing,,,,,,,,Defined TXT keys: None startrecapp,,tcp,Remote Controlled Multimedia Recorder Network,[Luca_Cipressi],[Luca_Cipressi],2015-03-27,,,,,Defined TXT keys: None stingray-rpc,,tcp,Stingray Remote Procedure Call,[IK_SATPROF_LLC],[Sergey_Zubov_2],2014-05-02,,,,,Defined TXT keys: None stingray-remote,,tcp,Stingray remote control,[IK_SATPROF_LLC],[Sergey_Zubov_2],2014-05-02,,,,,Defined TXT keys: None strateges,,,Strateges,[Jean_Olivier_Lanctot],[Jean_Olivier_Lanctot],,,,,,Defined TXT keys: None stanza,,,Lexcycle Stanza service for discovering shared books,[Marc_Prud_hommeaux],[Marc_Prud_hommeaux],,,,,,Defined TXT keys: None stickynotes,,,Sticky Notes,[Johnnie_Walker],[Johnnie_Walker],,,,,,Defined TXT keys: None stotp,,tcp,One Time Pad Synchronisation,[softthere_com],[James_Crosby],2011-10-17,,,,,Defined TXT keys: None strobe-sync,,tcp,Strobe Synchronization,[Jasper_Morgal],[Richard_Morgal],2019-06-13,,,,,Defined TXT keys: Application will rely upon Bonjour version 3.1.0.1 sugarlock-rcp,,tcp,Remote control protocol for Sugarlock consumer electronics devices,[Sugarlock_LLC],[Don_Woodward-Sugarlock],2016-01-22,,,,,Defined TXT keys: txtvers=1 sugarlock-rcp,,udp,Remote control protocol for Sugarlock consumer electronics devices,[Sugarlock_LLC],[Don_Woodward-Sugarlock],2016-01-22,,,,,Defined TXT keys: txtvers=1 supple,,,Supple Service protocol,[Dave_Christianson],[Dave_Christianson],,,,,,Defined TXT keys: type url surveillus,,,Surveillus Networks Discovery Protocol,[Mark_Lewis_3],[Mark_Lewis_3],,,,,,Defined TXT keys: None svn,,,Subversion,[CollabNet],[CollabNet],,,,,,Defined TXT keys: None swcards,,,Signwave Card Sharing Protocol,[Signwave_Networking],[Signwave_Networking],,,,,,Defined TXT keys: None switcher,,,Wireless home control remote control protocol,[Steve_Splonskowski],[Steve_Splonskowski],,,,,,Defined TXT keys: None swordfish,,,Swordfish Protocol for Input/Output,[Jim_Wallace],[Jim_Wallace],,,,,,Defined TXT keys: None swyp,,,"Framework for transferring any file from any app, to any app on any device: simply with a swÿp.",[ExoMachina],[Alexander_List],2011-12-06,,,,,Defined TXT keys: NONE sxqdea,,,Synchronize! Pro X,[Qdea],[Qdea],,,,,,Defined TXT keys: None sybase-tds,,,Sybase Server,,,,,,,,Defined TXT keys: None synclavier,,tcp,"Remote control of Synclavier Digital Audio Workstation over local area network.",[Synclavier_Digital],[Cameron_Jones],2016-01-27,,,,,Defined TXT keys: None syncopation,,,Syncopation Synchronization Protocol by Sonzea,[Sonzea],[Sonzea],,,,,,Defined TXT keys: None syncqdea,,,Synchronize! X Plus 2.0,[Qdea],[Qdea],,,,,,Defined TXT keys: None synergy,,,Synergy Peer Discovery,[Karl_Timmermann],[Karl_Timmermann],,,,,,Defined TXT keys: None synksharing,,,SynkSharing synchronization protocol,[Benjamin_Rister],[Benjamin_Rister],,,,,,Defined TXT keys: None sztp,,tcp,"This service name is used to construct the SRV service label ""_sztp"" for discovering SZTP bootstrap servers.",[IESG],[IETF_Chair],2019-01-17,,[RFC8572],,,This protocol uses HTTPS as a substrate. taccounting,,,Data Transmission and Synchronization,[John_MacMullin],[John_MacMullin],,,,,,Defined TXT keys: None tango,,,Tango Remote Control Protocol,[Tony_Amundson],[Tony_Amundson],,,,,,Defined TXT keys: None tapinoma-ecs,,,Tapinoma Easycontact receiver,[Bonjour],[Bonjour],,,,,,Defined TXT keys: None taskcoachsync,,,Task Coach Two-way Synchronization Protocol for iPhone,[Jerome_Laheurte],[Jerome_Laheurte],,,,,,Defined TXT keys: None tbricks,,,tbricks internal protocol,[Joakim_Johansson],[Joakim_Johansson],,,,,,"Defined TXT keys: txtvers=1, sesna, seid, setype, cosna, coid, cotype, sysna, syna, syid, subsyid, venid, protocols, pid" tcode,,,Time Code,[Marshall_Anschutz],[Marshall_Anschutz],,,,,,Defined TXT keys: None tcu,,,Tracking Control Unit by RPM-PSI,[James_Nikolai],[James_Nikolai],,,,,,Defined TXT keys: None te-faxserver,,,TE-SYSTEMS GmbH Fax Server Daemon,[Tobias_Erichsen],[Tobias_Erichsen],,,,,,Defined TXT keys: Proprietary teamlist,,,ARTIS Team Task,[ARTIS_Software],[ARTIS_Software],,,,,,Defined TXT keys: None ted,,udp,Teddington Controls,[Teddington_Bemasan_Ltd],[Nathan_Child_CEng_MEng_Hons_MIET],2016-03-21,,,,,Defined TXT keys: None teleport,,udp,teleport,[Julien_Robert],[Julien_Robert],,,,,,Defined TXT keys: None tenir-rc,,tcp,Proprietary,[Tenir_Software],[Steve_Gums],2011-10-27,,,,,Defined TXT keys: Proprietary tera-fsmgr,,,Terascala Filesystem Manager Protocol,[Mike_Nuss],[Mike_Nuss],,,,,,Defined TXT keys: Proprietary tera-mp,,,Terascala Maintenance Protocol,[Mike_Nuss],[Mike_Nuss],,,,,,Defined TXT keys: Proprietary test-ok,,tcp,Test Controller Card,[TEST-OK_BV],[Jeroen_Ommering],2012-09-05,,,,,Defined TXT keys: TEST-OK Test Controller Card TCCxxxx tf-redeye,,,ThinkFlood RedEye IR bridge,[Matt_Eagar],[Matt_Eagar],,,,,,Defined TXT keys: None thing,,tcp,Internet of things service discovery,[Aaltronav],[ICT_Manager],2019-10-02,,,,,"Defined TXT keys: version, url, location, privacy, support, vendor, about" thing,,udp,Internet of things service discovery,[Aaltronav],[ICT_Manager],2019-10-02,,,,,"Defined TXT keys: version, url, location, privacy, support, vendor, about" thumbwrestling,,,tinkerbuilt Thumb Wrestling game,[Jamie_Halmick],[Jamie_Halmick],,,,,,Defined TXT keys: None ticonnectmgr,,,TI Connect Manager Discovery Service,[Stephen_Reid],[Stephen_Reid],,,,,,Defined TXT keys: None tic-tac-toe,,tcp,Tic Tac Toe game,[Stuart_Cheshire],[Stuart_Cheshire],2019-05-31,,,,,Defined TXT keys: None timezone,,tcp,Time Zone Data Distribution Service - non-TLS,[IESG],[IETF_Chair],2015-08-03,,[RFC7808],,,"This is an extension of the http service. Defined TXT keys: path=<context path> (as per Section 6 of [RFC6763])." timezones,,tcp,Time Zone Data Distribution Service - over TLS,[IESG],[IETF_Chair],2015-08-03,,[RFC7808],,,"This is an extension of the https service. Defined TXT keys: path=<context path> (as per Section 6 of [RFC6763])." tinavigator,,,TI Navigator Hub 1.0 Discovery Service,[Stephen_Reid],[Stephen_Reid],,,,,,Defined TXT keys: None tivo-device,,tcp,TiVo Device Protocol,[TiVo_Inc],[Developer_Support_2],2011-10-18,,,,,Defined TXT keys: None tivo-hme,,,TiVo Home Media Engine Protocol,[Developer_Support],[Developer_Support],,,,,,Defined TXT keys: None tivo-mindrpc,,tcp,TiVo RPC Protocol,[TiVo_Inc],[Developer_Support_2],2011-10-18,,,,,Defined TXT keys: None tivo-music,,,TiVo Music Protocol,[Developer_Support],[Developer_Support],,,,,,Defined TXT keys: None tivo-photos,,,TiVo Photos Protocol,[Developer_Support],[Developer_Support],,,,,,Defined TXT keys: None tivo-remote,,,TiVo Remote Protocol,[Developer_Support],[Developer_Support],,,,,,"Defined TXT keys: protocol, path, swversion, platform, TSN" |
14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 | tsbiis,,tcp,The Social Broadband Interference Information Sharing,[Sergio_Luis],[Sergio_Luis],2012-02-27,,,,,Defined TXT keys: there is no TXT keys defined for this protocol tt4inarow,,,Trivial Technology's 4 in a Row,[Nicolas_Payette],[Nicolas_Payette],,,,,,Defined TXT keys: None ttcheckers,,,Trivial Technology's Checkers,[Nicolas_Payette],[Nicolas_Payette],,,,,,Defined TXT keys: None ttp4daemon,,,TechTool Pro 4 Anti-Piracy Service,[Micromat],[Micromat],,,,,,Defined TXT keys: None tunage,,,Tunage Media Control Service,[Matt_Patenaude],[Matt_Patenaude],,,,,,Defined TXT keys: None tuneranger,,,TuneRanger,[Acertant],[Acertant],,,,,,Defined TXT keys: None twinlevel,,tcp,detect sanitary product,[Oblamatik_AG],[Simon_Ensslen],2012-09-05,,,,,Defined TXT keys: None tzrpc,,tcp,TZ-Software remote procedure call based synchronization protocol,[Thomas_Zwick],[Thomas_Zwick],2011-10-12,,,,,Defined TXT keys: Proprietary ubertragen,,,Ubertragen,[Widgetschmie_de],[Widgetschmie_de],,,,,,Defined TXT keys: None uddi,,,"Universal Description, Discovery and Integration",[Paul_Denning],[Paul_Denning],,,,,,Defined TXT keys: TBD uddi-inq,,,"Universal Description, Discovery and Integration Inquiry",[Paul_Denning],[Paul_Denning],,,,,,Defined TXT keys: TBD uddi-pub,,,"Universal Description, Discovery and Integration Publishing",[Paul_Denning],[Paul_Denning],,,,,,Defined TXT keys: TBD uddi-sub,,,"Universal Description, Discovery and Integration Subscription",[Paul_Denning],[Paul_Denning],,,,,,Defined TXT keys: TBD uddi-sec,,,"Universal Description, Discovery and Integration Security",[Paul_Denning],[Paul_Denning],,,,,,Defined TXT keys: TBD upnp,,,Universal Plug and Play,[Andrew_Donoho],[Andrew_Donoho],,,,,,Defined TXT keys: None urlbookmark,,,URL Advertising,[Sven_S_Porst],[Sven_S_Porst],,,,,,"Defined TXT keys: URL=<URL that is advertised>, name=<Name of the bookmark>" uswi,,,Universal Switching Corporation products,[Roger_Lemberg],[Roger_Lemberg],,,,,,Defined TXT keys: None utest,,,uTest,[Gregory_Power],[Gregory_Power],,,,,,Defined TXT keys: None uwsgi,,,Unbit Web Server Gateway Interface,[Roberto_De_Ioris],[Roberto_De_Ioris],,,,,,Defined TXT keys: None ve-decoder,,,American Dynamics VideoEdge Decoder Control Service,[Gary_Sands],[Gary_Sands],,,,,,"Defined TXT keys: txtvers, macaddress, protovers, model, serial, path, idp" ve-encoder,,,American Dynamics VideoEdge Encoder Control Service,[Gary_Sands],[Gary_Sands],,,,,,"Defined TXT keys: txtvers, macaddress, protovers, model, serial, path, idp" ve-recorder,,,American Dynamics VideoEdge Recorder Control Service,[Gary_Sands],[Gary_Sands],,,,,,"Defined TXT keys: txtvers, macaddress, protovers, model, serial, path, idp" vedabase,,tcp,Application specific synchronization protocol,[Peter_Kollath_2],[Peter_Kollath_2],2014-05-27,,,,,Defined TXT keys: txtvers=1 virtualdj,,,VirtualDJ Remote Control protocol,[Atomix_Productions],[Stephane_Clavel],2011-10-12,,,,,Defined TXT keys: None visel,,,visel Q-System services,[Lehpaner_Sasa],[Lehpaner_Sasa],,,,,,"Defined TXT keys: Version=<service version> Type=<service type> Name=<service Name> Zone=<service zone> ID=<serviceID> SString=<serviceString> SString1=<serviceString>" vos,,,Virtual Object System (using VOP/TCP),[Reed_Hedges][Peter_Amstutz],[Reed_Hedges][Peter_Amstutz],,,,,,"Defined TXT keys: url=<Object URL with full path> type=<Comma-seperated list of object types> title=<Short title of service> descr=<Short description of service>" vue4rendercow,,,VueProRenderCow,,,,,,,,Defined TXT keys: None vxi-11,,,VXI-11 TCP/IP Instrument Protocol,[Nick_Barendt_2],[Nick_Barendt_2],,,,,,Defined TXT keys: None wakeywakey,,tcp,Proprietary,[gerry_Brown_associates],[Gerry_Brown],2012-11-29,,,,,Defined TXT keys: None walkietalkie,,,Walkie Talkie,[Johan_Kool],[Johan_Kool],,,,,,Defined TXT keys: None wd-2go,,tcp,NAS Service Protocol,[Western_Digital],[Rajesh_Batra],2012-07-11,,,,,Defined TXT keys: None we-jell,,,Proprietary collaborative messaging protocol,[Vaughn_Amann],[Vaughn_Amann],,,,,,"Defined TXT keys: user=<user name> stat=<OK, DND, AWY, FWD:uname> agent=<agent type>" webdav,,,World Wide Web Distributed Authoring and Versioning (WebDAV),[Y_Y_Goland],[Y_Y_Goland],,,,,,Defined TXT keys: u=<username> p=<password> path=<path> webdavs,,,WebDAV over SSL/TLS,[Y_Y_Goland],[Y_Y_Goland],,,,,,Defined TXT keys: u=<username> p=<password> path=<path> webissync,,,WebIS Sync Protocol,[Alex_Kac],[Alex_Kac],,,,,,Defined TXT keys: None wedraw,,,weDraw document sharing protocol,[Oleksandr_Zakharchuk],[Oleksandr_Zakharchuk],,,,,,Defined TXT keys: None whamb,,,Whamb,[Whamb],[Whamb],,,,,,Defined TXT keys: None whistler,,,Honeywell Video Systems,[Shankar_Prasad_2],[Shankar_Prasad_2],,,,,,Defined TXT keys: None wicop,,udp,WiFi Control Platform,[Santorini_LLC],[Cameron_Colpitts],2011-10-25,,,,,"Defined TXT keys: state=<state> loc=<location>" witap,,,WiTap Sample Game Protocol,[Rory_McGuire_2],[Rory_McGuire_2],,,,,,Defined TXT keys: None witapvoice,,,witapvoice,[Roberto_Garcia],[Roberto_Garcia],,,,,,Defined TXT keys: None wkgrpsvr,,,Workgroup Server Discovery,[Forest_Hill],[Forest_Hill],,,,,,Defined TXT keys: None workstation,,,Workgroup Manager,[Kevin_Arnold],[Kevin_Arnold],,,,,,Defined TXT keys: None wormhole,,,Roku Cascade Wormhole Protocol,[Don_Woodward],[Don_Woodward],,,,,,Defined TXT keys: txtvers=1 workgroup,,,Novell collaboration workgroup,[Brady_Anderson],[Brady_Anderson],,,,,,Defined TXT keys: version=? description=? writietalkie,,,Writie Talkie Data Sharing,[Yin_Ki_Lau],[Yin_Ki_Lau],,,,,,Defined TXT keys: None ws,,,Web Services,[Andrew_Donoho],[Andrew_Donoho],,,,,,Defined TXT keys: None wtc-heleos,,,Wyatt Technology Corporation HELEOS,[Brent_Fulgham],[Brent_Fulgham],,,,,,Defined TXT keys: None wtc-qels,,,Wyatt Technology Corporation QELS,[Brent_Fulgham],[Brent_Fulgham],,,,,,Defined TXT keys: None wtc-rex,,,Wyatt Technology Corporation Optilab rEX,[Roy_Reapor],[Roy_Reapor],,,,,,Defined TXT keys: None wtc-viscostar,,,Wyatt Technology Corporation ViscoStar,[Roy_Reapor],[Roy_Reapor],,,,,,Defined TXT keys: None wtc-wpr,,,Wyatt Technology Corporation DynaPro Plate Reader,[Brent_Fulgham],[Brent_Fulgham],,,,,,Defined TXT keys: None wwdcpic,,,PictureSharing sample code,[Marc_Krochmal],[Marc_Krochmal],,,,,,Defined TXT keys: None x-on,,,x-on services synchronisation protocol,[Matthias_Burghardt],[Matthias_Burghardt],,,,,,Defined TXT keys: Proprietary x-plane9,,udp,x-plane9,[Austin_Meyer],[Austin_Meyer],,,,,,Defined TXT keys: None xcodedistcc,,,Xcode Distributed Compiler,[Scott_Tooker],[Scott_Tooker],,,,,,Defined TXT keys: None xential,,tcp,xential document creation services,[Xential],[Michiel_Terpstra],2013-11-13,,,,,Defined TXT keys: None xgate-rmi,,,xGate Remote Management Interface,[Tim_Jobling],[Tim_Jobling],,,,,,"Defined TXT keys: tech=value (string) model=value (string) version=value (string)" | > > > > > > > > > > > > > > > > > > > > > > > > > > > | 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 | tsbiis,,tcp,The Social Broadband Interference Information Sharing,[Sergio_Luis],[Sergio_Luis],2012-02-27,,,,,Defined TXT keys: there is no TXT keys defined for this protocol tt4inarow,,,Trivial Technology's 4 in a Row,[Nicolas_Payette],[Nicolas_Payette],,,,,,Defined TXT keys: None ttcheckers,,,Trivial Technology's Checkers,[Nicolas_Payette],[Nicolas_Payette],,,,,,Defined TXT keys: None ttp4daemon,,,TechTool Pro 4 Anti-Piracy Service,[Micromat],[Micromat],,,,,,Defined TXT keys: None tunage,,,Tunage Media Control Service,[Matt_Patenaude],[Matt_Patenaude],,,,,,Defined TXT keys: None tuneranger,,,TuneRanger,[Acertant],[Acertant],,,,,,Defined TXT keys: None twinlevel,,tcp,detect sanitary product,[Oblamatik_AG],[Simon_Ensslen],2012-09-05,,,,,Defined TXT keys: None twosnakes,,tcp,Service to enable multiplayer game called two snakes.,[Narendra_Kumar_Reddy_Thummaluru],[Narendra_Kumar_Reddy_Thummaluru],2016-06-01,,,,,Defined TXT keys: None twosnakes,,sctp,Service to enable multiplayer game called two snakes.,[Narendra_Kumar_Reddy_Thummaluru],[Narendra_Kumar_Reddy_Thummaluru],2016-06-01,,,,,Defined TXT keys: None tyba,,tcp,Tyba control,[Tyba_Design_Limited],[Oz_Andrews],2018-08-24,,,,,"Defined TXT keys: PRID, HWSN, VERS" tzrpc,,tcp,TZ-Software remote procedure call based synchronization protocol,[Thomas_Zwick],[Thomas_Zwick],2011-10-12,,,,,Defined TXT keys: Proprietary ubertragen,,,Ubertragen,[Widgetschmie_de],[Widgetschmie_de],,,,,,Defined TXT keys: None ucdynamics-tuc,,udp,Tactical Unified Communicator,[UC_Dynamics_LLC],[Shaun_Botha],2018-01-31,,,,,Defined TXT keys: None uddi,,,"Universal Description, Discovery and Integration",[Paul_Denning],[Paul_Denning],,,,,,Defined TXT keys: TBD uddi-inq,,,"Universal Description, Discovery and Integration Inquiry",[Paul_Denning],[Paul_Denning],,,,,,Defined TXT keys: TBD uddi-pub,,,"Universal Description, Discovery and Integration Publishing",[Paul_Denning],[Paul_Denning],,,,,,Defined TXT keys: TBD uddi-sub,,,"Universal Description, Discovery and Integration Subscription",[Paul_Denning],[Paul_Denning],,,,,,Defined TXT keys: TBD uddi-sec,,,"Universal Description, Discovery and Integration Security",[Paul_Denning],[Paul_Denning],,,,,,Defined TXT keys: TBD upnp,,,Universal Plug and Play,[Andrew_Donoho],[Andrew_Donoho],,,,,,Defined TXT keys: None urlbookmark,,,URL Advertising,[Sven_S_Porst],[Sven_S_Porst],,,,,,"Defined TXT keys: URL=<URL that is advertised>, name=<Name of the bookmark>" usp-agt-coap,,udp,USP discovery,[Broadband_Forum],[Broadband_Forum],2017-01-12,,[http://www.broadband-forum.org/assignments],,,Defined TXT keys: see www.broadband-forum.org/assignments usp-agt-http,,tcp,USP discovery,[Broadband_Forum],[Broadband_Forum],2017-01-12,,[http://www.broadband-forum.org/assignments],,,Defined TXT keys: see www.broadband-forum.org/assignments usp-agt-stomp,,tcp,USP discovery,[Broadband_Forum],[Broadband_Forum],2017-01-12,,[http://www.broadband-forum.org/assignments],,,Defined TXT keys: see www.broadband-forum.org/assignments usp-agt-ws,,tcp,USP discovery,[Broadband_Forum],[Broadband_Forum],2017-09-28,,[http://www.broadband-forum.org/assignments],,,Defined TXT keys: see www.broadband-forum.org/assignments usp-ctr-coap,,udp,USP discovery,[Broadband_Forum],[Broadband_Forum],2017-01-12,,[http://www.broadband-forum.org/assignments],,,Defined TXT keys: see www.broadband-forum.org/assignments usp-ctr-http,,tcp,USP discovery,[Broadband_Forum],[Broadband_Forum],2017-01-12,,[http://www.broadband-forum.org/assignments],,,Defined TXT keys: see www.broadband-forum.org/assignments usp-ctr-stomp,,tcp,USP discovery,[Broadband_Forum],[Broadband_Forum],2017-01-12,,[http://www.broadband-forum.org/assignments],,,Defined TXT keys: see www.broadband-forum.org/assignments usp-ctr-ws,,tcp,USP discovery,[Broadband_Forum],[Broadband_Forum],2017-09-28,,[http://www.broadband-forum.org/assignments],,,Defined TXT keys: see www.broadband-forum.org/assignments uswi,,,Universal Switching Corporation products,[Roger_Lemberg],[Roger_Lemberg],,,,,,Defined TXT keys: None utest,,,uTest,[Gregory_Power],[Gregory_Power],,,,,,Defined TXT keys: None uwsgi,,,Unbit Web Server Gateway Interface,[Roberto_De_Ioris],[Roberto_De_Ioris],,,,,,Defined TXT keys: None ve-decoder,,,American Dynamics VideoEdge Decoder Control Service,[Gary_Sands],[Gary_Sands],,,,,,"Defined TXT keys: txtvers, macaddress, protovers, model, serial, path, idp" ve-encoder,,,American Dynamics VideoEdge Encoder Control Service,[Gary_Sands],[Gary_Sands],,,,,,"Defined TXT keys: txtvers, macaddress, protovers, model, serial, path, idp" ve-recorder,,,American Dynamics VideoEdge Recorder Control Service,[Gary_Sands],[Gary_Sands],,,,,,"Defined TXT keys: txtvers, macaddress, protovers, model, serial, path, idp" vedabase,,tcp,Application specific synchronization protocol,[Peter_Kollath_2],[Peter_Kollath_2],2014-05-27,,,,,Defined TXT keys: txtvers=1 vhusb,,tcp,USB over IP Sharing System,[VirtualHere_Pty_Ltd],[Michael_Broadfoot],2015-04-02,,,,,Defined TXT keys: <serial number of server> virtualdj,,,VirtualDJ Remote Control protocol,[Atomix_Productions],[Stephane_Clavel],2011-10-12,,,,,Defined TXT keys: None visel,,,visel Q-System services,[Lehpaner_Sasa],[Lehpaner_Sasa],,,,,,"Defined TXT keys: Version=<service version> Type=<service type> Name=<service Name> Zone=<service zone> ID=<serviceID> SString=<serviceString> SString1=<serviceString>" voalte2,,tcp,Server location via DNS-SD,[Voalte_Inc],[John_Simpson],2019-01-22,,,,,"Defined TXT keys: txtvers, name, (others not publicly documented)" voalte3,,tcp,Server location via DNS-SD,[Voalte_Inc],[John_Simpson],2019-01-22,,,,,"Defined TXT keys: txtvers, name, (others not publicly documented)" vos,,,Virtual Object System (using VOP/TCP),[Reed_Hedges][Peter_Amstutz],[Reed_Hedges][Peter_Amstutz],,,,,,"Defined TXT keys: url=<Object URL with full path> type=<Comma-seperated list of object types> title=<Short title of service> descr=<Short description of service>" voxidahmp,,tcp,RTP Mixer/Summation Resource,[Accurate_Always_Inc],[Yousef_Shemisa],2018-12-03,,,,,Defined TXT keys: None vrmg-p2p,,tcp,Verimag mobile class protocol over P2P,[Verimag_OOO],[Denis_Ionov],2018-07-20,,,,,"Defined TXT keys: d=<discovery key>, t=<mobile class ID>" vue4rendercow,,,VueProRenderCow,,,,,,,,Defined TXT keys: None vxi-11,,,VXI-11 TCP/IP Instrument Protocol,[Nick_Barendt_2],[Nick_Barendt_2],,,,,,Defined TXT keys: None wakeywakey,,tcp,Proprietary,[gerry_Brown_associates],[Gerry_Brown],2012-11-29,,,,,Defined TXT keys: None walkietalkie,,,Walkie Talkie,[Johan_Kool],[Johan_Kool],,,,,,Defined TXT keys: None wd-2go,,tcp,NAS Service Protocol,[Western_Digital],[Rajesh_Batra],2012-07-11,,,,,Defined TXT keys: None wdp,,tcp,Windows Device Portal,[Microsoft_Corporation_5],[Hirsch_Singhal],2016-03-03,,,,,"Defined TXT keys: D (device type), S (https port), A (architecture), T (tags)" web-xi,,tcp,HTTP-based protocol for DAQ devices,[Spectris_plc],[Carsten_Hansen],2019-02-13,,,,,"Defined TXT keys: name, version" webex,,tcp,Cisco WebEx serials products will release Bonjour based service,[Mobile_Team],[Aulion_Huang],2018-02-09,,,,,Defined TXT keys: None webex,,udp,Cisco WebEx serials products will release Bonjour based service,[Mobile_Team],[Aulion_Huang],2018-02-09,,,,,Defined TXT keys: None we-jell,,,Proprietary collaborative messaging protocol,[Vaughn_Amann],[Vaughn_Amann],,,,,,"Defined TXT keys: user=<user name> stat=<OK, DND, AWY, FWD:uname> agent=<agent type>" webdav,,,World Wide Web Distributed Authoring and Versioning (WebDAV),[Y_Y_Goland],[Y_Y_Goland],,,,,,Defined TXT keys: u=<username> p=<password> path=<path> webdavs,,,WebDAV over SSL/TLS,[Y_Y_Goland],[Y_Y_Goland],,,,,,Defined TXT keys: u=<username> p=<password> path=<path> webissync,,,WebIS Sync Protocol,[Alex_Kac],[Alex_Kac],,,,,,Defined TXT keys: None wedraw,,,weDraw document sharing protocol,[Oleksandr_Zakharchuk],[Oleksandr_Zakharchuk],,,,,,Defined TXT keys: None whamb,,,Whamb,[Whamb],[Whamb],,,,,,Defined TXT keys: None whistler,,,Honeywell Video Systems,[Shankar_Prasad_2],[Shankar_Prasad_2],,,,,,Defined TXT keys: None wicop,,udp,WiFi Control Platform,[Santorini_LLC],[Cameron_Colpitts],2011-10-25,,,,,"Defined TXT keys: state=<state> loc=<location>" wifile,,tcp,"System for transferring files between mobile device and computer in a local network",[Artyom_Nikolaev],[Artyom_Nikolaev],2016-12-23,,,,,Defined TXT keys: None witap,,,WiTap Sample Game Protocol,[Rory_McGuire_2],[Rory_McGuire_2],,,,,,Defined TXT keys: None witapvoice,,,witapvoice,[Roberto_Garcia],[Roberto_Garcia],,,,,,Defined TXT keys: None wkgrpsvr,,,Workgroup Server Discovery,[Forest_Hill],[Forest_Hill],,,,,,Defined TXT keys: None workstation,,,Workgroup Manager,[Kevin_Arnold],[Kevin_Arnold],,,,,,Defined TXT keys: None wormhole,,,Roku Cascade Wormhole Protocol,[Don_Woodward],[Don_Woodward],,,,,,Defined TXT keys: txtvers=1 workgroup,,,Novell collaboration workgroup,[Brady_Anderson],[Brady_Anderson],,,,,,Defined TXT keys: version=? description=? wpl-ers-http,,tcp,World Programming repository server,[World_Programming_Limited],[Thomas_Quarendon],2017-03-17,,,,,Defined TXT keys: None wpl-ers-zmq,,tcp,World Programming repository server,[World_Programming_Limited],[Thomas_Quarendon],2017-03-17,,,,,Defined TXT keys: None writietalkie,,,Writie Talkie Data Sharing,[Yin_Ki_Lau],[Yin_Ki_Lau],,,,,,Defined TXT keys: None ws,,,Web Services,[Andrew_Donoho],[Andrew_Donoho],,,,,,Defined TXT keys: None wtc-heleos,,,Wyatt Technology Corporation HELEOS,[Brent_Fulgham],[Brent_Fulgham],,,,,,Defined TXT keys: None wtc-qels,,,Wyatt Technology Corporation QELS,[Brent_Fulgham],[Brent_Fulgham],,,,,,Defined TXT keys: None wtc-rex,,,Wyatt Technology Corporation Optilab rEX,[Roy_Reapor],[Roy_Reapor],,,,,,Defined TXT keys: None wtc-viscostar,,,Wyatt Technology Corporation ViscoStar,[Roy_Reapor],[Roy_Reapor],,,,,,Defined TXT keys: None wtc-wpr,,,Wyatt Technology Corporation DynaPro Plate Reader,[Brent_Fulgham],[Brent_Fulgham],,,,,,Defined TXT keys: None wwdcpic,,,PictureSharing sample code,[Marc_Krochmal],[Marc_Krochmal],,,,,,Defined TXT keys: None x510,,tcp,Security service to protocols,[ITU-T_Study_Group_17],[Erik_Andersen],2019-08-13,,,,,Defined TXT keys: None x-on,,,x-on services synchronisation protocol,[Matthias_Burghardt],[Matthias_Burghardt],,,,,,Defined TXT keys: Proprietary x-plane9,,udp,x-plane9,[Austin_Meyer],[Austin_Meyer],,,,,,Defined TXT keys: None xcodedistcc,,,Xcode Distributed Compiler,[Scott_Tooker],[Scott_Tooker],,,,,,Defined TXT keys: None xential,,tcp,xential document creation services,[Xential],[Michiel_Terpstra],2013-11-13,,,,,Defined TXT keys: None xgate-rmi,,,xGate Remote Management Interface,[Tim_Jobling],[Tim_Jobling],,,,,,"Defined TXT keys: tech=value (string) model=value (string) version=value (string)" |
14390 14391 14392 14393 14394 14395 14396 | z-wave,,udp,Z-Wave Service Discovery,[Sigma_Designs_Inc],[Anders_Brandt_2],2011-10-03,,,,,"Defined TXT keys: NIF, EP, LM" zeromq,,tcp,High performance brokerless messaging,[Daniel_Holth],[Daniel_Holth],2012-04-24,,,,,"Defined TXT keys: type, app, label, note" zeromq,,udp,High performance brokerless messaging,[Daniel_Holth],[Daniel_Holth],2012-04-24,,,,,"Defined TXT keys: type, app, label, note" zigbee-bridge,,tcp,ZigBee Bridge device,[ZigBee_Alliances_Network_Device_working_group],[Leslie_Mulder],2013-05-28,,,,,Defined TXT keys: see: http://www.zigbee.org/Standards/ZigBeeNetworkDevices zigbee-bridge,,udp,ZigBee Bridge device,[ZigBee_Alliances_Network_Device_working_group],[Leslie_Mulder],2013-05-28,,,,,Defined TXT keys: see: http://www.zigbee.org/Standards/ZigBeeNetworkDevices zigbee-gateway,,tcp,ZigBee IP Gateway,[ZigBee_Alliances_Network_Device_working_group],[Leslie_Mulder],2013-05-28,,,,,Defined TXT keys: see: http://www.zigbee.org/Standards/ZigBeeNetworkDevices zigbee-gateway,,udp,ZigBee IP Gateway,[ZigBee_Alliances_Network_Device_working_group],[Leslie_Mulder],2013-05-28,,,,,Defined TXT keys: see: http://www.zigbee.org/Standards/ZigBeeNetworkDevices | > | 15426 15427 15428 15429 15430 15431 15432 15433 | z-wave,,udp,Z-Wave Service Discovery,[Sigma_Designs_Inc],[Anders_Brandt_2],2011-10-03,,,,,"Defined TXT keys: NIF, EP, LM" zeromq,,tcp,High performance brokerless messaging,[Daniel_Holth],[Daniel_Holth],2012-04-24,,,,,"Defined TXT keys: type, app, label, note" zeromq,,udp,High performance brokerless messaging,[Daniel_Holth],[Daniel_Holth],2012-04-24,,,,,"Defined TXT keys: type, app, label, note" zigbee-bridge,,tcp,ZigBee Bridge device,[ZigBee_Alliances_Network_Device_working_group],[Leslie_Mulder],2013-05-28,,,,,Defined TXT keys: see: http://www.zigbee.org/Standards/ZigBeeNetworkDevices zigbee-bridge,,udp,ZigBee Bridge device,[ZigBee_Alliances_Network_Device_working_group],[Leslie_Mulder],2013-05-28,,,,,Defined TXT keys: see: http://www.zigbee.org/Standards/ZigBeeNetworkDevices zigbee-gateway,,tcp,ZigBee IP Gateway,[ZigBee_Alliances_Network_Device_working_group],[Leslie_Mulder],2013-05-28,,,,,Defined TXT keys: see: http://www.zigbee.org/Standards/ZigBeeNetworkDevices zigbee-gateway,,udp,ZigBee IP Gateway,[ZigBee_Alliances_Network_Device_working_group],[Leslie_Mulder],2013-05-28,,,,,Defined TXT keys: see: http://www.zigbee.org/Standards/ZigBeeNetworkDevices slingbox,51001,,Slingbox (Unofficial),,,,,, |
Changes to modules/nettool/nettool.tcl.
1 2 3 4 5 6 | ### # Amalgamated package for nettool # Do not edit directly, tweak the source in src/ and rerun # build.tcl ### package require Tcl 8.5 | | | < < < | < < | < < < < < < < < | < < < | < < < < | | | | | | < < < < < < | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 | ### # Amalgamated package for nettool # Do not edit directly, tweak the source in src/ and rerun # build.tcl ### package require Tcl 8.5 package provide nettool 0.5.4 namespace eval ::nettool {} set ::nettool::version 0.5.4 ### # START: core.tcl ### # @mdgen OWNER: generic.tcl # @mdgen OWNER: available_ports.tcl # @mdgen OWNER: locateport.tcl # @mdgen OWNER: platform_unix_linux.tcl # @mdgen OWNER: platform_unix_macosx.tcl # @mdgen OWNER: platform_unix.tcl # @mdgen OWNER: platform_windows.tcl package require platform # Uses the "ip" package from tcllib package require ip set here [file dirname [file normalize [info script]]] ::namespace eval ::nettool {} proc ::nettool::cat filename { set fin [open $filename r] set dat [read $fin] close $fin return $dat } set genus [lindex [split [::platform::generic] -] 0] dict set ::nettool::platform tcl_os $::tcl_platform(os) dict set ::nettool::platform odie_class $::tcl_platform(platform) dict set ::nettool::platform odie_genus $genus dict set ::nettool::platform odie_target [::platform::generic] dict set ::nettool::platform odie_species [::platform::identify] |
84 85 86 87 88 89 90 | proc ::nettool::arp_table {} {} ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { | | | 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 | proc ::nettool::arp_table {} {} ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { return {} } ### # topic: 15d9bc96ec6ce31d4c8f99a425a9c02c # description: Return Processor utilization ### proc ::nettool::busy {} {} |
935 936 937 938 939 940 941 | lappend ::nettool::blocks 47810 47999 lappend ::nettool::blocks 48006 48048 lappend ::nettool::blocks 48051 48127 lappend ::nettool::blocks 48130 48555 lappend ::nettool::blocks 48557 48618 lappend ::nettool::blocks 48620 48652 lappend ::nettool::blocks 48654 48999 | | > | 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 | lappend ::nettool::blocks 47810 47999 lappend ::nettool::blocks 48006 48048 lappend ::nettool::blocks 48051 48127 lappend ::nettool::blocks 48130 48555 lappend ::nettool::blocks 48557 48618 lappend ::nettool::blocks 48620 48652 lappend ::nettool::blocks 48654 48999 lappend ::nettool::blocks 49001 50999 lappend ::nettool::blocks 51009 65535 ### # END: available_ports.tcl ### ### # START: locateport.tcl |
958 959 960 961 962 963 964 | if { $end <= $startingport } continue if { $start > $startingport } { set i $start } else { set i $startingport } for {} {$i <= $end} {incr i} { | | | > > > > | > | > > > | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | > > > > > > > > > > > > > > > > | > > | | > > > > > > > > > | 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 | if { $end <= $startingport } continue if { $start > $startingport } { set i $start } else { set i $startingport } for {} {$i <= $end} {incr i} { if {[port_busy $i]} continue if {[catch {socket -server NOOP $i} chan]} { dict set ::nettool::used_ports $port mtime [clock seconds] dict set ::nettool::used_ports $port pid 1 continue } close $chan claim_port $i return $i } } error "Could not locate a port" } ### # topic: 3286fdbd0a3fdebbb26414475754bcf3dea67b0f ### proc ::nettool::claim_port {port {protocol tcp}} { dict set ::nettool::used_ports $port mtime [clock seconds] dict set ::nettool::used_ports $port pid [pid] if {[info exists ::nettool::syncfile]} { ::nettool::_sync_db $::nettool::syncfile } } ### # topic: 1d1f8a65a9aef8765c9b4f2b0ee0ebaf42e99d46 ### proc ::nettool::find_port startingport { foreach {start end} $::nettool::blocks { if { $end <= $startingport } continue if { $start > $startingport } { set i $start } else { set i $startingport } for {} {$i <= $end} {incr i} { if {[port_busy $i]} continue return $i } } error "Could not locate a port" } proc ::nettool::sleep delay { if {[info coroutine] ne {}} { ::after $delay [list [info coroutine]] yield return } after $delay {set ::nettool::pause 0} vwait ::nettool::pause return } proc ::nettool::_sync_db {filename} { set mypid [pid] set now [clock seconds] if {[file exists $filename]} { for {set x 0} {$x < 30} {incr x} { if {![file exists $filename.lock]} break set pid [string trim [cat $filename.lock]] if {$pid==$mypid} break ::nettool::sleep 250 } set fout [open $filename.lock w] puts $fout $mypid close $fout set fin [open $filename r] while {[gets $fin line]>=0} { lassign $line port info # Ignore file entries attributed to my process id if {[dict exists $info pid] && [dict get $info pid] == $mypid} continue # Ignore attempts to update usage on ports I have allocated if {[dict exists $::nettool::used_ports $port pid] && [dict get $::nettool::used_ports $port pid] == $mypid} continue # Ignore entries more than a week old if {[dict exists $info mtime] && ($now-[dict get $info mtime]) > 604800} continue dict set ::nettool::used_ports $port $info } close $fin } set fout [open $filename w] set ports [lsort -integer [dict keys $::nettool::used_ports]] foreach port $ports { if {[dict get $::nettool::used_ports $port pid]==$mypid} { dict set ::nettool::used_ports $port mtime $now } puts $fout [list $port [dict get $::nettool::used_ports $port]] } close $fout catch {file delete $filename.lock} } ### # topic: ded1c51260e009effb1f77044f8d0dec3d030b91 ### proc ::nettool::port_busy port { if {[info exists ::nettool::syncfile] && [file exists $::nettool::syncfile]} { ::nettool::_sync_db $::nettool::syncfile } ### # Check our private list of used ports ### if {[dict exists $::nettool::used_ports $port pid] && [dict get $::nettool::used_ports $port pid] > 0} { return 1 } foreach {start end} $::nettool::blocks { if { $port >= $start && $port <= $end } { return 0 } } return 1 } # Called when a process is closing proc ::nettool::release_all {} { set mypid [pid] set now [clock seconds] dict for {port info} $::nettool::used_ports { if {[dict exists $info pid] && [dict get $info pid]==$mypid} { dict set ::nettool::used_ports $port pid 0 dict set ::nettool::used_ports $port mtime $now } } if {[info exists ::nettool::syncfile]} { ::nettool::_sync_db $::nettool::syncfile } } ### # topic: b5407b084aa09f9efa4f58a337af6186418fddf2 ### proc ::nettool::release_port {port {protocol tcp}} { dict set ::nettool::used_ports $port mtime [clock seconds] dict set ::nettool::used_ports $port pid 0 if {[info exists ::nettool::syncfile]} { ::nettool::_sync_db $::nettool::syncfile } } proc ::nettool::set_sync_file {filename} { file mkdir [file dirname $filename] set ::nettool::syncfile $filename } if {![info exists ::nettool::used_ports]} { set ::nettool::used_ports {} } ### # END: locateport.tcl ### ### # START: platform_unix.tcl ### |
1063 1064 1065 1066 1067 1068 1069 | ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} | < | 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 | ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} foreach {iface info} [dump] { if {[dict exists $info ipv4 Bcast:]} { lappend result [dict get $info ipv4 Bcast:] } } return [lsort -unique -dictionary $result] } |
1311 1312 1313 1314 1315 1316 1317 | ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} | < | 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 | ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} foreach {iface info} [dump] { if {[dict exists $info broadcast:]} { lappend result [dict get $info broadcast:] } } return [lsort -unique -dictionary $result] } |
1545 1546 1547 1548 1549 1550 1551 | ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} | < | 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 | ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} foreach net [network_list] { if {$net in {224.0.0.0/4 127.0.0.0/8}} continue lappend result [::ip::broadcastAddress $net] } return [lsort -unique -dictionary $result] } |
Changes to modules/nettool/nettool.test.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | source [file join \ [file dirname [file dirname [file join [pwd] [info script]]]] \ devtools testutilities.tcl] package require tcltest testsNeedTcl 8.5 testsNeedTcltest 1.0 testing { useLocal nettool.tcl nettool } # Test known busy ports foreach port { 80 3020 21 7794 | > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 | source [file join \ [file dirname [file dirname [file join [pwd] [info script]]]] \ devtools testutilities.tcl] package require tcltest testsNeedTcl 8.5 testsNeedTcltest 1.0 testing { useLocal nettool.tcl nettool } set ::nettool::syncfile [file join [file dirname [file join [pwd] [info script]]] sync.txt] if {[file exists $::nettool::syncfile]} { file delete $::nettool::syncfile } # Seed the syncfile with data as if there was a process in paralleld set fout [open $::nettool::syncfile w] puts $fout [list 8805 [dict create pid 1 mtime [expr [clock seconds]-1800]]] puts $fout [list 8806 [dict create pid 1 mtime [expr [clock seconds]-900]]] puts $fout [list 8807 [dict create pid 1 mtime [expr [clock seconds]-900]]] close $fout # Test known busy ports foreach port { 80 3020 21 7794 |
47 48 49 50 51 52 53 | 7792 7793 {End of block} 7793 7795 {Start of new block} } { ::nettool::claim_port $port ::tcltest::test port-claim-0001 \ "Test that port busy returns true after $port is claimed" \ [list ::nettool::port_busy $port] 1 | | | | | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > | 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 | 7792 7793 {End of block} 7793 7795 {Start of new block} } { ::nettool::claim_port $port ::tcltest::test port-claim-0001 \ "Test that port busy returns true after $port is claimed" \ [list ::nettool::port_busy $port] 1 # Test that claiming a port makes it busy ::tcltest::test port-find-0002 \ "Test that port find returns the next port in unclaimed block starting at $port following claim" \ [list ::nettool::find_port $port] $nextport } set port 7790 ::nettool::claim_port $port ::tcltest::test port-claim-0002 \ "Test that port busy returns true after $port is claimed" \ [list ::nettool::port_busy $port] 1 ::nettool::release_port $port ::tcltest::test port-claim-0003 \ "Test that port busy returns false after $port is release" \ [list ::nettool::port_busy $port] 0 # Test that claiming a port makes it busy ::tcltest::test port-find-0004 \ "Test that port find returns the next port in released block starting at $port following claim" \ [list ::nettool::find_port 7790] 7790 foreach {port nextport comment} { 7790 7791 {Start of block} 7791 7792 {...} 7792 7793 {End of block} 7793 7795 {Start of new block} } { ::nettool::release_port $port } # Test that claiming a port makes it busy ::tcltest::test port-allocate-0004 \ "Test allocate port returns the address of an unclaimed spot and claims it" \ [list ::nettool::allocate_port 7790] 7790 ::tcltest::test port-allocate-0005 \ "Test allocate port returns the next address of an claimed spot and claims it" \ [list ::nettool::allocate_port 7790] 7791 ::tcltest::test port-allocate-0006 \ "Test allocate port returns the next address of an claimed spot and claims it" \ [list ::nettool::allocate_port 8805] 8808 # This should skip 7993 and 7994 because we seeded those in the txt file ::tcltest::test port-allocate-0007 \ "Test allocate port returns the next address of an claimed spot and claims it" \ [list ::nettool::allocate_port 8805] 8809 # Read the sync file set mypid [pid] set ports_open_count 0 set fin [open $::nettool::syncfile r] while {[gets $fin line] >= 0} { lassign $line port info if {![dict exists $info pid]} continue if {[dict get $info pid]==$mypid} { incr ports_open_count } } close $fin ::tcltest::test port-open-0001 \ "Count the number of open ports for this pid in the share file" \ [list set ports_open_count] 4 ::nettool::release_all # Read the sync file set mypid [pid] set ports_open_count 0 set fin [open $::nettool::syncfile r] while {[gets $fin line] >= 0} { lassign $line port info if {![dict exists $info pid]} continue if {[dict get $info pid]==$mypid} { incr ports_open_count } } close $fin ::tcltest::test port-open-0002 \ "Count the number of open ports for this pid in the share file" \ [list set ports_open_count] 0 catch {file delete $::nettool::syncfile} testsuiteCleanup return |
Changes to modules/nettool/pkgIndex.tcl.
1 2 3 4 | if {![package vsatisfies [package provide Tcl] 8.5]} {return} # Backward compatible alias package ifneeded nettool::available_ports 0.1 {package require nettool ; package provide nettool::available_ports 0.1} | | | 1 2 3 4 5 6 | if {![package vsatisfies [package provide Tcl] 8.5]} {return} # Backward compatible alias package ifneeded nettool::available_ports 0.1 {package require nettool ; package provide nettool::available_ports 0.1} package ifneeded nettool 0.5.4 [list source [file join $dir nettool.tcl]] |
Changes to modules/practcl/build/build.tcl.
1 2 3 4 5 6 7 8 9 10 11 12 | set srcdir [file dirname [file normalize [file join [pwd] [info script]]]] set moddir [file dirname $srcdir] source [file join $srcdir doctool.tcl] ::practcl::doctool create AutoDoc set version 0.16.4 set tclversion 8.6 set module [file tail $moddir] set filename $module set fout [open [file join $moddir $filename.tcl] w] | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | set srcdir [file dirname [file normalize [file join [pwd] [info script]]]] set moddir [file dirname $srcdir] source [file join $srcdir doctool.tcl] ::practcl::doctool create AutoDoc set version 0.16.4 set tclversion 8.6 set module [file tail $moddir] set filename $module set fout [open [file join $moddir $filename.tcl] w] fconfigure $fout -encoding utf-8 -translation lf dict set modmap %module% $module dict set modmap %version% $version dict set modmap %tclversion% $tclversion #dict set modmap { } {} #dict set modmap "\t" { } puts $fout [string map $modmap {### |
99 100 101 102 103 104 105 | }] close $fout ### # Build our pkgIndex.tcl file ### set fout [open [file join $moddir pkgIndex.tcl] w] | | | 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 | }] close $fout ### # Build our pkgIndex.tcl file ### set fout [open [file join $moddir pkgIndex.tcl] w] fconfigure $fout -encoding utf-8 -translation lf puts $fout [string map $modmap {### if {![package vsatisfies [package provide Tcl] %tclversion%]} {return} package ifneeded %module% %version% [list source [file join $dir %module%.tcl]] }] close $fout set manout [open [file join $moddir $filename.man] w] puts $manout [AutoDoc manpage map $modmap \ header [::practcl::cat [file join $srcdir manual.txt]] \ footer [::practcl::cat [file join $srcdir footer.txt]] \ ] close $manout |
Changes to modules/practcl/build/buildutil.tcl.
130 131 132 133 134 135 136 | file copy -force $barekit $exename set pwd [pwd] cd $vfspath exec zip -r $zipfile . cd $pwd set fout [open $exename a] set fin [open $zipfile r] | | | | 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 | file copy -force $barekit $exename set pwd [pwd] cd $vfspath exec zip -r $zipfile . cd $pwd set fout [open $exename a] set fin [open $zipfile r] chan configure $fout -encoding binary -translation binary chan configure $fin -encoding binary -translation binary chan copy $fin $fout chan close $fin chan close $fout exec zip -A $exename } proc ::practcl::sort_dict list { set result {} |
Changes to modules/practcl/practcl.tcl.
2666 2667 2668 2669 2670 2671 2672 | file copy -force $barekit $exename set pwd [pwd] cd $vfspath exec zip -r $zipfile . cd $pwd set fout [open $exename a] set fin [open $zipfile r] | | | | 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 | file copy -force $barekit $exename set pwd [pwd] cd $vfspath exec zip -r $zipfile . cd $pwd set fout [open $exename a] set fin [open $zipfile r] chan configure $fout -encoding binary -translation binary chan configure $fin -encoding binary -translation binary chan copy $fin $fout chan close $fin chan close $fout exec zip -A $exename } proc ::practcl::sort_dict list { set result {} |
Changes to modules/udpcluster/pkgIndex.tcl.
|
| | | | | | 1 2 3 4 | if {![package vsatisfies [package provide Tcl] 8.6]} {return} # Backward compadible alias package ifneeded nameserv::cluster 0.2.5 {package require udpcluster ; package provide nameserv::cluster 0.2.5} package ifneeded udpcluster 0.3.4 [list source [file join $dir udpcluster.tcl]] |
Changes to modules/udpcluster/udpcluster.man.
|
| < | | | < > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | [manpage_begin udpcluster n 0.3] [keywords {name service}] [keywords server] [copyright {2018 Sean Woods <yoda@etoyoc.com>}] [moddesc {Lightweight UDP based tool for cluster node discovery}] [titledesc {UDP Peer-to-Peer cluster}] [category Networking] [require Tcl 8.6] [require ip] [require nettool] [require comm] [require interp] [require dicttool] [require cron] [require uuid] [require md5] [require coroutine] [description] This package is a lightweight alternative to Zeroconf. It utilizes UDP packets to populate a table of services provided by each node on a local network. Each participant broadcasts a key/value list in plain UTF-8 which lists what ports are open, and what protocols are expected on those ports. Developers are free to add any additional key/value pairs beyond those. |
51 52 53 54 55 56 57 | Results will Historical Notes: [para] This tool was originally known as nns::cluster, but as development progressed, it was clear that it wasn't interacting with any of the other facilities in NNS. [vset CATEGORY nameserv] | | | 52 53 54 55 56 57 58 59 60 | Results will Historical Notes: [para] This tool was originally known as nns::cluster, but as development progressed, it was clear that it wasn't interacting with any of the other facilities in NNS. [vset CATEGORY nameserv] [include ../doctools2base/include/feedback.inc] [manpage_end] |
Changes to modules/udpcluster/udpcluster.tcl.
1 2 3 4 5 6 7 | # -*- tcl -*- # ### ### ### ######### ######### ######### ## Name Service - Cluster # ### ### ### ######### ######### ######### ## Requirements | | < < < | < | < < > > > > > > > > > > > > > > > > > > > > > > > > | < < | < < < | | | | | | > | | | | > | | < | < < | < < > > > | | < > > > | | < < | < < | | | < < < < < | < | < < < < < | > > > | > | > > | < | | | < < < < < < | | < | < < | < < > | > | > > | > > | | | | < < < | < | < < < | < < < | | > > > > > > > | > > > > > > > > > | > > > > > > | > > | | > > > | > | > | < > | < > > | > > > > > | < > > > > > > | > > | | > | > | > > | > | | > | > | | > > > > | > | > > > > > > > > | > > > | < > > > > > > > | > > > > > | | > | | | | | | > | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 | # -*- tcl -*- # ### ### ### ######### ######### ######### ## Name Service - Cluster # ### ### ### ######### ######### ######### ## Requirements package require Tcl 8.6 package require uuid package require cron 2.0 package require nettool 0.5.3 package require udp package provide udpcluster 0.4 ### # This package implements an ad/hoc zero configuration # like network of comm (and other) network connections ### ::namespace eval ::cluster {} ::namespace eval ::cluster::directory {} proc ::cluster::directory::alloc_port {{port 50000}} { if {$port in {{} 0 -1}} { set port 50000 } set conflict 1 while {$conflict} { set conflict 0 set port [::nettool::find_port $port] foreach {url info} [search *@[::cluster::macid]] { if {[dict exists $info port] && [dict get $info port] eq $port} { incr port set conflict 1 break } } if {$port >= 65336 } { error "All ports consumed" } } ::nettool::claim_port $port return $port } proc ::cluster::directory::broadcast {args} { if {$::cluster::config(debug)} { puts [list $::cluster::local_pid SEND $args] } foreach net [broadcast_list] { if {$::cluster::config(debug)} { puts [list BROADCAST -> $net $args] } set s [udp_open] udp_conf $s $net $::cluster::discovery_port udp_conf $s -broadcast 1 chan puts -nonewline $s [list $::cluster::local_pid {*}$args] chan flush $s chan close $s } } proc ::cluster::directory::broadcast_list {} { variable broadcast_timestamp variable broadcast_list if {([clock seconds]-$broadcast_timestamp) > 900} { set broadcast_list [::nettool::broadcast_list] } return $broadcast_list } proc ::cluster::_Cleanup {} { ### # Clean out closed and expired entries # Performed immediately before searches # and heartbeats ### foreach {item info} [array get ::cluster::local_data] { set remove 0 if {[dict exists $info closed] && [dict get $info closed]} { set remove 1 } if {$remove} { unset ::cluster::local_data($item) } } set ttl $::cluster::config(discovery_ttl) set now [clock seconds] foreach {item info} [array get ::cluster::directory::ptpdata] { set remove 0 if {[dict exists $info closed] && [dict get $info closed]} { set remove 1 } if {[dict exists $info updated] && ($now - [dict get $info updated])>$ttl} { set remove 1 } if {$remove} { unset ::cluster::directory::ptpdata($item) } } foreach {item info} [array get ::cluster::directory::directory_data] { set remove 0 if {[dict exists $info closed] && [dict get $info closed]} { set remove 1 } if {$remove} { unset ::cluster::directory::directory_data($item) } } } proc ::cluster::directory::_Heartbeat {} { variable directory_data foreach {url info} [array get directory_data] { broadcast ~SERVICE $url $info } } proc ::cluster::directory::ipaddr macid { if {$macid eq [::cluster::self]} { return 127.0.0.1 } foreach {servname dat} [search [::cluster::cname *@$macid]] { if {[dict exists $dat ipaddr]} { return [dict get $dat ipaddr] } } return [ping *@$macid] } proc ::cluster::directory::ping {rawname {timeout -1}} { variable ptpdata set rcpt [::cluster::cname $rawname] set starttime [clock seconds] set macid [lindex [split $rcpt @] 1] if {$macid eq $::cluster::local_macid} { return 127.0.0.1 } set ::cluster::ping_recv($rcpt) 0 broadcast PING $rcpt ::cron::sleep 1 if {$timeout <= 0} { set timeout $::cluster::config(ping_timeout) } while 1 { if {$::cluster::ping_recv($rcpt)} break if {([clock seconds] - $starttime) > $timeout} { error "Could not locate $rcpt on the network" } broadcast PING $rcpt ::cron::sleep $::cluster::config(ping_sleep) } if {[::info exists ptpdata($rcpt)]} { return [dict getnull $ptpdata($rcpt) ipaddr] } } proc ::cluster::directory::port_busy port { return [::nettool::port_busy $port] } proc ::cluster::directory::pid {} { return $::cluster::local_pid } proc ::cluster::directory::resolve {rawname} { variable ptpdata variable directory_data set self [::cluster::macid] set rcpt [::cluster::cname $rawname] set ipaddr {} if {[::info exists directory_data($rcpt)]} { set port [dict getnull $directory_data($rcpt) port] return [list $port 127.0.0.1] } if {[::info exists ptpdata($rcpt)]} { # Try Pull the info from cache set ipaddr [dict get $ptpdata($rcpt) ipaddr] set port [dict get $ptpdata($rcpt) port] return [list $port $ipaddr] } ping $rcpt 1 if {![::info exists ptpdata($rcpt)]} { return {} } return [list [dict get $ptpdata($rcpt) port] [dict get $ptpdata($rcpt) ipaddr]] } proc ::cluster::directory::directory_data {} { variable directory_data return [array get directory_data] } proc ::cluster::directory::ptp_data {} { variable ptpdata return [array get ptpdata] } proc ::cluster::directory::search pattern { ::cluster::_Cleanup variable directory_data variable ptpdata set result {} foreach {service dat} [array get ptpdata $pattern] { foreach {field value} $dat { dict set result $service $field $value } } foreach {service dat} [array get directory_data $pattern] { foreach {field value} $dat { dict set result $service $field $value dict set result $service ipaddr 127.0.0.1 } } return $result } proc ::cluster::directory::search_directory pattern { ::cluster::_Cleanup variable directory_data set result {} foreach {service dat} [array get directory_data $pattern] { foreach {field value} $dat { dict set result $service $field $value dict set result $service ipaddr 127.0.0.1 } } return $result } proc ::cluster::directory::service_publish {url infodict} { variable directory_data set directory_data($url) [dict merge $infodict {ipaddr 127.0.0.1}] broadcast +SERVICE $url $infodict } proc ::cluster::directory::service_update {url infodict} { variable directory_data set directory_data($url) [dict merge $infodict {ipaddr 127.0.0.1}] broadcast ~SERVICE $url $infodict } proc ::cluster::directory::service_unpublish {url infodict} { variable directory_data set directory_data($url) [dict merge $infodict {closed 1}] broadcast -SERVICE $url $infodict } proc ::cluster::directory::TCPAccept {sock host port} { chan configure $sock -translation {crlf crlf} -buffering line -blocking 1 set packet [chan gets $sock] if {![string is ascii $packet]} return if {![::info complete $packet]} return try { set result [::cluster::directory::[lindex $packet 0] {*}[lrange $packet 1 end]] puts $sock [list $result {}] } on error {err errdat} { puts $sock [list $err $errdat] } finally { chan flush $sock chan close $sock } } ### # topic: 2a33c825920162b0791e2cdae62e6164 ### proc ::cluster::directory::UDPPacket sock { variable ptpdata set pid [pid] set packet [string trim [read $sock]] set peer [fconfigure $sock -peer] if {![string is ascii $packet]} return if {![::info complete $packet]} return |
250 251 252 253 254 255 256 | } dict set result closed 1 if {[dict exists $result pid] && [dict get $result pid] eq [pid] } { # Ignore attempts to overwrite locally managed services from the network return } set ptpdata($serviceurl) $result | < < < < | | | | 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 | } dict set result closed 1 if {[dict exists $result pid] && [dict get $result pid] eq [pid] } { # Ignore attempts to overwrite locally managed services from the network return } set ptpdata($serviceurl) $result } PONG - ~SERVICE { set ::cluster::recv_message 1 if {[::info exists ptpdata($serviceurl)]} { set ptpinfo $ptpdata($serviceurl) } else { set ptpinfo {} } set delta {} foreach {field value} $serviceinfo { if {![dict exists $ptpinfo $field] || [dict get $ptpinfo $field] ne $value} { dict set ptpdata($serviceurl) $field $value dict set delta $field $value } } dict set ptpdata($serviceurl) closed 0 } +SERVICE { set ::cluster::recv_message 1 # Code to register the presence of a service set ptpdata($serviceurl) $serviceinfo dict set ptpdata($serviceurl) closed 0 } LOG { #::cluster::Service_Log $serviceurl $serviceinfo } PING { foreach {url info} [search_directory $serviceurl] { broadcast PONG $url $info } } } } proc ::cluster::directory::UDPPortInfo {serviceurl msgtype newinfo} { variable ptpdata # We only care about port changes on the local machine if {[dict exists $newinfo macid]} { set macid [dict get $newinfo macid] if {$macid ne [::cluster::self]} { return } |
333 334 335 336 337 338 339 340 341 | } if {$newport ne {}} { ::nettool::claim_port $newport } } } } proc ::cluster::ping {rawname {timeout -1}} { | > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > < < < | < < < < < < < < < < < < < < < < < | | | > > > > | | > | < | > > > > | | < < < < < < < < < < < < < < < < < < < < < < < < < < | | < < < < < < | < < < < < < < < < | < | | < < < < < < < < < < | < < < < < < < < < < < < < < < < < | | < < < < < < < > | 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 | } if {$newport ne {}} { ::nettool::claim_port $newport } } } } ### # topic: 963e24601d0dc61580c9727a74cdba67 ### proc ::cluster::cname rawname { # Convert rawname to a canonical name if {[string first @ $rawname] < 0 } { return $rawname } lassign [split $rawname @] service host if {$host eq {}} { set host * } if {$host in {local localhost}} { set host [::cluster::self] } return $service@$host } proc ::cluster::directory {method args} { variable directory_pid variable local_pid if {$directory_pid eq $local_pid} { return [::cluster::directory::$method {*}$args] } variable directory_port if {[catch {socket localhost $directory_port} sock]} { Promote_To_Directory return [::cluster::directory::$method {*}$args] } # We are not acting as the directory, query who is chan flush $sock if {[::info coroutine] ne {}} { chan configure $sock -translation crlf -buffering line -blocking 0 chan puts $sock [list $method {*}$args] chan event $sock readable [::info coroutine] yield chan event $sock readable {} } else { chan configure $sock -translation crlf -buffering line -blocking 1 chan puts $sock [list $method {*}$args] update } set reply {} while {[chan gets $sock line]>0} { append reply \n $line if {[::info complete $reply]} break } lassign $reply result errdat catch {chan close $sock} if {[llength $errdat]==0} { return $result } return $result {*}errdat } ### # topic: 3f5f9e197cc9666dd7953d97fef34019 ### proc ::cluster::ipaddr macid { # Convert rawname to a canonical name if {$macid eq [::cluster::self]} { return 127.0.0.1 } return [directory ipaddr $macid] } ### # Promote this process to the local directory ### proc ::cluster::Promote_To_Directory {} { set ::cluster::directory_pid $::cluster::local_pid if {$::cluster::config(debug)} { puts [list $::cluster::local_pid Promote_To_Directory] } variable broadcast_sock variable discovery_group variable discovery_port # Accept local directory traffic set ::cluster::directory_sock [socket -server ::cluster::directory::TCPAccept $::cluster::directory_port] # Listen for broadcasts from the subnet set broadcast_sock [udp_open $discovery_port reuse] fconfigure $broadcast_sock -buffering none -blocking 0 chan event $broadcast_sock readable [list [namespace current]::directory::UDPPacket $broadcast_sock] } proc ::cluster::sleep args { ::cron::sleep {*}$args } proc ::cluster::ping {rawname {timeout -1}} { return [directory ping $rawname $timeout] } proc ::cluster::publish {url infodict} { variable local_data dict set infodict macid [macid] dict set infodict pid [pid] set local_data($url) [dict merge $infodict {ipaddr 127.0.0.1}] directory service_publish $url $infodict } ### # Empty implementation. Replace to have a task run every # heartbeat ### proc ::cluster::event_hook {} {} proc ::cluster::heartbeat {} { variable config _Cleanup ### # Broadcast the status of our local services ### variable local_data foreach {url info} [array get local_data] { directory service_update $url $info } if {$::cluster::local_pid eq $::cluster::directory_pid} { ::cluster::directory::_Heartbeat } ### # Trigger any cluster events that haven't fired off ### foreach {eventid info} [array get ::cluster::events] { if {$info eq "-1"} { unset ::cluster::events($eventid) } else { lassign $info seconds ms if {$seconds < $now} { set ::cluster::events($eventid) -1 } } } event_hook } proc ::cluster::info url { variable local_data return [array get local_data $url] } proc ::cluster::unpublish {url infodict} { variable local_data foreach {field value} $infodict { dict set local_data($url) $field $value } set info [lindex [array get local_data $url] 1] directory service_unpublish $url $info dict set local_data($url) closed 1 } proc ::cluster::configure {url infodict {send 1}} { variable local_data if {![::info exists local_data($url)]} return dict set local_data($url) closed 0 foreach {field value} $infodict { dict set local_data($url) $field $value } if {$send} { directory service_update $url $local_data($url) } } proc ::cluster::get_free_port {{startport 50000}} { return [directory alloc_port $startport] } proc ::cluster::log args { broadcast LOG {*}$args } ### # topic: 2c04e58c7f93798f9a5ed31a7f5779ab ### proc ::cluster::resolve {rawname} { set uri [cname $rawname] set data [search $uri] if {[dict size $data]==0} { return {} #error "Cannot Resolve $rawname" } return [list [dict get [lindex $data 1] port] [dict get [lindex $data 1] ipaddr]] } ### # topic: 6c7a0a3a8cb2a7ae98ff0dba960c37a7 ### proc ::cluster::pid {} { variable local_pid return $local_pid } proc ::cluster::macid {} { variable local_macid return $local_macid } proc ::cluster::self {} { variable local_macid return $local_macid } ### # topic: c8475e832c912e962f238c61580b669e ### proc ::cluster::search pattern { ::cluster::_Cleanup set result [directory search $pattern] variable local_data foreach {service dat} [array get local_data $pattern] { foreach {field value} $dat { dict set result $service $field $value dict set result $service ipaddr 127.0.0.1 } } return $result } proc ::cluster::is_local pattern { variable local_data |
572 573 574 575 576 577 578 | foreach {field value} $dat { dict set result $service $field $value } } return $result } | < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < < | 639 640 641 642 643 644 645 646 647 648 649 650 651 652 | foreach {field value} $dat { dict set result $service $field $value } } return $result } ### # topic: d3e48e31cc4baf81395179f4097fee1b ### namespace eval ::cluster { # Number of seconds to "remember" data variable config array set config { |
643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 | variable cache {} variable broadcast_sock {} variable directory_sock {} variable cache_maxage 500 variable discovery_port 38573 variable directory_port 38574 variable directory_pid {} # Currently an unassigned group in the # Local Network Control Block (224.0.0/24) # See: RFC3692 and http://www.iana.org variable discovery_group 224.0.0.200 variable local_port {} variable local_macid [lindex [lsort [::nettool::mac_list]] 0] variable local_pid [::uuid::uuid generate] } | > > > > | | > > | 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 | variable cache {} variable broadcast_sock {} variable directory_sock {} variable cache_maxage 500 variable discovery_port 38573 variable directory_port 38574 variable broadcast_port {} variable directory_pid {} # Currently an unassigned group in the # Local Network Control Block (224.0.0/24) # See: RFC3692 and http://www.iana.org variable discovery_group 224.0.0.200 variable local_port {} variable local_macid [lindex [lsort [::nettool::mac_list]] 0] variable local_pid [::uuid::uuid generate] } namespace eval ::cluster::directory { variable broadcast_list {} variable broadcast_timestamp 0 } ::cron::every cluster_heartbeat 30 ::cluster::heartbeat |
Changes to modules/udpcluster/udpcluster.test.
15 16 17 18 19 20 21 | testsNeedTcl 8.6 ; # See coroutine (required by cron) testsNeedTcltest 1.0 testsNeed udp set ::WHOAMI Main support { | < | | > > > < | | 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | testsNeedTcl 8.6 ; # See coroutine (required by cron) testsNeedTcltest 1.0 testsNeed udp set ::WHOAMI Main support { use snit/snit2.tcl snit ;# Required by comm use comm/comm.tcl comm use interp/interp.tcl interp use dicttool/dicttool.tcl dicttool use dns/ip.tcl ip use nettool/nettool.tcl nettool use coroutine/coroutine.tcl coroutine ;# Required by cron use cron/cron.tcl cron use uuid/uuid.tcl uuid use log/logger.tcl logger use md5/md5x.tcl md5 } testing { useLocal udpcluster.tcl udpcluster } ### # Create a server in a seperate interp ### interp create server interp eval server [list set testutilsscript $testutilsscript] interp eval server { source $testutilsscript set ::WHOAMI Server package require tcltest testsNeedTcl 8.6 testsNeedTcltest 1.0 testsNeed udp support { use dicttool/dicttool.tcl dicttool use snit/snit2.tcl snit ;# Required by comm use comm/comm.tcl comm use dns/ip.tcl ip use nettool/nettool.tcl nettool use coroutine/coroutine.tcl coroutine ;# Required by cron |
66 67 68 69 70 71 72 | use udpcluster/udpcluster.tcl udpcluster } set ::cluster::local_pid SERVER #set ::cluster::config(debug) 1 ::cluster::publish nns@[::cluster::macid] {} update } | | | 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 | use udpcluster/udpcluster.tcl udpcluster } set ::cluster::local_pid SERVER #set ::cluster::config(debug) 1 ::cluster::publish nns@[::cluster::macid] {} update } #set ::cluster::config(debug) 1 set ::cluster::local_pid MAIN set macid [::cluster::macid] set myport [::nettool::allocate_port 10000] ::cluster::ping nns@$macid set data [::cluster::search *] |
117 118 119 120 121 122 123 | ::cluster::ping nns@$macid set data [::cluster::search foo@bar] test cluster-comm-2.4 {Modify a service} { dict get $data foo@bar color } {blue} | < > > > > > | | | 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 | ::cluster::ping nns@$macid set data [::cluster::search foo@bar] test cluster-comm-2.4 {Modify a service} { dict get $data foo@bar color } {blue} ### # Create another client in a seperate interp # # Removed 10/21/2019 by sdw. The seperate interp # was not working. Tests now run by passing data to the # server interp. Need to investigate further. ### interp create otherclient interp eval otherclient [list set testutilsscript $testutilsscript] interp eval otherclient { source $testutilsscript set ::WHOAMI Other package require tcltest testsNeedTcl 8.6 testsNeedTcltest 1.0 testsNeed udp support { use dicttool/dicttool.tcl dicttool use snit/snit2.tcl snit ;# Required by comm use comm/comm.tcl comm use dns/ip.tcl ip use nettool/nettool.tcl nettool use coroutine/coroutine.tcl coroutine ;# Required by cron |
160 161 162 163 164 165 166 | set myport [::nettool::allocate_port 10000] #set ::cluster::config(debug) 1 set url other@$macid ::comm::comm new $url -port $myport -local 0 -listen 1 ::cluster::publish $url [list port $myport protocol comm class comm] } | | | | > | > > | | 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 | set myport [::nettool::allocate_port 10000] #set ::cluster::config(debug) 1 set url other@$macid ::comm::comm new $url -port $myport -local 0 -listen 1 ::cluster::publish $url [list port $myport protocol comm class comm] } test cluster-comm-3.5 {Ping test new service} { ::cluster::ping other@$macid } {127.0.0.1} set data [::cluster::search *] test cluster-comm-3.0 {Publish service - NNS} { dict exists $data nns@[::cluster::macid] } {1} test cluster-comm-3.1 {Check that new service does exists} { dict exists $data foo@bar } {1} test cluster-comm-3.3 {Check that other service does exists} { dict exists $data other@[::cluster::macid] } {1} test cluster-comm-3.5 {Check that other service resolves} { llength [::cluster::resolve other@[::cluster::macid]] } {2} test cluster-comm-3.4 {Check that other service does exists} { set chan [::cluster::resolve other@[::cluster::macid]] ::comm::comm send $chan {set foo b} } {b} ### # Remove the phony service ### |
200 201 202 203 204 205 206 | dict exists $data foo@bar } {0} ### # Have a non-existant service fail ### test cluster-comm-5.0 {Service lookup failture} { | | | | | | < | 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 | dict exists $data foo@bar } {0} ### # Have a non-existant service fail ### test cluster-comm-5.0 {Service lookup failture} { llength [cluster::resolve foo@bat] } 0 #puts $pat ### # Test port allocation ### set port [interp eval server { ::cluster::get_free_port 58080 }] # Check that the port is allocated in this thread as well test cluster-port-alloc-1.0 {Port allocation} { ::cluster::directory port_busy $port } 1 set otherport [interp eval server { ::cluster::get_free_port 58080 }] #puts [list GET FREE PORT $port $otherport [::cluster::get_free_port 58080]] test cluster-port-alloc-2.0 {Port allocation} { expr {$otherport != $port} } 1 testsuiteCleanup return |
Changes to modules/uuid/pkgIndex.tcl.
1 | if {![package vsatisfies [package provide Tcl] 8.5]} {return} | | | 1 2 | if {![package vsatisfies [package provide Tcl] 8.5]} {return} package ifneeded uuid 1.0.6 [list source [file join $dir uuid.tcl]] |
Changes to modules/uuid/uuid.tcl.
44 45 46 47 48 49 50 | lappend machinfo [array get ::tcl_platform] ### # If we have /dev/urandom just stream 128 bits from that ### if {[file exists /dev/urandom]} { set fin [open /dev/urandom r] | | | 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 | lappend machinfo [array get ::tcl_platform] ### # If we have /dev/urandom just stream 128 bits from that ### if {[file exists /dev/urandom]} { set fin [open /dev/urandom r] set machinfo [binary encode base64 [read $fin 128]] close $fin } elseif {[catch {package require nettool}]} { # More spatial information -- better than hostname. # bug 1150714: opening a server socket may raise a warning messagebox # with WinXP firewall, using ipconfig will return all IP addresses # including ipv6 ones if available. ipconfig is OK on win98+ if {[string equal $::tcl_platform(platform) "windows"]} { |
232 233 234 235 236 237 238 | variable e {} foreach e {critcl} { if {[LoadAccelerator $e]} break } unset e } | | | 232 233 234 235 236 237 238 239 240 241 242 243 244 245 | variable e {} foreach e {critcl} { if {[LoadAccelerator $e]} break } unset e } package provide uuid 1.0.6 # ------------------------------------------------------------------------- # Local variables: # mode: tcl # indent-tabs-mode: nil # End: |