1.curl 地址 或者 wget url地址

[hxxxx@iZ23vy2msooZ ~]$ curl www.baidu.com
<!DOCTYPE html>
<!--STATUS OK--><html> <head><meta http-equiv=content-type content=text/html;charset=utf-8><meta http-equiv=X-UA-Compatible content=IE=Edge><meta content=always name=referrer><link rel=stylesheet type=text/css href=http://s1.bdstatic.com/r/www/cache/bdorz/baidu.min.css><title>鐧惧害涓€涓嬶紝浣犲氨鐭ラ亾</title></head> <body link=#0000cc> <div id=wrapper> <div id=head> <div class="head_wrapper"> <div class="s_form"> <div class="s_form_wrapper"> <div id=lg> <img hidefocus=true src=//www.baidu.com/img/bd_logo1.png width=270 height=129> </div> <form id=form name=f action=//www.baidu.com/s class="fm"> <input type=hidden name=bdorz_come value=1> <input type=hidden name=ie value=utf-8> <input type=hidden name=f value=8> <input type=hidden name=rsv_bp value=1> <input type=hidden name=rsv_idx value=1> <input type=hidden name=tn value=baidu><span class="bg s_ipt_wr"><input id=kw name=wd class="s_ipt" value maxlength=255 autocomplete=off autofocus></span><span class="bg s_btn_wr"><input type=submit id=su value=鐧惧害涓€涓class="bg s_btn"></span> </form> </div> </div> <div id=u1> <a href=http://news.baidu.com name=tj_trnews class="mnav">鏂伴椈</a> <a href=http://www.hao123.com name=tj_trhao123 class="mnav">hao123</a> <a href=http://map.baidu.com name=tj_trmap class="mnav">鍦板浘</a> <a href=http://v.baidu.com name=tj_trvideo class="mnav">瑙嗛</a> <a href=http://tieba.baidu.com name=tj_trtieba class="mnav">璐村惂</a> <noscript> <a href=http://www.baidu.com/bdorz/login.gif?login&amp;tpl=mn&amp;u=http%3A%2F%2Fwww.baidu.com%2f%3fbdorz_come%3d1 name=tj_login class="lb">鐧诲綍</a> </noscript> <script>document.write('<a href="http://www.baidu.com/bdorz/login.gif?login&tpl=mn&u='+ encodeURIComponent(window.location.href+ (window.location.search === "" ? "?" : "&")+ "bdorz_come=1")+ '" name="tj_login" class="lb">鐧诲綍</a>');</script> <a href=//www.baidu.com/more/ name=tj_briicon class="bri" style="display: block;">鏇村浜у搧</a> </div> </div> </div> <div id=ftCon> <div id=ftConw> <p id=lh> <a href=http://home.baidu.com>鍏充簬鐧惧害</a> <a href=http://ir.baidu.com>About Baidu</a> </p> <p id=cp>&copy;2017&nbsp;Baidu&nbsp;<a href=http://www.baidu.com/duty/>浣跨敤鐧惧害鍓嶅繀璇/a>&nbsp; <a href=http://jianyi.baidu.com/ class="cp-feedback">鎰忚鍙嶉</a>&nbsp;浜琁CP璇30173鍙nbsp; <img src=//www.baidu.com/img/gs.gif> </p> </div> </div> </div> </body> </html>

wget + 空格 + 要下载文件的url路径

[hxxxx@iZ23vy2msooZ ~]$ wget www.baidu.com
--2017-03-18 23:05:54-- http://www.baidu.com/
Resolving www.baidu.com... 220.181.112.244, 220.181.111.188
Connecting to www.baidu.com|220.181.112.244|:80... connected.
HTTP request sent, awaiting response... 200 OK
Length: 2381 (2.3K) [text/html]
Saving to: 鈥渋ndex.html.1鈥

100%[=============================================================================================================================>] 2,381 --.-K/s in 0s

2017-03-18 23:05:54 (317 MB/s) - 鈥渋ndex.html.1鈥saved [2381/2381]

2.ping ip地址  ctrl+c退出   ping只是测试网络联接状况以及信息包发送和接收状况。

[hxxxx@iZ23vy2msooZ ~]$ ping www.baidu.com
PING www.a.shifen.com (220.181.111.188) 56(84) bytes of data.
64 bytes from 220.181.111.188: icmp_seq=1 ttl=53 time=28.7 ms
64 bytes from 220.181.111.188: icmp_seq=2 ttl=53 time=28.7 ms
64 bytes from 220.181.111.188: icmp_seq=3 ttl=53 time=28.7 ms
64 bytes from 220.181.111.188: icmp_seq=4 ttl=53 time=28.7 ms
64 bytes from 220.181.111.188: icmp_seq=5 ttl=53 time=28.8 ms
64 bytes from 220.181.111.188: icmp_seq=6 ttl=53 time=28.8 ms
64 bytes from 220.181.111.188: icmp_seq=7 ttl=53 time=28.7 ms
64 bytes from 220.181.111.188: icmp_seq=8 ttl=53 time=28.7 ms
64 bytes from 220.181.111.188: icmp_seq=9 ttl=53 time=28.8 ms
64 bytes from 220.181.111.188: icmp_seq=10 ttl=53 time=28.7 ms
64 bytes from 220.181.111.188: icmp_seq=11 ttl=53 time=28.8 ms
^C
--- www.a.shifen.com ping statistics ---
11 packets transmitted, 11 received, 0% packet loss, time 10445ms
rtt min/avg/max/mdev = 28.748/28.801/28.892/0.148 ms

3.telnet ip地址 端口地址

[hxxxx@iZ23vy2msooZ ~]$ telnet www.baidu.com 80
Trying 220.181.112.244...
Connected to www.baidu.com.
Escape character is '^]'.
^C
Connection closed by foreign host.
[hxxxx@iZ23vy2msooZ ~]$ telnet www.baidu.com 443
Trying 220.181.112.244...
Connected to www.baidu.com.
Escape character is '^]'.
^C
^CConnection closed by foreign host.

4.可以使用traceroute命令显示数据包到达目的主机所经过的路由。

[hxxxx@iZ23vy2msooZ ~]$ traceroute www.baidu.com
traceroute to www.baidu.com (220.181.111.188), 30 hops max, 60 byte packets
1 * * *
2 11.240.157.150 (11.240.157.150) 4.258 ms 11.240.144.214 (11.240.144.214) 1.127 ms 11.240.163.246 (11.240.163.246) 4.312 ms
3 140.205.27.210 (140.205.27.210) 2.072 ms 42.120.244.237 (42.120.244.237) 2.452 ms 106.11.144.33 (106.11.144.33) 1.178 ms
4 42.120.247.98 (42.120.247.98) 2.800 ms 42.120.247.110 (42.120.247.110) 1.142 ms 42.120.247.66 (42.120.247.66) 22.146 ms
5 * * 115.238.21.114 (115.238.21.114) 0.980 ms
6 220.191.200.77 (220.191.200.77) 1.837 ms 220.191.200.73 (220.191.200.73) 7.704 ms 220.191.200.125 (220.191.200.125) 1.119 ms
7 * * 202.97.68.165 (202.97.68.165) 23.180 ms
8 * * *
9 * * *
10 220.181.182.26 (220.181.182.26) 23.839 ms 220.181.17.94 (220.181.17.94) 23.776 ms 220.181.17.150 (220.181.17.150) 29.032 ms

5.可以使用ifconfig命令来配置并查看网络接口的配置情况。

[huangjing@iZ23vy2msooZ ~]$ ifconfig
eth0 Link encap:Ethernet HWaddr 00:16:3E:01:02:33
inet addr:10.45.54.21 Bcast:10.45.55.255 Mask:255.255.252.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:343207526 errors:0 dropped:0 overruns:0 frame:0
TX packets:100026499 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:57272669908 (53.3 GiB) TX bytes:142400917670 (132.6 GiB)

eth1 Link encap:Ethernet HWaddr 00:16:3E:01:13:EC
inet addr:114.55.11.127 Bcast:114.55.11.255 Mask:255.255.252.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:1246009498 errors:0 dropped:0 overruns:0 frame:0
TX packets:945009458 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:1000
RX bytes:304700165950 (283.7 GiB) TX bytes:339907719362 (316.5 GiB)

lo Link encap:Local Loopback
inet addr:127.0.0.1 Mask:255.0.0.0
UP LOOPBACK RUNNING MTU:16436 Metric:1
RX packets:123 errors:0 dropped:0 overruns:0 frame:0
TX packets:123 errors:0 dropped:0 overruns:0 carrier:0
collisions:0 txqueuelen:0
RX bytes:7975 (7.7 KiB) TX bytes:7975 (7.7 KiB)

6.显示TCP/UDP传输协议的连接状态

[hxxxx@iZ23vy2msooZ ~]$ netstat -u  netstat -t
Active Internet connections (w/o servers)
Proto Recv-Q Send-Q Local Address Foreign Address State

7.

[hxxxx@iZ23vy2msooZ ~]$ netstat -an | grep 7064
tcp 0 0 0.0.0.0:7064 0.0.0.0:* LISTEN
tcp 0 0 10.45.54.21:7064 100.97.54.29:6688 ESTABLISHED

linux 测试网络url命令的更多相关文章

  1. linux 查看网络流量命令

    转: linux 查看网络流量命令 2019年01月31日 14:22:00 weixin_33894992 阅读数 893   sar命令参数很多,有时间man一下. -n参数很有用,他有6个不同的 ...

  2. linux查看网络信息命令

    #遇到一条很长的命令怎么办,想换行的时候在末尾增加\符号就可以换行继续输入命令了 #在ifconfig内容中找出ip [root@bogon ~]# ifconfig ens33|grep " ...

  3. [转]Linux下网络常用命令和工具

    转自:http://int32bit.me/2016/05/04/Linux%E5%B8%B8%E7%94%A8%E7%BD%91%E7%BB%9C%E5%B7%A5%E5%85%B7%E6%80%B ...

  4. linux下网络配置 命令

    一.IP的配置: 不直接修改文件方式: 设置网卡eth0的IP地址和子网掩码: sudo ifconfig eth0 192.168.2.1 netmask 255.255.255.0 将IP地址改为 ...

  5. linux下网络查看命令ss

    ss命令 ss命令用来显示处于活动状态的套接字信息.可以显示和netstat类似的内容,并且可以显示更详细的信息,而且查看速度更快. 格式 ss [options] [ FILTER ] 选项 -h: ...

  6. linux 测试网络延迟

    1.在A服务器上运行qperf  &作为服务器节点,由其他服务器来连接测试,默认监听tcp的19765端口.

  7. windows 环境和linux环境下 ping命令的区别:

    Ping 是Windows自带的一个DOS命令.利用它可以检查网络是否能够连通,用好它可以很好地帮助我们分析判定网络故障.该命令可以加许多参数使用,键入Ping按回车即可看到详细说明.Ping 命令可 ...

  8. Linux命令 — 设置或查看网络配置命令ifconfig

    ifconfig命令用于设置或查看网络配置,包括IP地址.网络掩码.广播地址等.它是linux系统中,使用频率最高的关于网络方面的命令. 1. 命令介绍 命令格式: ifconfig [interfa ...

  9. linux常用网络命令ping和arping

    linux常用网络命令ping和arping ping 向目标主机发送icmp请求包 常用来测试当前主机与目标主机网络连接状况 常见选项 -c              设置发包的个数 -s      ...

随机推荐

  1. CSS设置文字不能被选中

    /*设置文字不能被选中     以下为css样式*/ -webkit-user-select:none; -moz-user-select:none; -ms-user-select:none; us ...

  2. Html表单标签:

    表单用于收集不同的类型的用户输入,表单由不同类型的标签组成,相关标签及属性如下: (1)<form>标签 定义整体的表单区域 -- action属性 定义表单数据提交址址 -- metho ...

  3. Java中Iterator(迭代器)实现原理

    在Java中遍历List时会用到Java提供的Iterator,Iterator十分好用,原因是: 迭代器是一种设计模式,它是一个对象,它可以遍历并选择序列中的对象,而开发人员不需要了解该序列的底层结 ...

  4. Amazon Publisher Studio让产品推广更简单

    Amazon联盟最近推出了Publisher Studio新功能,只要在Amazon联盟网站后台添加一段特定的代码,以后推广所有Amazon产品的时候就不需要再访问Amazon Associates网 ...

  5. C# 坐标系

    C#坐标系 一.概述 从数学角度讲,Point是一个二维矢量,包含两个公共整型属性,属性用大写X和Y(c#中公共属性一般约定以大写字母开头).当坐标不是整数值是float时,用PointF代替Poin ...

  6. JSOUP 超时分析与处理

    JSOUP 超时分析与处理 下面说说超时的发现,有可能出现超时的原因,以及超时处理. 1.请求头信息得一致 当你捕获到一个采用JSOUP 去请求超时的链接,我是通过catch 去发现. try{ do ...

  7. mysql sql执行慢 分析过程

    摘自: https://blog.csdn.net/zhuzaijava/article/details/77935200 为了验证select 1 与 select 1 from tableName ...

  8. 关闭pycharm自动更新

    如下图:

  9. SpringBoot 定时任务不能同时运行的问题

    使用Spring Task可以非常方便的进行定时任务,但是默认只能有一个定时任务在执行.如何改变这种状况呢? 在定时任务方法上添加@Async注解即可. @Scheduled(cron = " ...

  10. yarn 切换 设置 镜像 源

    1.查看一下当前源 yarn config get registry 2.切换为淘宝源 yarn config set registry https://registry.npm.taobao.org ...