Index: modules/clay/clay.test ================================================================== --- modules/clay/clay.test +++ modules/clay/clay.test @@ -3055,13 +3055,13 @@ 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} -body { +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} -returnCodes error +} -result {shape is required} ### # Leave off a value that has a default # note: Method had special handling for color, but not flavor ### @@ -3105,13 +3105,13 @@ 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} -body { +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} -returnCodes error +} -result {shape is required} ### # Leave off a value that has a default # note: Method had special handling for color, but not flavor ### @@ -6196,13 +6196,13 @@ 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} -body { +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} -returnCodes error +} -result {shape is required} ### # Leave off a value that has a default # note: Method had special handling for color, but not flavor ### @@ -6246,13 +6246,13 @@ 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} -body { +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} -returnCodes error +} -result {shape is required} ### # Leave off a value that has a default # note: Method had special handling for color, but not flavor ### Index: modules/httpd/build/cgi.tcl ================================================================== --- modules/httpd/build/cgi.tcl +++ modules/httpd/build/cgi.tcl @@ -83,12 +83,12 @@ method ProxyRequest {chana chanb} { chan event $chanb writable {} my log ProxyRequest {} set length [my request get CONTENT_LENGTH] if {$length} { - chan configure $chana -translation binary -blocking 0 -buffering full -buffersize 4096 - chan configure $chanb -translation binary -blocking 0 -buffering full -buffersize 4096 + 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 { @@ -115,17 +115,17 @@ # 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 -translation {auto crlf} -blocking 0 -buffering full -buffersize 4096 + 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 -translation binary -blocking 0 -buffering full -buffersize 4096 - chan configure $chanb -translation binary -blocking 0 -buffering full -buffersize 4096 + 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 } ### Index: modules/httpd/build/core.tcl ================================================================== --- modules/httpd/build/core.tcl +++ modules/httpd/build/core.tcl @@ -139,11 +139,11 @@ # 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 -translation {auto crlf} -blocking 0 -buffering line + 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} { Index: modules/httpd/build/dispatch.tcl ================================================================== --- modules/httpd/build/dispatch.tcl +++ modules/httpd/build/dispatch.tcl @@ -28,11 +28,11 @@ ::clay::define ::httpd::content.cache { method Dispatch {} { my variable chan my wait writable $chan - chan configure $chan -translation {binary binary} + chan configure $chan -encoding binary -translation {binary binary} chan puts -nonewline $chan [my clay get cache/ data] } } ::clay::define ::httpd::content.template { Index: modules/httpd/build/file.tcl ================================================================== --- modules/httpd/build/file.tcl +++ modules/httpd/build/file.tcl @@ -60,12 +60,13 @@ my puts "" my puts [my html_footer] } method content {} { - my variable reply_file + 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 } @@ -97,33 +98,37 @@ } 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} @@ -134,10 +139,11 @@ 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 { @@ -152,10 +158,11 @@ } 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} @@ -167,25 +174,27 @@ .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 + my variable reply_body reply_file reply_chan chan is_binary try { my reset # Invoke the URL implementation. my content } on error {err errdat} { @@ -200,11 +209,11 @@ # anyway #my wait writable $chan if {![info exists reply_file]} { tailcall my DoOutput } - chan configure $chan -translation {binary binary} + 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] @@ -215,15 +224,19 @@ my ChannelRegister $reply_chan my log SendReply [list length $size] ### # Output the file contents. With no -size flag, channel will copy until EOF ### - chan configure $reply_chan -translation {binary binary} -buffersize 4096 -buffering full -blocking 0 - if {$size < 40960} { + 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 } } } } Index: modules/httpd/build/plugin.tcl ================================================================== --- modules/httpd/build/plugin.tcl +++ modules/httpd/build/plugin.tcl @@ -153,11 +153,11 @@ method Connect_Local {uuid sock args} { chan event $sock readable {} chan configure $sock \ -blocking 0 \ - -translation {auto crlf} \ + -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 Index: modules/httpd/build/proxy.tcl ================================================================== --- modules/httpd/build/proxy.tcl +++ modules/httpd/build/proxy.tcl @@ -108,12 +108,12 @@ 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 -translation binary -blocking 0 -buffering full -buffersize 4096 - chan configure $chanb -translation binary -blocking 0 -buffering full -buffersize 4096 + 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 { @@ -134,17 +134,17 @@ # 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 -translation {auto crlf} -blocking 0 -buffering full -buffersize 4096 + 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 -translation binary -blocking 0 -buffering full -buffersize 4096 - chan configure $chanb -translation binary -blocking 0 -buffering full -buffersize 4096 + 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 Index: modules/httpd/build/reply.tcl ================================================================== --- modules/httpd/build/reply.tcl +++ modules/httpd/build/reply.tcl @@ -206,11 +206,11 @@ try { my clay refcount_incr set chan $newsock my ChannelRegister $chan chan event $chan readable {} - chan configure $chan -translation {auto crlf} -buffering line + 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 {} } @@ -344,24 +344,26 @@ 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 -translation {binary binary} + chan configure $chan -encoding utf-8 -translation {auto crlf} ### # Return dynamic content ### set length [string length $reply_body] - set result {} if {${length} > 0} { - my reply set Content-Length [string length $reply_body] - append result [my reply output] \n - append result $reply_body + # 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 { - append result [my reply output] + chan puts $chan [my reply output] } - chan puts -nonewline $chan $result + catch {chan flush $chan} my log HttpAccess {} } } ### @@ -435,11 +437,11 @@ return $postdata } set postdata {} if {[my request get REQUEST_METHOD] in {"POST" "PUSH"}} { my variable chan - chan configure $chan -translation binary -blocking 0 -buffering full -buffersize 4096 + chan configure $chan -encoding binary -translation binary -blocking 0 -buffering full -buffersize 4096 set postdata [::coroutine::util::read $chan $length] } return $postdata } Index: modules/httpd/build/scgi.tcl ================================================================== --- modules/httpd/build/scgi.tcl +++ modules/httpd/build/scgi.tcl @@ -38,12 +38,12 @@ } method ProxyRequest {chana chanb} { chan event $chanb writable {} my log ProxyRequest {} - chan configure $chana -translation binary -blocking 0 -buffering full -buffersize 4096 - chan configure $chanb -translation binary -blocking 0 -buffering full -buffersize 4096 + 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] @@ -53,12 +53,12 @@ } 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 -translation binary -blocking 0 -buffering full -buffersize 4096 - chan configure $chanb -translation binary -blocking 0 -buffering full -buffersize 4096 + 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] @@ -79,17 +79,17 @@ # 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 -translation {auto crlf} -blocking 0 -buffering full -buffersize 4096 + 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 -translation binary -blocking 0 -buffering full -buffersize 4096 - chan configure $chanb -translation binary -blocking 0 -buffering full -buffersize 4096 + 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 } } ### @@ -109,11 +109,11 @@ method Connect {uuid sock ip} { yield [info coroutine] chan event $sock readable {} chan configure $sock \ -blocking 1 \ - -translation {binary binary} \ + -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 ":" @@ -132,11 +132,11 @@ 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 -translation {auto crlf} -blocking 0 -buffersize 4096 -buffering full + 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] Index: modules/httpd/build/server.tcl ================================================================== --- modules/httpd/build/server.tcl +++ modules/httpd/build/server.tcl @@ -117,11 +117,11 @@ ::clay::cleanup yield [info coroutine] chan event $sock readable {} chan configure $sock \ -blocking 0 \ - -translation {auto crlf} \ + -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] Index: modules/httpd/httpd.tcl ================================================================== --- modules/httpd/httpd.tcl +++ modules/httpd/httpd.tcl @@ -129,11 +129,11 @@ # 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 -translation {auto crlf} -blocking 0 -buffering line + 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} { @@ -373,11 +373,11 @@ try { my clay refcount_incr set chan $newsock my ChannelRegister $chan chan event $chan readable {} - chan configure $chan -translation {auto crlf} -buffering line + 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 {} } @@ -488,24 +488,26 @@ 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 -translation {binary binary} + chan configure $chan -encoding utf-8 -translation {auto crlf} ### # Return dynamic content ### set length [string length $reply_body] - set result {} if {${length} > 0} { - my reply set Content-Length [string length $reply_body] - append result [my reply output] \n - append result $reply_body + # 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 { - append result [my reply output] + chan puts $chan [my reply output] } - chan puts -nonewline $chan $result + catch {chan flush $chan} my log HttpAccess {} } } method FormData {} { my variable chan formdata @@ -566,11 +568,11 @@ return $postdata } set postdata {} if {[my request get REQUEST_METHOD] in {"POST" "PUSH"}} { my variable chan - chan configure $chan -translation binary -blocking 0 -buffering full -buffersize 4096 + 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 {} {} @@ -806,11 +808,11 @@ ::clay::cleanup yield [info coroutine] chan event $sock readable {} chan configure $sock \ -blocking 0 \ - -translation {auto crlf} \ + -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] @@ -1110,11 +1112,11 @@ } ::clay::define ::httpd::content.cache { method Dispatch {} { my variable chan my wait writable $chan - chan configure $chan -translation {binary binary} + chan configure $chan -encoding binary -translation {binary binary} chan puts -nonewline $chan [my clay get cache/ data] } } ::clay::define ::httpd::content.template { method content {} { @@ -1187,12 +1189,13 @@ } my puts "" my puts [my html_footer] } method content {} { - my variable reply_file + 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 } @@ -1224,33 +1227,37 @@ } 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} @@ -1261,10 +1268,11 @@ 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 { @@ -1279,10 +1287,11 @@ } 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} @@ -1294,24 +1303,26 @@ .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 + my variable reply_body reply_file reply_chan chan is_binary try { my reset # Invoke the URL implementation. my content } on error {err errdat} { @@ -1326,11 +1337,11 @@ # anyway #my wait writable $chan if {![info exists reply_file]} { tailcall my DoOutput } - chan configure $chan -translation {binary binary} + 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] @@ -1341,12 +1352,16 @@ my ChannelRegister $reply_chan my log SendReply [list length $size] ### # Output the file contents. With no -size flag, channel will copy until EOF ### - chan configure $reply_chan -translation {binary binary} -buffersize 4096 -buffering full -blocking 0 - if {$size < 40960} { + 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 } @@ -1461,12 +1476,12 @@ 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 -translation binary -blocking 0 -buffering full -buffersize 4096 - chan configure $chanb -translation binary -blocking 0 -buffering full -buffersize 4096 + 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 { @@ -1486,17 +1501,17 @@ # 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 -translation {auto crlf} -blocking 0 -buffering full -buffersize 4096 + 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 -translation binary -blocking 0 -buffering full -buffersize 4096 - chan configure $chanb -translation binary -blocking 0 -buffering full -buffersize 4096 + 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]} { @@ -1604,12 +1619,12 @@ method ProxyRequest {chana chanb} { chan event $chanb writable {} my log ProxyRequest {} set length [my request get CONTENT_LENGTH] if {$length} { - chan configure $chana -translation binary -blocking 0 -buffering full -buffersize 4096 - chan configure $chanb -translation binary -blocking 0 -buffering full -buffersize 4096 + 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 { @@ -1634,17 +1649,17 @@ # 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 -translation {auto crlf} -blocking 0 -buffering full -buffersize 4096 + 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 -translation binary -blocking 0 -buffering full -buffersize 4096 - chan configure $chanb -translation binary -blocking 0 -buffering full -buffersize 4096 + 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} @@ -1689,12 +1704,12 @@ return [::socket $scgihost $scgiport] } method ProxyRequest {chana chanb} { chan event $chanb writable {} my log ProxyRequest {} - chan configure $chana -translation binary -blocking 0 -buffering full -buffersize 4096 - chan configure $chanb -translation binary -blocking 0 -buffering full -buffersize 4096 + 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] @@ -1704,12 +1719,12 @@ } 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 -translation binary -blocking 0 -buffering full -buffersize 4096 - chan configure $chanb -translation binary -blocking 0 -buffering full -buffersize 4096 + 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] @@ -1729,17 +1744,17 @@ # 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 -translation {auto crlf} -blocking 0 -buffering full -buffersize 4096 + 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 -translation binary -blocking 0 -buffering full -buffersize 4096 - chan configure $chanb -translation binary -blocking 0 -buffering full -buffersize 4096 + 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 @@ -1752,11 +1767,11 @@ method Connect {uuid sock ip} { yield [info coroutine] chan event $sock readable {} chan configure $sock \ -blocking 1 \ - -translation {binary binary} \ + -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 ":" @@ -1775,11 +1790,11 @@ 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 -translation {auto crlf} -blocking 0 -buffersize 4096 -buffering full + 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] @@ -1930,11 +1945,11 @@ method Connect_Local {uuid sock args} { chan event $sock readable {} chan configure $sock \ -blocking 0 \ - -translation {auto crlf} \ + -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 Index: modules/nettool/build/available_ports.tcl ================================================================== --- modules/nettool/build/available_ports.tcl +++ modules/nettool/build/available_ports.tcl @@ -753,7 +753,8 @@ 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 65535 +lappend ::nettool::blocks 49001 50999 +lappend ::nettool::blocks 51009 65535 Index: modules/nettool/build/build.tcl ================================================================== --- modules/nettool/build/build.tcl +++ modules/nettool/build/build.tcl @@ -1,9 +1,9 @@ set srcdir [file dirname [file normalize [file join [pwd] [info script]]]] set moddir [file dirname $srcdir] -set version 0.5.2 +set version 0.5.4 set tclversion 8.5 set module [file tail $moddir] proc ::ladd {varname args} { upvar 1 $varname var @@ -45,12 +45,13 @@ } for {set x 0} {$x < 65536} {incr x} { set ::available_port($x) {} } -package require dicttool -package require csv +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 Index: modules/nettool/build/core.tcl ================================================================== --- modules/nettool/build/core.tcl +++ modules/nettool/build/core.tcl @@ -4,50 +4,24 @@ # @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 - -if {[info commands ::ladd] eq {}} { - proc ::ladd {varname args} { - upvar 1 $varname var - if ![info exists var] { - set var {} - } - foreach item $args { - if {$item in $var} continue - lappend var $item - } - return $var - } -} -if {[info commands ::get] eq {}} { - proc ::get varname { - upvar 1 $varname var - if {[info exists var]} { - return [set var] - } - return {} - } -} -if {[info commands ::cat] eq {}} { - proc ::cat filename { - set fin [open $filename r] - set dat [read $fin] - close $fin - return $dat - } -} - 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 Index: modules/nettool/build/generic.tcl ================================================================== --- modules/nettool/build/generic.tcl +++ modules/nettool/build/generic.tcl @@ -9,11 +9,11 @@ ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { - return 127.0.0.1 + return {} } ### # topic: 15d9bc96ec6ce31d4c8f99a425a9c02c # description: Return Processor utilization Index: modules/nettool/build/locateport.tcl ================================================================== --- modules/nettool/build/locateport.tcl +++ modules/nettool/build/locateport.tcl @@ -10,14 +10,18 @@ set i $start } else { set i $startingport } for {} {$i <= $end} {incr i} { - if {[string is true -strict [get ::nettool::used_ports($i)]]} continue - if {[catch {socket -server NOOP $i} chan]} continue + 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 - set ::nettool::used_ports($i) 1 + claim_port $i return $i } } error "Could not locate a port" } @@ -24,11 +28,15 @@ ### # topic: 3286fdbd0a3fdebbb26414475754bcf3dea67b0f ### proc ::nettool::claim_port {port {protocol tcp}} { - set ::nettool::used_ports($port) 1 + 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 ### @@ -39,37 +47,116 @@ set i $start } else { set i $startingport } for {} {$i <= $end} {incr i} { - if {[string is true -strict [get ::nettool::used_ports($i)]]} continue + 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 {[string is true -strict [get ::nettool::used_ports($port)]]} { + 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}} { - set ::nettool::used_ports($port) 0 + 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 {} +} Index: modules/nettool/build/platform_unix_linux.tcl ================================================================== --- modules/nettool/build/platform_unix_linux.tcl +++ modules/nettool/build/platform_unix_linux.tcl @@ -4,11 +4,10 @@ # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} - lappend result 127.0.0.1 foreach {iface info} [dump] { if {[dict exists $info ipv4 Bcast:]} { lappend result [dict get $info ipv4 Bcast:] } } Index: modules/nettool/build/platform_unix_macosx.tcl ================================================================== --- modules/nettool/build/platform_unix_macosx.tcl +++ modules/nettool/build/platform_unix_macosx.tcl @@ -21,11 +21,10 @@ # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} - lappend result 127.0.0.1 foreach {iface info} [dump] { if {[dict exists $info broadcast:]} { lappend result [dict get $info broadcast:] } } Index: modules/nettool/build/platform_windows.tcl ================================================================== --- modules/nettool/build/platform_windows.tcl +++ modules/nettool/build/platform_windows.tcl @@ -15,11 +15,10 @@ # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} - lappend result 127.0.0.1 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] Index: modules/nettool/build/service-names-port-numbers.csv ================================================================== --- modules/nettool/build/service-names-port-numbers.csv +++ modules/nettool/build/service-names-port-numbers.csv @@ -1,6 +1,6 @@ -Service Name,Port Number,Transport Protocol,Description,Assignee,Contact,Registration Date,Modification Date,Reference,Service Code,Known Unauthorized Uses,Assignment Notes +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,,,,,,,, @@ -42,22 +42,22 @@ 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 [Control],[Jon_Postel],[Jon_Postel],,,[RFC959],,,Defined TXT keys: u= p= path= -ftp,21,udp,File Transfer [Control],[Jon_Postel],[Jon_Postel],,,[RFC959],,,Defined TXT keys: u= p= path= +ftp,21,tcp,File Transfer Protocol [Control],[Jon_Postel],[Jon_Postel],,,[RFC959],,,Defined TXT keys: u= p= path= +ftp,21,udp,File Transfer Protocol [Control],[Jon_Postel],[Jon_Postel],,,[RFC959],,,Defined TXT keys: u= p= path= ftp,21,sctp,FTP,[Randall_Stewart],[Randall_Stewart],,,[RFC4960],,,Defined TXT keys: u= p= path= ssh,22,tcp,The Secure Shell (SSH) Protocol,,,,,[RFC4251],,,Defined TXT keys: u= p= ssh,22,udp,The Secure Shell (SSH) Protocol,,,,,[RFC4251],,,Defined TXT keys: u= p= ssh,22,sctp,SSH,[Randall_Stewart],[Randall_Stewart],,,[RFC4960],,,Defined TXT keys: u= p= telnet,23,tcp,Telnet,[Jon_Postel],[Jon_Postel],,,[RFC854],,,Defined TXT keys: u= p= telnet,23,udp,Telnet,[Jon_Postel],[Jon_Postel],,,[RFC854],,,Defined TXT keys: u= p= ,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,[Jon_Postel],[Jon_Postel],,,,,, -smtp,25,udp,Simple Mail Transfer,[Jon_Postel],[Jon_Postel],,,,,, +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,,,,,,,, @@ -98,12 +98,12 @@ 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],,,,,, -ni-ftp,47,tcp,NI FTP,[Steve_Kille],[Steve_Kille],,,,,, -ni-ftp,47,udp,NI FTP,[Steve_Kille],[Steve_Kille],,,,,, +,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],,,,,, @@ -125,34 +125,42 @@ 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,,,,,,,, -ni-mail,61,tcp,NI MAIL,[Steve_Kille],[Steve_Kille],,,,,, -ni-mail,61,udp,NI MAIL,[Steve_Kille],[Steve_Kille],,,,,, +,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 @@ -302,12 +310,12 @@ 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,[Phil_Lapsley],[Phil_Lapsley],,,,,, -nntp,119,udp,Network News Transfer Protocol,[Phil_Lapsley],[Phil_Lapsley],,,,,, +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],,,,,, @@ -358,12 +366,12 @@ 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,[Mark_Crispin_2],[Mark_Crispin_2],,,,,, -imap,143,udp,Internet Message Access Protocol,[Mark_Crispin_2],[Mark_Crispin_2],,,,,, +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,,,,,,,, @@ -410,22 +418,26 @@ 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],,2013-06-17,,,, -send,169,udp,SEND,[William_Oldwin],[William_Oldwin],,2013-06-17,,,, +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],,,,,, @@ -499,28 +511,36 @@ 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,[Dan_Bernstein],[Dan_Bernstein],,,,,, -qmtp,209,udp,The Quick Mail Transfer Protocol,[Dan_Bernstein],[Dan_Bernstein],,,,,, +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],,,,,, @@ -548,26 +568,30 @@ 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],[Herb_Sutter],,,,,, -direct,242,udp,Direct,[Herb_Sutter],[Herb_Sutter],,,,,, +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],,,,,, @@ -704,15 +728,19 @@ 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],,,,,, @@ -842,25 +870,33 @@ 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,,,,,,,, @@ -867,12 +903,12 @@ 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,NNSP,[Rob_Robertson],[Rob_Robertson],,,,,, -nnsp,433,udp,NNSP,[Rob_Robertson],[Rob_Robertson],,,,,, +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],,,,,, @@ -886,21 +922,25 @@ 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,[Kipp_E_B_Hickman],[Kipp_E_B_Hickman],,,,,, -https,443,udp,http protocol over TLS/SSL,[Kipp_E_B_Hickman],[Kipp_E_B_Hickman],,,,,, +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],,,,,, @@ -940,11 +980,12 @@ 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 Rendesvous Directory for SSM,[Toerless_Eckert],[Toerless_Eckert],,,,,, +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],,,,,, @@ -1104,13 +1145,13 @@ 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,,,,,,,, -dhcpv6-server,547,tcp,DHCPv6 Server,[Jim_Bound],[Jim_Bound],,,,,, -dhcpv6-server,547,udp,DHCPv6 Server,[Jim_Bound],[Jim_Bound],,,,,, +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= p= path= afpovertcp,548,udp,AFP over TCP,[Leland_Wallace],[Leland_Wallace],,,,,,Defined TXT keys: u= p= 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],,, @@ -1137,12 +1178,12 @@ 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),[Kipp_E_B_Hickman_2],[Kipp_E_B_Hickman_2],,,,,, -nntps,563,udp,nntp protocol over TLS/SSL (was snntp),[Kipp_E_B_Hickman_2],[Kipp_E_B_Hickman_2],,,,,, +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,,,,,,,, @@ -1261,31 +1302,36 @@ 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,[Dan_Bernstein_2],[Dan_Bernstein_2],,,,,, -qmqp,628,udp,QMQP,[Dan_Bernstein_2],[Dan_Bernstein_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),[Carl_Uno_Manros],[Carl_Uno_Manros],,,,,,Defined TXT keys: See BonjourPrinting.pdf. -ipp,631,udp,IPP (Internet Printing Protocol),[Carl_Uno_Manros],[Carl_Uno_Manros],,,,,,Defined TXT keys: See BonjourPrinting.pdf. +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],,,,,, @@ -1312,11 +1358,11 @@ 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,[Bernard_Volz],[Bernard_Volz],,,,,, +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],,,,,, @@ -1399,12 +1445,12 @@ 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,Velazquez Application Transfer Protocol,[Velneo],[Velneo],,,,,, -vatp,690,udp,Velazquez Application Transfer Protocol,[Velneo],[Velneo],,,,,, +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],,,,,, @@ -1483,11 +1529,11 @@ 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-756,,Unassigned,,,,,,,, +,755-757,,Unassigned,,,,,,,, nlogin,758,tcp,,,,,,,,, nlogin,758,udp,,,,,,,,, con,759,tcp,,,,,,,,, con,759,udp,,,,,,,,, ns,760,tcp,,,,,,,,, @@ -1568,29 +1614,38 @@ ,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-859,,Unassigned,,,,,,,, +,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,,,,,[RFC4656],,, -owamp-control,861,udp,OWAMP-Control,,,,,[RFC4656],,, -twamp-control,862,tcp,Two-way Active Measurement Protocol (TWAMP) Control,,,,,[RFC5357],,, -twamp-control,862,udp,Two-way Active Measurement Protocol (TWAMP) Control,,,,,[RFC5357],,, +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],,,,,, @@ -1612,24 +1667,27 @@ 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-988,,Unassigned,,,,,,,, +,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],,,,,, -nas,991,udp,Netnews Administration System,[Vera_Heinau][Heiko_Schlichting],[Vera_Heinau][Heiko_Schlichting],,,,,, +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,imap4 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 protocol over TLS/SSL (was spop3),[Gordon_Mangione],[Gordon_Mangione],,,,,, +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,,,,,,,,, @@ -1639,12 +1697,15 @@ applix,999,udp,Applix ac,,,,,,,, puprouter,999,tcp,,,,,,,,, puprouter,999,udp,,,,,,,,, cadlock2,1000,tcp,,,,,,,,, cadlock2,1000,udp,,,,,,,,, -,1001-1009,,Unassigned,,,,,,,, +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],,, @@ -1672,12 +1733,12 @@ ,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,[Arnold_E_Mauer],[Arnold_E_Mauer],2003-04,,,,, -mxxrlogin,1035,udp,MX-XR RPC,[Arnold_E_Mauer],[Arnold_E_Mauer],2003-04,,,,, +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],,, @@ -1737,25 +1798,33 @@ 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],,,,,, @@ -1895,15 +1964,19 @@ 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,,,,, @@ -2081,12 +2154,12 @@ 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,[Mike_Courterier],[Mike_Courterier],,,,,, -dns2go,1227,udp,DNS2Go,[Mike_Courterier],[Mike_Courterier],,,,,, +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],,,,,, @@ -2143,12 +2216,12 @@ 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,,,,,,,, -opennl,1258,udp,Open Network Library,,,,,,,, +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],,,,,, @@ -2183,12 +2256,12 @@ 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,,,,,,,, -dellwebadmin-1,1278,udp,Dell Web Admin 1,,,,,,,, +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],,,,,, @@ -2229,14 +2302,14 @@ 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,,,, -ci3-software-1,1301,tcp,CI3-Software-1,,,,,,,, -ci3-software-1,1301,udp,CI3-Software-1,,,,,,,, -ci3-software-2,1302,tcp,CI3-Software-2,[Kelli_Watson],[Kelli_Watson],,,,,, -ci3-software-2,1302,udp,CI3-Software-2,[Kelli_Watson],[Kelli_Watson],,,,,, +,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],,,,,, @@ -2254,15 +2327,19 @@ 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],,,,,, @@ -2400,29 +2477,37 @@ 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],,,,,, @@ -2465,12 +2550,12 @@ igi-lm,1404,udp,Infinite Graphics License Manager,,,,,,,, ibm-res,1405,tcp,IBM Remote Execution Starter,,,,,,,, ibm-res,1405,udp,IBM Remote Execution Starter,,,,,,,, netlabs-lm,1406,tcp,NetLabs License Manager,,,,,,,, netlabs-lm,1406,udp,NetLabs License Manager,,,,,,,, -dbsa-lm,1407,tcp,DBSA License Manager,[Scott_Shattuck],[Scott_Shattuck],,,,,, -dbsa-lm,1407,udp,DBSA License Manager,[Scott_Shattuck],[Scott_Shattuck],,,,,, +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],,,,,, @@ -2484,15 +2569,19 @@ 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,,,,,,,, @@ -2568,15 +2657,19 @@ 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],,,,,, @@ -2590,29 +2683,37 @@ 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],,,,,, @@ -2656,15 +2757,19 @@ 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],,,,,, @@ -2677,15 +2782,19 @@ 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],,,,,, @@ -2756,11 +2865,12 @@ 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,,Unassigned,,,,2007-10-04,,,, +,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],,,,,, @@ -2812,15 +2922,19 @@ 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],,,,,, @@ -2882,15 +2996,19 @@ 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],,,,,, @@ -3018,15 +3136,19 @@ 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],,,,,, @@ -3303,12 +3425,12 @@ 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_2],[D_J_Bernstein_2],,,,,, -hello,1789,udp,hello,[D_J_Bernstein_2],[D_J_Bernstein_2],,,,,, +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],,,,,, @@ -3491,12 +3613,12 @@ 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],,,,,, -ibm-mqisdp,1883,tcp,IBM MQSeries SCADA,[Andy_Stanford_Clark],[Andy_Stanford_Clark],,,,,, -ibm-mqisdp,1883,udp,IBM MQSeries SCADA,[Andy_Stanford_Clark],[Andy_Stanford_Clark],,,,,, +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],,,,,, @@ -3619,12 +3741,12 @@ 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,,,,, -sentinelsrm,1947,udp,SentinelSRM,[Michael_Zunke_2],[Michael_Zunke_2],2010-07-23,,,,, +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],,,,,, @@ -3907,12 +4029,12 @@ 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 +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,,,,, @@ -3970,12 +4092,12 @@ 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],,,,,, -newheights,2114,tcp,NEWHEIGHTS,[Michael_Levy],[Michael_Levy],,,,,, -newheights,2114,udp,NEWHEIGHTS,[Michael_Levy],[Michael_Levy],,,,,, +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,,,,,,,, @@ -4026,12 +4148,12 @@ 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,,,,,[RFC5087],,, -tdmoip,2142,udp,TDM OVER IP,,,,,[RFC5087],,, +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,,,,,,,, @@ -4137,12 +4259,12 @@ 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,,,,, -ici,2200,tcp,ICI,[Brent_Hines],[Brent_Hines],,,,,, -ici,2200,udp,ICI,[Brent_Hines],[Brent_Hines],,,,,, +,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,,,,,,,, @@ -4179,19 +4301,23 @@ 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,,,,, -rockwell-csp1,2221,tcp,Rockwell CSP1,[Brian_Batke],[Brian_Batke],,,,,, -rockwell-csp1,2221,udp,Rockwell CSP1,[Brian_Batke],[Brian_Batke],,,,,, +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." @@ -4283,12 +4409,12 @@ 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,[Tom_Pusateri],[Tom_Pusateri],2004-12,,,,, -amt,2268,udp,AMT,[Tom_Pusateri],[Tom_Pusateri],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,,,,,,,, @@ -4428,15 +4554,19 @@ 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],,,,,, @@ -4448,45 +4578,61 @@ 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,,,,,,,, @@ -4528,11 +4674,11 @@ 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,,,, -hp-rda,2371,tcp,HP Remote Device Access,[Hewlett_Packard_3],[Michael_Spratte][Steve_Roscio],,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,,,,,,,, @@ -4539,11 +4685,13 @@ 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,,,,, -,2377-2378,,Unassigned,,,,,,,, +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],,,,,, @@ -4573,15 +4721,19 @@ 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],,,,,, @@ -4642,11 +4794,12 @@ 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],,,,,, -,2426,,Unassigned,,,,2002-04-29,,,, +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],,,,,, @@ -4682,15 +4835,19 @@ 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],,,,,, @@ -4715,12 +4872,12 @@ 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],,,,,, -community,2459,tcp,Community,[David_Schwartz],[David_Schwartz],,,,,, -community,2459,udp,Community,[David_Schwartz],[David_Schwartz],,,,,, +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],,,,,, @@ -4854,15 +5011,19 @@ 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],,,,,, @@ -5085,20 +5246,12 @@ 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],,,,,, -sai-sentlm,2640,tcp,"Sabbagh Associates Licence Manager -IANA assigned this well-formed service name as a replacement for ""sai_sentlm"".",[Elias_Sabbagh],[Elias_Sabbagh],,,,,, -sai_sentlm,2640,tcp,Sabbagh Associates Licence Manager,[Elias_Sabbagh],[Elias_Sabbagh],,,,,,"This entry is an alias to ""sai-sentlm"". -This entry is now historic, not usable for use with many -common service discovery mechanisms." -sai-sentlm,2640,udp,"Sabbagh Associates Licence Manager -IANA assigned this well-formed service name as a replacement for ""sai_sentlm"".",[Elias_Sabbagh],[Elias_Sabbagh],,,,,, -sai_sentlm,2640,udp,Sabbagh Associates Licence Manager,[Elias_Sabbagh],[Elias_Sabbagh],,,,,,"This entry is an alias to ""sai-sentlm"". -This entry is now historic, not usable for use with many -common service discovery mechanisms." +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],,,,,, @@ -5122,15 +5275,19 @@ 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],,,,,, @@ -5283,11 +5440,11 @@ 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 Messagner,[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],,,,,, @@ -5554,12 +5711,12 @@ 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,[Norman_Safeground_AS],[Kristian_A_Bognaes],,2014-01-15,,,, -npep-messaging,2868,udp,Norman Proprietaqry Events Protocol,[Norman_Safeground_AS],[Kristian_A_Bognaes],,2014-01-15,,,, +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],,,,,, @@ -5652,25 +5809,33 @@ 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],,,,,, @@ -5869,57 +6034,77 @@ 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],,,,,, @@ -5929,49 +6114,65 @@ 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],,,,,, @@ -6013,15 +6214,19 @@ 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],,,,,, @@ -6062,12 +6267,12 @@ 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],,,,,, -csd-mgmt-port,3071,tcp,ContinuStor Manager Port,[NetApp],[MSW_architecture_team],,2014-07-18,,,, -csd-mgmt-port,3071,udp,ContinuStor Manager Port,[NetApp],[MSW_architecture_team],,2014-07-18,,,, +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],,,,,, @@ -6081,15 +6286,19 @@ 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,,,,,,,, @@ -6117,12 +6326,12 @@ ,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 rendevous port,[Peter_Berger],[Peter_Berger],,,,,, -panasas,3095,udp,Panasas rendevous port,[Peter_Berger],[Peter_Berger],,,,,, +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],,,,,, @@ -6527,11 +6736,13 @@ 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],,,,,, -,3300-3301,,unassigned,,,,,,,Knwon Unauthorized Use on 3300-3301, +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],,,,,, @@ -6701,15 +6912,19 @@ 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,,,,, @@ -6804,12 +7019,12 @@ 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,[Ron_Herardian],[Ron_Herardian],2002-03,,,,, -monp,3445,udp,Media Object Network,[Ron_Herardian],[Ron_Herardian],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,,,,, @@ -6870,14 +7085,14 @@ 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,,,,,[RFC5389],,, -stun,3478,udp,Session Traversal Utilities for NAT (STUN) port,,,,,[RFC5389],,, -turn,3478,tcp,TURN over TCP,,,,,[RFC5766],,, -turn,3478,udp,TURN over UDP,,,,,[RFC5766],,, +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,,,,, @@ -6924,12 +7139,12 @@ 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,,,,,[RFC4379],,, -lsp-ping,3503,udp,MPLS LSP-echo Port,,,,,[RFC4379],,, +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],,,,,, @@ -6962,11 +7177,10 @@ 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,,,,, -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 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,,,,,,,, @@ -7053,16 +7267,16 @@ 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,,,, -enc-eps,3567,tcp,EMIT protocol stack,[Panasonic_Intranet_Panasonic_North_America_PEWLA],[Bryant_Eastham],2002-08,2012-11-12,,,, -enc-eps,3567,udp,EMIT protocol stack,[Panasonic_Intranet_Panasonic_North_America_PEWLA],[Bryant_Eastham],2002-08,2012-11-12,,,, -enc-tunnel-sec,3568,tcp,EMIT secure tunnel,[Panasonic_Intranet_Panasonic_North_America_PEWLA],[Bryant_Eastham],2003-01,2012-11-12,,,, -enc-tunnel-sec,3568,udp,EMIT secure tunnel,[Panasonic_Intranet_Panasonic_North_America_PEWLA],[Bryant_Eastham],2003-01,2012-11-12,,,, -mbg-ctrl,3569,tcp,Meinberg Control Service,[Martin_Burnicki],[Martin_Burnicki],2002-08,,,,, -mbg-ctrl,3569,udp,Meinberg Control Service,[Martin_Burnicki],[Martin_Burnicki],2002-08,,,,, +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,,,,, @@ -7119,12 +7333,12 @@ 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,,,,, -trap-daemon,3600,udp,text relay-answer,[John_Willis],[John_Willis],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,,,,, @@ -7143,12 +7357,12 @@ 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,,,,, -hp-dataprotect,3612,tcp,HP Data Protector,[Hewlett_Packard_2],[Oliver_Breyel],2002-09,2013-02-07,,,, -hp-dataprotect,3612,udp,HP Data Protector,[Hewlett_Packard_2],[Oliver_Breyel],2002-09,2013-02-07,,,, +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,,,,, @@ -7305,17 +7519,19 @@ 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,,,,, -,3693-3694,,Unassigned,,,,2007-04-05,,,, +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 Licnese 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,,,,, @@ -7369,11 +7585,11 @@ 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,Xyartex 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,,,,, @@ -7417,11 +7633,11 @@ 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 ncapsalatoin 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,,,,, @@ -7615,11 +7831,11 @@ 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 Prelaod,[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,,,,, @@ -7672,15 +7888,19 @@ 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,,,,, @@ -7693,12 +7913,12 @@ 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,[Russell_M_Taylor_II],[Russell_M_Taylor_II],2003-10,,,,, -vrpn,3883,udp,VR Peripheral Network,[Russell_M_Taylor_II],[Russell_M_Taylor_II],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,,,,, @@ -7728,15 +7948,19 @@ 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,,,,, @@ -7770,15 +7994,15 @@ 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 multiples 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,[Dave_Reiland],[Dave_Reiland],2003-11,,,,, -hyperip,3919,udp,HyperIP,[Dave_Reiland],[Dave_Reiland],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,,,,, @@ -7812,17 +8036,21 @@ 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,"Oracel dbControl Agent po +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,Oracel dbControl Agent po,[Todd_Guay],[Todd_Guay],2003-11,,,,,"This entry is an alias to ""dbcontrol-agent"". +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,,,,, @@ -7835,12 +8063,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,[Frank_Liberato],[Frank_Liberato],2004-06,,,,, -backupedge,3946,udp,BackupEDGE Server,[Frank_Liberato],[Frank_Liberato],2004-06,,,,, +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,,,,, @@ -7884,20 +8112,30 @@ 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=
+ vers= + build= + id=" lanrevagent,3970,udp,LANrev Agent,[Martin_Bestmann_3],[Martin_Bestmann_3],,,,,,"Defined TXT keys: + txtvers + server=
+ vers= + build= + id=" 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,,,,, @@ -7905,12 +8143,12 @@ 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,Opsware Agent,,,,,,,, -opswagent,3976,udp,Opsware Agent,,,,,,,, +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,,,,, @@ -7926,15 +8164,19 @@ 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],,,,,, @@ -7990,12 +8232,12 @@ 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,[Dan_Bernstein_3],[Dan_Bernstein_3],,,,,, -taiclock,4014,udp,TAICLOCK,[Dan_Bernstein_3],[Dan_Bernstein_3],,,,,, +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,,,,,,,, @@ -8082,15 +8324,19 @@ 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),,,,,,,, @@ -8100,15 +8346,19 @@ 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,,,,, @@ -8123,12 +8373,12 @@ 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,iRAPP Server Protocol,[Vladimir_Bickov],[Vladimir_Bickov],2007-08-20,,,,, -iRAPP,4073,udp,iRAPP Server Protocol,[Vladimir_Bickov],[Vladimir_Bickov],2007-08-20,,,,, +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,,,,, @@ -8217,11 +8467,12 @@ 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,,,,, -,4120,,Unassigned,,,,2007-02-01,,,, +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,,,, @@ -8241,25 +8492,33 @@ 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],,,,,, @@ -8273,15 +8532,19 @@ 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,,,,,,,, @@ -8302,25 +8565,33 @@ 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,,,,, @@ -8376,32 +8647,38 @@ 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,,,,, +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,,,,, -gmmp,4183,tcp,General Metaverse Messaging Protocol,[Gareth_Nelson],[Gareth_Nelson],2007-06,,,,, -gmmp,4183,udp,General Metaverse Messaging Protocol,[Gareth_Nelson],[Gareth_Nelson],2007-06,,,,, +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,,,,,,,, @@ -8415,11 +8692,14 @@ 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-4198,,Unassigned,,,,,,,, +,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],,,,,, @@ -8433,12 +8713,12 @@ 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,,,,, -visicron-vs,4307,tcp,Visicron Videoconference Service,[Alexey_Vlaskin],[Alexey_Vlaskin],2007-10-22,,,,, -visicron-vs,4307,udp,Visicron Videoconference Service,[Alexey_Vlaskin],[Alexey_Vlaskin],2007-10-22,,,,, +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,,,,, @@ -8461,12 +8741,11 @@ 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,,,,, -balour,4324,tcp,Balour Game Server,[Konstantin_Schauweck],[Konstantin_Schauweck],2007-02,,,,, -balour,4324,udp,Balour Game Server,[Konstantin_Schauweck],[Konstantin_Schauweck],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,,,,, @@ -8477,20 +8756,27 @@ ,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,,,,,,,, -,4332,,Unassigned,,,,,,,, +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,,,,, -,4334-4339,,Unassigned,,,,,,,, +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,,,,, -lisp-data,4341,tcp,LISP Data Packets,[Dino_Farinacci],[Dino_Farinacci],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],,, -lisp-cons,4342,tcp,LISP-CONS Control,,,,,,,, +,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],,,,,, @@ -8523,30 +8809,39 @@ 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-4367,,Unassigned,,,,,,,, +,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 @@ -8607,11 +8902,35 @@ ,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-4424,,Unassigned,,,,,,,, +,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,,,,, @@ -8677,14 +8996,14 @@ 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,,,,,[RFC3947],,, -ipsec-nat-t,4500,udp,IPsec NAT-Traversal,,,,,[RFC3947],,, +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),[ThreeGPP2],[Zhiming_Li],2012-01-11,,,,, +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,,,,,,,, @@ -8735,42 +9054,71 @@ 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-4589,,Unassigned,,,,,,,, +,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,,,,,,,, @@ -8799,11 +9147,14 @@ ,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-4657,,Unassigned,,,,,,,, +,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],,,,,, @@ -8881,11 +9232,15 @@ 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-4724,,Unassigned,,,,,,,, +,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,,,,,,,, @@ -8921,11 +9276,12 @@ 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,,Unassigned,,,,,,,, +,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,,,,, @@ -8935,11 +9291,20 @@ 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-4783,,Unassigned,,,,,,,, +,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,,,,, @@ -8975,28 +9340,32 @@ 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 TCP Protocol,,,,,,,, -opcua-udp,4840,udp,OPC UA TCP Protocol,[Randy_Armstrong],[Randy_Armstrong],2006-09,,,,, +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,,,,, -opcua-tls,4843,tcp,OPC UA TCP Protocol over TLS/SSL,[Randy_Armstrong],[Randy_Armstrong],2006-09,,,,, -opcua-tls,4843,udp,OPC UA TCP Protocol over TLS/SSL,[Randy_Armstrong],[Randy_Armstrong],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,,,,, @@ -9039,19 +9408,26 @@ ,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-4893,,Unassigned,,,,,,,, +,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,,,,,,,, @@ -9091,11 +9467,16 @@ ,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,,,,, -,4971-4982,,Unassigned,,,,,,,, +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,,,,,,,, @@ -9159,14 +9540,14 @@ 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),[Anthony_Johnson],[Anthony_Johnson],2005-08,,,,, -strexec-d,5026,udp,Storix I/O daemon (data),[Anthony_Johnson],[Anthony_Johnson],2005-08,,,,, -strexec-s,5027,tcp,Storix I/O daemon (stat),[Anthony_Johnson],[Anthony_Johnson],2005-08,,,,, -strexec-s,5027,udp,Storix I/O daemon (stat),[Anthony_Johnson],[Anthony_Johnson],2005-08,,,,, +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,,,,, @@ -9173,11 +9554,15 @@ 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,,,,,,,, -,5033-5041,,Unassigned,,,,,,,, +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,,,,, @@ -9263,11 +9648,11 @@ 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,[Clayster_Laboratorios_Chile_S.A.],[Peter_Waher],2014-06-16,,,,, +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,,,,,,,, @@ -9291,11 +9676,13 @@ 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,,,,,,,, -,5107-5110,,Unassigned,,,,,,,, +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,,,,, @@ -9314,24 +9701,30 @@ 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= + Device=" ,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,,,,, @@ -9338,22 +9731,26 @@ ,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, -toruxserver,5153,tcp,ToruX Game Server,[Josse_van_Dobben_de],[Josse_van_Dobben_de],2009-07-01,,,,, +,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,,,,, @@ -9369,15 +9766,19 @@ 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,,,,, @@ -9402,11 +9803,13 @@ ,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,,,,,,,, -,5197-5199,,Unassigned,,,,,,,, +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],,,,,, @@ -9472,11 +9875,13 @@ 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,,,,,,,, -,5254-5263,,Unassigned,,,,,,,, +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,,,,,,,, @@ -9489,11 +9894,11 @@ 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,[Julian_Smith],[Julian_Smith],2010-04-19,,,,, +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 @@ -9546,22 +9951,22 @@ 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,STUN over TLS,,,,,[RFC5389],,, +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,,,,,[RFC5766],,, -turns,5349,udp,TURN over DTLS,[IESG],[IETF_Chair],,2014-07-03,[RFC7350],,,This service name was initially created by [RFC5766]. +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,[Kiren_Sekar],[Kiren_Sekar],2005-08,,,,, -dns-llq,5352,udp,DNS Long-Lived Queries,[Kiren_Sekar],[Kiren_Sekar],2005-08,,,,, +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,,,,, @@ -9672,11 +10077,14 @@ 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-5452,,Unassigned,,,,,,,, +,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],,,,,, @@ -9692,11 +10100,24 @@ 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-5499,,Unassigned,,,,,,,, +,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],,,,,, @@ -9707,11 +10128,16 @@ 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,,,,, -,5507-5552,,Unassigned,,,,,,,, +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, @@ -9718,15 +10144,17 @@ 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-5565,,Unassigned,,,,,,,, +,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,,,,,,,, -enc-eps-mc-sec,5567,tcp,EMIT protocol stack multicast/secure transport,[Panasonic_Intranet_Panasonic_North_America_PEWLA],[Bryant_Eastham],2004-11,2012-11-12,,,, -enc-eps-mc-sec,5567,udp,EMIT protocol stack multicast/secure transport,[Panasonic_Intranet_Panasonic_North_America_PEWLA],[Bryant_Eastham],2004-11,2012-11-12,,,, +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, @@ -9803,11 +10231,14 @@ 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-5669,,Unassigned,,,,,,,Known UNAUTHORIZED USE: Port 5666, +,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,,,,, @@ -9832,13 +10263,13 @@ 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,,,,, -,5683,tcp,Reserved,,,,,,,, +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],,, -,5684,tcp,Reserved,,,,,,,, +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,,,,, @@ -9849,11 +10280,17 @@ 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-5712,,Unassigned,,,,,,,, +,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],,,,,, @@ -10015,11 +10452,13 @@ 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,,,,, -,5993-5998,,Unassigned,,,,,,,, +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],,,,,, @@ -10047,11 +10486,13 @@ ,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-6080,,Unassigned,,,,,,,, +,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,,,,,,,, @@ -10073,12 +10514,12 @@ 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,[Bruce_Toback],[Bruce_Toback],,,,,, -rets,6103,udp,RETS,[Bruce_Toback],[Bruce_Toback],,,,,, +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],,,,,, @@ -10108,14 +10549,14 @@ 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,[Chi_Shih_Chang],[Chi_Shih_Chang],2008-03-19,,,,, -bex-webadmin,6122,udp,Backup Express Web Server,[Chi_Shih_Chang],[Chi_Shih_Chang],2008-03-19,,,,, -backup-express,6123,tcp,Backup Express,[Chi_Shih_Chang],[Chi_Shih_Chang],2008-03-19,,,,, -backup-express,6123,udp,Backup Express,[Chi_Shih_Chang],[Chi_Shih_Chang],2008-03-19,,,,, +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,,,,,,,, @@ -10157,11 +10598,14 @@ ,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-6221,,Unassigned,,,,,,,, +,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,,,,, @@ -10187,42 +10631,46 @@ 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,[Albert_Berlovitch],[Albert_Berlovitch],2009-12-17,,,,, -ufmp,6306,udp,Unified Fabric Management Protocol,[Albert_Berlovitch],[Albert_Berlovitch],2009-12-17,,,,, +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,[James_Wilkinson],[James_Wilkinson],2006-04,,,,, -repsvc,6320,udp,Double-Take Replication Service,[James_Wilkinson],[James_Wilkinson],2006-04,,,,, +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,[Vision_Solutions],[James_Wilkinson2],2012-06-06,,,,, +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,[Vision_Solutions],[James_Wilkinson2],2012-10-08,,,,, +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,,,,, @@ -10245,11 +10693,14 @@ 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-6381,,Unassigned,,,,,,,, +,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],,,,,, @@ -10271,11 +10722,11 @@ 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,,,,, -,6419,udp,Reserved,,,,,,,, +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,,,,,,,, @@ -10285,25 +10736,33 @@ 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,,,,, @@ -10311,11 +10770,16 @@ ,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-6470,,Unassigned,,,,,,,, +,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,,,,, @@ -10339,76 +10803,104 @@ 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],,,,,, @@ -10416,11 +10908,11 @@ 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,,,,,[RFC5539],,, +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,,,,, @@ -10447,15 +10939,17 @@ ,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"".",[David_F_Skoll],[David_F_Skoll],2009-04-22,,,,, -canit_store,6568,tcp,CanIt Storage Manager,[David_F_Skoll],[David_F_Skoll],2009-04-22,,,,,"This entry is an alias to ""canit-store"". + + +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,[David_F_Skoll],[David_F_Skoll],2010-02-05,,,,, +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],,,,,, @@ -10493,19 +10987,27 @@ 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,,,,, -,6629-6630,,Unassigned,,,,,,,, +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-6639,,Unassigned,,,,,,,, +,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,,,,, @@ -10522,25 +11024,33 @@ 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,,,,,,,, @@ -10553,11 +11063,13 @@ ,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,,,,, -,6690-6695,,Unassigned,,,,,,,, +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,,,,,,,, @@ -10582,11 +11094,11 @@ ,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,,,,, -printercare-cc,6716,tcp,PrinterCare cloud service,[E-FISH_sp._z.o.o.],[Tomasz_Krakowiak],2014-07-07,,,,, +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],,,,,, @@ -10611,19 +11123,19 @@ 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,,,,, -smc-https,6789,tcp,SMC-HTTPS,[Ratnadeep_Bhattachar],[Ratnadeep_Bhattachar],2002-08,,,,, -smc-https,6789,udp,SMC-HTTPS,[Ratnadeep_Bhattachar],[Ratnadeep_Bhattachar],2002-08,,,,, +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,[Rich_Neswold],[Rich_Neswold],2007-02,,,,, -acnet,6801,udp,ACNET Control System Protocol,[Rich_Neswold],[Rich_Neswold],2007-02,,,,, +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],,,,,, @@ -10640,11 +11152,13 @@ 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-6900,,Unassigned,,,,,,,, +,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,,,,, @@ -10712,11 +11226,14 @@ 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],,,,,, -,7016-7017,,Unassigned,,,,,,,, +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],,,,,, @@ -10729,11 +11246,13 @@ 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,,,,, -,7026-7029,,Unassigned,,,,,,,, +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,,,,,,,, @@ -10742,17 +11261,21 @@ ,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,,,,, -,7072,,Unassigned,,,,,,,, +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-7094,,Unassigned,,,,,,,, +,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],,,,,, @@ -10761,11 +11284,14 @@ 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-7120,,Unassigned,,,,,,,, +,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,,,,, @@ -10806,13 +11332,25 @@ ,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],,,,,, -,7202-7226,,Unassigned,,,,,,,, +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,,,,, +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,,,,,,,, @@ -10820,13 +11358,16 @@ ,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-7261,,Unassigned,,,,,,,, -cnap,7262,tcp,Calypso Network Access Protocol,[Scott_Halberg],[Scott_Halberg],2009-06-02,,,,, -cnap,7262,udp,Calypso Network Access Protocol,[Scott_Halberg],[Scott_Halberg],2009-06-02,,,,, +,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,,,,, @@ -10875,15 +11416,17 @@ 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_Deputter],[Maxime_Deputter],2006-04,,,,, -ionixnetmon,7410,udp,Ionix Network Monitor,[Maxime_Deputter],[Maxime_Deputter],2006-04,,,,, +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-7420,,Unassigned,,,,,,,, +,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],,,,,, @@ -10909,11 +11452,14 @@ ,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-7490,,Unassigned,,,,,,,, +,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,,,,, @@ -10945,11 +11491,13 @@ 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,,,,, -,7551-7559,,Unassigned,,,,,,,, +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,,,,,,,, @@ -10965,11 +11513,14 @@ 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-7623,,Unassigned,,,,,,,, +,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,,,,, @@ -10988,11 +11539,14 @@ 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-7671,,Unassigned,,,,,,,, +,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,,,,, @@ -11004,20 +11558,29 @@ 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-7688,,Unassigned,,,,,,,, +,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-7706,,Unassigned,,,,,,,, +,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,,,,,,,, @@ -11030,11 +11593,14 @@ 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,,,,, -,7728-7733,,Unassigned,,,,,,,, +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,,,,, @@ -11049,20 +11615,26 @@ 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-7785,,Unassigned,,,,,,,Known Unauthorized Use on port 7785, +,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, @@ -11157,26 +11729,40 @@ 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,,,,, -,8004,,Unassigned,,,,,,,, +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,,,,, -,8006-8007,,Unassigned,,,,,,,, +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],,,,,, -,8009-8018,,Unassigned,,,,,,,, +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],,,,,, -,8023-8024,,Unassigned,,,,,,,, +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,,,,,,,, @@ -11187,11 +11773,12 @@ 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,,,,, -,8041,,Unassigned,,,,,,,, +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,,,,, @@ -11218,30 +11805,44 @@ ,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,,,,,,,, -,8067-8073,,Unassigned,,,,,,,, +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-8079,,Unassigned,,,,,,,, +,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,,,,, -,8084-8085,,Unassigned,,,,,,,, +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-8090,,Unassigned,,,,,,,, +,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,,,,, @@ -11250,11 +11851,14 @@ 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-8114,,Unassigned,,,,,,,, +,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,,,,, @@ -11276,11 +11880,11 @@ 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_Labs],[Zach_Leslie],2014-09-18,,,,, +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,,,,,,,, @@ -11302,11 +11906,13 @@ 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-8190,,Unassigned,,,,,,,, +,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,,,,,,,, @@ -11332,23 +11938,41 @@ 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-8229,,Unassigned,,,,,,,, +,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-8242,,Unassigned,,,,,,,, +,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-8275,,Unassigned,,,,,,,, +,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-8291,,Unassigned,,,,,,,, +,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,,,,, @@ -11364,11 +11988,13 @@ ,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,,,,, -,8322-8350,,Unassigned,,,,,,,, +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],,,,,, @@ -11381,11 +12007,13 @@ 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,,,,, -,8384-8399,,Unassigned,,,,,,,, +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],,,,,, @@ -11401,11 +12029,14 @@ ,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-8441,,Unassigned,,,,,,,, +,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],,,,,, @@ -11435,18 +12066,20 @@ 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,,,,,,,, -,8503-8553,,Unassigned,,,,,,,, +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,,,,,,,, -enc-tunnel,8567,tcp,EMIT tunneling protocol,[Panasonic_Intranet_Panasonic_North_America_PEWLA],[Bryant_Eastham],2005-08,2012-11-12,,,, -enc-tunnel,8567,udp,EMIT tunneling protocol,[Panasonic_Intranet_Panasonic_North_America_PEWLA],[Bryant_Eastham],2005-08,2012-11-12,,,, +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,,,,,,,, @@ -11496,13 +12129,17 @@ 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,[Agilent_Technologies_Inc],[Tom_Fay],2013-01-16,,,,, -amcs,8766,udp,Agilent Connectivity Service,[Agilent_Technologies_Inc],[Tom_Fay],2013-01-16,,,,, -,8767-8769,,Unassigned,,,,,,,, +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,,,,,,,, @@ -11518,21 +12155,30 @@ 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-8872,,Unassigned,,,,,,,, +,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,[Arthur_Barr],[Arthur_Barr],2008-02-27,,,,, -secure-mqtt,8883,udp,Secure MQTT,[Arthur_Barr],[Arthur_Barr],2008-02-27,,,,, +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, @@ -11568,18 +12214,25 @@ ,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-8988,,Unassigned,,,,,,,, +,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,[Fred_Batty],[Fred_Batty],2007-12-03,,,,, -http-wmap,8990,udp,webmail HTTP service,[Fred_Batty],[Fred_Batty],2007-12-03,,,,, -https-wmap,8991,tcp,webmail HTTPS service,[Fred_Batty],[Fred_Batty],2007-12-03,,,,, -https-wmap,8991,udp,webmail HTTPS service,[Fred_Batty],[Fred_Batty],2007-12-03,,,,, -,8992-8997,,Unassigned,,,,,,,, +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],,,,,, @@ -11586,21 +12239,25 @@ 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-9005,,Unassigned,,,,,,,, +,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-9019,,Unassigned,,,,,,,, +,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,,,,, @@ -11616,14 +12273,18 @@ ,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-9079,,Unassigned,,,,,,,, +,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,,Unassigned,,,,,,,, +,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,,,,, @@ -11667,11 +12328,14 @@ xadmin,9105,udp,Xadmin Control Service,,,,,[Ari√´n Huisken 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-9118,,Unassigned,,,,,,,, +,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,,,,,,,, @@ -11782,16 +12446,20 @@ 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-9342,,Unassigned,,,,,,,, +,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],,,,,, -,9345,,Unassigned,,,,,,,, +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],,,,,, @@ -11871,16 +12539,20 @@ ,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,,,,,,,, @@ -11936,11 +12608,12 @@ 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],,,,,, -,9877,,Unassigned,,,,,,,, +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],,,,,, @@ -11987,11 +12660,16 @@ 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,,,,,,,, -,9979-9986,,Unassigned,,,,,,,, +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,,,,,,,, @@ -12020,15 +12698,19 @@ 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,,,,, @@ -12043,11 +12725,14 @@ 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-10049,,Unassigned,,,,,,,, +,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,,,,,,,, @@ -12086,11 +12771,14 @@ 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-10127,,Unassigned,,,,,,,, +,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,,,,,,,, @@ -12106,14 +12794,18 @@ 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,,,,, -,10253-10259,,Unassigned,,,,,,,, +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],,,,,, -,10261-10287,,Unassigned,,,,,,,, +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,,,,,,,, @@ -12132,13 +12824,15 @@ 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-10630,,Unassigned,,,,,,,, -printopia,10631,tcp,"Port to allow for administration and control of ""Printopia"" application software, - which provides printing services to mobile users",[Ecamm_Network_LLC],[Chris_Kent],2011-10-24,,,,, +,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,,,,,,,, @@ -12153,11 +12847,14 @@ 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-10989,,Unassigned,,,,,,,, +,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],,,,,, @@ -12264,12 +12961,15 @@ 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 Sercice Protocol,[Mike_Cooper],[Mike_Cooper],2003-03,,,,, -,11968-11996,,Unassigned,,,,,,,, +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],,,,,, @@ -12297,12 +12997,12 @@ 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,[Bruce_Toback],[Bruce_Toback],2003-02,,,,, -rets-ssl,12109,udp,RETS over SSL,[Bruce_Toback],[Bruce_Toback],2003-02,,,,, +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,,,,, @@ -12405,11 +13105,13 @@ ,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,,,,, -,14143-14144,,Unassigned,,,,,,,, +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,,,,, @@ -12422,11 +13124,14 @@ 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-14935,,Unassigned,,,,,,,, +,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,,,,,,,, @@ -12446,12 +13151,12 @@ 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,[Chi_Shih_Chang],[Chi_Shih_Chang],2008-03-19,,,,, -bex-xr,15660,udp,Backup Express Restore Server,[Chi_Shih_Chang],[Chi_Shih_Chang],2008-03-19,,,,, +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= ptp,15740,udp,Picture Transfer Protocol,[Petronel_Bigioi],[Petronel_Bigioi],2004-11,,,,,Defined TXT keys: guid= ,15741-15997,,Unassigned,,,,,,,, ,15998,tcp,Reserved,,,,,,,, @@ -12494,19 +13199,24 @@ 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,,,,, -,16385-16618,,Unassigned,,,,,,,, +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-16899,,Unassigned,,,,,,,, +,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],,,,,, @@ -12536,11 +13246,17 @@ 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,,,,, -,17223-17233,,Unassigned,,,,,,,, +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,,,,,,,, @@ -12602,11 +13318,14 @@ ,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-18768,,Unassigned,,,,,,,, +,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,,,,, @@ -12626,11 +13345,14 @@ 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-19282,,Unassigned,,,,,,,, +,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],,,,,, @@ -12677,15 +13399,19 @@ ,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,,,,,,,, @@ -12692,14 +13418,17 @@ 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,,,,,[RFC5666],,, -nfsrdma,20049,udp,Network File System (NFS) over RDMA,,,,,[RFC5666],,, -nfsrdma,20049,sctp,Network File System (NFS) over RDMA,,,,,[RFC5666],,, -,20050-20166,,Unassigned,,,,,,,, +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,,,,, @@ -12718,11 +13447,19 @@ 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-21552,,Unassigned,,,,,,,, +,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,,,,,,,, @@ -12768,11 +13505,14 @@ 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-22342,,Unassigned,,,,,,,, +,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,,,,, @@ -12813,11 +13553,14 @@ 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-23332,,Unassigned,,,,,,,, +,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,,,,, @@ -12857,17 +13600,23 @@ ,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,,,,,,,, -,24323-24385,,Unassigned,,,,,,,, +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,,,,,,,, @@ -12877,11 +13626,14 @@ 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-24675,,Unassigned,,,,,,,, +,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],,,,,, @@ -12951,11 +13703,14 @@ 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-26259,,Unassigned,,,,,,,, +,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],,,,,, @@ -12962,20 +13717,25 @@ 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,[Lars_Mattsson],[Lars_Mattsson],2008-12-24,,,,, -exoline-udp,26486,udp,EXOline-UDP,[Lars_Mattsson],[Lars_Mattsson],2008-12-24,,,,, +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),[Daniel_Birns],[Daniel_Birns],,,,,, -,27010-27344,,Unassigned,,,,,,,"Unauthorized Use Known on ports 27017, 27018 and 27019", +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,,,,, @@ -12995,18 +13755,21 @@ 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,[ThreeGPP2],[Zhiming_Li],2012-04-13,,,,, +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-29117,,Unassigned,,,,,,,, +,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,,,,, @@ -13026,20 +13789,30 @@ 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-30259,,Unassigned,,,,,,,, +,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-30831,,Unassigned,,,,,,,, +,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-31019,,Unassigned,,,,,,,, +,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,,,,, @@ -13055,10 +13828,12 @@ ,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,,,,,,,, @@ -13065,25 +13840,33 @@ ,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,,,,,,,, @@ -13090,11 +13873,14 @@ 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-32482,,Unassigned,,,,,,,, +,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,,,,, @@ -13130,11 +13916,14 @@ 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-33122,,Unassigned,,,,,,,, +,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,,,,, @@ -13144,11 +13933,13 @@ 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-33655,,Unassigned,,,,,,,, +,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],,,,,, @@ -13157,21 +13948,21 @@ 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,,,,, -,34567,udp,Reserved,,,,,,,, +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,EhterCAT 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,,,,, @@ -13183,11 +13974,14 @@ 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-35353,,Unassigned,,,,,,,, +,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,,,,, @@ -13195,22 +13989,30 @@ 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-36411,,Unassigned,,,,,,,, +,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,,,,, -,36423-36442,,Unassigned,,,,,,,, +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-36523,,Unassigned,,,,,,,, +,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,,,,,,,, @@ -13222,28 +14024,49 @@ 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],[Fil_Zembowicz],2013-02-01,,,,, +gdrive-sync,37483,tcp,Google Drive Sync,[Google_Inc],[Jason_Schiller],2013-02-01,2015-07-31,,,, ,37483,udp,Reserved,,,,,,,, -,37484-37653,,Unassigned,,,,,,,, +,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,,,,,,,, -,38002-38200,,Unassigned,,,,,,,, +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=, DevType=, DevStat=" fairview,38202,udp,Fairview Message Service,[Jim_Lyle],[Jim_Lyle],2005-11,,,,,"Defined TXT keys: DevID=, DevType=, DevStat=" 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-38799,,Unassigned,,,,,,,, +,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,,,,,,,, @@ -13254,11 +14077,14 @@ 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-40403,,Unassigned,,,,,,,, +,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],,,,,, @@ -13273,18 +14099,21 @@ 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-41793,,Unassigned,,,,,,,, -crestron-cip,41794,tcp,Crestron Control Port,[Ed_Ranney],[Ed_Ranney],2003-01,,,,, -crestron-cip,41794,udp,Crestron Control Port,[Ed_Ranney],[Ed_Ranney],2003-01,,,,, -crestron-ctp,41795,tcp,Crestron Terminal Port,[Ed_Ranney],[Ed_Ranney],2003-01,,,,, -crestron-ctp,41795,udp,Crestron Terminal Port,[Ed_Ranney],[Ed_Ranney],2003-01,,,,, -crestron-cips,41796,tcp,Crestron Secure Control Port,[Crestron_Electronics],[Manish_Talreja],2012-06-27,,,,, +,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],[Manish_Talreja],2012-06-27,,,,, +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,,,,, @@ -13304,31 +14133,35 @@ 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-43438,,Unassigned,,,,,,,, +,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-s,44123,tcp,Z-Wave Secure Tunnel,[Sigma_Designs_Inc],[Anders_Brandt_3],2012-10-12,,,,, +z-wave-tunnel,44123,tcp,Z-Wave Secure Tunnel,[Sigma_Designs_Inc],[Anders_Brandt_3],2012-10-12,2015-06-26,,,, ,44123,udp,Reserved,,,,,,,, -,43124-44320,,Unassigned,,,,,,,, +,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,,,,,,,, -,44445-44543,,Unassigned,,,,,,,Known UNAUTHORIZED USE: Ports 44515 & 44516, +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,,,,, @@ -13335,36 +14168,45 @@ ,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,NSi AutoStore Status Monitoring Protocol data transfer,[Notable_Solutions_Inc],[Andrew_Andrews],2011-09-01,,,,, -asmp-mon,45000,udp,NSi AutoStore Status Monitoring Protocol device monitoring,[Notable_Solutions_Inc],[Andrew_Andrews],2011-09-01,,,,, -asmps,45001,tcp,NSi AutoStore Status Monitoring Protocol secure data transfer,[Notable_Solutions_Inc],[Andrew_Andrews],2011-09-01,,,,, +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,,,,,,,, -,45002-45044,,Unassigned,,,,,,,, +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-45677,,Unassigned,,,,,,,, +,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,,,,,,,, @@ -13371,11 +14213,14 @@ 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-46997,,Unassigned,,,,,,,, +,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],,,,,, @@ -13410,11 +14255,13 @@ 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-48048,,Unassigned,,,,,,,, +,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,,,,,,,, @@ -13432,11 +14279,15 @@ 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,,,,,,,, -,49001-49150,,Unassigned,,,,,,,, +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,,,,,,,, @@ -13573,10 +14424,11 @@ use= mainprog=
bootprog=" 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= description= version=" @@ -13584,10 +14436,11 @@ 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 @@ -13596,20 +14449,35 @@ 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= (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=, 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=, company=" beamer,,,Beamer Data Sharing Protocol,[Frank_Szczerba],[Frank_Szczerba],,,,,,Defined TXT keys: None @@ -13635,24 +14503,29 @@ 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= 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= 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,,,,,"Defined TXT keys: txtvers, mac" +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= 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= 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=, p=, path=" +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 @@ -13659,23 +14532,30 @@ 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= protovers= guid= name= @@ -13692,25 +14572,42 @@ 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 -device-info,,,Device Info,[Stuart_Cheshire_5][Marc_Krochmal],[Stuart_Cheshire_5][Marc_Krochmal],,,,,,Not a service type. Special name reserved for DNS-SD device info. +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-sd,,,DNS Service Discovery,[Stuart_Cheshire_5][Marc_Krochmal],[Stuart_Cheshire_5][Marc_Krochmal],,,,,,Not a service type. Special name reserved for DNS-SD meta queries. -dns-update,,udp,DNS Dynamic Update Service,[Kiren_Sekar_2],[Kiren_Sekar_2],,,,,,"DNS Dynamic Update Service for a given domain may not necessarily be provided by +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.."" 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.."" 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.."" 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= 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 @@ -13725,10 +14622,12 @@ ebms,,,ebXML Messaging,[Matthew_MacKenzie],[Matthew_MacKenzie],,,,,,Defined TXT keys: 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= 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 @@ -13735,24 +14634,27 @@ 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= +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 @@ -13775,17 +14677,21 @@ 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=, DevPK=" fv-key,,udp,Fairview Key,[Jim_Lyle_2],[Jim_Lyle_2],,,,,,Defined TXT keys: KeyID= 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= 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 -goorstop,,tcp,For iOS Application named GoOrStop,[Charlie_Kim],[Charlie_Kim],2012-08-28,,,,,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= KeyHash= @@ -13810,22 +14716,25 @@ 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= description=" 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: 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= 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" @@ -13847,10 +14756,12 @@ 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=" 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. @@ -13859,14 +14770,18 @@ 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= +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 @@ -13876,21 +14791,27 @@ 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 -idcws,,,Intermec Device Configuration Web Services,[Thaddeus_Ternes],[Thaddeus_Ternes],,,,,,Defined TXT keys: version= +iot,,tcp,Internet-of-things (IoT) JSON telegram service,[SEVENSTAX_GmbH],[Ralf_Schwarzer],2015-11-05,,,,,"Defined TXT keys: :application specific kind of protocol; + :version of the 'type'; :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=, MAC 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 @@ -13904,26 +14825,34 @@ 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=, 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= product= version=" lexicon,,,Lexicon Vocabulary Sharing,[Jacob_Godwin_Jones],[Jacob_Godwin_Jones],,,,,,Defined TXT keys: None liaison,,,Liaison,[Brian_Cully],[Brian_Cully],,,,,,Defined TXT keys: None @@ -13958,10 +14887,12 @@ 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?=" 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 @@ -13969,12 +14900,15 @@ 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 @@ -13981,15 +14915,22 @@ 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 -mieleathome,,tcp,Miele@home Protocol,[Miele_Cie_KG],[Nils_Langhammer],2014-03-13,,,,,Defined TXT keys: txtvers and proprietary keys +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= mother,,,Mother script server protocol,[Jonathan],[Jonathan],,,,,,"Defined TXT keys: user, ssl" movieslate,,,MovieSlate digital clapperboard,[Cliff_Joyce],[Cliff_Joyce],,,,,,Defined TXT keys: Proprietary @@ -14005,39 +14946,52 @@ 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= mxs.system.version= mxs.cluster.id=" +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 ncdirect,,,Network Clipboard Direct Transfers,[Thom_McGrath],[Thom_McGrath],,,,,,Defined TXT keys: Contact The ZAZ Software 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 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= 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 @@ -14050,10 +15004,11 @@ 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 @@ -14079,31 +15034,32 @@ 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"" +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 +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 +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,"Port to allow for administration and control of ""Printopia"" application software, - which provides printing services to mobile users",[Ecamm_Network_LLC],[Chris_Kent],2011-10-24,,,,,"Defined TXT keys: uuid = 55A346CB-C87C-4569-A4B0-248E6388893B - vers = 1.0" +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= 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" @@ -14114,19 +15070,24 @@ 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_5],[Stuart_Cheshire_5],,,,,,Defined TXT keys: u= p= path= (Same as for _http._tcp) +qttp,,,QuickTime Transfer Protocol,[Stuart_Cheshire],[Stuart_Cheshire],,,,,,Defined TXT keys: u= p= path= (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 @@ -14150,26 +15111,47 @@ 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=, serial=, + mac=, model=, opMode=, + tx=, timing=" rsmp-server,,,Remote System Management Protocol (Server Instance),[Geoff_Back_3],[Geoff_Back_3],,,,,,Defined TXT keys: apiver= 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=, userid=, version=2" seeCard,,,seeCard,[Stefan_Pantke],[Stefan_Pantke],,,,,,Defined TXT keys: None @@ -14178,85 +15160,99 @@ 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_5][Marc_Krochmal],[Stuart_Cheshire_5][Marc_Krochmal],,,,,,Not a service type. Special name reserved for DNS-SD meta queries. +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= p= 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= id= path= seesport= register= 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_5][Marc_Krochmal],[Stuart_Cheshire_5][Marc_Krochmal],,,,,,Defined TXT keys: None +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= hostname= osVer= appVer= unit= environment= 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= p= 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= protocol= os= osver=" 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= +b. bssid=" +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= + protovers= [if not specified then default is 1.0, corresponding to SPARQL version] + binding= [if not specified then default is HTTP] + vocabs= [RDF vocabularies or OWL ontologies used by the endpoint] + metadata= [to fetch RDF/XML description of SPARQL service]" spearcat,,,sPearCat Host Discovery,[Pierre_Frisch_2],[Pierre_Frisch_2],,,,,,"Defined TXT keys: applicationname=, osname=, sslsupport=" 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" -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 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= p= 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 -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 -soda,,tcp,Secure On Device API,[Smith_Micro_Software_Inc],[David_Sperling_2],2011-10-10,,,,,"Defined TXT keys: a. ssid= -b. bssid=" -souschef,,,SousChef Recipe Sharing Protocol,[Ben],[Ben],,,,,,Defined TXT keys: None -sparql,,,SPARQL Protocol and RDF Query Language,[Alex_Tucker],[Alex_Tucker],,,,,,"Defined TXT keys: txtvers=1 - path= - protovers= [if not specified then default is 1.0, corresponding to SPARQL version] - binding= [if not specified then default is HTTP] - vocabs= [RDF vocabularies or OWL ontologies used by the endpoint] - metadata= [to fetch RDF/XML description of SPARQL service]" -sqp,,tcp,Square Connect Control Protocol,[Square_Connect_Inc],[Mat_Henshall],2011-10-07,,,,,Defined TXT keys: Proprietary 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 @@ -14263,14 +15259,19 @@ 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, @@ -14277,18 +15278,26 @@ 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= (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= (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 @@ -14310,43 +15319,65 @@ 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=, name=" +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: 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= Type= Name= Zone= ID= SString= SString1=" +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= type= title= descr=" +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=, t=" 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= stat= agent=" webdav,,,World Wide Web Distributed Authoring and Versioning (WebDAV),[Y_Y_Goland],[Y_Y_Goland],,,,,,Defined TXT keys: u= p= path= webdavs,,,WebDAV over SSL/TLS,[Y_Y_Goland],[Y_Y_Goland],,,,,,Defined TXT keys: u= p= path= @@ -14354,24 +15385,29 @@ 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= loc=" +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) @@ -14392,5 +15428,6 @@ 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),,,,,, Index: modules/nettool/nettool.tcl ================================================================== --- modules/nettool/nettool.tcl +++ modules/nettool/nettool.tcl @@ -2,13 +2,13 @@ # 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.2 +package provide nettool 0.5.4 namespace eval ::nettool {} -set ::nettool::version 0.5.2 +set ::nettool::version 0.5.4 ### # START: core.tcl ### # @mdgen OWNER: generic.tcl @@ -17,50 +17,24 @@ # @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 - -if {[info commands ::ladd] eq {}} { - proc ::ladd {varname args} { - upvar 1 $varname var - if ![info exists var] { - set var {} - } - foreach item $args { - if {$item in $var} continue - lappend var $item - } - return $var - } -} -if {[info commands ::get] eq {}} { - proc ::get varname { - upvar 1 $varname var - if {[info exists var]} { - return [set var] - } - return {} - } -} -if {[info commands ::cat] eq {}} { - proc ::cat filename { - set fin [open $filename r] - set dat [read $fin] - close $fin - return $dat - } -} - 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 @@ -86,11 +60,11 @@ ### # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { - return 127.0.0.1 + return {} } ### # topic: 15d9bc96ec6ce31d4c8f99a425a9c02c # description: Return Processor utilization @@ -937,11 +911,12 @@ 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 65535 +lappend ::nettool::blocks 49001 50999 +lappend ::nettool::blocks 51009 65535 ### # END: available_ports.tcl ### @@ -960,14 +935,18 @@ set i $start } else { set i $startingport } for {} {$i <= $end} {incr i} { - if {[string is true -strict [get ::nettool::used_ports($i)]]} continue - if {[catch {socket -server NOOP $i} chan]} continue + 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 - set ::nettool::used_ports($i) 1 + claim_port $i return $i } } error "Could not locate a port" } @@ -974,11 +953,15 @@ ### # topic: 3286fdbd0a3fdebbb26414475754bcf3dea67b0f ### proc ::nettool::claim_port {port {protocol tcp}} { - set ::nettool::used_ports($port) 1 + 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 ### @@ -989,42 +972,121 @@ set i $start } else { set i $startingport } for {} {$i <= $end} {incr i} { - if {[string is true -strict [get ::nettool::used_ports($i)]]} continue + 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 {[string is true -strict [get ::nettool::used_ports($port)]]} { + 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}} { - set ::nettool::used_ports($port) 0 + 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 ### ### @@ -1065,11 +1127,10 @@ # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} - lappend result 127.0.0.1 foreach {iface info} [dump] { if {[dict exists $info ipv4 Bcast:]} { lappend result [dict get $info ipv4 Bcast:] } } @@ -1313,11 +1374,10 @@ # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} - lappend result 127.0.0.1 foreach {iface info} [dump] { if {[dict exists $info broadcast:]} { lappend result [dict get $info broadcast:] } } @@ -1547,11 +1607,10 @@ # topic: 92ebbfa155883ad41c37d3f843392be4 # title: Return list of broadcast addresses for local networks ### proc ::nettool::broadcast_list {} { set result {} - lappend result 127.0.0.1 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] Index: modules/nettool/nettool.test ================================================================== --- modules/nettool/nettool.test +++ modules/nettool/nettool.test @@ -8,10 +8,22 @@ 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 @@ -49,11 +61,11 @@ } { ::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 @@ -66,11 +78,11 @@ [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 @@ -78,11 +90,11 @@ 7790 7791 {Start of block} 7791 7792 {...} 7792 7793 {End of block} 7793 7795 {Start of new block} } { - ::nettool::release_port $port + ::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" \ @@ -92,10 +104,56 @@ "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 7790] 7792 + [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 Index: modules/nettool/pkgIndex.tcl ================================================================== --- modules/nettool/pkgIndex.tcl +++ modules/nettool/pkgIndex.tcl @@ -1,6 +1,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.2 [list source [file join $dir nettool.tcl]] +package ifneeded nettool 0.5.4 [list source [file join $dir nettool.tcl]] Index: modules/practcl/build/build.tcl ================================================================== --- modules/practcl/build/build.tcl +++ modules/practcl/build/build.tcl @@ -8,11 +8,11 @@ set tclversion 8.6 set module [file tail $moddir] set filename $module set fout [open [file join $moddir $filename.tcl] w] -fconfigure $fout -translation lf +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" { } @@ -101,11 +101,11 @@ ### # Build our pkgIndex.tcl file ### set fout [open [file join $moddir pkgIndex.tcl] w] -fconfigure $fout -translation lf +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 Index: modules/practcl/build/buildutil.tcl ================================================================== --- modules/practcl/build/buildutil.tcl +++ modules/practcl/build/buildutil.tcl @@ -132,12 +132,12 @@ cd $vfspath exec zip -r $zipfile . cd $pwd set fout [open $exename a] set fin [open $zipfile r] - chan configure $fout -translation binary - chan configure $fin -translation binary + 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 } Index: modules/practcl/practcl.tcl ================================================================== --- modules/practcl/practcl.tcl +++ modules/practcl/practcl.tcl @@ -2668,12 +2668,12 @@ cd $vfspath exec zip -r $zipfile . cd $pwd set fout [open $exename a] set fin [open $zipfile r] - chan configure $fout -translation binary - chan configure $fin -translation binary + 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 } Index: modules/udpcluster/pkgIndex.tcl ================================================================== --- modules/udpcluster/pkgIndex.tcl +++ modules/udpcluster/pkgIndex.tcl @@ -1,4 +1,4 @@ -if {![package vsatisfies [package provide Tcl] 8.5]} {return} -# Backward compatible alias -package ifneeded nameserv::cluster 0.2.5 {package require udpcluster ; package provide nameserv::cluster 0.2.5} -package ifneeded udpcluster 0.3.3 [list source [file join $dir udpcluster.tcl]] +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]] Index: modules/udpcluster/udpcluster.man ================================================================== --- modules/udpcluster/udpcluster.man +++ modules/udpcluster/udpcluster.man @@ -1,21 +1,22 @@ -[vset VERSION 0.3.3] -[manpage_begin udpcluster n [vset VERSION]] +[manpage_begin udpcluster n 0.3] [keywords {name service}] [keywords server] -[copyright {2016-2018 Sean Woods }] +[copyright {2018 Sean Woods }] [moddesc {Lightweight UDP based tool for cluster node discovery}] [titledesc {UDP Peer-to-Peer cluster}] [category Networking] -[require Tcl 8.5] -[require udpcluster [opt [vset VERSION]]] +[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 @@ -53,7 +54,7 @@ [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 ../common-text/feedback.inc] +[include ../doctools2base/include/feedback.inc] [manpage_end] Index: modules/udpcluster/udpcluster.tcl ================================================================== --- modules/udpcluster/udpcluster.tcl +++ modules/udpcluster/udpcluster.tcl @@ -3,194 +3,262 @@ ## Name Service - Cluster # ### ### ### ######### ######### ######### ## Requirements -package require Tcl 8.5 -package require comm ; # Generic message transport -package require interp ; # Interpreter helpers. -package require logger ; # Tracing internal activity +package require Tcl 8.6 package require uuid package require cron 2.0 -package require nettool 0.5.2 +package require nettool 0.5.3 package require udp -package require dicttool - -namespace eval ::comm {} -::namespace eval ::cluster {} +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 +} -### -# topic: 5cffdc91e554c923ebe43df13fac77d5 -### -proc ::cluster::broadcast {args} { +proc ::cluster::directory::broadcast {args} { if {$::cluster::config(debug)} { puts [list $::cluster::local_pid SEND $args] } - variable discovery_port - listen - while {[catch { - foreach net [::nettool::broadcast_list] { - if {$::cluster::config(debug)} { - puts [list BROADCAST -> $net $args] - } - set s [udp_open] - udp_conf $s $net $discovery_port - chan puts -nonewline $s [list [pid] {*}$args] - chan flush $s - chan close $s - } - } error]} { - set ::cluster::broadcast_sock {} - if {$::cluster::config(debug)} { - puts "Broadcast ERR: $error - Reopening Socket" - ::cron::sleep 2000 - } else { - # Double the delay - ::cron::sleep 250 - } - } -} - -### -# 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 args { - # Fullfill locally - switch [lindex $args 0] { - alloc_port { - return [Get_free_port [lindex $args 1]] - } - port_busy { - return [::nettool::port_busy [lindex $args 1]] - } - pid { - return [pid] - } - } - error "UNKNOWN COMMAND [lindex $args 0]" -} - - -proc ::cluster::directory args { - ::cluster::listen - variable directory_sock - if {$directory_sock ne {}} { - return [Directory {*}$args] - } - # We are not acting as the directory, query who is - variable directory_port - set sock [socket localhost $directory_port] - chan configure $sock -translation crlf -buffering line -blocking 1 - chan puts $sock $args - chan flush $sock - update - set reply {} - while {[chan gets $sock line]>0} { - append reply \n $line - if {[::info complete $reply]} break - } - catch {chan close $sock} - lassign $reply result errdat - return $result {*}$errdat -} - -### -# topic: 3f5f9e197cc9666dd7953d97fef34019 -### -proc ::cluster::ipaddr macid { - # Convert rawname to a canonical name + 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 [cname *@$macid]] { + foreach {servname dat} [search [::cluster::cname *@$macid]] { if {[dict exists $dat ipaddr]} { return [dict get $dat ipaddr] } } - ### - # Do a lookup - ### - error "Could not locate $macid" -} - -### -# topic: e57db306f0e931d7febb5ad1f9cb2247 -### -proc ::cluster::listen {} { - variable broadcast_sock - if {$broadcast_sock != {}} { - return $broadcast_sock - } - - variable discovery_port - # Open a local discovery port to catch non-IP traffic - variable discovery_group - set broadcast_sock [udp_open $discovery_port reuse] - fconfigure $broadcast_sock -buffering none -blocking 0 \ - -broadcast 1 \ - -mcastadd $discovery_group \ - -remote [list $discovery_group $discovery_port] - chan event $broadcast_sock readable [list [namespace current]::UDPPacket $broadcast_sock] - ::cron::every cluster_heartbeat 30 ::cluster::heartbeat - - variable directory_sock - variable directory_pid - if {$directory_sock eq {} && $directory_pid eq {}} { - variable directory_port - # Nobody is acting as the directory. Have this process step on - if {![catch {socket -server ::cluster::TCPAccept $directory_port} newsock]} { - set directory_sock $newsock - set directory_pid [pid] - } else { - set directory_sock {} - set directory_pid {} - } - } - return $broadcast_sock -} - -proc ::cluster::sleep args { - ::cron::sleep {*}$args -} - -proc ::cluster::TCPAccept {sock host port} { + 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 - if {[catch {Directory {*}$packet} reply errdat]} { - chan puts $sock [list $reply $errdat] - } else { - chan puts $sock [list $reply {}] + 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 } - chan flush $sock - chan close $sock } ### # topic: 2a33c825920162b0791e2cdae62e6164 ### -proc ::cluster::UDPPacket sock { +proc ::cluster::directory::UDPPacket sock { variable ptpdata set pid [pid] set packet [string trim [read $sock]] set peer [fconfigure $sock -peer] @@ -252,11 +320,10 @@ 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 - Service_Remove $serviceurl $result } PONG - ~SERVICE { set ::cluster::recv_message 1 @@ -271,32 +338,29 @@ dict set ptpdata($serviceurl) $field $value dict set delta $field $value } } dict set ptpdata($serviceurl) closed 0 - Service_Modified $serviceurl $serviceinfo $delta } +SERVICE { set ::cluster::recv_message 1 # Code to register the presence of a service - variable ptpdata set ptpdata($serviceurl) $serviceinfo dict set ptpdata($serviceurl) closed 0 - Service_Add $serviceurl $serviceinfo } LOG { - Service_Log $serviceurl $serviceinfo + #::cluster::Service_Log $serviceurl $serviceinfo } PING { - foreach {url info} [search_local $serviceurl] { + foreach {url info} [search_directory $serviceurl] { broadcast PONG $url $info } } } } -proc ::cluster::UDPPortInfo {serviceurl msgtype newinfo} { +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]} { @@ -335,54 +399,131 @@ ::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}} { - set rcpt [cname $rawname] - variable ptpdata - set starttime [clock seconds] - - set ::cluster::ping_recv($rcpt) 0 - broadcast PING $rcpt - update - 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] - } + return [directory ping $rawname $timeout] } proc ::cluster::publish {url infodict} { variable local_data - dict set infodict macid [self] - dict set infodict pid [pid] + dict set infodict macid [macid] + dict set infodict pid [pid] set local_data($url) [dict merge $infodict {ipaddr 127.0.0.1}] - broadcast +SERVICE $url $infodict + directory service_publish $url $infodict } +### +# Empty implementation. Replace to have a task run every +# heartbeat +### +proc ::cluster::event_hook {} {} + proc ::cluster::heartbeat {} { - variable ptpdata variable config - - _Winnow + _Cleanup ### # Broadcast the status of our local services ### variable local_data foreach {url info} [array get local_data] { - broadcast ~SERVICE $url $info + 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] { @@ -393,10 +534,11 @@ if {$seconds < $now} { set ::cluster::events($eventid) -1 } } } + event_hook } proc ::cluster::info url { variable local_data return [array get local_data $url] @@ -406,11 +548,11 @@ variable local_data foreach {field value} $infodict { dict set local_data($url) $field $value } set info [lindex [array get local_data $url] 1] - broadcast -SERVICE $url $info + directory service_unpublish $url $info dict set local_data($url) closed 1 } proc ::cluster::configure {url infodict {send 1}} { variable local_data @@ -418,36 +560,12 @@ dict set local_data($url) closed 0 foreach {field value} $infodict { dict set local_data($url) $field $value } if {$send} { - broadcast ~SERVICE $url $local_data($url) - update - } -} - -proc ::cluster::Get_free_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 *@[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 + directory service_update $url $local_data($url) + } } proc ::cluster::get_free_port {{startport 50000}} { return [directory alloc_port $startport] } @@ -458,45 +576,17 @@ ### # topic: 2c04e58c7f93798f9a5ed31a7f5779ab ### proc ::cluster::resolve {rawname} { - variable ptpdata - set self [self] - set rcpt [cname $rawname] - set ipaddr {} - if {[::info exists ptpdata($rcpt)] && [dict exists $ptpdata($rcpt) macid] && [dict get $ptpdata($rcpt) macid] eq $self} { - set ipaddr 127.0.0.1 - } elseif {[::info exists ptpdata($rcpt)] && [dict exists $ptpdata($rcpt) ipaddr] && [dict exists $ptpdata($rcpt) updated]} { - # Try Pull the info from cache - set updatetm [dict get $ptpdata($rcpt) updated] - if {([clock seconds] - $updatetm) < 30} { - set ipaddr [dict get $ptpdata($rcpt) ipaddr] - } - } - if {$ipaddr eq {}} { - ping $rcpt - if {![::info exists ptpdata($rcpt)]} { - error "Could not locate $rcpt on the network" - } - if {[dict exists $ptpdata($rcpt) macid] && [dict get $ptpdata($rcpt) macid] eq $self} { - set ipaddr 127.0.0.1 - } else { - if {![dict exists $ptpdata($rcpt) ipaddr]} { - error "Could not locate $rcpt on the network" - } - set ipaddr [dict getnull $ptpdata($rcpt) ipaddr] - if {$ipaddr eq {}} { - error "Could not locate $rcpt on the network" - } - } - } - set port [dict getnull $ptpdata($rcpt) port] - if {$port eq {}} { - error "Could not locate $rcpt on the network" - } - return [list $port $ipaddr] + 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 ### @@ -513,44 +603,21 @@ proc ::cluster::self {} { variable local_macid return $local_macid } -### -# topic: f1b71ff12a8ac10373c67ac5d973cd81 -### -proc ::cluster::send {service command args} { - set commid [resolve $service] - return [::comm::comm send $commid $command {*}$args] -} - -proc ::cluster::throw {service command args} { - if {[catch {resolve $service} commid]} { - return - } - if [catch {::comm::comm send -async $commid $command {*}$args} reply] { - puts $stderr "ERR: SEND $service $reply" - } -} - ### # topic: c8475e832c912e962f238c61580b669e ### proc ::cluster::search pattern { - _Winnow - set result {} - variable ptpdata - foreach {service dat} [array get ptpdata $pattern] { - foreach {field value} $dat { - dict set result $service $field $value - } - } - + ::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 } @@ -574,60 +641,10 @@ } } return $result } -proc ::cluster::Service_Add {serviceurl serviceinfo} { - # Code to register the emergencs of a new service -} - -proc ::cluster::Service_Remove {serviceurl serviceinfo} { - # Code to register the loss of a service -} - -proc ::cluster::Service_Modified {serviceurl serviceinfo {delta {}}} { - # Code to register an update to a service -} - -proc ::cluster::Service_Log {service data delta} { - # Code to register an event -} - -### -# Clean out closed and expired entries -# Performed immediately before searches -# and heartbeats -### -proc ::cluster::_Winnow {} { - variable ptpdata - variable config - variable local_data - - set now [clock seconds] - foreach {item info} [array get 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])>$config(discovery_ttl)} { - set remove 1 - } - if {$remove} { - unset ptpdata($item) - } - } - foreach {item info} [array get local_data] { - set remove 0 - if {[dict exists $info closed] && [dict get $info closed]} { - set remove 1 - } - if {$remove} { - unset local_data($item) - } - } -} - ### # topic: d3e48e31cc4baf81395179f4097fee1b ### namespace eval ::cluster { # Number of seconds to "remember" data @@ -645,10 +662,11 @@ 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 @@ -655,7 +673,12 @@ 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 +} -package provide udpcluster 0.3.3 +::cron::every cluster_heartbeat 30 ::cluster::heartbeat + Index: modules/udpcluster/udpcluster.test ================================================================== --- modules/udpcluster/udpcluster.test +++ modules/udpcluster/udpcluster.test @@ -17,19 +17,20 @@ 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 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 use cron/cron.tcl cron use uuid/uuid.tcl uuid - use interp/interp.tcl interp use log/logger.tcl logger use md5/md5x.tcl md5 } testing { useLocal udpcluster.tcl udpcluster @@ -46,11 +47,11 @@ 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 @@ -68,11 +69,11 @@ 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 @@ -119,25 +120,29 @@ 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 @@ -162,25 +167,28 @@ set url other@$macid ::comm::comm new $url -port $myport -local 0 -listen 1 ::cluster::publish $url [list port $myport protocol comm class comm] } -#set ::cluster::config(debug) 1 -::cluster::ping nns@$macid - +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.3 {Check that other service does exists} { +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} ### @@ -202,31 +210,30 @@ ### # Have a non-existant service fail ### test cluster-comm-5.0 {Service lookup failture} { - catch {cluster::resolve foo@bar} pat -} {1} + llength [cluster::resolve foo@bat] +} 0 #puts $pat ### # Test port allocation ### -set port [interp eval otherclient { +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 otherclient { +set otherport [interp eval server { ::cluster::get_free_port 58080 }] -puts [list GET FREE PORT $port $otherport [::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 -puts "DONE" testsuiteCleanup return Index: modules/uuid/pkgIndex.tcl ================================================================== --- modules/uuid/pkgIndex.tcl +++ modules/uuid/pkgIndex.tcl @@ -1,2 +1,2 @@ if {![package vsatisfies [package provide Tcl] 8.5]} {return} -package ifneeded uuid 1.0.7 [list source [file join $dir uuid.tcl]] +package ifneeded uuid 1.0.6 [list source [file join $dir uuid.tcl]] Index: modules/uuid/uuid.tcl ================================================================== --- modules/uuid/uuid.tcl +++ modules/uuid/uuid.tcl @@ -46,11 +46,11 @@ ### # If we have /dev/urandom just stream 128 bits from that ### if {[file exists /dev/urandom]} { set fin [open /dev/urandom r] - binary scan [read $fin 128] H* machinfo + 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 @@ -234,12 +234,12 @@ if {[LoadAccelerator $e]} break } unset e } -package provide uuid 1.0.7 +package provide uuid 1.0.6 # ------------------------------------------------------------------------- # Local variables: # mode: tcl # indent-tabs-mode: nil # End: