1、ifconfig 可查看ip和Mac
可以查看所有激活的网卡信息,其中包括Mac和IP地址
[root@loaclhost /]# ifconfig
2、ifconfig -a|grep 10 可查看ip和Mac(比较直观)
当Linux上没有连接鼠标时,无法通过鼠标查看Mac和IP,所以用该命令可以简要显示网卡的前十个重要简短信息,这样就看的比较直观。
[root@loaclhost /]# ifconfig -a|grep 10
3、ip addr 、ip addr show、 ip address show 可查看ip和Mac
三条命令输出的内容相同。查看网卡的ip和Mac、掩码等相关信息。
[root@loaclhost /]# ip addr
[root@loaclhost /]# ip addr show
[root@loaclhost /]# ip address show
4、ifconfig|grep ether 只查看网卡的所有Mac地址。
[root@loaclhost /]# ifconfig |grep ether
5、ip link 只查看网卡的所有Mac地址。
[root@loaclhost /]# ip link
—————————————–以下无正文——————————