centos如何查询网卡(centos查询网卡配置)

纸扎戏偶

本篇文章给大家谈谈centos如何查询网卡,以及centos查询网卡配置对应的知识点,希望对各位有所帮助,不要忘了收藏本站喔。

本文目录一览:

  • 1、centos7查看网卡名称
  • 2、linux/centos如何查看网卡是100M还是1000M
  • 3、怎么查看centos 网卡连接状态
  • 4、centos怎么查看网卡的型号
  • 5、centos怎么查看网卡驱动
  • 6、centos查看网卡状态命令

1、centos7查看网卡名称

查看网卡信息可以使用命令

ip address

希望可以帮助你,请采纳

2、linux/centos如何查看网卡是100M还是1000M

可以使用ethtool命令进行查看,使用格式ethtool 网络接口名。

以下为例,eth0为网卡名,使用ifconfig查看当前使用的网卡。

Speed表示网卡带宽,Duplex表示工作模式,Supported link modes表示支持的工作模式。

扩展资料:

ethtool命令的其它用法:

1、查询网络端口位置:ethtool -p ethX

这个命令多用于管理多网口的服务器主机,由于背板的网络端口数量大,有时候不知道那个物理端口对应eth0或其他设备号,我们就可以使用这个命令来查询。

用法:ethtool -p eth0

效果:设备号eth0对应的物理端口的两个指示灯会闪烁

2、修改网络端口速率:ethtool -s

这个命令多用于手工设置网络速率,一般千兆网卡支持10|100|1000三个速率,单位是Mbps。

用法:ethtool -s eth0 speed 1000 duplex full autoneg off

效果:将设备号eth0对应的物理端口设置为速率为1000Mbps,全双工工作模式,同时关闭自动协商。

3、怎么查看centos 网卡连接状态

查看Centos端口命令:#netstat-lntp#查看监听(Listen)的端口#netstat-antp#查看所有建立的TCP连接其他关于查看服务器网络信息命令:1、查看Linux系统主机名:Linux学习,#hostnamelocalhost.localdomain2、查看服务器IP地址:#ifconfig|grep'inetaddr:'|grep-v'127.0.0.1'|cut-d:-f2|awk'{print$1}'192.168.17.238192.168.1.93、查看linux网关:#route|grepdefaultdefault192.168.1.10.0.0.0UG000em14、查看linux打开服务:#chkconfig--list|grep启用#查看开启的服务sshd0:关闭1:关闭2:启用3:启用4:启用5:启用6:关闭httpd0:关闭1:关闭2:关闭3:启用4:关闭5:关闭6:关闭5、查看服务器DNS配置:#cat/etc/resolv.confnameserver192.168.0.66nameserver202.106.0.206、其他网络信息:#iptables-L#查看防火墙规则#route-n#查看路由表#netstat-s#查看网络统计信息

4、centos怎么查看网卡的型号

以下几个命令可以查看。 1、ethtool em1 指定 查看网卡信息 2、ifconfig 查看网卡连接

5、centos怎么查看网卡驱动

查看网卡驱动版本号:ethtool -i 网卡名 如ethtool -i eth0

示例:

[root@nt3 ~]# ethtool eth5

Settings for p6p1:

Supported ports: [ FIBRE ]

Supported link modes: 10000baseT/Full

Supported pause frame use: No

Supports auto-negotiation: No

Advertised link modes: 10000baseT/Full

Advertised pause frame use: No

Advertised auto-negotiation: No

Speed: 10000Mb/s

Duplex: Full

Port: FIBRE

PHYAD: 0

Transceiver: external

Auto-negotiation: off

Supports Wake-on: d

Wake-on: d

Current message level: 0x00000007 (7)

drv probe link

Link detected: yes

[root@nt3 ~]# ethtool -i eth5

driver: ixgbe

version: 3.21.2

firmware-version: 0x1bab0001

bus-info: 0000:05:00.0

supports-statistics: yes

supports-test: yes

supports-eeprom-access: yes

supports-register-dump: yes

supports-priv-flags: no

关于网卡的几个操作的命令:

1.lsmod 查看网卡的模块是否加载,看看是否网卡驱动好了的意思

2. dmesg:查看是否检测到了网卡。

3.ifup ifdown 激活/停止网卡

4.ifconfig 查看网卡是否正常工作。 看看是否网卡有ip,有lo主机回还网络,表示设备没有问题。

windows下 查看的是 ipconfig /all 命令,centos下的 是 ifcofnig 命令

ifconfig 接口

ifconfig eth0(接口) up/down 激活网卡设备,网卡无效。

ifconfig eth0 netmask 255.255.254.0 设置掩码

ifconfig eth0 192.168.0.21 设置eth0的ip地址为0.21

也可以写一行:ifconfig eth0 192.168.0.21 netmask 255.255.255.0

修改后需要重新启动网络设置:service network restart

5.看看网络是否相通

ping -c 10(回显几次) ip/域名

eg: ping -c 192.168.1.1 同 windows的一样。

6.如果上不了网,看下dns填写是否正确: /etc/resolv.conf文件。

7.上不去网的话:看看 默认路由设置错误,也会导致不能上网。

就设计到了route命令:

route 看下 default 的 网关 gateway 是不是你的路由器的ip地址,不是的话就上不了网,需要修改,如何修改呢? 先删除默认路由,这一条。然后再添加默认路由这一条。就可以了。

route del default

route add default gw 192.168.0.254(你的路由器的ip),需要root用户的身份才能操作。

6、centos查看网卡状态命令

ifconfig命令可以查看网卡状态 ip addr也可以 想了解更多Linux命令可以看看《Linux就该这么学》和《Linux命令》

关于centos如何查询网卡和centos查询网卡配置的介绍到此就结束了,不知道你从中找到你需要的信息了吗 ?如果你还想了解更多这方面的信息,记得收藏关注本站。

文章版权声明:除非注明,否则均为我爱教程术原创文章,转载或复制请以超链接形式并注明出处。