在linux里面怎么获取mac地址
发布网友
发布时间:2022-04-20 22:56
我来回答
共4个回答
热心网友
时间:2022-05-03 23:02
可以使用ifconfig命令。ifconfig是linux中用于显示或配置网络设备(网络接口卡)的命令,英文全称是network interfaces configuring。它能够显示网卡的IP地址、子网掩码、广播地址、硬件地址等信息。
用法示例:
查看网卡eth0的mac地址
$ ifconfig eth0
mac地址位于上图中的红色方框处。
热心网友
时间:2022-05-04 00:20
对于Linux使用ifconfig命令
# ifconfig -a
eth0 Link encap:Ethernet HWaddr 00:60:08:C4:99:AA
inet addr:131.225.84.67 Bcast:131.225.87.255 Mask:255.255.248.0
UP BROADCAST RUNNING MULTICAST MTU:1500 Metric:1
RX packets:15647904 errors:0 dropped:0 overruns:0
TX packets:69559 errors:0 dropped:0 overruns:0
Interrupt:10 Base address:0x300
//HWAddr后面那串数值就是MAC地址
热心网友
时间:2022-05-04 01:55
终端中执行如下命令
ifconfig eth0 | grep 'HWaddr'
热心网友
时间:2022-05-04 03:46
菜单 应用程序-系统设置-网络 里面有具体的信息