mirror of
https://github.com/LCTT/TranslateProject.git
synced 2024-12-26 21:30:55 +08:00
PRF
@geekpi
This commit is contained in:
parent
64468f812f
commit
95109ddc9f
@ -1,34 +1,30 @@
|
|||||||
[#]: collector: (lujun9972)
|
[#]: collector: (lujun9972)
|
||||||
[#]: translator: (geekpi)
|
[#]: translator: (geekpi)
|
||||||
[#]: reviewer: ( )
|
[#]: reviewer: (wxy)
|
||||||
[#]: publisher: ( )
|
[#]: publisher: ( )
|
||||||
[#]: url: ( )
|
[#]: url: ( )
|
||||||
[#]: subject: (How to Check the Available Network Interfaces, Associated IP Addresses, MAC Addresses, and Interface Speed on Linux)
|
[#]: subject: (How to Check the Available Network Interfaces, Associated IP Addresses, MAC Addresses, and Interface Speed on Linux)
|
||||||
[#]: via: (https://www.2daygeek.com/linux-unix-check-network-interfaces-names-nic-speed-ip-mac-address/)
|
[#]: via: (https://www.2daygeek.com/linux-unix-check-network-interfaces-names-nic-speed-ip-mac-address/)
|
||||||
[#]: author: (Magesh Maruthamuthu https://www.2daygeek.com/author/magesh/)
|
[#]: author: (Magesh Maruthamuthu https://www.2daygeek.com/author/magesh/)
|
||||||
|
|
||||||
如何在 Linux 上检查可用的网络接口、关联的 IP 地址、MAC 地址和接口速度
|
如何在 Linux 上检查网卡信息
|
||||||
======
|
======
|
||||||
|
|
||||||
默认在设置服务器时,你将配置主网络接口。
|
![](https://img.linux.net.cn/data/attachment/album/202004/29/214835m1ms3n00s6qbcycz.jpg)
|
||||||
|
|
||||||
这是每个人所做的构建工作的一部分。
|
默认情况下,在设置服务器时你会配置主网络接口。这是每个人所做的构建工作的一部分。有时出于各种原因,你可能需要配置额外的网络接口。
|
||||||
|
|
||||||
有时出于各种原因,你可能需要配置额外的网络接口。
|
这可以是通过网络<ruby>绑定<rt>bonding</rt><ruby>/<ruby>协作<rt>teaming</rt></ruby>来提供高可用性,也可以是用于应用需求或备份的单独接口。
|
||||||
|
|
||||||
这可以是网络绑定/团队合作或高可用性,也可以是用于应用需求或备份的单独接口。
|
为此,你需要知道计算机有多少接口以及它们的速度来配置它们。
|
||||||
|
|
||||||
为此,你需要知道计算机有多少接口以及它们的配置速度。
|
有许多命令可检查可用的网络接口,但是我们仅使用 `ip` 命令。以后,我们会另外写一篇文章来全部介绍这些工具。
|
||||||
|
|
||||||
有许多命令可检查可用的网络接口,但是我们仅使用 IP 命令。
|
|
||||||
|
|
||||||
稍后,我们将使用所有这些工具编写单独的文章。
|
|
||||||
|
|
||||||
在本教程中,我们将向你显示可用网络网卡(NIC)信息,例如接口名称、关联的 IP 地址、MAC 地址和接口速度。
|
在本教程中,我们将向你显示可用网络网卡(NIC)信息,例如接口名称、关联的 IP 地址、MAC 地址和接口速度。
|
||||||
|
|
||||||
### 什么是 IP 命令
|
### 什么是 ip 命令
|
||||||
|
|
||||||
**[IP 命令][1]**类似于 ifconfig, 用于分配静态 IP 地址、路由和默认网关等。
|
[ip 命令][1] 类似于 `ifconfig`, 用于分配静态 IP 地址、路由和默认网关等。
|
||||||
|
|
||||||
```
|
```
|
||||||
# ip a
|
# ip a
|
||||||
@ -47,15 +43,15 @@
|
|||||||
|
|
||||||
### 什么是 ethtool 命令
|
### 什么是 ethtool 命令
|
||||||
|
|
||||||
ethtool 用于查询或控制网络驱动或硬件设置。
|
`ethtool` 用于查询或控制网络驱动或硬件设置。
|
||||||
|
|
||||||
```
|
```
|
||||||
# ethtool eth0
|
# ethtool eth0
|
||||||
```
|
```
|
||||||
|
|
||||||
### 1)如何在 Linux 上使用 IP 命令检查可用的网络接口
|
### 1)如何在 Linux 上使用 ip 命令检查可用的网络接口
|
||||||
|
|
||||||
在不带任何参数的情况下运行 IP 命令时,它会提供大量信息,但是,如果仅需要可用的网络接口,请使用以下定制的 IP 命令。
|
在不带任何参数的情况下运行 `ip` 命令时,它会提供大量信息,但是,如果仅需要可用的网络接口,请使用以下定制的 `ip` 命令。
|
||||||
|
|
||||||
```
|
```
|
||||||
# ip a |awk '/state UP/{print $2}'
|
# ip a |awk '/state UP/{print $2}'
|
||||||
@ -64,13 +60,13 @@ eth0:
|
|||||||
eth1:
|
eth1:
|
||||||
```
|
```
|
||||||
|
|
||||||
### 2)如何在 Linux 上使用 IP 命令检查网络接口的 IP 地址
|
### 2)如何在 Linux 上使用 ip 命令检查网络接口的 IP 地址
|
||||||
|
|
||||||
如果只想查看 IP 地址分配给了哪个接口,请使用以下定制的 IP 命令。
|
如果只想查看 IP 地址分配给了哪个接口,请使用以下定制的 `ip` 命令。
|
||||||
|
|
||||||
```
|
```
|
||||||
# ip -o a show | cut -d ' ' -f 2,7
|
# ip -o a show | cut -d ' ' -f 2,7
|
||||||
or
|
或
|
||||||
ip a |grep -i inet | awk '{print $7, $2}'
|
ip a |grep -i inet | awk '{print $7, $2}'
|
||||||
|
|
||||||
lo 127.0.0.1/8
|
lo 127.0.0.1/8
|
||||||
@ -78,18 +74,18 @@ lo 127.0.0.1/8
|
|||||||
192.168.1.102/24
|
192.168.1.102/24
|
||||||
```
|
```
|
||||||
|
|
||||||
### 3)如何在 Linux 上使用 IP 命令检查网卡的 MAC 地址
|
### 3)如何在 Linux 上使用 ip 命令检查网卡的 MAC 地址
|
||||||
|
|
||||||
如果只想查看网络接口名称和相应的 MAC 地址,请使用以下格式。
|
如果只想查看网络接口名称和相应的 MAC 地址,请使用以下格式。
|
||||||
|
|
||||||
检查特定的网络接口的 MAC 地址。
|
检查特定的网络接口的 MAC 地址:
|
||||||
|
|
||||||
```
|
```
|
||||||
# ip link show dev eth0 |awk '/link/{print $2}'
|
# ip link show dev eth0 |awk '/link/{print $2}'
|
||||||
00:00:00:55:43:5c
|
00:00:00:55:43:5c
|
||||||
```
|
```
|
||||||
|
|
||||||
检查所有网络接口的 MAC 地址。
|
检查所有网络接口的 MAC 地址,创建该脚本:
|
||||||
|
|
||||||
```
|
```
|
||||||
# vi /opt/scripts/mac-addresses.sh
|
# vi /opt/scripts/mac-addresses.sh
|
||||||
@ -97,12 +93,12 @@ lo 127.0.0.1/8
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
ip a |awk '/state UP/{print $2}' | sed 's/://' | while read output;
|
ip a |awk '/state UP/{print $2}' | sed 's/://' | while read output;
|
||||||
do
|
do
|
||||||
echo $output:
|
echo $output:
|
||||||
ethtool -P $output
|
ethtool -P $output
|
||||||
done
|
done
|
||||||
```
|
```
|
||||||
|
|
||||||
运行下面的 shell 脚本获取多个网络接口的 MAC 地址。
|
运行该脚本获取多个网络接口的 MAC 地址:
|
||||||
|
|
||||||
```
|
```
|
||||||
# sh /opt/scripts/mac-addresses.sh
|
# sh /opt/scripts/mac-addresses.sh
|
||||||
@ -115,9 +111,9 @@ Permanent address: 00:00:00:55:43:5d
|
|||||||
|
|
||||||
### 4)如何在 Linux 上使用 ethtool 命令检查网络接口速度
|
### 4)如何在 Linux 上使用 ethtool 命令检查网络接口速度
|
||||||
|
|
||||||
如果要在 Linux 上检查网络接口速度,请使用 ethtool 命令。
|
如果要在 Linux 上检查网络接口速度,请使用 `ethtool` 命令。
|
||||||
|
|
||||||
检查特定网络接口的速度。
|
检查特定网络接口的速度:
|
||||||
|
|
||||||
```
|
```
|
||||||
# ethtool eth0 |grep "Speed:"
|
# ethtool eth0 |grep "Speed:"
|
||||||
@ -125,7 +121,7 @@ Permanent address: 00:00:00:55:43:5d
|
|||||||
Speed: 10000Mb/s
|
Speed: 10000Mb/s
|
||||||
```
|
```
|
||||||
|
|
||||||
检查所有网络接口速度。
|
检查所有网络接口速度,创建该脚本:
|
||||||
|
|
||||||
```
|
```
|
||||||
# vi /opt/scripts/port-speed.sh
|
# vi /opt/scripts/port-speed.sh
|
||||||
@ -133,12 +129,12 @@ Speed: 10000Mb/s
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
ip a |awk '/state UP/{print $2}' | sed 's/://' | while read output;
|
ip a |awk '/state UP/{print $2}' | sed 's/://' | while read output;
|
||||||
do
|
do
|
||||||
echo $output:
|
echo $output:
|
||||||
ethtool $output |grep "Speed:"
|
ethtool $output |grep "Speed:"
|
||||||
done
|
done
|
||||||
```
|
```
|
||||||
|
|
||||||
运行以下 shell 脚本获取多个网络接口速度。
|
运行该脚本获取多个网络接口速度:
|
||||||
|
|
||||||
```
|
```
|
||||||
# sh /opt/scripts/port-speed.sh
|
# sh /opt/scripts/port-speed.sh
|
||||||
@ -151,7 +147,7 @@ Speed: 10000Mb/s
|
|||||||
|
|
||||||
### 5)验证网卡信息的 Shell 脚本
|
### 5)验证网卡信息的 Shell 脚本
|
||||||
|
|
||||||
通过此 **[shell 脚本][2]**,你可以收集上述所有信息,例如网络接口名称、网络接口的 IP 地址,网络接口的 MAC 地址以及网络接口的速度。
|
通过此 shell 脚本你可以收集上述所有信息,例如网络接口名称、网络接口的 IP 地址,网络接口的 MAC 地址以及网络接口的速度。创建该脚本:
|
||||||
|
|
||||||
```
|
```
|
||||||
# vi /opt/scripts/nic-info.sh
|
# vi /opt/scripts/nic-info.sh
|
||||||
@ -161,14 +157,14 @@ hostname
|
|||||||
echo "-------------"
|
echo "-------------"
|
||||||
for iname in $(ip a |awk '/state UP/{print $2}')
|
for iname in $(ip a |awk '/state UP/{print $2}')
|
||||||
do
|
do
|
||||||
echo "$iname"
|
echo "$iname"
|
||||||
ip a | grep -A2 $iname | awk '/inet/{print $2}'
|
ip a | grep -A2 $iname | awk '/inet/{print $2}'
|
||||||
ip a | grep -A2 $iname | awk '/link/{print $2}'
|
ip a | grep -A2 $iname | awk '/link/{print $2}'
|
||||||
ethtool $iname |grep "Speed:"
|
ethtool $iname |grep "Speed:"
|
||||||
done
|
done
|
||||||
```
|
```
|
||||||
|
|
||||||
运行以下 shell 脚本检查网卡信息。
|
运行该脚本检查网卡信息:
|
||||||
|
|
||||||
```
|
```
|
||||||
# sh /opt/scripts/nic-info.sh
|
# sh /opt/scripts/nic-info.sh
|
||||||
@ -192,7 +188,7 @@ via: https://www.2daygeek.com/linux-unix-check-network-interfaces-names-nic-spee
|
|||||||
作者:[Magesh Maruthamuthu][a]
|
作者:[Magesh Maruthamuthu][a]
|
||||||
选题:[lujun9972][b]
|
选题:[lujun9972][b]
|
||||||
译者:[geekpi](https://github.com/geekpi)
|
译者:[geekpi](https://github.com/geekpi)
|
||||||
校对:[校对者ID](https://github.com/校对者ID)
|
校对:[wxy](https://github.com/wxy)
|
||||||
|
|
||||||
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
本文由 [LCTT](https://github.com/LCTT/TranslateProject) 原创编译,[Linux中国](https://linux.cn/) 荣誉推出
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user