Linux功能-验证网络配置

显示IP地址、设别和MAC地址等信息
# ip addr show br0

订正:以下截图中硬件mac地址为第三行的“link/ether”一行所在的地方。

ip命令可用在网络性能方面进行统计输出,输出中的RX标示代表接收到的数据量,TX标示代表传送数据量,dropped代表丢弃量,errors代表错误量等

[root@tdcqma ~]# ip -s link show eno16777736 2: eno16777736: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP mode DEFAULT qlen 1000 link/ether 00:0c:29:74:71:c9 brd ff:ff:ff:ff:ff:ff RX: bytes packets errors dropped overrun mcast 10750305 11337 0 0 0 0 TX: bytes packets errors dropped carrier collsns 893361 4755 0 0 0 0
原文地址:https://www.cnblogs.com/tdcqma/p/5953486.html