网络运维之计算机端口
網絡運維之計算機端口
- 一、計算機端口介紹
- 1.定義
- 2.端口理解
- 3.端口分類
- 二、傳輸層TCP/UDP
- 1.TCP/UDP解釋
- 2.TCP連接的三次握手
- 3.TCP/UDP應用
- 三、常用的默認端口合集
- 四、Linux全部端口查詢
- 五、端口幫助查詢
- 1.服務端口查詢netstat
- 2.服務端口查詢/etc/services
一、計算機端口介紹
1.定義
端口定義:軟件領域的端口一般指網絡中面向連接服務和無連接服務的通信協議端口,是一種抽象的軟件結構,包括一些數據結構和I/O(基本輸入輸出)緩沖區。
2.端口理解
計算機“端口”是英文port的義譯,可以認為是計算機與外界通訊交流的出口.分軟件端口和硬件端口。
3.端口分類
①第一類
公認端口(Well Known Ports):從0到1023,它們緊密綁定(binding)于一些服務。通常這些端口的通訊明確表明了某種服務的協議,例如:80端口實際上總是HTTP通訊。
②第二類
注冊端口(Registered Ports):從1024到49151。它們松散地綁定于一些服務。也就是說有許多服務綁定于這些端口,這些端口同樣用于許多其它目的。例如:許多系統處理動態端口從1024左右開始。
③第三類
動態和/或私有端口(Dynamic and/or Private Ports):從49152到65535。理論上,不應為服務分配這些端口。實際上,機器通常從1024起分配動態端口。但也有例外:SUN的RPC端口從32768開始。
二、傳輸層TCP/UDP
1.TCP/UDP解釋
TCP:TCP協議全稱是傳輸控制協議是一種面向連接的、可靠的、基于字節流的傳輸層通信協議。
UDP:UDP協議全稱是用戶數據報協議,在網絡中它與TCP協議一樣用于處理數據包,是一種無連接的協議。
2.TCP連接的三次握手
第一次握手:客戶端向服務端發送連接請求報文段。該報文段中包含自身的數據通訊初始序號。請求發送后,客戶端便進入 SYN-SENT 狀態。
第二次握手:服務端收到連接請求報文段后,如果同意連接,則會發送一個應答,該應答中也會包含自身的數據通訊初始序號,發送完成后便進入 SYN-RECEIVED 狀態。
第三次握手:當客戶端收到連接同意的應答后,還要向服務端發送一個確認報文。客戶端發完這個報文段后便進入 ESTABLISHED 狀態,服務端收到這個應答后也進入 ESTABLISHED 狀態,此時連接建立成功。
3.TCP/UDP應用
TCP:
①FTP:文件傳輸協議;
②SSH:安全登錄、文件傳送(SCP)和端口重定向;
③Telnet:不安全的文本傳送;
④SMTP:簡單郵件傳輸協議Simple Mail Transfer Protocol (E-mail);
⑤HTTP:超文本傳送協議 (WWW);
UDP:
①流媒體
②TFTP
③QQ 文件傳輸、QQ語音、QQ視頻
三、常用的默認端口合集
四、Linux全部端口查詢
[root@tianyi ~]# cat -n /etc/services 23 tcpmux 1/tcp # TCP port service multiplexer24 tcpmux 1/udp # TCP port service multiplexer25 rje 5/tcp # Remote Job Entry26 rje 5/udp # Remote Job Entry27 echo 7/tcp28 echo 7/udp29 discard 9/tcp sink null30 discard 9/udp sink null31 systat 11/tcp users32 systat 11/udp users33 daytime 13/tcp34 daytime 13/udp35 qotd 17/tcp quote36 qotd 17/udp quote37 chargen 19/tcp ttytst source38 chargen 19/udp ttytst source39 ftp-data 20/tcp40 ftp-data 20/udp41 # 21 is registered to ftp, but also used by fsp42 ftp 21/tcp43 ftp 21/udp fsp fspd44 ssh 22/tcp # The Secure Shell (SSH) Protocol45 ssh 22/udp # The Secure Shell (SSH) Protocol46 telnet 23/tcp47 telnet 23/udp48 # 24 - private mail system49 lmtp 24/tcp # LMTP Mail Delivery50 lmtp 24/udp # LMTP Mail Delivery51 smtp 25/tcp mail52 smtp 25/udp mail53 time 37/tcp timserver54 time 37/udp timserver55 rlp 39/tcp resource # resource location56 rlp 39/udp resource # resource location57 nameserver 42/tcp name # IEN 11658 nameserver 42/udp name # IEN 11659 nicname 43/tcp whois60 nicname 43/udp whois61 tacacs 49/tcp # Login Host Protocol (TACACS)62 tacacs 49/udp # Login Host Protocol (TACACS)63 re-mail-ck 50/tcp # Remote Mail Checking Protocol64 re-mail-ck 50/udp # Remote Mail Checking Protocol65 domain 53/tcp # name-domain server66 domain 53/udp67 whois++ 63/tcp whoispp68 whois++ 63/udp whoispp69 bootps 67/tcp # BOOTP server70 bootps 67/udp71 bootpc 68/tcp dhcpc # BOOTP client72 bootpc 68/udp dhcpc73 tftp 69/tcp74 tftp 69/udp75 gopher 70/tcp # Internet Gopher76 gopher 70/udp77 netrjs-1 71/tcp # Remote Job Service78 netrjs-1 71/udp # Remote Job Service79 netrjs-2 72/tcp # Remote Job Service80 netrjs-2 72/udp # Remote Job Service81 netrjs-3 73/tcp # Remote Job Service82 netrjs-3 73/udp # Remote Job Service83 netrjs-4 74/tcp # Remote Job Service84 netrjs-4 74/udp # Remote Job Service85 finger 79/tcp86 finger 79/udp87 http 80/tcp www www-http # WorldWideWeb HTTP88 http 80/udp www www-http # HyperText Transfer Protocol89 http 80/sctp # HyperText Transfer Protocol90 kerberos 88/tcp kerberos5 krb5 # Kerberos v591 kerberos 88/udp kerberos5 krb5 # Kerberos v592 supdup 95/tcp93 supdup 95/udp94 hostname 101/tcp hostnames # usually from sri-nic95 hostname 101/udp hostnames # usually from sri-nic96 iso-tsap 102/tcp tsap # part of ISODE.97 csnet-ns 105/tcp cso # also used by CSO name server98 csnet-ns 105/udp cso99 # unfortunately the poppassd (Eudora) uses a port which has already100 # been assigned to a different service. We list the poppassd as an101 # alias here. This should work for programs asking for this service.102 # (due to a bug in inetd the 3com-tsmux line is disabled)103 #3com-tsmux 106/tcp poppassd104 #3com-tsmux 106/udp poppassd105 rtelnet 107/tcp # Remote Telnet106 rtelnet 107/udp107 pop2 109/tcp pop-2 postoffice # POP version 2108 pop2 109/udp pop-2109 pop3 110/tcp pop-3 # POP version 3110 pop3 110/udp pop-3111 sunrpc 111/tcp portmapper rpcbind # RPC 4.0 portmapper TCP112 sunrpc 111/udp portmapper rpcbind # RPC 4.0 portmapper UDP113 auth 113/tcp authentication tap ident114 auth 113/udp authentication tap ident115 sftp 115/tcp116 sftp 115/udp117 uucp-path 117/tcp118 uucp-path 117/udp119 nntp 119/tcp readnews untp # USENET News Transfer Protocol120 nntp 119/udp readnews untp # USENET News Transfer Protocol121 ntp 123/tcp122 ntp 123/udp # Network Time Protocol123 netbios-ns 137/tcp # NETBIOS Name Service124 netbios-ns 137/udp125 netbios-dgm 138/tcp # NETBIOS Datagram Service126 netbios-dgm 138/udp127 netbios-ssn 139/tcp # NETBIOS session service128 netbios-ssn 139/udp129 imap 143/tcp imap2 # Interim Mail Access Proto v2130 imap 143/udp imap2131 snmp 161/tcp # Simple Net Mgmt Proto132 snmp 161/udp # Simple Net Mgmt Proto133 snmptrap 162/tcp # SNMPTRAP134 snmptrap 162/udp snmp-trap # Traps for SNMP135 cmip-man 163/tcp # ISO mgmt over IP (CMOT)136 cmip-man 163/udp137 cmip-agent 164/tcp138 cmip-agent 164/udp139 mailq 174/tcp # MAILQ140 mailq 174/udp # MAILQ141 xdmcp 177/tcp # X Display Mgr. Control Proto142 xdmcp 177/udp143 nextstep 178/tcp NeXTStep NextStep # NeXTStep window144 nextstep 178/udp NeXTStep NextStep # server145 bgp 179/tcp # Border Gateway Proto.146 bgp 179/udp147 bgp 179/sctp148 prospero 191/tcp # Cliff Neuman's Prospero149 prospero 191/udp150 irc 194/tcp # Internet Relay Chat151 irc 194/udp152 smux 199/tcp # SNMP Unix Multiplexer153 smux 199/udp154 at-rtmp 201/tcp # AppleTalk routing155 at-rtmp 201/udp156 at-nbp 202/tcp # AppleTalk name binding157 at-nbp 202/udp158 at-echo 204/tcp # AppleTalk echo159 at-echo 204/udp160 at-zis 206/tcp # AppleTalk zone information161 at-zis 206/udp162 qmtp 209/tcp # Quick Mail Transfer Protocol163 qmtp 209/udp # Quick Mail Transfer Protocol164 z39.50 210/tcp z3950 z39-50 wais # NISO Z39.50 database165 z39.50 210/udp z3950 z39-50 wais166 ipx 213/tcp # IPX167 ipx 213/udp168 imap3 220/tcp # Interactive Mail Access169 imap3 220/udp # Protocol v3170 link 245/tcp ttylink171 link 245/udp ttylink172 gist 270/udp # Q-mode encapsulation for GIST messages173 fatserv 347/tcp # Fatmen Server174 fatserv 347/udp # Fatmen Server175 rsvp_tunnel 363/tcp rsvp-tunnel176 rsvp_tunnel 363/udp rsvp-tunnel177 odmr 366/tcp # odmr required by fetchmail178 odmr 366/udp # odmr required by fetchmail179 rpc2portmap 369/tcp180 rpc2portmap 369/udp # Coda portmapper181 codaauth2 370/tcp182 codaauth2 370/udp # Coda authentication server183 ulistproc 372/tcp ulistserv # UNIX Listserv184 ulistproc 372/udp ulistserv185 ldap 389/tcp186 ldap 389/udp187 osb-sd 400/tcp # Oracle Secure Backup188 osb-sd 400/udp # Oracle Secure Backup189 svrloc 427/tcp # Server Location190 svrloc 427/udp # Server Location191 mobileip-agent 434/tcp192 mobileip-agent 434/udp193 mobilip-mn 435/tcp194 mobilip-mn 435/udp195 https 443/tcp # http protocol over TLS/SSL 196 https 443/udp # http protocol over TLS/SSL197 https 443/sctp # http protocol over TLS/SSL198 snpp 444/tcp # Simple Network Paging Protocol199 snpp 444/udp # Simple Network Paging Protocol200 microsoft-ds 445/tcp201 microsoft-ds 445/udp202 kpasswd 464/tcp kpwd # Kerberos "passwd"203 kpasswd 464/udp kpwd # Kerberos "passwd"204 photuris 468/tcp205 photuris 468/udp206 saft 487/tcp # Simple Asynchronous File Transfer207 saft 487/udp # Simple Asynchronous File Transfer208 gss-http 488/tcp209 gss-http 488/udp210 pim-rp-disc 496/tcp211 pim-rp-disc 496/udp212 isakmp 500/tcp213 isakmp 500/udp214 gdomap 538/tcp # GNUstep distributed objects215 gdomap 538/udp # GNUstep distributed objects216 iiop 535/tcp217 iiop 535/udp218 dhcpv6-client 546/tcp219 dhcpv6-client 546/udp220 dhcpv6-server 547/tcp221 dhcpv6-server 547/udp222 rtsp 554/tcp # Real Time Stream Control Protocol223 rtsp 554/udp # Real Time Stream Control Protocol224 nntps 563/tcp # NNTP over SSL225 nntps 563/udp # NNTP over SSL226 whoami 565/tcp227 whoami 565/udp228 submission 587/tcp msa # mail message submission229 submission 587/udp msa # mail message submission230 npmp-local 610/tcp dqs313_qmaster # npmp-local / DQS231 npmp-local 610/udp dqs313_qmaster # npmp-local / DQS232 npmp-gui 611/tcp dqs313_execd # npmp-gui / DQS233 npmp-gui 611/udp dqs313_execd # npmp-gui / DQS234 hmmp-ind 612/tcp dqs313_intercell # HMMP Indication / DQS235 hmmp-ind 612/udp dqs313_intercell # HMMP Indication / DQS236 ipp 631/tcp # Internet Printing Protocol237 ipp 631/udp # Internet Printing Protocol238 ldaps 636/tcp # LDAP over SSL239 ldaps 636/udp # LDAP over SSL240 acap 674/tcp241 acap 674/udp242 ha-cluster 694/tcp # Heartbeat HA-cluster243 ha-cluster 694/udp # Heartbeat HA-cluster244 kerberos-adm 749/tcp # Kerberos `kadmin' (v5)245 kerberos-adm 749/udp # kerberos administration246 kerberos-iv 750/udp kerberos4 kerberos-sec kdc loadav247 kerberos-iv 750/tcp kerberos4 kerberos-sec kdc rfile248 webster 765/tcp # Network dictionary249 webster 765/udp250 phonebook 767/tcp # Network phonebook251 phonebook 767/udp252 rsync 873/tcp # rsync253 rsync 873/udp # rsync254 #rquotad unreserved in IANA!255 rquotad 875/tcp # rquota daemon256 #rquotad unreserved in IANA!257 rquotad 875/udp # rquota daemon258 telnets 992/tcp259 telnets 992/udp260 imaps 993/tcp # IMAP over SSL261 imaps 993/udp # IMAP over SSL262 pop3s 995/tcp # POP-3 over SSL263 pop3s 995/udp # POP-3 over SSL264 265 #266 # UNIX specific services267 #268 exec 512/tcp269 biff 512/udp comsat270 login 513/tcp271 who 513/udp whod272 shell 514/tcp cmd # no passwords used273 syslog 514/udp274 printer 515/tcp spooler # line printer spooler275 printer 515/udp spooler # line printer spooler276 talk 517/udp277 ntalk 518/udp278 utime 519/tcp unixtime279 utime 519/udp unixtime280 efs 520/tcp281 router 520/udp route routed # RIP282 ripng 521/tcp283 ripng 521/udp284 timed 525/tcp timeserver285 timed 525/udp timeserver286 tempo 526/tcp newdate287 courier 530/tcp rpc288 conference 531/tcp chat289 netnews 532/tcp290 netwall 533/udp # -for emergency broadcasts291 uucp 540/tcp uucpd # uucp daemon292 klogin 543/tcp # Kerberized `rlogin' (v5)293 kshell 544/tcp krcmd # Kerberized `rsh' (v5)294 afpovertcp 548/tcp # AFP over TCP295 afpovertcp 548/udp # AFP over TCP296 remotefs 556/tcp rfs_server rfs # Brunhoff remote filesystem297 298 #299 # From ``PORT NUMBERS'':300 #301 #>REGISTERED PORT NUMBERS302 #>303 #>The Registered Ports are listed by the IANA and on most systems can be304 #>used by ordinary user processes or programs executed by ordinary305 #>users.306 #>307 #>Ports are used in the TCP [RFC793] to name the ends of logical308 #>connections which carry long term conversations. For the purpose of309 #>providing services to unknown callers, a service contact port is310 #>defined. This list specifies the port used by the server process as311 #>its contact port.312 #>313 #>The IANA registers uses of these ports as a convienence to the314 #>community.315 #316 socks 1080/tcp # socks proxy server317 socks 1080/udp # socks proxy server318 319 # Port 1236 is registered as `bvcontrol', but is also used by the320 # Gracilis Packeten remote config server. The official name is listed as321 # the primary name, with the unregistered name as an alias.322 bvcontrol 1236/tcp rmtcfg # Daniel J. Walsh, Gracilis Packeten remote config server323 bvcontrol 1236/udp # Daniel J. Walsh324 325 h323hostcallsc 1300/tcp # H.323 Secure Call Control326 h323hostcallsc 1300/udp # H.323 Secure Call Control327 ms-sql-s 1433/tcp # Microsoft-SQL-Server328 ms-sql-s 1433/udp # Microsoft-SQL-Server329 ms-sql-m 1434/tcp # Microsoft-SQL-Monitor330 ms-sql-m 1434/udp # Microsoft-SQL-Monitor331 ica 1494/tcp # Citrix ICA Client332 ica 1494/udp # Citrix ICA Client333 wins 1512/tcp # Microsoft's Windows Internet Name Service334 wins 1512/udp # Microsoft's Windows Internet Name Service335 ingreslock 1524/tcp336 ingreslock 1524/udp337 prospero-np 1525/tcp orasrv # Prospero non-privileged/oracle338 prospero-np 1525/udp orasrv339 datametrics 1645/tcp old-radius sightline # datametrics / old radius entry340 datametrics 1645/udp old-radius sightline # datametrics / old radius entry341 sa-msg-port 1646/tcp old-radacct # sa-msg-port / old radacct entry342 sa-msg-port 1646/udp old-radacct # sa-msg-port / old radacct entry343 kermit 1649/tcp344 kermit 1649/udp345 l2tp 1701/tcp l2f346 l2tp 1701/udp l2f347 h323gatedisc 1718/tcp348 h323gatedisc 1718/udp349 h323gatestat 1719/tcp 350 h323gatestat 1719/udp351 h323hostcall 1720/tcp352 h323hostcall 1720/udp353 h323hostcall 1720/sctp # H.323 Call Control354 tftp-mcast 1758/tcp355 tftp-mcast 1758/udp356 mtftp 1759/udp spss-lm357 vdab 1775/tcp # data interchange between visual processing containers358 hello 1789/tcp359 hello 1789/udp360 radius 1812/tcp # Radius361 radius 1812/udp # Radius362 radius-acct 1813/tcp radacct # Radius Accounting363 radius-acct 1813/udp radacct # Radius Accounting364 mtp 1911/tcp #365 mtp 1911/udp #366 hsrp 1985/tcp # Cisco Hot Standby Router Protocol367 hsrp 1985/udp # Cisco Hot Standby Router Protocol368 licensedaemon 1986/tcp369 licensedaemon 1986/udp370 gdp-port 1997/tcp # Cisco Gateway Discovery Protocol371 gdp-port 1997/udp # Cisco Gateway Discovery Protocol372 sieve-filter 2000/tcp cisco-sccp # Sieve Mail Filter Daemon373 sieve-filter 2000/udp cisco-sccp # Sieve Mail Filter Daemon374 nfs 2049/tcp nfsd shilp # Network File System375 nfs 2049/udp nfsd shilp # Network File System376 nfs 2049/sctp nfsd shilp # Network File System377 zephyr-srv 2102/tcp # Zephyr server378 zephyr-srv 2102/udp # Zephyr server379 zephyr-clt 2103/tcp # Zephyr serv-hm connection380 zephyr-clt 2103/udp # Zephyr serv-hm connection381 zephyr-hm 2104/tcp # Zephyr hostmanager382 zephyr-hm 2104/udp # Zephyr hostmanager383 cvspserver 2401/tcp # CVS client/server operations384 cvspserver 2401/udp # CVS client/server operations385 venus 2430/tcp # codacon port386 venus 2430/udp # Venus callback/wbc interface387 venus-se 2431/tcp # tcp side effects388 venus-se 2431/udp # udp sftp side effect389 codasrv 2432/tcp # not used390 codasrv 2432/udp # server port391 codasrv-se 2433/tcp # tcp side effects392 codasrv-se 2433/udp # udp sftp side effectQ393 394 # Ports numbered 2600 through 2606 are used by the zebra package without395 # being registred. The primary names are the registered names, and the396 # unregistered names used by zebra are listed as aliases.397 hpstgmgr 2600/tcp zebrasrv # HPSTGMGR398 hpstgmgr 2600/udp # HPSTGMGR399 discp-client 2601/tcp zebra # discp client400 discp-client 2601/udp # discp client401 discp-server 2602/tcp ripd # discp server402 discp-server 2602/udp # discp server403 servicemeter 2603/tcp ripngd # Service Meter404 servicemeter 2603/udp # Service Meter405 nsc-ccs 2604/tcp ospfd # NSC CCS406 nsc-ccs 2604/udp # NSC CCS407 nsc-posa 2605/tcp bgpd # NSC POSA408 nsc-posa 2605/udp # NSC POSA409 netmon 2606/tcp ospf6d # Dell Netmon410 netmon 2606/udp # Dell Netmon411 dict 2628/tcp # RFC 2229412 dict 2628/udp # RFC 2229413 corbaloc 2809/tcp # CORBA naming service locator414 icpv2 3130/tcp # Internet Cache Protocol V2 (Squid)415 icpv2 3130/udp # Internet Cache Protocol V2 (Squid)416 mysql 3306/tcp # MySQL417 mysql 3306/udp # MySQL418 trnsprntproxy 3346/tcp # Trnsprnt Proxy419 trnsprntproxy 3346/udp # Trnsprnt Proxy420 pxe 4011/udp altserviceboot # PXE server421 fud 4201/udp # Cyrus IMAP FUD Daemon422 rwhois 4321/tcp # Remote Who Is423 rwhois 4321/udp # Remote Who Is424 krb524 4444/tcp nv-video # Kerberos 5 to 4 ticket xlator425 krb524 4444/udp nv-video # Kerberos 5 to 4 ticket xlator426 rfe 5002/tcp # Radio Free Ethernet427 rfe 5002/udp # Actually uses UDP only428 cfengine 5308/tcp # CFengine429 cfengine 5308/udp # CFengine430 cvsup 5999/tcp CVSup # CVSup file transfer/John Polstra/FreeBSD五、端口幫助查詢
1.服務端口查詢netstat
[root@tianyi ~]# netstat -tunlp Active Internet connections (only servers) Proto Recv-Q Send-Q Local Address Foreign Address State PID/Program name tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 1252/sshd tcp 0 0 0.0.0.0:10050 0.0.0.0:* LISTEN 18644/zabbix_agentd tcp 0 0 0.0.0.0:10051 0.0.0.0:* LISTEN 18642/zabbix_server tcp6 0 0 :::21 :::* LISTEN 945/vsftpd tcp6 0 0 :::22 :::* LISTEN 1252/sshd tcp6 0 0 :::10050 :::* LISTEN 18644/zabbix_agentd tcp6 0 0 :::10051 :::* LISTEN 18642/zabbix_server tcp6 0 0 :::33060 :::* LISTEN 18552/mysqld tcp6 0 0 :::3306 :::* LISTEN 18552/mysqld tcp6 0 0 :::80 :::* LISTEN 18728/httpd udp 0 0 192.168.1.209:68 0.0.0.0:* 1338/NetworkManager [root@tianyi ~]# netstat -tunlp |grep http tcp6 0 0 :::80 :::* LISTEN 18728/httpd2.服務端口查詢/etc/services
[root@control ~]# grep -w https /etc/services https 443/tcp # http protocol over TLS/SSL https 443/udp # http protocol over TLS/SSL https 443/sctp # http protocol over TLS/SSL oob-ws-https 664/tcp # DMTF out-of-band secure web services management protocol llsurfup-https 1184/tcp # LL Surfup HTTPS llsurfup-https 1184/udp # LL Surfup HTTPS compaq-https 2381/tcp # Compaq HTTPS compaq-https 2381/udp # Compaq HTTPS wap-push-https 4036/tcp # WAP Push OTA-HTTP secure wap-push-https 4036/udp # WAP Push OTA-HTTP secure appserv-https 4849/tcp # App Server - Admin HTTPS appserv-https 4849/udp # App Server - Admin HTTPS wbem-https 5989/tcp # WBEM CIM-XML (HTTPS) wbem-https 5989/udp # WBEM CIM-XML (HTTPS) wbem-exp-https 5990/tcp # WBEM Export HTTPS wbem-exp-https 5990/udp # WBEM Export HTTPS sun-sr-https 6443/tcp # Service Registry Default HTTPS Domain sun-sr-https 6443/udp # Service Registry Default HTTPS Domain plysrv-https 6771/tcp # PolyServe https plysrv-https 6771/udp # PolyServe https smc-https 6789/tcp # SMC-HTTPS smc-https 6789/udp # SMC-HTTPS oracleas-https 7443/tcp # Oracle Application Server HTTPS oracleas-https 7443/udp # Oracle Application Server HTTPS sun-user-https 7677/tcp # Sun App Server - HTTPS sun-user-https 7677/udp # Sun App Server - HTTPS pcsync-https 8443/tcp # PCsync HTTPS pcsync-https 8443/udp # PCsync HTTPS https-wmap 8991/tcp # webmail HTTPS service https-wmap 8991/udp # webmail HTTPS service armcenterhttps 9295/tcp # ARMCenter https Service armcenterhttps 9295/udp # ARMCenter https Service tungsten-https 9443/tcp # WSO2 Tungsten HTTPS tungsten-https 9443/udp # WSO2 Tungsten HTTPS amt-soap-https 16993/tcp # Intel(R) AMT SOAP/HTTPS amt-soap-https 16993/udp # Intel(R) AMT SOAP/HTTPS commtact-https 20003/tcp # Commtact HTTPS commtact-https 20003/udp # Commtact HTTPS總結
以上是生活随笔為你收集整理的网络运维之计算机端口的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: Python基础之条件判断
- 下一篇: Shell脚本实战之文件批量创建和修改