1// Network services, Internet style 2// 3// Note that it is presently the policy of IANA to assign a single well-known 4// port number for both TCP and UDP, hence, officially ports have two entries 5// even if the protocol doesn't support UDP operations. 6// 7// Updated from http://www.iana.org/assignments/port-numbers and other 8// sources like http://www.freebsd.org/cgi/cvsweb.cgi/src/etc/services . 9// New ports will be added on request if they have been officially assigned 10// by IANA and used in the real-world or are needed by a debian package. 11// If you need a huge list of used numbers please install the nmap package. 12#ifndef SYSTEM_SERVICES_HEADER 13#define SYSTEM_SERVICES_HEADER 14 15PORT_DESC("tcpmux 1/tcp\r\n"), 16PORT_DESC("echo 7/tcp\r\n"), 17PORT_DESC("echo 7/udp\r\n"), 18PORT_DESC("discard 9/tcp sink null\r\n"), 19PORT_DESC("discard 9/udp sink null\r\n"), 20PORT_DESC("systat 11/tcp users\r\n"), 21PORT_DESC("daytime 13/tcp\r\n"), 22PORT_DESC("daytime 13/udp\r\n"), 23PORT_DESC("netstat 15/tcp\r\n"), 24PORT_DESC("qotd 17/tcp quote\r\n"), 25PORT_DESC("msp 18/tcp\r\n"), 26PORT_DESC("msp 18/udp\r\n"), 27PORT_DESC("chargen 19/tcp ttytst source\r\n"), 28PORT_DESC("chargen 19/udp ttytst source\r\n"), 29PORT_DESC("ftp-data 20/tcp\r\n"), 30PORT_DESC("ftp 21/tcp\r\n"), 31PORT_DESC("fsp 21/udp fspd\r\n"), 32PORT_DESC("ssh 22/tcp\r\n"), 33PORT_DESC("ssh 22/udp\r\n"), 34PORT_DESC("telnet 23/tcp\r\n"), 35PORT_DESC("smtp 25/tcp mail\r\n"), 36PORT_DESC("time 37/tcp timserver\r\n"), 37PORT_DESC("time 37/udp timserver\r\n"), 38PORT_DESC("rlp 39/udp resource\r\n"), 39PORT_DESC("nameserver 42/tcp name\r\n"), 40PORT_DESC("whois 43/tcp nicname\r\n"), 41PORT_DESC("tacacs 49/tcp\r\n"), 42PORT_DESC("tacacs 49/udp\r\n"), 43PORT_DESC("re-mail-ck 50/tcp\r\n"), 44PORT_DESC("re-mail-ck 50/udp\r\n"), 45PORT_DESC("domain 53/tcp\r\n"), 46PORT_DESC("domain 53/udp\r\n"), 47PORT_DESC("mtp 57/tcp\r\n"), 48PORT_DESC("tacacs-ds 65/tcp\r\n"), 49PORT_DESC("tacacs-ds 65/udp\r\n"), 50PORT_DESC("bootps 67/tcp\r\n"), 51PORT_DESC("bootps 67/udp\r\n"), 52PORT_DESC("bootpc 68/tcp\r\n"), 53PORT_DESC("bootpc 68/udp\r\n"), 54PORT_DESC("tftp 69/udp\r\n"), 55PORT_DESC("gopher 70/tcp\r\n"), 56PORT_DESC("gopher 70/udp\r\n"), 57PORT_DESC("rje 77/tcp netrjs\r\n"), 58PORT_DESC("finger 79/tcp\r\n"), 59PORT_DESC("http 80/tcp www\r\n"), 60PORT_DESC("http 80/udp\r\n"), 61PORT_DESC("link 87/tcp ttylink\r\n"), 62PORT_DESC("kerberos 88/tcp kerberos5 krb5 kerberos-sec\r\n"), 63PORT_DESC("kerberos 88/udp kerberos5 krb5 kerberos-sec\r\n"), 64PORT_DESC("supdup 95/tcp\r\n"), 65PORT_DESC("hostnames 101/tcp hostname\r\n"), 66PORT_DESC("iso-tsap 102/tcp tsap\r\n"), 67PORT_DESC("acr-nema 104/tcp dicom\r\n"), 68PORT_DESC("acr-nema 104/udp dicom\r\n"), 69PORT_DESC("csnet-ns 105/tcp cso-ns\r\n"), 70PORT_DESC("csnet-ns 105/udp cso-ns\r\n"), 71PORT_DESC("rtelnet 107/tcp\r\n"), 72PORT_DESC("rtelnet 107/udp\r\n"), 73PORT_DESC("pop2 109/tcp postoffice pop-2 \r\n"), 74PORT_DESC("pop2 109/udp pop-2\r\n"), 75PORT_DESC("pop3 110/tcp pop-3\r\n"), 76PORT_DESC("pop3 110/udp pop-3\r\n"), 77PORT_DESC("sunrpc 111/tcp portmapper\r\n"), 78PORT_DESC("sunrpc 111/udp portmapper\r\n"), 79PORT_DESC("auth 113/tcp authentication tap ident\r\n"), 80PORT_DESC("sftp 115/tcp\r\n"), 81PORT_DESC("uucp-path 117/tcp\r\n"), 82PORT_DESC("nntp 119/tcp readnews untp\r\n"), 83PORT_DESC("ntp 123/tcp\r\n"), 84PORT_DESC("ntp 123/udp\r\n"), 85PORT_DESC("pwdgen 129/tcp\r\n"), 86PORT_DESC("pwdgen 129/udp\r\n"), 87PORT_DESC("loc-srv 135/tcp epmap\r\n"), 88PORT_DESC("loc-srv 135/udp epmap\r\n"), 89PORT_DESC("netbios-ns 137/tcp\r\n"), 90PORT_DESC("netbios-ns 137/udp\r\n"), 91PORT_DESC("netbios-dgm 138/tcp\r\n"), 92PORT_DESC("netbios-dgm 138/udp\r\n"), 93PORT_DESC("netbios-ssn 139/tcp\r\n"), 94PORT_DESC("netbios-ssn 139/udp\r\n"), 95PORT_DESC("imap2 143/tcp imap\r\n"), 96PORT_DESC("imap2 143/udp imap\r\n"), 97PORT_DESC("snmp 161/tcp\r\n"), 98PORT_DESC("snmp 161/udp\r\n"), 99PORT_DESC("snmp-trap 162/tcp snmptrap\r\n"), 100PORT_DESC("snmp-trap 162/udp snmptrap\r\n"), 101PORT_DESC("cmip-man 163/tcp\r\n"), 102PORT_DESC("cmip-man 163/udp\r\n"), 103PORT_DESC("cmip-agent 164/tcp\r\n"), 104PORT_DESC("cmip-agent 164/udp\r\n"), 105PORT_DESC("mailq 174/tcp\r\n"), 106PORT_DESC("mailq 174/udp\r\n"), 107PORT_DESC("xdmcp 177/tcp\r\n"), 108PORT_DESC("xdmcp 177/udp\r\n"), 109PORT_DESC("nextstep 178/tcp NeXTStep NextStep\r\n"), 110PORT_DESC("nextstep 178/udp NeXTStep NextStep\r\n"), 111PORT_DESC("bgp 179/tcp\r\n"), 112PORT_DESC("bgp 179/udp\r\n"), 113PORT_DESC("prospero 191/tcp\r\n"), 114PORT_DESC("prospero 191/udp\r\n"), 115PORT_DESC("irc 194/tcp\r\n"), 116PORT_DESC("irc 194/udp\r\n"), 117PORT_DESC("smux 199/tcp\r\n"), 118PORT_DESC("smux 199/udp\r\n"), 119PORT_DESC("at-rtmp 201/tcp\r\n"), 120PORT_DESC("at-rtmp 201/udp\r\n"), 121PORT_DESC("at-nbp 202/tcp\r\n"), 122PORT_DESC("at-nbp 202/udp\r\n"), 123PORT_DESC("at-echo 204/tcp\r\n"), 124PORT_DESC("at-echo 204/udp\r\n"), 125PORT_DESC("at-zis 206/tcp\r\n"), 126PORT_DESC("at-zis 206/udp\r\n"), 127PORT_DESC("qmtp 209/tcp\r\n"), 128PORT_DESC("qmtp 209/udp\r\n"), 129PORT_DESC("z3950 210/tcp wais\r\n"), 130PORT_DESC("z3950 210/udp wais\r\n"), 131PORT_DESC("ipx 213/tcp\r\n"), 132PORT_DESC("ipx 213/udp\r\n"), 133PORT_DESC("imap3 220/tcp\r\n"), 134PORT_DESC("imap3 220/udp\r\n"), 135PORT_DESC("pawserv 345/tcp\r\n"), 136PORT_DESC("pawserv 345/udp\r\n"), 137PORT_DESC("zserv 346/tcp\r\n"), 138PORT_DESC("zserv 346/udp\r\n"), 139PORT_DESC("fatserv 347/tcp\r\n"), 140PORT_DESC("fatserv 347/udp\r\n"), 141PORT_DESC("rpc2portmap 369/tcp\r\n"), 142PORT_DESC("rpc2portmap 369/udp\r\n"), 143PORT_DESC("codaauth2 370/tcp\r\n"), 144PORT_DESC("codaauth2 370/udp\r\n"), 145PORT_DESC("clearcase 371/tcp Clearcase\r\n"), 146PORT_DESC("clearcase 371/udp Clearcase\r\n"), 147PORT_DESC("ulistserv 372/tcp\r\n"), 148PORT_DESC("ulistserv 372/udp\r\n"), 149PORT_DESC("ldap 389/tcp\r\n"), 150PORT_DESC("ldap 389/udp\r\n"), 151PORT_DESC("imsp 406/tcp\r\n"), 152PORT_DESC("imsp 406/udp\r\n"), 153PORT_DESC("svrloc 427/tcp\r\n"), 154PORT_DESC("svrloc 427/udp\r\n"), 155PORT_DESC("https 443/tcp\r\n"), 156PORT_DESC("https 443/udp\r\n"), 157PORT_DESC("snpp 444/tcp\r\n"), 158PORT_DESC("snpp 444/udp\r\n"), 159PORT_DESC("microsoft-ds 445/tcp\r\n"), 160PORT_DESC("microsoft-ds 445/udp\r\n"), 161PORT_DESC("kpasswd 464/tcp\r\n"), 162PORT_DESC("kpasswd 464/udp\r\n"), 163PORT_DESC("urd 465/tcp ssmtp smtps \r\n"), 164PORT_DESC("saft 487/tcp\r\n"), 165PORT_DESC("saft 487/udp\r\n"), 166PORT_DESC("isakmp 500/tcp\r\n"), 167PORT_DESC("isakmp 500/udp\r\n"), 168PORT_DESC("rtsp 554/tcp\r\n"), 169PORT_DESC("rtsp 554/udp\r\n"), 170PORT_DESC("nqs 607/tcp\r\n"), 171PORT_DESC("nqs 607/udp\r\n"), 172PORT_DESC("npmp-local 610/tcp dqs313_qmaster\r\n"), 173PORT_DESC("npmp-local 610/udp dqs313_qmaster\r\n"), 174PORT_DESC("npmp-gui 611/tcp dqs313_execd\r\n"), 175PORT_DESC("npmp-gui 611/udp dqs313_execd\r\n"), 176PORT_DESC("hmmp-ind 612/tcp dqs313_intercell\r\n"), 177PORT_DESC("hmmp-ind 612/udp dqs313_intercell\r\n"), 178PORT_DESC("asf-rmcp 623/udp\r\n"), 179PORT_DESC("qmqp 628/tcp\r\n"), 180PORT_DESC("qmqp 628/udp\r\n"), 181PORT_DESC("ipp 631/tcp\r\n"), 182PORT_DESC("ipp 631/udp\r\n"), 183PORT_DESC("exec 512/tcp\r\n"), 184PORT_DESC("biff 512/udp comsat\r\n"), 185PORT_DESC("login 513/tcp\r\n"), 186PORT_DESC("who 513/udp whod\r\n"), 187PORT_DESC("shell 514/tcp cmd\r\n"), 188PORT_DESC("syslog 514/udp\r\n"), 189PORT_DESC("printer 515/tcp spooler\r\n"), 190PORT_DESC("talk 517/udp\r\n"), 191PORT_DESC("ntalk 518/udp\r\n"), 192PORT_DESC("route 520/udp router routed\r\n"), 193PORT_DESC("timed 525/udp timeserver\r\n"), 194PORT_DESC("tempo 526/tcp newdate\r\n"), 195PORT_DESC("courier 530/tcp rpc\r\n"), 196PORT_DESC("conference 531/tcp chat\r\n"), 197PORT_DESC("netnews 532/tcp readnews\r\n"), 198PORT_DESC("netwall 533/udp\r\n"), 199PORT_DESC("gdomap 538/tcp\r\n"), 200PORT_DESC("gdomap 538/udp\r\n"), 201PORT_DESC("uucp 540/tcp uucpd\r\n"), 202PORT_DESC("klogin 543/tcp\r\n"), 203PORT_DESC("kshell 544/tcp krcmd\r\n"), 204PORT_DESC("dhcpv6-client 546/tcp\r\n"), 205PORT_DESC("dhcpv6-client 546/udp\r\n"), 206PORT_DESC("dhcpv6-server 547/tcp\r\n"), 207PORT_DESC("dhcpv6-server 547/udp\r\n"), 208PORT_DESC("afpovertcp 548/tcp\r\n"), 209PORT_DESC("afpovertcp 548/udp\r\n"), 210PORT_DESC("idfp 549/tcp\r\n"), 211PORT_DESC("idfp 549/udp\r\n"), 212PORT_DESC("remotefs 556/tcp rfs_server rfs\r\n"), 213PORT_DESC("nntps 563/tcp snntp\r\n"), 214PORT_DESC("nntps 563/udp snntp\r\n"), 215PORT_DESC("submission 587/tcp\r\n"), 216PORT_DESC("submission 587/udp\r\n"), 217PORT_DESC("ldaps 636/tcp\r\n"), 218PORT_DESC("ldaps 636/udp\r\n"), 219PORT_DESC("tinc 655/tcp\r\n"), 220PORT_DESC("tinc 655/udp\r\n"), 221PORT_DESC("silc 706/tcp\r\n"), 222PORT_DESC("silc 706/udp\r\n"), 223PORT_DESC("kerberos-adm 749/tcp\r\n"), 224PORT_DESC("webster 765/tcp\r\n"), 225PORT_DESC("webster 765/udp\r\n"), 226PORT_DESC("rsync 873/tcp\r\n"), 227PORT_DESC("rsync 873/udp\r\n"), 228PORT_DESC("ftps-data 989/tcp\r\n"), 229PORT_DESC("ftps 990/tcp\r\n"), 230PORT_DESC("telnets 992/tcp\r\n"), 231PORT_DESC("telnets 992/udp\r\n"), 232PORT_DESC("imaps 993/tcp\r\n"), 233PORT_DESC("imaps 993/udp\r\n"), 234PORT_DESC("ircs 994/tcp\r\n"), 235PORT_DESC("ircs 994/udp\r\n"), 236PORT_DESC("pop3s 995/tcp\r\n"), 237PORT_DESC("pop3s 995/udp\r\n"), 238PORT_DESC("socks 1080/tcp\r\n"), 239PORT_DESC("socks 1080/udp\r\n"), 240PORT_DESC("proofd 1093/tcp\r\n"), 241PORT_DESC("proofd 1093/udp\r\n"), 242PORT_DESC("rootd 1094/tcp\r\n"), 243PORT_DESC("rootd 1094/udp\r\n"), 244PORT_DESC("openvpn 1194/tcp\r\n"), 245PORT_DESC("openvpn 1194/udp\r\n"), 246PORT_DESC("rmiregistry 1099/tcp\r\n"), 247PORT_DESC("rmiregistry 1099/udp\r\n"), 248PORT_DESC("kazaa 1214/tcp\r\n"), 249PORT_DESC("kazaa 1214/udp\r\n"), 250PORT_DESC("nessus 1241/tcp\r\n"), 251PORT_DESC("nessus 1241/udp\r\n"), 252PORT_DESC("lotusnote 1352/tcp lotusnotes\r\n"), 253PORT_DESC("lotusnote 1352/udp lotusnotes\r\n"), 254PORT_DESC("ms-sql-s 1433/tcp\r\n"), 255PORT_DESC("ms-sql-s 1433/udp\r\n"), 256PORT_DESC("ms-sql-m 1434/tcp\r\n"), 257PORT_DESC("ms-sql-m 1434/udp\r\n"), 258PORT_DESC("ingreslock 1524/tcp\r\n"), 259PORT_DESC("ingreslock 1524/udp\r\n"), 260PORT_DESC("prospero-np 1525/tcp\r\n"), 261PORT_DESC("prospero-np 1525/udp\r\n"), 262PORT_DESC("datametrics 1645/tcp old-radius\r\n"), 263PORT_DESC("datametrics 1645/udp old-radius\r\n"), 264PORT_DESC("sa-msg-port 1646/tcp old-radacct\r\n"), 265PORT_DESC("sa-msg-port 1646/udp old-radacct\r\n"), 266PORT_DESC("kermit 1649/tcp\r\n"), 267PORT_DESC("kermit 1649/udp\r\n"), 268PORT_DESC("groupwise 1677/tcp\r\n"), 269PORT_DESC("groupwise 1677/udp\r\n"), 270PORT_DESC("l2f 1701/tcp l2tp\r\n"), 271PORT_DESC("l2f 1701/udp l2tp\r\n"), 272PORT_DESC("radius 1812/tcp\r\n"), 273PORT_DESC("radius 1812/udp\r\n"), 274PORT_DESC("radius-acct 1813/tcp radacct\r\n"), 275PORT_DESC("radius-acct 1813/udp radacct\r\n"), 276PORT_DESC("msnp 1863/tcp\r\n"), 277PORT_DESC("msnp 1863/udp\r\n"), 278PORT_DESC("unix-status 1957/tcp\r\n"), 279PORT_DESC("log-server 1958/tcp\r\n"), 280PORT_DESC("remoteping 1959/tcp\r\n"), 281PORT_DESC("cisco-sccp 2000/tcp\r\n"), 282PORT_DESC("cisco-sccp 2000/udp\r\n"), 283PORT_DESC("search 2010/tcp ndtp\r\n"), 284PORT_DESC("pipe-server 2010/tcp pipe_server\r\n"), 285PORT_DESC("nfs 2049/tcp\r\n"), 286PORT_DESC("nfs 2049/udp\r\n"), 287PORT_DESC("gnunet 2086/tcp\r\n"), 288PORT_DESC("gnunet 2086/udp\r\n"), 289PORT_DESC("rtcm-sc104 2101/tcp\r\n"), 290PORT_DESC("rtcm-sc104 2101/udp\r\n"), 291PORT_DESC("gsigatekeeper 2119/tcp\r\n"), 292PORT_DESC("gsigatekeeper 2119/udp\r\n"), 293PORT_DESC("gris 2135/tcp\r\n"), 294PORT_DESC("gris 2135/udp\r\n"), 295PORT_DESC("cvspserver 2401/tcp\r\n"), 296PORT_DESC("cvspserver 2401/udp\r\n"), 297PORT_DESC("venus 2430/tcp\r\n"), 298PORT_DESC("venus 2430/udp\r\n"), 299PORT_DESC("venus-se 2431/tcp\r\n"), 300PORT_DESC("venus-se 2431/udp\r\n"), 301PORT_DESC("codasrv 2432/tcp\r\n"), 302PORT_DESC("codasrv 2432/udp\r\n"), 303PORT_DESC("codasrv-se 2433/tcp\r\n"), 304PORT_DESC("codasrv-se 2433/udp\r\n"), 305PORT_DESC("mon 2583/tcp\r\n"), 306PORT_DESC("mon 2583/udp\r\n"), 307PORT_DESC("dict 2628/tcp\r\n"), 308PORT_DESC("dict 2628/udp\r\n"), 309PORT_DESC("f5-globalsite 2792/tcp\r\n"), 310PORT_DESC("f5-globalsite 2792/udp\r\n"), 311PORT_DESC("gsiftp 2811/tcp\r\n"), 312PORT_DESC("gsiftp 2811/udp\r\n"), 313PORT_DESC("gpsd 2947/tcp\r\n"), 314PORT_DESC("gpsd 2947/udp\r\n"), 315PORT_DESC("gds-db 3050/tcp gds_db\r\n"), 316PORT_DESC("gds-db 3050/udp gds_db\r\n"), 317PORT_DESC("icpv2 3130/tcp icp\r\n"), 318PORT_DESC("icpv2 3130/udp icp\r\n"), 319PORT_DESC("iscsi-target 3260/tcp\r\n"), 320PORT_DESC("mysql 3306/tcp\r\n"), 321PORT_DESC("mysql 3306/udp\r\n"), 322PORT_DESC("nut 3493/tcp\r\n"), 323PORT_DESC("nut 3493/udp\r\n"), 324PORT_DESC("distcc 3632/tcp\r\n"), 325PORT_DESC("distcc 3632/udp\r\n"), 326PORT_DESC("daap 3689/tcp\r\n"), 327PORT_DESC("daap 3689/udp\r\n"), 328PORT_DESC("svn 3690/tcp subversion\r\n"), 329PORT_DESC("svn 3690/udp subversion\r\n"), 330PORT_DESC("suucp 4031/tcp\r\n"), 331PORT_DESC("suucp 4031/udp\r\n"), 332PORT_DESC("sysrqd 4094/tcp\r\n"), 333PORT_DESC("sysrqd 4094/udp\r\n"), 334PORT_DESC("sieve 4190/tcp\r\n"), 335PORT_DESC("epmd 4369/tcp\r\n"), 336PORT_DESC("epmd 4369/udp\r\n"), 337PORT_DESC("remctl 4373/tcp\r\n"), 338PORT_DESC("remctl 4373/udp\r\n"), 339PORT_DESC("f5-iquery 4353/tcp\r\n"), 340PORT_DESC("f5-iquery 4353/udp\r\n"), 341PORT_DESC("ipsec-nat-t 4500/udp\r\n"), 342PORT_DESC("iax 4569/tcp\r\n"), 343PORT_DESC("iax 4569/udp\r\n"), 344PORT_DESC("mtn 4691/tcp\r\n"), 345PORT_DESC("mtn 4691/udp\r\n"), 346PORT_DESC("radmin-port 4899/tcp\r\n"), 347PORT_DESC("radmin-port 4899/udp\r\n"), 348PORT_DESC("rfe 5002/udp\r\n"), 349PORT_DESC("rfe 5002/tcp\r\n"), 350PORT_DESC("mmcc 5050/tcp\r\n"), 351PORT_DESC("mmcc 5050/udp\r\n"), 352PORT_DESC("sip 5060/tcp\r\n"), 353PORT_DESC("sip 5060/udp\r\n"), 354PORT_DESC("sip-tls 5061/tcp\r\n"), 355PORT_DESC("sip-tls 5061/udp\r\n"), 356PORT_DESC("aol 5190/tcp\r\n"), 357PORT_DESC("aol 5190/udp\r\n"), 358PORT_DESC("xmpp-client 5222/tcp jabber-client\r\n"), 359PORT_DESC("xmpp-client 5222/udp jabber-client\r\n"), 360PORT_DESC("xmpp-server 5269/tcp jabber-server\r\n"), 361PORT_DESC("xmpp-server 5269/udp jabber-server\r\n"), 362PORT_DESC("cfengine 5308/tcp\r\n"), 363PORT_DESC("cfengine 5308/udp\r\n"), 364PORT_DESC("mdns 5353/tcp\r\n"), 365PORT_DESC("mdns 5353/udp\r\n"), 366PORT_DESC("postgresql 5432/tcp postgres\r\n"), 367PORT_DESC("postgresql 5432/udp postgres\r\n"), 368PORT_DESC("freeciv 5556/tcp rptp\r\n"), 369PORT_DESC("freeciv 5556/udp\r\n"), 370PORT_DESC("amqps 5671/tcp\r\n"), 371PORT_DESC("amqp 5672/tcp\r\n"), 372PORT_DESC("amqp 5672/udp\r\n"), 373PORT_DESC("amqp 5672/sctp\r\n"), 374PORT_DESC("ggz 5688/tcp\r\n"), 375PORT_DESC("ggz 5688/udp\r\n"), 376PORT_DESC("x11 6000/tcp x11-0\r\n"), 377PORT_DESC("x11 6000/udp x11-0\r\n"), 378PORT_DESC("x11-1 6001/tcp\r\n"), 379PORT_DESC("x11-1 6001/udp\r\n"), 380PORT_DESC("x11-2 6002/tcp\r\n"), 381PORT_DESC("x11-2 6002/udp\r\n"), 382PORT_DESC("x11-3 6003/tcp\r\n"), 383PORT_DESC("x11-3 6003/udp\r\n"), 384PORT_DESC("x11-4 6004/tcp\r\n"), 385PORT_DESC("x11-4 6004/udp\r\n"), 386PORT_DESC("x11-5 6005/tcp\r\n"), 387PORT_DESC("x11-5 6005/udp\r\n"), 388PORT_DESC("x11-6 6006/tcp\r\n"), 389PORT_DESC("x11-6 6006/udp\r\n"), 390PORT_DESC("x11-7 6007/tcp\r\n"), 391PORT_DESC("x11-7 6007/udp\r\n"), 392PORT_DESC("gnutella-svc 6346/tcp\r\n"), 393PORT_DESC("gnutella-svc 6346/udp\r\n"), 394PORT_DESC("gnutella-rtr 6347/tcp\r\n"), 395PORT_DESC("gnutella-rtr 6347/udp\r\n"), 396PORT_DESC("sge-qmaster 6444/tcp sge_qmaster\r\n"), 397PORT_DESC("sge-qmaster 6444/udp sge_qmaster\r\n"), 398PORT_DESC("sge-execd 6445/tcp sge_execd\r\n"), 399PORT_DESC("sge-execd 6445/udp sge_execd\r\n"), 400PORT_DESC("mysql-proxy 6446/tcp\r\n"), 401PORT_DESC("mysql-proxy 6446/udp\r\n"), 402PORT_DESC("afs3-fileserver 7000/tcp bbs\r\n"), 403PORT_DESC("afs3-fileserver 7000/udp bbs\r\n"), 404PORT_DESC("afs3-callback 7001/tcp\r\n"), 405PORT_DESC("afs3-callback 7001/udp\r\n"), 406PORT_DESC("afs3-prserver 7002/tcp\r\n"), 407PORT_DESC("afs3-prserver 7002/udp\r\n"), 408PORT_DESC("afs3-vlserver 7003/tcp\r\n"), 409PORT_DESC("afs3-vlserver 7003/udp\r\n"), 410PORT_DESC("afs3-kaserver 7004/tcp\r\n"), 411PORT_DESC("afs3-kaserver 7004/udp\r\n"), 412PORT_DESC("afs3-volser 7005/tcp\r\n"), 413PORT_DESC("afs3-volser 7005/udp\r\n"), 414PORT_DESC("afs3-errors 7006/tcp\r\n"), 415PORT_DESC("afs3-errors 7006/udp\r\n"), 416PORT_DESC("afs3-bos 7007/tcp\r\n"), 417PORT_DESC("afs3-bos 7007/udp\r\n"), 418PORT_DESC("afs3-update 7008/tcp\r\n"), 419PORT_DESC("afs3-update 7008/udp\r\n"), 420PORT_DESC("afs3-rmtsys 7009/tcp\r\n"), 421PORT_DESC("afs3-rmtsys 7009/udp\r\n"), 422PORT_DESC("font-service 7100/tcp xfs\r\n"), 423PORT_DESC("font-service 7100/udp xfs\r\n"), 424PORT_DESC("http-alt 8080/tcp webcache\r\n"), 425PORT_DESC("http-alt 8080/udp\r\n"), 426PORT_DESC("bacula-dir 9101/tcp\r\n"), 427PORT_DESC("bacula-dir 9101/udp\r\n"), 428PORT_DESC("bacula-fd 9102/tcp\r\n"), 429PORT_DESC("bacula-fd 9102/udp\r\n"), 430PORT_DESC("bacula-sd 9103/tcp\r\n"), 431PORT_DESC("bacula-sd 9103/udp\r\n"), 432PORT_DESC("xmms2 9667/tcp\r\n"), 433PORT_DESC("xmms2 9667/udp\r\n"), 434PORT_DESC("nbd 10809/tcp\r\n"), 435PORT_DESC("zabbix-agent 10050/tcp\r\n"), 436PORT_DESC("zabbix-agent 10050/udp\r\n"), 437PORT_DESC("zabbix-trapper 10051/tcp\r\n"), 438PORT_DESC("zabbix-trapper 10051/udp\r\n"), 439PORT_DESC("amanda 10080/tcp\r\n"), 440PORT_DESC("amanda 10080/udp\r\n"), 441PORT_DESC("dicom 11112/tcp\r\n"), 442PORT_DESC("hkp 11371/tcp\r\n"), 443PORT_DESC("hkp 11371/udp\r\n"), 444PORT_DESC("bprd 13720/tcp\r\n"), 445PORT_DESC("bprd 13720/udp\r\n"), 446PORT_DESC("bpdbm 13721/tcp\r\n"), 447PORT_DESC("bpdbm 13721/udp\r\n"), 448PORT_DESC("bpjava-msvc 13722/tcp\r\n"), 449PORT_DESC("bpjava-msvc 13722/udp\r\n"), 450PORT_DESC("vnetd 13724/tcp\r\n"), 451PORT_DESC("vnetd 13724/udp\r\n"), 452PORT_DESC("bpcd 13782/tcp\r\n"), 453PORT_DESC("bpcd 13782/udp\r\n"), 454PORT_DESC("vopied 13783/tcp\r\n"), 455PORT_DESC("vopied 13783/udp\r\n"), 456PORT_DESC("db-lsp 17500/tcp\r\n"), 457PORT_DESC("dcap 22125/tcp\r\n"), 458PORT_DESC("gsidcap 22128/tcp\r\n"), 459PORT_DESC("wnn6 22273/tcp\r\n"), 460PORT_DESC("wnn6 22273/udp\r\n"), 461PORT_DESC("rtmp 1/ddp\r\n"), 462PORT_DESC("nbp 2/ddp\r\n"), 463PORT_DESC("echo 4/ddp\r\n"), 464PORT_DESC("zip 6/ddp\r\n"), 465PORT_DESC("kerberos4 750/udp kerberos-iv kdc\r\n"), 466PORT_DESC("kerberos4 750/tcp kerberos-iv kdc\r\n"), 467PORT_DESC("kerberos-master 751/udp kerberos_master\r\n"), 468PORT_DESC("kerberos-master 751/tcp\r\n"), 469PORT_DESC("passwd-server 752/udp passwd_server\r\n"), 470PORT_DESC("krb-prop 754/tcp krb_prop krb5_prop hprop\r\n"), 471PORT_DESC("krbupdate 760/tcp kreg\r\n"), 472PORT_DESC("swat 901/tcp\r\n"), 473PORT_DESC("kpop 1109/tcp\r\n"), 474PORT_DESC("knetd 2053/tcp\r\n"), 475PORT_DESC("zephyr-srv 2102/udp\r\n"), 476PORT_DESC("zephyr-clt 2103/udp\r\n"), 477PORT_DESC("zephyr-hm 2104/udp\r\n"), 478PORT_DESC("eklogin 2105/tcp\r\n"), 479PORT_DESC("kx 2111/tcp\r\n"), 480PORT_DESC("iprop 2121/tcp\r\n"), 481PORT_DESC("supfilesrv 871/tcp\r\n"), 482PORT_DESC("supfiledbg 1127/tcp\r\n"), 483PORT_DESC("linuxconf 98/tcp\r\n"), 484PORT_DESC("poppassd 106/tcp\r\n"), 485PORT_DESC("poppassd 106/udp\r\n"), 486PORT_DESC("moira-db 775/tcp moira_db\r\n"), 487PORT_DESC("moira-update 777/tcp moira_update\r\n"), 488PORT_DESC("moira-ureg 779/udp moira_ureg\r\n"), 489PORT_DESC("spamd 783/tcp\r\n"), 490PORT_DESC("omirr 808/tcp omirrd\r\n"), 491PORT_DESC("omirr 808/udp omirrd\r\n"), 492PORT_DESC("customs 1001/tcp\r\n"), 493PORT_DESC("customs 1001/udp\r\n"), 494PORT_DESC("skkserv 1178/tcp\r\n"), 495PORT_DESC("predict 1210/udp\r\n"), 496PORT_DESC("rmtcfg 1236/tcp\r\n"), 497PORT_DESC("wipld 1300/tcp\r\n"), 498PORT_DESC("xtel 1313/tcp\r\n"), 499PORT_DESC("xtelw 1314/tcp\r\n"), 500PORT_DESC("support 1529/tcp\r\n"), 501PORT_DESC("cfinger 2003/tcp\r\n"), 502PORT_DESC("frox 2121/tcp\r\n"), 503PORT_DESC("ninstall 2150/tcp\r\n"), 504PORT_DESC("ninstall 2150/udp\r\n"), 505PORT_DESC("zebrasrv 2600/tcp\r\n"), 506PORT_DESC("zebra 2601/tcp\r\n"), 507PORT_DESC("ripd 2602/tcp\r\n"), 508PORT_DESC("ripngd 2603/tcp\r\n"), 509PORT_DESC("ospfd 2604/tcp\r\n"), 510PORT_DESC("bgpd 2605/tcp\r\n"), 511PORT_DESC("ospf6d 2606/tcp\r\n"), 512PORT_DESC("ospfapi 2607/tcp\r\n"), 513PORT_DESC("isisd 2608/tcp\r\n"), 514PORT_DESC("afbackup 2988/tcp\r\n"), 515PORT_DESC("afbackup 2988/udp\r\n"), 516PORT_DESC("afmbackup 2989/tcp\r\n"), 517PORT_DESC("afmbackup 2989/udp\r\n"), 518PORT_DESC("xtell 4224/tcp\r\n"), 519PORT_DESC("fax 4557/tcp\r\n"), 520PORT_DESC("hylafax 4559/tcp\r\n"), 521PORT_DESC("distmp3 4600/tcp\r\n"), 522PORT_DESC("munin 4949/tcp lrrd\r\n"), 523PORT_DESC("enbd-cstatd 5051/tcp\r\n"), 524PORT_DESC("enbd-sstatd 5052/tcp\r\n"), 525PORT_DESC("pcrd 5151/tcp\r\n"), 526PORT_DESC("noclog 5354/tcp\r\n"), 527PORT_DESC("noclog 5354/udp\r\n"), 528PORT_DESC("hostmon 5355/tcp\r\n"), 529PORT_DESC("hostmon 5355/udp\r\n"), 530PORT_DESC("rplay 5555/udp\r\n"), 531PORT_DESC("nrpe 5666/tcp\r\n"), 532PORT_DESC("nsca 5667/tcp\r\n"), 533PORT_DESC("mrtd 5674/tcp\r\n"), 534PORT_DESC("bgpsim 5675/tcp\r\n"), 535PORT_DESC("canna 5680/tcp\r\n"), 536PORT_DESC("syslog-tls 6514/tcp\r\n"), 537PORT_DESC("sane-port 6566/tcp sane saned\r\n"), 538PORT_DESC("ircd 6667/tcp\r\n"), 539PORT_DESC("zope-ftp 8021/tcp\r\n"), 540PORT_DESC("tproxy 8081/tcp\r\n"), 541PORT_DESC("omniorb 8088/tcp\r\n"), 542PORT_DESC("omniorb 8088/udp\r\n"), 543PORT_DESC("clc-build-daemon 8990/tcp\r\n"), 544PORT_DESC("xinetd 9098/tcp\r\n"), 545PORT_DESC("mandelspawn 9359/udp mandelbrot\r\n"), 546PORT_DESC("git 9418/tcp\r\n"), 547PORT_DESC("zope 9673/tcp\r\n"), 548PORT_DESC("webmin 10000/tcp\r\n"), 549PORT_DESC("kamanda 10081/tcp\r\n"), 550PORT_DESC("kamanda 10081/udp\r\n"), 551PORT_DESC("amandaidx 10082/tcp\r\n"), 552PORT_DESC("amidxtape 10083/tcp\r\n"), 553PORT_DESC("smsqp 11201/tcp\r\n"), 554PORT_DESC("smsqp 11201/udp\r\n"), 555PORT_DESC("xpilot 15345/tcp\r\n"), 556PORT_DESC("xpilot 15345/udp\r\n"), 557PORT_DESC("sgi-cmsd 17001/udp\r\n"), 558PORT_DESC("sgi-crsd 17002/udp\r\n"), 559PORT_DESC("sgi-gcd 17003/udp\r\n"), 560PORT_DESC("sgi-cad 17004/tcp\r\n"), 561PORT_DESC("isdnlog 20011/tcp\r\n"), 562PORT_DESC("isdnlog 20011/udp\r\n"), 563PORT_DESC("vboxd 20012/tcp\r\n"), 564PORT_DESC("vboxd 20012/udp\r\n"), 565PORT_DESC("binkp 24554/tcp\r\n"), 566PORT_DESC("asp 27374/tcp\r\n"), 567PORT_DESC("asp 27374/udp\r\n"), 568PORT_DESC("csync2 30865/tcp\r\n"), 569PORT_DESC("dircproxy 57000/tcp\r\n"), 570PORT_DESC("tfido 60177/tcp\r\n"), 571PORT_DESC("fido 60179/tcp\r\n"), 572#endif // SYSTEM_SERVICES_HEADER 573