![]() |
|
[怕晕勿近]互联网络命令 - 打印版本 +- MyTFLS社区 (https://community.mytfls.com) +-- 论坛: 电脑区 (https://community.mytfls.com/forum-19.html) +--- 论坛: 系统+网络+硬件 (https://community.mytfls.com/forum-20.html) +--- 主题: [怕晕勿近]互联网络命令 (/thread-11967.html) |
[怕晕勿近]互联网络命令 - Metmet - 2006-8-6 发信人: Boyem (Boyem), 信区: Internet 标 题: POP和SMTP指令集 发信站: BBS 水木清华站 (Sun Oct 29 00:21:53 2000) POP3指令: user name输入用户名 pass ****输入密码 stat 看总共多少封信件,多少字节 list 列出每封信件的字节数 retr n 读第n封信 rset 重置 uidl n down第n封信 top n m 读第n封信的信头,但我不知道m是什么意思,通常令m=1 dele n 删除第n封信 noop 是空指令,防止被服务器踢线。 last 是查看被取走的邮件的最高序数。 quit 退出 ########################################################### SMTP指令:(懒得写了,直接从服务器上copy了一把) 220 xxxx.xxxx.edu.cn ESMTP Sendmail 8.9.3/8.8.7; Sat, 28 Oct 2000 19:14:09 +0800 help 214-This is Sendmail version 8.9.3 214-Topics: 214- HELO EHLO MAIL RCPT DATA 214- RSET NOOP QUIT HELP VRFY 214- EXPN VERB ETRN DSN 214-For more info use "HELP <topic>". 214-To report bugs in the implementation send email to 214- sendmail-bugs@sendmail.org. 214-For local information send email to Postmaster at your site. 214 End of HELP info help helo 214-HELO <hostname> 214- Introduce yourself. 214 End of HELP info help ehlo 214-EHLO <hostname> 214- Introduce yourself, and request extended SMTP mode. 214-Possible replies include: 214- SEND Send as mail [RFC821] 214- SOML Send as mail or terminal [RFC821] 214- SAML Send as mail and terminal [RFC821] 214- EXPN Expand the mailing list [RFC821] 214- HELP Supply helpful information [RFC821] 214- TURN Turn the operation around [RFC821] 214- 8BITMIME Use 8-bit data [RFC1652] 214- SIZE Message size declaration [RFC1870] 214- VERB Verbose [Allman] 214- ONEX One message transaction only [Allman] 214- CHUNKING Chunking [RFC1830] 214- BINARYMIME Binary MIME [RFC1830] 214- PIPELINING Command Pipelining [RFC1854] 214- DSN Delivery Status Notification [RFC1891] 214- ETRN Remote Message Queue Starting [RFC1985] 214- XUSR Initial (user) submission [Allman] 214 End of HELP info help mail 214-MAIL FROM: <sender> [ <parameters> ] 214- Specifies the sender. Parameters are ESMTP extensions. 214- See "HELP DSN" for details. 214 End of HELP info help rcpt 214-RCPT TO: <recipient> [ <parameters> ] 214- Specifies the recipient. Can be used any number of times. 214- Parameters are ESMTP extensions. See "HELP DSN" for details. 214 End of HELP info help data 214-DATA 214- Following text is collected as the message. 214- End with a single dot. 214 End of HELP info help rset 214-RSET 214- Resets the system. 214 End of HELP info help noop help quit help help help vrfy 214-VRFY <recipient> (注:这里recipient可以是你的username) 214- Verify an address. If you want to see what it aliases 214- to, use EXPN instead. 214 End of HELP info help expn 214-EXPN <recipient> 214- Expand an address. If the address indicates a mailing 214- list, return the contents of that list. 214 End of HELP info help verb 214-VERB 214- Go into verbose mode. This sends 0xy responses that are 214- not RFC821 standard (but should be) They are recognized 214- by humans and other sendmail implementations. 214 End of HELP info help etrn 214-ETRN [ <hostname> | @<domain> | #<queuename> ] 214- Run the queue for the specified <hostname>, or 214- all hosts within a given <domain>, or a specially-named 214- <queuename> (implementation-specific). 214 End of HELP info help dsn 214-MAIL FROM: <sender> [ RET={ FULL | HDRS} ] [ ENVID=<envid> ] 214-RCPT TO: <recipient> [ NOTIFY={NEVER,SUCCESS,FAILURE,DELAY} ] 214- [ ORCPT=<recipient> ] 214- SMTP Delivery Status Notifications. 214-Descriptions: 214- RET Return either the full message or only headers. 214- ENVID Sender's "envelope identifier" for tracking. 214- NOTIFY When to send a DSN. Multiple options are OK, comma- 214- delimited. NEVER must appear by itself. 214- ORCPT Original recipient. 214 End of HELP info - Metmet - 2006-8-6 Arp 显示和修改“地址解析协议”(ARP) 所使用的到以太网的 IP 或令牌环物理地址翻译表 。该命令只有在安装了 TCP/IP 协议之后才可用。 arp -a [inet_addr] [-N [if_addr]] arp -d inet_addr [if_addr] arp -s inet_addr ether_addr [if_addr] 参数 -a 通过询问 TCP/IP 显示当前 ARP 项。如果指定了 inet_addr,则只显示指定计算机的 IP 和物理地址。 -g 与 -a 相同。 inet_addr 以加点的十进制标记指定 IP 地址。 -N 显示由 if_addr 指定的网络界面 ARP 项。 if_addr 指定需要修改其地址转换表接口的 IP 地址(如果有的话)。如果不存在,将使用第一 个可适用的接口。 -d 删除由 inet_addr 指定的项。 -s 在 ARP 缓存中添加项,将 IP 地址 inet_addr 和物理地址 ether_addr 关联。物理地 址由以连字符分隔的 6 个十六进制字节给定。使用带点的十进制标记指定 IP 地址。项 是永久性的,即在超时到期后项自动从缓存删除。 ether_addr 指定物理地址。 Example: > arp -s 157.55.85.212 00-aa-00-62-c6-09 .... Adds a static entry. > arp -a .... Displays the arp table. - 毛毛虫 - 2006-8-6 完蛋了 - Metmet - 2006-8-6 嗯? 呵呵. 很多命令我们都不用的. 我们应该位这个窗口化的世界喝彩(毕竟不用接触黑乎乎的命令了) - leiyuss - 2006-8-6 说得没错 看那些命令我也封掉了...... |