计算机网络
文章平均质量分 70
王大凤
没有简介
展开
-
用Telnet查看HTTP报文
配置Telnet服务环境打开控制面板 点击程序,然后点击程序和功能里的启用或关闭Windows功能 勾选Telnet客户端,并且点击确定,然后Windows会自己安装 我看了其他教程,就是服务里找到Telnet服务啥的……我没有找到这个服务,但是我直接这样就是可以运行Telnet了。验证一下:在命令行输入telnet后就会进入这样一个页面。> telnet...原创 2018-03-28 16:31:06 · 4212 阅读 · 4 评论 -
计算机网络套接字编程作业一:Web服务器
题目要求You will develop a web server that handles one HTTP request at a time. Your web server should accept and parse the HTTP request, get the requested file from the server’s file system, create an H...原创 2018-06-08 14:30:54 · 6581 阅读 · 6 评论 -
计算机网络套接字编程作业二:UDP ping 程序
题目要求客户端输入ping 1-10,服务器端人工模拟UDP的丢包。如果时间超过1s,则表示该包丢了,显示超时如果没有丢包,则输出服务器返回的数据,并且输出RTT服务器代码这个代码是教程配套网站已经有的。我是从myk502的GitHub下载的。import randomfrom socket import *HOST = ''PORT = 12001BUFSI...原创 2018-06-08 14:46:42 · 3526 阅读 · 2 评论 -
计算机网络套接字编程作业三: 邮件客户
题目要求:Your task is to develop a simple mail client that sends email to any recipient. Your client will need to connect to a mail server, dialogue with the mail server u...原创 2018-06-18 18:59:18 · 6577 阅读 · 4 评论