ports_list
736 words
2 minutes
views
常用端口
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
| - **20**: FTP 数据传输 (File Transfer Protocol Data Transfer)
- 用于FTP的实际数据传输。
- **21**: FTP 控制 (File Transfer Protocol Command Control)
- 用于FTP的控制指令传输。
- **22**: SSH (Secure Shell)
- 用于安全的登录和其他安全网络服务。
- **23**: Telnet
- 用于不安全的远程登录。
- **25**: SMTP (Simple Mail Transfer Protocol)
- 用于电子邮件传输。
- **53**: DNS (Domain Name System)
- 用于域名解析。
- **80**: HTTP (HyperText Transfer Protocol)
- 用于网页浏览。
- **110**: POP3 (Post Office Protocol 3)
- 用于电子邮件接收。
- **143**: IMAP (Internet Message Access Protocol)
- 用于电子邮件接收和管理。
- **443**: HTTPS (HyperText Transfer Protocol Secure)
- 用于安全的网页浏览。
- **445**: SMB (Server Message Block) / CIFS (Common Internet File System)
- 用于文件共享和打印服务。
- **587**: SMTP 传输层安全 (SMTP over TLS)
- 用于安全的电子邮件传输。
- **993**: IMAPS (IMAP over SSL)
- 用于安全的IMAP电子邮件接收。
- **995**: POP3S (POP3 over SSL)
- 用于安全的POP3电子邮件接收。
- **3306**: MySQL 数据库
- 用于MySQL数据库连接。
- **3389**: RDP (Remote Desktop Protocol)
- 用于远程桌面连接。
- **5432**: PostgreSQL 数据库
- 用于PostgreSQL数据库连接。
- **6379**: Redis
- 用于Redis数据库连接。
- **8080**: HTTP 代理 (HTTP Proxy)
- 用于代理服务的HTTP连接。
- **8443**: HTTPS 代理 (HTTPS Proxy)
- 用于代理服务的HTTPS连接。
|
Unix 特有端口
1
2
3
4
5
6
7
8
| - **2049**: NFS (Network File System)
- 用于网络文件系统服务。
- **6000-6007**: X11 (X Window System)
- 用于图形用户界面系统的网络连接。
- **6660-6669**: IRC (Internet Relay Chat)
- 用于网络聊天服务。
- **7100**: X Font Server
- 用于X字体服务器服务。
|
Windows 特有端口
1
2
3
4
5
6
7
8
9
10
11
12
13
14
| - **135**: DCOM (Distributed Component Object Model) 服务控制管理器
- 用于DCOM服务控制和管理。
- **137-139**: NetBIOS 名称服务, 数据报服务和会话服务
- 用于NetBIOS的网络基本输入输出系统。
- **389**: LDAP (Lightweight Directory Access Protocol)
- 用于目录服务协议。
- **445**: Microsoft-DS (Active Directory, Windows shares)
- 用于活动目录和Windows共享服务。
- **1433**: Microsoft SQL Server
- 用于Microsoft SQL Server数据库连接。
- **3389**: RDP (Remote Desktop Protocol)
- 用于远程桌面连接。
- **5985/5986**: WinRM (Windows Remote Management)
- 用于Windows远程管理。
|