WIFI无线网卡信息说明

一、显示所有活动网卡参数

命令:

[root@localhost ~]# ifconfig

显示信息:

em1: flags=4099<UP,BROADCAST,MULTICAST>  mtu 1500
        ether 38:ea:a7:e4:1d:4b  txqueuelen 1000  (Ethernet)
        RX packets 0  bytes 0 (0.0 B)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 0  bytes 0 (0.0 B)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
lo: flags=73<UP,LOOPBACK,RUNNING>  mtu 65536
        inet 127.0.0.1  netmask 255.0.0.0
        inet6 ::1  prefixlen 128  scopeid 0x10<host>
        loop  txqueuelen 0  (Local Loopback)
        RX packets 43790  bytes 20541338 (19.5 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 43790  bytes 20541338 (19.5 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0
wlan0: flags=4163<UP,BROADCAST,RUNNING,MULTICAST>  mtu 1500
        inet 192.168.1.7  netmask 255.255.255.0  broadcast 192.168.1.255
        inet6 fe80::a617:31ff:fe8d:f9ed  prefixlen 64  scopeid 0x20<link>
        ether a4:17:31:8d:f9:ed  txqueuelen 1000  (Ethernet)
        RX packets 59402  bytes 65387010 (62.3 MiB)
        RX errors 0  dropped 0  overruns 0  frame 0
        TX packets 46445  bytes 11121984 (10.6 MiB)
        TX errors 0  dropped 0 overruns 0  carrier 0  collisions 0

无线网卡参数做详细解释:

wlan0:就是网络卡的代号,也有 lo 这个 loopback ;
HWaddr:就是网络卡的硬件地址,俗称的 MAC 地址;
inet addr:IPv4 的 IP 地址,后续的 Bcast,Mask 分别代表的是 Broadcast 与 netmask !
inet6 addr:是 IPv6 的版本的 IP ,我们没有使用,所以略过;
MTU:标准以太网络所能传送的数据量最大可以到达 1500 bytes ,这个数值就被我们称为 MTU (Maximum Transmission Unit, 最大传输单位)!
RX:那一行代表的是网络由启动到目前为止的封包接收情况, packets 代表封包数、errors 代表封包发生错误的数量、 dropped 代表封包由于有问题而遭丢弃的数量等等
TX:与 RX 相反,为网络由启动到目前为止的传送情况;
collisions:代表封包碰撞的情况,如果发生太多次, 表示你的网络状况不太好;
txqueuelen:代表用来传输数据的缓冲区的储存长度;
RX bytes, TX bytes:总接收、发送字节总量

原文链接:https://blog.csdn.net/wteruiycbqqvwt/article/details/89678177




免责声明:本号所涉及内容仅供安全研究与教学使用,如出现其他风险,后果自负。




参考、来源:



posted @ 2023-10-10 15:31  悟透  阅读(107)  评论(0)    收藏  举报