linux mac 地址 centos7.9 如何命令查询
时间: 2024-02-03 15:01:47 浏览: 199
MAC地址的查询方法
在 Linux 的终端中,可以使用 `ifconfig` 命令来查询网卡的 MAC 地址。
在 CentOS 7.9 中,可以按照以下步骤进行查询:
1. 打开终端,输入以下命令以获取当前系统所拥有的网卡列表:
```bash
ifconfig -a
```
2. 找到你需要查询 MAC 地址的网卡名称,例如 `eth0`。
3. 输入以下命令以查询该网卡的 MAC 地址:
```bash
ifconfig eth0 | grep "ether"
```
或者
```bash
ip link show eth0 | grep "ether"
```
这会输出该网卡的 MAC 地址,格式类似于 `ether 00:11:22:33:44:55`。其中,`eth0` 是你要查询的网卡名称。
阅读全文