計算機基礎(chǔ)知識-端口_第1頁
計算機基礎(chǔ)知識-端口_第2頁
計算機基礎(chǔ)知識-端口_第3頁
計算機基礎(chǔ)知識-端口_第4頁
計算機基礎(chǔ)知識-端口_第5頁
已閱讀5頁,還剩47頁未讀, 繼續(xù)免費閱讀

下載本文檔

版權(quán)說明:本文檔由用戶提供并上傳,收益歸屬內(nèi)容提供方,若內(nèi)容存在侵權(quán),請進行舉報或認領(lǐng)

文檔簡介

計算機基礎(chǔ)知識一端口

編輯:菜鳥學(xué)院發(fā)表日期:2007-03-0700:04

一摘要

端口是個網(wǎng)絡(luò)應(yīng)用中很重要的東西,相當(dāng)于“門”了。

二什么是端口

在Internet上,各主機間通過TCP/TP協(xié)議發(fā)送和接收數(shù)據(jù)報,各個數(shù)據(jù)報根據(jù)其目的

主機的ip地址來進行互聯(lián)網(wǎng)絡(luò)中的路由選擇。可見,把數(shù)據(jù)報順利的傳送到目的主機是沒

有問題的。問題出在哪里呢?我們知道大多數(shù)操作系統(tǒng)都支持多程序(進程)同時運行,那

么目的主機應(yīng)該把接收到的數(shù)據(jù)報傳送給眾多同時運行的進程中的哪?個呢?顯然這個問

題有待解決,端U機制便由此被引入進來。

本地操作系統(tǒng)會給那些有需求的進程分配協(xié)議端口(protocalport,即我們常說的端口),

每個協(xié)議端口由一個正整數(shù)標識,如:80,139,445,等等。當(dāng)目的主機接收到數(shù)據(jù)報后,

將根據(jù)報文首部的目的端口號,把數(shù)據(jù)發(fā)送到相應(yīng)端U,而與此端口相對應(yīng)的那個進程將會

領(lǐng)取數(shù)據(jù)并等待下?組數(shù)據(jù)的到來。說到這里,端口的概念似乎仍然抽象,那么繼續(xù)跟我來,

別走開。

端口其實就是隊,操作系統(tǒng)為各個進程分配了不同的隊,數(shù)據(jù)報按照目的端口被推入相

應(yīng)的隊中,等待被進程取用,在極特殊的情況下,這個隊也是有可能溢出的,不過操作系統(tǒng)

允許各進程指定和調(diào)整自己的隊的大小。

不光接受數(shù)據(jù)報的進程需要開啟它自己的端口,發(fā)送數(shù)據(jù)報的進程也需要開啟端口,這樣,

數(shù)據(jù)報中將會標識有源端口,以便接受方能順利的回傳數(shù)據(jù)報到這個端口。

三端口的分類

在Internet上,按照協(xié)議類型分類,端口被分為TCP端口和UDP端口兩類,雖然他們

都用正整數(shù)標識,但這并不會引起歧義,比如TCP的80端口和UDP的80端口,因為數(shù)據(jù)

報在標明端口的同時,還將標明端口的類型。

從端口的分配來看,端口被分為固定端口和動態(tài)端口兩大類(一些教程還將極少被用到

的高端口劃分為第三類:私有端口):

固定端口(0-1023):

使用集中式管理機制,即服從一個管理機構(gòu)對端口的指派,這個機構(gòu)負責(zé)發(fā)布這些指派。

由于這些端口緊綁于一些服務(wù),所以我們會經(jīng)常掃描這些端口來判斷對方是否開啟了這些服

務(wù),如TCP的21(ftp),80(http),139(netbios),UDP的7(echo),69(tftp)等等一些

大家熟知的端口;

動態(tài)端口(1024-49151):

這些端口并不被固定的捆綁于某一服務(wù),操作系統(tǒng)將這些端口動態(tài)的分配給各個進程,

同一進程兩次分配有可能分配到不同的端口。不過一些應(yīng)用程序并不愿意使用操作系統(tǒng)分配

的動態(tài)端口,他們有其自己的‘商標性’端口,如oicq客戶端的4000端口,木馬冰河的7626

端口等都是固定而出名的。

四端口在入侵中的作用

有人曾經(jīng)把服務(wù)器比作房子,而把端口比作通向不同房間(服務(wù))的門,如果不考慮細

節(jié)的話,這是一個不錯的比喻。入侵者要占領(lǐng)這間房子,勢必要破門而入(物理入侵另說),

那么對于入侵者來說,了解房子開了兒扇門,都是什么樣的門,門后面有什么東西就顯得至

關(guān)重要。

入侵者通常會用掃描器對目標主機的端口進行掃描,以確定哪些端U是開放的,從開放

的端口,入侵者可以知道目標主機大致提供了哪些服務(wù),進而猜測可能存在的漏洞,因此對

端口的掃描可以幫助我們更好的了解目標主機,而對于管理員,掃描木機的開放端口也是做

好安全防范的第一步。

五端口的相關(guān)工具

1netstat-an

的確,這并不是一個工具,但他是查看自己所開放端口的最方便方法,在cmd中輸入

這個命令就可以了。如下:

C:\>netstat-an

ActiveConnections

ProtoLocalAddressForeignAddressState

TCP:135:0LISTENING

TCP:445:0LISTENING

TCP:1025:0LISTENING

TCP:1026:0LISTENING

TCP:1028:0LISTENING

TCP:3372:0LISTENING

UDP:135*.*

UDP:445*.*

UDP:1027*.*

UDP:1029*.*

UDP:1030*.*

這是我沒上網(wǎng)的時候機器所開的端口,兩個135和445是固定端口,其余幾個都是動態(tài)

端口。

2fport.exe和mport.exe

這也是兩個命令行下查看本地機器開放端口的小程序,其實與netstat-an這個命令大同

小異,只不過它能夠顯示打開端口的進程,信息更多一些而已,如果你懷疑自己的奇怪端口

可能是木馬,那就用他們查查吧。

3activeport.exe(也稱aports.exe)

還是用來查看本地機器開放端口的東東,除了具有上面兩個程序的全部功能外,他還有

兩個更吸引人之處:圖形界面以及可以關(guān)閉端口。這對菜鳥來說是個絕對好用的東西,推薦

使用喔。

4superscan3.0

它的大名你不會沒聽說過吧,純端口掃描類軟件中的N0.1,速度快而且可以指定掃描

的端口,不多說了,絕對必備工具。

六保護好自己的端口

剛接觸網(wǎng)絡(luò)的朋友一般都對自己的端口很敏感,總怕自己的電腦開放了過多端口,更怕

其中就有后門程序的端口,但由于對端口不是很熟悉,所以也沒有解決辦法,上起網(wǎng)來提心

吊膽。其實保護自己的端口并不是那么難,只要做好下面幾點就行了:

1)查看:經(jīng)常用命令或軟件查看本地所開放的端U,看是否有可疑端口;

2)判斷:如果開放端口中有你不熟悉的,應(yīng)該馬上查找端口大全或木馬常見端口等資料(網(wǎng)

上多的很),看看里面對你那個可疑端口的作用描述,或者通過軟件查看開啟此端口的進程

來進行判斷;

3)關(guān)閉:如果真是木馬端口或者資料中沒有這個端口的描述,那么應(yīng)該關(guān)閉此端口,你可

以用防火墻來屏蔽此端口,也可以用本地連接一TCP/IP一高級一選項一TCP/IP篩選,啟用篩

選機制來篩選端口;

注意:判斷時候要慎重,因為一些動態(tài)分配的端口也容易引起你多余的懷疑,這類端口

一般比較低,且連續(xù)。還有,一些狡猾的后門軟件,他們會借用80等一些常見端口來進行

通信(穿透了防火墻),令人防不勝防,因此不輕易運行陌生程序才是關(guān)鍵。

下面我們詳細介紹常見端口。

常見端口表匯總

1tcpmuxTCPPortServiceMultiplexer傳輸控制協(xié)議端口服務(wù)多路開關(guān)選擇器

2compressnetManagementUtilitycompressnet管理實用程序

3compressnetCompressionProcess壓縮進程

5rjeRemoteJobEntry遠程作業(yè)登錄

7echoEcho回顯

9discardDiscard丟棄

11systatActiveUsers在線用戶

13daytimeDaytime時間

17qotdQuoteoftheDay每日引用

18mspMessageSendProtocol消息發(fā)送協(xié)議

19chargenCharacterGenerator字符發(fā)生器

20ftp-dataFileTransfer[DefaultData]文件傳輸協(xié)議(默認數(shù)據(jù)口)

21ftpFileTransfer[Control]文件傳輸協(xié)議(控制)

22sshSSHRemoteLoginProtocolSSH遠程登錄協(xié)議

23telnetTelnet終端仿真協(xié)議

24?anyprivatemailsystem預(yù)留給個人用郵件系統(tǒng)

25smtpSimpleMailTransfer簡單郵件發(fā)送協(xié)議

27nsw-feNSWUserSystemFENSW用戶系統(tǒng)現(xiàn)場工程師

29msg-icpMSGICPMSGICP

31msg-authMSGAuthenticationMSG驗證

33dspDisplaySupportProtocol顯示支持協(xié)議

35?anyprivateprinterserver預(yù)留給個人打印機服務(wù)

37timeTime時間

38rapRouteAccessProtocol路由訪問協(xié)議

39ripResourceLocationProtocol資源定位協(xié)議

41graphicsGraphics圖形

42nameserverWINSHostNameServerWINS主機名服務(wù)

43nicnameWhoIs"綽號"whois服務(wù)

44mpm-flagsMPMFLAGSProtocolMPM(消息處理模塊)標志協(xié)議

45mpmMessageProcessingModule[recv]消息處理模塊

46mpm-sndMPM[defaultsend]消息處理模塊(默認發(fā)送口)

47ni-ftpNlFTPNlFTP

48auditdDigitalAuditDaemon數(shù)碼音頻后告服務(wù)

49tacacsLoginHostProtocol(TACACS)TACACS登錄主機協(xié)議

50re-mail-ckRemoteMailCheckingProtocol遠程郵件檢查協(xié)議

51la-maintIMPLogicalAddressMaintenanceIMP(接口信息處理機)邏輯地址維

52xns-timeXNSTimeProtocol施樂網(wǎng)絡(luò)服務(wù)系統(tǒng)時間協(xié)議

53domainDomainNameServer域名服務(wù)器

54xns-chXNSClearinghouse施樂網(wǎng)絡(luò)服務(wù)系統(tǒng)票據(jù)交換

55isi-glISIGraphicsLanguageISI圖形語言

56xns-authXNSAuthentication施樂網(wǎng)絡(luò)服務(wù)系統(tǒng)驗證

57?anyprivateterminalaccess預(yù)留個人用終端訪問

58xns-mailXNSMail施樂網(wǎng)絡(luò)服務(wù)系統(tǒng)郵件

59?anyprivatefileservice預(yù)留個人文件服務(wù)

60?Unassigned未定義

61ni-mailNlMAILNI郵件?

62acasACAServices異步通訊適配器服務(wù)

63whois+whois+WH0IS+

64coviaCommunicationsIntegrator(Cl)通訊接口

65tacacs-dsTACACS-DatabaseServiceTACACS數(shù)據(jù)庫服務(wù)

66sql*netOracleSQL*NETOracleSQL*NET

67bootpsBootstrapProtocolServer引導(dǎo)程序協(xié)議服務(wù)端

68bootpcBootstrapProtocolClient引導(dǎo)程序協(xié)議客戶端

69tftpTrivialFileTransfer小型文件傳輸協(xié)議

70gopherGopher信息檢索協(xié)議

71netrjs-1RemoteJobService遠程作業(yè)服務(wù)

72netrjs-2RemoteJobService遠程作業(yè)服務(wù)

73netrjs-3RemoteJobService遠程作業(yè)服務(wù)

74netrjs-4RemoteJobService遠程作業(yè)服務(wù)

75?anyprivatedialoutservice預(yù)留給個人撥出服務(wù)

76deosDistributedExternalObjectStore分布式外部對象存儲

77?anyprivateRJEservice預(yù)留給個人遠程作業(yè)輸入服務(wù)

78vettcpvettcp修正TCP?

79fingerFingerFINGER(查詢遠程.主機在線用戶等信

息)

80httpWorldWideWebHTTP全球信息網(wǎng)超文本傳輸協(xié)議

81hosts2-nsHOSTS2NameServerHOST2名稱服務(wù)

82xferXFERUtility傳輸實用程序

83mit-ml-devMITMLDevice模塊化智能終端ML設(shè)備

84ctfCommonTraceFacility公用追蹤設(shè)備

85mit-ml-devMITMLDevice模塊化智能終端ML設(shè)備

86mfcobolMicroFocusCobolMicroFocusCobol編程語言

87?anyprivateterminallink預(yù)留給個人終端連接

88kerberosKerberosKerberros安全認證系統(tǒng)

89su-mit-tgSU/MITTelnetGatewaySU/MIT終端仿真網(wǎng)關(guān)

90dnsixDNSIXSecuritAttributeTokenMapDNSIX安全屬性標記圖

91mit-dovMITDoverSpoolerMITDover假脫機

92nppNetworkPrintingProtocol網(wǎng)絡(luò)打印協(xié)議

93dcpDeviceControlProtocol設(shè)備控制協(xié)議

94objcallTivoliObjectDispatcherTivoli對象調(diào)度

95supdupSUPDUP

96dixieDIXIEProtocolSpecificationDIXIE協(xié)議規(guī)范

97swift-rvfSwiftRemoteVirturalFileProtocol快速遠程虛擬文件協(xié)議

98tacnewsTACNewsTAC(東京大學(xué)自動計算機?)新聞協(xié)議

99metagramMetagramRelay

101/tcphostnameNICHostNameServer

10?/tcpiso-tsapISO-TSAPClass0

103/tcpgppitnpGenesisPoint-to-PointTransNet

104/tcpacr-nemaACR-NEMADigitalImag.&Comm.300

105/tcpcsoCCSOnameserverprotocol

lO^tcpcsnet-nsMailboxNameNameserver

lO&tcp3com-tsmux3COM-TSMUX

lO^tcprtelnetRemoteTelnetService

104tcpsnagasSNAGatewayAccessServer

109/tcppop2PostOfficeProtocol-Version2

110/tcppop3PostOfficeProtocol-Version3

111/tcpsunrpcSUNRemoteProcedureCall

112/tcpmcidasMclDASDataTransmissionProtocol

113/tcpident

114/tcpaudionewsAudioNewsMulticast

115/tcpsftpSimpleFileTransferProtocol

11^/tcpansanotifyANSAREXNotify

117/tcpuucp-pathUUCPPathService

114tcpsqlservSQLServices

119/tcpnntpNetworkNewsTransferProtocol

120/tcpcfdptktCFDPTKT

121/tcperpcEncoreExpeditedRemotePro.Call

12〃tcpsmakynetSMAKYNET

123/tcpntpNetworkTimeProtocol

124/tcpansatraderANSAREXTrader

12^tcplocus-mapLocusPC-lnterfaceNetMapSer

12%tcpunitaryUnisysUnitaryLogin

12%tcplocus-conLocusPC-lnterfaceConnServer

12夕tcpgss-xlicenGSSXLicenseVerification

129/tcppwdgenPasswordGeneratorProtocol

130/tcpcisco-fnaciscoFNATIVE

131/tcpcisco-tnaciscoTNATIVE

133/tcpcisco-sysciscoSYSMAINT

133/tcpstatsrvStatisticsService

134/tcpingres-netINGRES-NETService

135/tcpepmapDCEendpointresolution

13^/tcpprofilePROFILENamingSystem

13〃tcpnetbios-nsNETBIOSNameService

138/tcpnetbios-dgmNETBIOSDatagramService

139/tcpnetbios-ssnNETBIOSSessionService

140/tcpemfis-dataEMFISDataService

141/tcpemfis-cntlEMFISControlService

14?/tcpbl-idmBritton-LeeIDM

143/tcpimapInternetMessageAccessProtocol

144/tcpumaUniversalManagementArchitecture

145/tcpuaacUAACProtocol

14^/tcpiso-tpOISO-IPO

14〃tcpiso-ipISO-IP

144tcpjargonJargon

149/tcpaed-512AED512EmulationService

150/tcpsql-netSQL-NET

151/tcphemsHEMS

152/tcpbftpBackgroundFileTransferProgram

153/tcpsgmpSGMP

154/tcpnetsc-prodNETSC

15^tcpnetsc-devNETSC

15^/tcpsqlsrvSQLService

15力tcpknet-cmpKNET/VMCommand/MessageProtocol

15Vtcppcmail-srvPCMailServer

159/tcpnss-routingNSS-Routing

160/tcpsgmp-trapsSGMP-TRAPS

161/tcpsnmpSNMP

162/tcpsnmptrapSNMPTRAP

163/tcpcmip-manCMIP/TCPManager

164/tcpcmip-agentCMIP/TCPAgent

16^tcpxns-courierXerox

16^/tcps-netSiriusSystems

16〃tcpnampNAMP

168/tcprsvdRSVD

169/tcpsendSEND

170/tcpprint-srvNetworkPostScript

171/tcpmultiplexNetworkInnovationsMultiplex

17?/tcpcl/1NetworkInnovationsCL/1

173/tcpxyplex-muxXyplex

174/tcpmailqMAILQ

175/tcpvmnetVMNET

17^tcpgenrad-muxGENRAD-MUX

17〃tcpxdmcpXDisplayManagerControlProtocol

17夕tcpnextstepNextStepWindowServer

179/tcpbgpBorderGatewayProtocol

180/tcprisIntergraph

181/tcpunifyUnify

182/tcpauditUnisysAuditSITP

183/tcpocbinderOCBinder

184/tcpocserverOCServer

185/tcpremote-kisRemote-KIS

18%tcpkisKISProtocol

18〃tcpaciApplicationCommunicationInterface

18趴cpmumpsPlusFive'sMUMPS

189/tcpqftQueuedFileTransport

190/tcpgacpGatewayAccessControlProtocol

191/tcpprosperoProsperoDirectoryService

19?/tcposu-nmsOSUNetworkMonitoringSystem

193/tcpsrmpSpiderRemoteMonitoringProtocol

194/tcpireInternetRelayChatProtocol

195/tcpdn6-nlm-audDNSIXNetworkLevelModuleAudit

19&tcpdn6-smm-redDNSIXSessionMgtModuleAuditRedir

19〃tcpdisDirectoryLocationService

19%tepdls-monDirectoryLocationServiceMonitor

199/tcpsmuxSMUX

200/tcpsrcIBMSystemResourceController

201/tcpat-rtmpAppleTalkRoutingMaintenance

202/tcpat-nbpAppleTalkNameBinding

203/tcpat-3AppleTalkUnused

204/tcpat-echoAppleTalkEcho

20ytcpat-5AppleTalkUnused

20^/tcpat-zisAppleTalkZoneInformation

20%tcpat-7AppleTalkUnused

209tcpat-8AppleTalkUnused

209/tcpqmtpTheQuickMailTransferProtocol

210/tcpZ39.50ANSIZ39.50

211/tcp914c/gTexasInstruments914C/GTerminal

21?/tcpanetATEXSSTR

214/tcpvmpwscsVMPWSCS

21ytepsoftpcInsigniaSolutions

21WtcpCAIlicComputerAssociatesIntiLicenseServer

217tcpdbasedBASEUnix

21夕tepmppNetixMessagePostingProtocol

219/tcpuarpsUnisysARPs

220/tcpimap3InteractiveMailAccessProtocolv3

221/tcpfln-spxBerkeleyrlogindwithSPXauth

22Mcprsh-spxBerkeleyrshdwithSPXauth

223/tcpcdcCertificateDistributionCenter

24?/tcpdirectDirect

24夕tepsur-measSurveyMeasurement

24針cpdaynaDayna

247tcplinkLINK

24^tcpdsp3270DisplaySystemsProtocol

24次cpsubntbcst_tftpSUBNTBCST_TFTP

24夕tepbhfhsbhfhs

25WtcprapRAP

25〃tcpsetSecureElectronicTransaction

25%tcpyak-chatYakWinsockPersonalChat

259/tcpesro-genEfficientShortRemoteOperations

260/tcpopenportOpenport

263/tcphdapHDAP

264/tcpbgmpBGMP

280/tcphttp-mgmthttp-mgmt

309/tcpentrusttimeEntrustTime

310/tcpbhmdsbhmds

312/tcpvslmpVSLMP

317tcpdpsiDPSI

31^/tcpdecauthdecAuth

31〃tcpzannetZannet

321/tcppipPIP

34VtcppdapProsperoDataAccessProtocol

34yteppawservPerfAnalysisWorkbench

34%tcpzservZebraserver

34力tepfatservFatmenServer

34^/tcpcsi-sgwpCabletronManagementProtocol

349/tcpm代pm代p

351/tcpmatip-type-bMATIPTypeB

351/tcpbhoettybhoetty(added5/21y97)

353/tcpndsauthNDSAUTH

354/tcpbh611bh611

35力tepbheventbhevent

36"tcpsrssendSRSSend

367tcpdtkDTK

36^/tcpodmrODMR

36%tepqbikgdpQbikGDP

373/tcpclearcaseClearcase

37?/tcpulistprocListProcessor

37夕teplegent-1LegentCorporation

374/tcplegent-2

374/tcplegent-2LegentCorporation

375/tcphassleHassle

37^tcpnipAmigaEnvoyNetworkInquiryProto

37萬teptnETOSNECCorporation

37gtcpdsETOSNECCorporation

379/tcpis99cTIA/EIA/IS-99modemclient

380/tcpis99sTIA/EIA/IS-99modemserver

381/tcphp-collectorhpperformancedatacollector

383/tcphp-alarm-mgrhpperformancedataalarmmanager

384/tcparnsARemoteNetworkServerSystem

385/tcpibm-appIBMApplication

38%tcpasaASAMessageRouterObjectDef.

38〃tcpaurpAppletalkUpdate-BasedRoutingPro.

38Vtepunidata-ldmUnidataLDMVersion4

389/tcpIdapLightweightDirectoryAccessProtocol

390/tcpuisUIS

391/tcpsynotics-relaySynOpticsSNMPRelayPort

393/tcpdisDataInterpretationSystem

394/tcpembl-ndtEMBLNucleicDataTransfer

395/tcpnetepNETscoutControlProtocol

39^/tcpnetware-ipNovellNetwareoverIP

39〃tcpmptnMultiProtocolTrans.Net.

39VtepkryptolanKryptolan

399/tcpiso-tsap-c2ISOTransportClass2Non-ControloverTCP

400/tcpwork-solWorkstationSolutions

403/tcpupsUninterruptiblePowerSupply

402/tcpgenieGenieProtocol

40歹tcpdecapdecap

404/tcpneedneed

405/tcpncldncld

40^/tcpimspInteractiveMailSupportProtocol

40次cptimbuktuTimbuktu

40^tcpprm-smProsperoResourceManagerSys.Man.

409/tcpprm-nmProsperoResourceManagerNodeMan.

410/tcpdecladebugDECLadebugRemoteDebugProtocol

411/tcprmtRemoteMTProtocol

41?/tcpsynoptics-trapTrapConventionPort

413/tcpsmspSMSP

414/tcpinfoseekInfoSeek

41ytepbnetBNet

41^/tcpsilverplatterSilverplatter

417tcponmuxOnmux

41夕tephyper-gHyper-G

419/tcpariellAriel

420/tcpsmpteSMPTE

421/tcpariel2Ariel

422/tcpariel3Ariel

423/tcpopc-job-startIBMOperationsPlanningandControlStart

424/tcpopc-job-trackIBMOperationsPlanningandControlTrack

42^tcpicad-elICAD

42^tcpsmartsdpsmartsdp

42次cpsvrlocServerLocation

42夕tepocs_cmuOCS_CMU

429/tcpocs__amuOCS_AMU

430/tcputmpsdUTMPSD

431/tcputmpedUTMPCD

43"cpiasdIASD

433/tcpnnspNNSP

434/tcpmobileip-agentMobilelP-Agent

435/tcpmobilip-mnMobillP-MN

43^/tcpdna-cmlDNA-CML

43次cpcomscmcomscm

43夕tepdsfgwdsfgw

439/tcpdaspdaspThomasObermair

440/tcpsgcpsgcp

441/tcpdecvms-sysmgtdecvms-sysmgt

442/tcpcvc_hostdcvc_hostd

443/tcphttpshttpprotocoloverTLS/SSL

444/tcpsnppSimpleNetworkPagingProtocol

445/tcpmicrosoft-dsMicrosoft-DS

44%tcpddm-rdbDDM-RDB

447tcpddm-dfmDDM-RFM

448/tcpddm-sslDDM-SSL

449/tcpas-servermapASServerMapper

450/tcptserverTServer

453/tcpsfs-smp-netCrayNetworkSemaphoreserver

453/tcpcreativeserverCreativeServer

454/tcpcontentserverContentserver

45夕tcpcreativepartnrCreativePartnr

45%tcpmacon-tcpmacon-tcp

450tcpscohelpscohelp

458/tcpappleqtcapplequicktime

459/tcpampr-rcmdampr-rcmd

460/tcpskronkskronk

461/tcpdatasurfsrvDataRampSrv

46?/tcpdatasurfsrvsecDataRampSrvSec

463/tcpalpesalpes

464/tcpkpasswdkpasswd

46ytepsmtpssmtpprotocoloverTLS/SSL(wasssmtp)

46%tcpdigital-vrcdigital-vrc

46〃tcpmylex-mapdmylex-mapd

46&tcpphoturisproturis

469/tcprepRadioControlProtocol

470/tcpsex-proxysex-proxy

471/tcpmondexMondex

47"tcpIjk-loginIjk-login

47Vtcphybrid-pophybrid-pop

47Vteptn-tl-wltn-tl-wl

47yteptepnethaspsrvtepnethaspsrv

476/tcptn-tl-fdltn-tl-fdl

47%tepss7nsss7ns

47%tepspscspsc

479/tcpiafserveriafserver

480/tcpiafdbaseiafdbase

483/tcpphPhservice

482/tcpbgs-nsibgs-nsi

483/tcpulpnetulpnet

484/tcpintegra-smeIntegraSoftwareManagementEnvironment

485/tcppowerburstAirSoftPowerBurst

48%tcpavianavian

487tcpsaftsaftSimpleAsynchronousFileTransfer

484tcpgss-httpgss-http

489/tcpnest-protocolnest-protocol

490/tcpmicom-pfsmicom-pfs

491/tcpgo-logingo-login

492/tcpticf-1TransportIndependentConvergenceforFNA

493/tcpticf-2TransportIndependentConvergenceforFNA

494/tcppov-rayPOV-Ray

495/tcpintecourierintecourier

49%tcppim-rp-discPIM-RP-DISC

49〃tcpdantzdantz

49%tcpSiamSiam

499/tcpiso-illISOILLProtocol

5OO/tcpisakmpisakmp

501/tcpstmfSTMF

502/tcpasa-appl-protoasa-appl-proto

503/tcpintrinsaIntrinsa

504/tcpcitadelcitadel

50%tcpmailbox-lmmailbox-lm

50^/tcpohimsrvohimsrv

50,tcpcrscrs

50^tcpxvttpxvttp

509/tcpsnaresnare

510/tcpfcpFirstClassProtocol

511/tcppassgoPassGo

51"tcpexecremoteprocessexecution;

513/tcploginremoteloginalatelnet;

514/tcpshellcmd

515/tcpprinterspooler

51^/tcpvideotexvideotex

51〃tcptalkliketenexlink,butacross

51gtcpntalk

519/tcputimeunixtime

520/tcpefsextendedfilenameserver

521/tcpripngripng

52〃tcpulpULP

52歹tcpibm-db2IBM-DB2

524/tcpnepNCP

525/tcptimedtimeserver

52&tcptemponewdate

527/tcpstxStockIXChange

524tepcustixCustomerIXChange

529/tcpirc-servIRC-SERV

530/tcpcourierrpc

531/tcpconferencechat

53ytcpnetnewsreadnews

533/tcpnetwallforemergencybroadcasts

534/tcpmm-adminMegaMediaAdmin

535/tcpiiopiiop

536/tcpopalis-rdvopalis-rdv

53%tcpnmspNetworkedMediaStreamingProtocol

53Vtepgdomapgdomap

539/tcpapertus-ldpApertusTechnologiesLoadDetermination

540/tcpuucpuucpd

541/tcpuucp-rloginuucp-rlogin

54?/tcpcommercecommerce

543/tcpklogin

54Vtcpkshellkremd

54ytepappleqtcsrvrappleqtcsrvr

54%tcpdhcpv6-clientDHCPv6Client

54%tepdhcpv6-serverDHCPv6Server

544tepafpovertepAFPoverTCP

549/tcpidfpIDFP

550/tcpnew-rwhonew-who

551/tcpcybercashcybercash

552/tcpdevicesharedeviceshare

553teppirppirp

554/tcprtspRealTimeStreamControlProtocol

555/tcpdsf

55%tcpremotefsrfsserver

55〃tcpopenvms-sysipcopenvms-sysipc

558/tcpsdnskmpSDNSKMP

559/tcpteedtapTEEDIAP

560/tcprmonitorrmonitord

561/tcpmonitor

56Ttepchshellchcmd

563/tcpnntpsnntpprotocoloverTLS/SSL(wassnntp)

564/tcp9pfsplan9fileservice

56%tcpwhoamiwhoami

56%tcpstreettalkstreettalk

56,tcpbanyan-rpebanyan-rpe

56&tcpms-shuttlemicrosoftshuttle

569/tcpms-romemicrosoftrome

570/tcpmeterdemon

571/tcpmeterudemon

57"tcpsonarsonar

573tepbanyan-vipbanyan-vip

57"tcpftp-agentFTPSoftwareAgentSystem

57ytepvemmiVEMMI

57€/tcpipcdipcd

57〃tcpvnasvnas

578/tcpipddipdd

579/tcpdecbsrvdecbsrv

581/tcpbdpBundleDiscoveryProtocol

58夕tcpcalCAL

589/tcpeyelinkEyeLink

590/tcptns-cmITNSCML

593/tcphttp-rpc-epmapHTTPRPCEpMap

594/tcptpipTPIP

59%tcpsmsdSMSD

599/tcpacpAeolonCoreProtocol

600/tcpipcserverSunIPCserver

60^/tcpurmCrayUnifiedResourceManager

600tcpnqsnqs

60%tcpsift-uftSender-lnitiated/UnsolicitedFileTransfer

609/tcpnpmp-trapnpmp-trap

610/tcpnpmp-localnpmp-local

611/tcpnpmp-guinpmp-gui

613/tcphmmp-opHMMPOperation

620/tcpsco-websrvrmgrSCOWebserverManager

621/tcpescp-ipESCP

625/tcpdec_dlmDECDLM

62^/tcpasiaASIA

628/tcpqmqpQMQP

630/tcprdaRDA

633/tcpippIPP(InternetPrintingProtocol)

632/tcpbmppbmpp

634/tcpginadginad

63^tcprlzdbaseRI.ZDBase

63%tcpIdapsIdapprotocoloverTLS/SSL(wassldap)

63,tcplanserverlanserver

639/tcpmsdpMSDP

66^/tcpdoomdoomIdSoftware

66力tcpdisclosecampaigncontributiondisclosures-SDRTechnologies

66夕tcpmecommMeComm

669/tcpmeregisterMeRegister

670/tcpvacdsm-swsVACDSM-SWS

671/tcpvacdsm-appVACDSM-APP

67?/tcpvpps-quaVPPS-QUA

673/tcpcimplexCIMPLEX

674/tcpacapACAP

675/tcpdctpDCTP

704/tcpelcsderrlogcopy/serverdaemon

705/tcpagentxAgentX

709/tcpentrust-kmshEntrustKeyManagementServiceHandler

710/tcpentrust-ashEntrustAdministrationServiceHandler

729/tcpnetviewdmlIBMNetViewDM/6000Server/Client

730/tcpnetviewdm2IBMNetViewDM由000send/tcp

731/tcpnetviewdm3IBMNetViewDM/6000receive/tcp

741/tcpnetgwnetGW

742/tcpnetrcsNetworkbasedRev.Cont.Sys.

744/tcpflexlmFlexibleLicenseManager

740tcpfujitsu-devFujitsuDeviceControl

748/tcpris-cmRussellInfoSciCalendarManager

749/tcpkerberos-admkerberosadministration

750/tcprfile

751/tcppump

752/tcpqrh

753/tcprrh

754/tcptellsend

75夕tcpnlogin

759/tcpcon

760/tcpns

761/tcprxe

76^/tcpquotad

763tcpcycleserv

764/tcpomserv

765/tcpwebster

769/tcpvid

770/tcpcadlock

771/tcprtip

772/tcpcycleserv2

773/tcpsubmit

774/tcprpasswd

775/tcpwpages

780/tcpwpgs

78^/tcpconcertConcert

78%tcpqscQSC

801/tcpdevice

87夕tcprsyncrsync

88^/tcpiclcnet-locateICLcoNETionlocateserver

88〃tcpiclcnet_svinfoICLcoNETionserverinfo

884tcpaccessbuilderAccessBuilder

900/tcpomginitialrefsOMGInitialRefs

911/tcpxact-backupxact-backup

990/tcpftpsftpprotocol,control,overTLS/SSL

991/tcpnasNetnewsAdministrationSystem

99?/tcptelnetstelnetprotocoloverTLS/SSL

993/tcpimapsimap4protocoloverTLS/SSL

994/tcpiresireprotocoloverTLS/SSL

995/tcppop3spop3protocoloverTLS/SSL(wasspop3)

996/tcpvsinetvsinet

99〃tcpmaitrd

994tepbusboy

999/tcpgarcon

lOOO/tcpcadlock

1010/tcpsurfsurf

1023/tcpReservedReserved

1030/tcpiadlBBNIAD

1031/tcpiad2BBNIAD

1032/tcpiad3BBNIAD

104^tcpneodlSun'sNEOObjectRequestBroker

104gtepneod2Sun'sNEOObjectRequestBroker

105&tepnimnim

1059/tcpnimregnimreg

1067tcpinstl_bootsInstallationBootstrapProto.Serv.

106§/tcpinstl_bootcInstallationBootstrapProto.Cli.

1080/tcpsocksSocks

1083/tcpansoft-lm-1AnasoftLicenseManager

1084/tcpansoft-lm-2AnasoftLicenseManager

1123/tcpmurrayMurray

1155/tcpnfaNetworkFileAccess

121"tcplupalupa

122ytcpnervSNIR&Dnetwork

1239/tcpnmsdNMSD

124Vtcphermes

13iytcpbmc_patroldbBMC_PATROLDB

131VtcppdpsPhotoscriptDistributedPrintingSystem

1321/tcppipPIP

1345/tcpvpjpVPJP

1345/tcpalta-ana-lmAltaAnalyticsLicenseManager

134次cpbbn-mmcmultimediaconferencing

134gtepbbn-mmxmultimediaconferencing

1349/tcpsbookRegistrationNetworkProtocol

1350/tcpeditbenchRegistrationNetworkProtocol

1352/tcplotusnoteLotusNote

1353/tcpreliefReliefConsulting

1354/tcprightbrainRightBrainSoftware

1355/tcpintuitive-edgeIntuitiveEdge

135^tcpcuillamartinCuillaMartinCompany

135〃tcppegboardElectronicPegBoard

135VtcpconnlcliCONNLCLI

1359/tcpftsrvFTSRV

1360/tcpmimerMIMER

1361/tcplinxLinX

136?/tcptimefliesTimeFlies

1363/tcpndm-requesterNetworkDataMoverRequester

136〃tcpndm-serverNetworkDataMoverServer

136夕tcpadapt-snaNetworkSoftwareAssociates

1366/tcpnetware-cspNovellNetWareCommServicePlatform

1367tcpdesDCS

136&tepscreencastScreenCast

1369/tcpgv-usGlobalViewtoUnixShell

1370/tcpus-gvUnixShelltoGlobalView

1371/tcpfc-cliFujitsuConfigProtocol

1372/tcpfc-serFujitsuConfigProtocol

1373/tcpchromagrafxChromagrafx

1374/tcpmollyEPISoftwareSystems

1375/tcpbytexBytex

137^/tcpibm-ppsIBMPersontoPersonSoftware

137次cpcichlidCichlidLicenseManager

137VtcpelanElanLicenseManager

1379/tcpdbreporterIntegritySolutions

1380/tcptelesis-licmanTelesisNetworkLicenseManager

1381/tcpapple-licmanAppleNetworkLicenseManager

138^/tcpudt_os

138夕tepgwhaGWHannawayNetworkLicenseManager

138Vtcpos-licmanObjectiveSolutionsLicenseManager

1385/tcpatex_elmdAtexPublishingLicenseManager

138^/tcpchecksumChecksumLicenseManager

138〃tcpcadsi-lmComputerAidedDesignSoftwareIncLM

138夕tepobjective-dbcObjectiveSolutionsDataBaseCache

1389/tcpiclpv-dmDocumentManager

1390/tcpiclpv-scStorageController

1391/tcpiclpv-sasStorageAccessServer

139?/tcpiclpv-pmPrintManager

1393/tcpiclpv-nlsNetworkLogServer

139Vtcpiclpv-nlcNetworkLogClient

1395/tcpiclpv-wsmPCWorkstationManagersoftware

139^tcpdvl-activemailDVLActiveMail

1399/tcpcadkey-licmanCadkeyLicenseManager

1400/tcpcadkey-tabletCadkeyTabletDaemon

1402/tcpprm-sm-npProsperoResourceManager

1403/tcpprm-nm-npProsperoResourceManager

140Vtcpigi-lmInfiniteGraphicsLicenseManager

140ytcpibm-resIBMRemoteExecutionStarter

1406/tcpnetlabs-lmNetLabsLicenseManager

140,tcpdbsa-lmDBSALicenseManager

140gtcpsophia-lmSophiaLicenseManager

1409/tcphere-lmHereLicenseManager

1410/tcphiqHiQLicenseManager

1411/tcpafAudioFile

141%cpinnosysInnoSys

1413/tcpinnosys-aclInnosys-ACL

141Vtcpibm-mqseriesIBMMQSeries

1415/tcpdbstarDBStar

1415/tcpnovell-lu6.2NovellLU6.2

141萬tcptimbuktu-srvlTimbuktuService1Port

1415/tcptimbuktu-srv2TimbuktuService2Port

1419/tcptimbuktu-srv3TimbuktuService3Port

1420/tcptimbuktu-srv4TimbuktuService4Port

1423/tcpgandalf-lmGandalfLicenseManager

142Mcpautodesk-lmAutodeskLicenseManager

1423/tcpessbaseEssbaseArborSoftware

142VtcphybridHybridEncryptionProtocol

1425/tcpzion-lmZionSoftwareLicenseManager

142^tcpsaisSatellite-dataAcquisitionSystem1

142〃tcpmloaddmloaddmonitoringtool

142&tcpinformatik-lmInformatikLicenseManager

1429/tcpnmsHypercomNMS

1430/tcptpduHypercomTPDU

1433/tcprgtpReverseGossipTransport

143?/tcpblueberry-lmBlueberrySoftwareLicenseManager

1433/tcpms-sql-sMicrosoft-SQL-Server

1434tcpms-sql-mMicrosoft-SQL-Monitor

143Vtcpibm-cicsIBMCICS

143^tcpsaismSatellite-dataAcquisitionSystem2

1437tcptabulaTabula

143gtcpeicon-serverEiconSecurityAgent/Server

1439/tcpeicon-x25EiconX25/SNAGateway

1440/tcpeicon-slpEiconServiceLocationProtocol

1441/tcpcadis-1CadisLicenseManagement

1442/tcpcadis-2CadisLicenseManagement

1443tcpies-lmIntegratedEngineeringSoftware

1444/tcpmarcam-lmMareamLicenseManagement

1445/tcpproxima-lmProximaLicenseManager

144^tcpora-lmOpticalResearchAssociatesLicenseManager

1440tepapri-lmAppliedParallelResearchLM

1448/tcpoc-lmOpenConnect

溫馨提示

  • 1. 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
  • 2. 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
  • 3. 本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
  • 4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
  • 5. 人人文庫網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
  • 6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
  • 7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。

最新文檔

評論

0/150

提交評論