命令行管理终端网络, How to Work with the Network from the Linux Terminal

 

命令行管理终端网络, How to Work with the Network from the Linux Terminal
命令行管理终端网络, How to Work with the Network from the Linux Terminal

无论您是想下载文件、诊断网络问题、管理网络接口,还是查看网络统计信息,都有一个终端命令。该集合包含久经考验的真实工具和一些较新的命令。

您可以从图形桌面完成大部分操作,尽管即使是很少使用终端的 Linux 用户也经常启动终端以使用 ping 和其他网络诊断工具。

 

curl & wget

使用curlwget命令从 Internet 下载文件,而无需离开终端。如果您使用 curl,请键入curl -O ,后跟文件路径。wget 用户无需任何选项即可使用 wget。该文件将出现在当前目录中。

curl -O website.com/file
wget website.com/file
命令行管理终端网络, How to Work with the Network from the Linux Terminal
命令行管理终端网络, How to Work with the Network from the Linux Terminal

 

ping

ping将 ECHO_REQUEST 数据包发送到您指定的地址。这是查看您的计算机是否可以与 Internet 或特定 IP 地址通信的好方法。但是请记住,许多系统被配置为不响应 ping。

与 Windows 上的 ping 命令不同,Linux ping 命令将继续发送数据包,直到您终止它。您可以使用-c开关指定有限数量的数据包。

ping -c 4 google.com
命令行管理终端网络, How to Work with the Network from the Linux Terminal
命令行管理终端网络, How to Work with the Network from the Linux Terminal

 

tracepath & traceroute

tracepath命令类似于traceroute,但它不需要 root 权限。它也默认安装在 Ubuntu 上,而 traceroute 没有。tracepath 将网络路径跟踪到您指定的目标并报告路径上的每个“跃点”。如果您遇到网络问题或速度缓慢,tracepath 可以向您显示网络出现故障的位置或出现速度缓慢的位置。

tracepath example.com
命令行管理终端网络, How to Work with the Network from the Linux Terminal
命令行管理终端网络, How to Work with the Network from the Linux Terminal

 

mtr

mtr命令将ping 和 tracepath 组合成一个命令。mtr 将继续发送数据包,向您显示每个“跃点”的 ping 时间。这也会显示任何问题——在这种情况下,我们可以看到第 6 跳丢失了超过 20% 的数据包。

mtr howtogeek.com
命令行管理终端网络, How to Work with the Network from the Linux Terminal
命令行管理终端网络, How to Work with the Network from the Linux Terminal

完成后按 q 或 Ctrl-C 退出。

 

host

host命令执行 DNS 查找。给它一个域名,你会看到相关的 IP 地址。给它一个 IP 地址,您将看到相关的域名。

host howtogeek.com
host 208.43.115.82
命令行管理终端网络, How to Work with the Network from the Linux Terminal
命令行管理终端网络, How to Work with the Network from the Linux Terminal

 

whois

whois命令将向您显示网站的whois记录,因此您可以查看有关谁注册并拥有特定网站的更多信息。

whois example.com
命令行管理终端网络, How to Work with the Network from the Linux Terminal
命令行管理终端网络, How to Work with the Network from the Linux Terminal

 

ifplugstatus

ifplugstatus命令将告诉您电缆是否插入网络接口。默认情况下它没有安装在 Ubuntu 上。使用以下命令安装它:

sudo apt-get install ifplugd

运行命令查看所有接口的状态或指定特定接口查看其状态。

ifplugstatus
ifplugstatus eth0
命令行管理终端网络, How to Work with the Network from the Linux Terminal
命令行管理终端网络, How to Work with the Network from the Linux Terminal

“检测到链接跳动”表示电缆已插入。如果未插入,您将看到“已拔出”。

 

ifconfig

ifconfig命令有多种选项来配置、调整和调试系统的网络接口。这也是查看 IP 地址和其他网络接口信息的快捷方式。键入ifconfig以查看所有当前活动的网络接口的状态,包括它们的名称。您还可以指定接口的名称以仅查看有关该接口的信息。

ifconfig
ifconfig eth0
命令行管理终端网络, How to Work with the Network from the Linux Terminal
命令行管理终端网络, How to Work with the Network from the Linux Terminal

 

ifdown 和 ifup

ifdownifup命令与运行ifconfig upifconfig down是一样的。给定接口的名称,他们会关闭或启动接口。这需要 root 权限,因此您必须在 Ubuntu 上使用 sudo。

sudo ifdown eth0
sudo ifup eth0
命令行管理终端网络, How to Work with the Network from the Linux Terminal
命令行管理终端网络, How to Work with the Network from the Linux Terminal

在 Linux 桌面系统上尝试此操作,您可能会收到一条错误消息。Linux 桌面通常使用 NetworkManager,它为您管理网络接口。不过,这些命令仍然可以在没有 NetworkManager 的服务器上运行。

如果您确实需要从命令行配置 NetworkManager,请使用nmcli命令。

 

dhclient

dhclient命令可以释放您计算机的IP 地址并从您的 DHCP 服务器获取一个新地址。这需要 root 权限,所以在 Ubuntu 上使用 sudo。运行不带任何选项的 dhclient 以获取新 IP 地址或使用-r开关释放您当前的 IP 地址。

命令行管理终端网络, How to Work with the Network from the Linux Terminal
命令行管理终端网络, How to Work with the Network from the Linux Terminal

 

netstat

netstat命令可以显示很多不同的接口统计信息,包括打开的套接字和路由表。不带任何选项运行 netstat 命令,您将看到打开的套接字列表。

命令行管理终端网络, How to Work with the Network from the Linux Terminal
命令行管理终端网络, How to Work with the Network from the Linux Terminal

 

您可以使用此命令执行更多操作。例如,使用netstat -p命令查看与打开的套接字关联的程序。

命令行管理终端网络, How to Work with the Network from the Linux Terminal
命令行管理终端网络, How to Work with the Network from the Linux Terminal

 

使用netstat -s查看所有端口的详细统计信息。

命令行管理终端网络, How to Work with the Network from the Linux Terminal
命令行管理终端网络, How to Work with the Network from the Linux Terminal

 

 

本文:命令行管理终端网络, How to Work with the Network from the Linux Terminal

 

 

Loading

Add a Comment

Your email address will not be published. Required fields are marked *

Time limit is exhausted. Please reload CAPTCHA.