赞
踩
目录
tracert------追踪路由,也可以用来查看网络连通性
copy 路径\文件名 路径\文件名------把一个文件拷贝到另一个地方
ove 路径\文件名 路径\文件名------把一个文件移动(就是剪切+复制)到另一个地方
shutdown -s -t 60 ------将在一分钟之内关闭计算机
netstat -ano|find "httpd"------查找指定内容的网络连接情况
前言:
cmd.exe是微软Windows系统的命令行程序(可解释为Commander.exe),类似于微软的DOS操作系统。cmd.exe是一个16/32位的命令行程序,运行在Windows NT/Windows 2000/Windows XP/Windows 2003/Windows Vista/Windows 7/Windows 8/Windows 10上。这不是纯粹的系统程序,但是如果终止它,可能会导致未知的问题。
1.再搜索框里搜索cdmd;
2.CMD命令:开始->运行->键入cmd
3. win + r 并 输入 cmd
- C:\Users\Administrator>ipconfig
-
- Windows IP 配置
-
-
- 无线局域网适配器 WLAN:
-
- 连接特定的 DNS 后缀 . . . . . . . :
- IPv6 地址 . . . . . . . . . . . . : 2408:8427:b300:3304:60db:a328:e531:5e66
- 临时 IPv6 地址. . . . . . . . . . : 2408:8427:b300:3304:484f:b2f5:8e44:122f
- 本地链接 IPv6 地址. . . . . . . . : fe80::b05f:5ad:241a:6d60%17
- IPv4 地址 . . . . . . . . . . . . : 192.168.43.70
- 子网掩码 . . . . . . . . . . . . : 255.255.255.0
- 默认网关. . . . . . . . . . . . . : fe80::c071:7bff:febe:d0db%17
- 192.168.43.1
- C:\Users\Administrator>ping 8.8.8.8
-
- 正在 Ping 8.8.8.8 具有 32 字节的数据:
- 来自 8.8.8.8 的回复: 字节=32 时间=170ms TTL=114
- 来自 8.8.8.8 的回复: 字节=32 时间=69ms TTL=114
- 来自 8.8.8.8 的回复: 字节=32 时间=70ms TTL=114
- 来自 8.8.8.8 的回复: 字节=32 时间=79ms TTL=114
-
- 8.8.8.8 的 Ping 统计信息:
- 数据包: 已发送 = 4,已接收 = 4,丢失 = 0 (0% 丢失),
- 往返行程的估计时间(以毫秒为单位):
- 最短 = 69ms,最长 = 170ms,平均 = 97ms
- C:\Users\Administrator>tracert 8.8.8.8
-
- 通过最多 30 个跃点跟踪
- 到 dns.google [8.8.8.8] 的路由:
-
- 1 8 ms 5 ms 4 ms DESKTOP-6SI8NI9 [192.168.43.1]
- 2 28 ms 18 ms 18 ms DESKTOP-6SI8NI9 [192.168.51.18]
- 3 * * * 请求超时。
- 4 33 ms 20 ms 37 ms 89.13.221.60.adsl-pool.sx.cn [60.221.13.89]
- 5 60 ms 31 ms 44 ms 37.11.221.60.adsl-pool.sx.cn [60.221.11.37]
- C:\Users\Administrator>telnet 192.168.43.88 443
- 正在连接192.168.43.88...无法打开到主机的连接。 在端口 443: 连接失败
这个需要安装,安装简单,自己下载,里面有安装说明
https://pan.baidu.com/s/1tD18G4m6Tyq95vQgtqmMxA
提取码:92ro
- C:\Users\Administrator>tcping 192.168.43.88 3306
-
- Probing 192.168.43.88:3306/tcp - Port is open - time=41.909ms
- Probing 192.168.43.88:3306/tcp - Port is open - time=15.947ms
- Probing 192.168.43.88:3306/tcp - Port is open - time=3.582ms
- Probing 192.168.43.88:3306/tcp - Port is open - time=15.425ms
-
- Ping statistics for 192.168.43.88:3306
- 4 probes sent.
- 4 successful, 0 failed. (0.00% fail)
- Approximate trip times in milli-seconds:
- Minimum = 3.582ms, Maximum = 41.909ms, Average = 19.216ms
- C:\Users\Administrator>route print
-
- IPv4 路由表
- ===========================================================================
- 活动路由:
- 网络目标 网络掩码 网关 接口 跃点数
- 0.0.0.0 0.0.0.0 192.168.43.1 192.168.43.70 35
- 2.0.0.0 255.255.255.0 在链路上 2.0.0.1 257
- 2.0.0.1 255.255.255.255 在链路上 2.0.0.1 257
- 2.0.0.255 255.255.255.255 在链路上 2.0.0.1 257
- 127.0.0.0 255.0.0.0 在链路上 127.0.0.1 331
- 127.0.0.1 255.255.255.255 在链路上 127.0.0.1 331
- 127.255.255.255 255.255.255.255 在链路上 127.0.0.1 331
- 169.254.0.0 255.255.0.0 在链路上 169.254.57.77 291
- 169.254.0.0 255.255.0.0 在链路上 169.254.242.169 281
- 169.254.0.0 255.255.0.0 在链路上 169.254.164.83
route add 192.168.10.0 mask 255.255.255.0 192.168.10.1 -p
route delete 192.168.10.0 mask 255.255.255.0 192.168.10.1 -p
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。