Centos 7開啟網絡卡自動獲取IP

2022-05-29 11:42:12 字數 2291 閱讀 8530

centos7預設安裝是沒有開啟配置網絡卡資訊的,無法訪問外網。

下邊配置開啟網路自動獲取ip位址

1.檢視網絡卡資訊

執行ifconfig

eno16777736: flags=4163mtu 1500

inet6 fe80::20c:29ff:fee8:8637 prefixlen 64 scopeid 0x20ether 00:0c:29:e8:86:37 txqueuelen 1000 (ethernet)

rx packets 1121 bytes 98968 (96.6 kib)

rx errors 0 dropped 0 overruns 0 frame 0

tx packets 179 bytes 25233 (24.6 kib)

tx errors 0 dropped 0 overruns 0 carrier 0 collisions 0

lo: flags=73mtu 65536

inet 127.0.0.1 netmask 255.0.0.0

inet6 ::1 prefixlen 128 scopeid 0x10loop txqueuelen 0 (local loopback)

rx packets 900 bytes 78372 (76.5 kib)

rx errors 0 dropped 0 overruns 0 frame 0

tx packets 900 bytes 78372 (76.5 kib)

tx errors 0 dropped 0 overruns 0 carrier 0 collisions 0

eno16777736代表網絡卡的名稱,ether 00:0c:29:e8:86:37代表網絡卡的mac位址

2.配置網絡卡開始網路連線

cd /etc/system/network-scripts/

vi ifcfg-eno16777736

hwaddr=00:0c:29:e8:86:37type=ethernet

bootproto=dhcp

defroute=yes

peerdns=yes

peerroutes=yes

ipv4_failure_fatal=no

ipv6init=yes

ipv6_autoconf=yes

ipv6_defroute=yes

ipv6_peerdns=yes

ipv6_peerroutes=yes

ipv6_failure_fatal=no

name=eno16777736

uuid=79d6c916-aab8-45e4-a163-37ae73393d26

onboot=no

將onboot= no改成onboot=yes

3.重啟網路

service network restart

4.再執行ifconfig

eno16777736: flags=4163mtu 1500inet 192.168.159.128  netmask 255.255.255.0  broadcast 192.168.159.255inet6 fe80::20c:29ff:fee8:8637  prefixlen 64  scopeid 0x20ether 00:0c:29:e8:86:37  txqueuelen 1000(ethernet)

rx packets 1699 bytes 140091 (136.8kib)

rx errors 0 dropped 0 overruns 0 frame 0tx packets 333 bytes 42669 (41.6kib)

tx errors 0 dropped 0 overruns 0 carrier 0 collisions 0lo: flags=73mtu 65536inet 127.0.0.1 netmask 255.0.0.0inet6 ::1 prefixlen 128 scopeid 0x10loop txqueuelen 0(local loopback)

rx packets 900 bytes 78372 (76.5kib)

rx errors 0 dropped 0 overruns 0 frame 0tx packets 900 bytes 78372 (76.5kib)

tx errors 0 dropped 0 overruns 0 carrier 0 collisions 0

inet 192.168.159.128 代表ip位址

Centos 7開啟網絡卡開啟DHCP自動獲取IP

在windows10上安裝了centos7的hyper v虛擬機器。雖然配置了可訪問外網的網絡卡 win8.1 hyper v 共享本機ip上網 但是預設安裝的centos是沒有開啟配置網絡卡資訊的,也就是說,仍然不能訪問外網。這時候,如果執行需要外網訪問的命令,就會出現 couldn t reso...

CentOS 7 開啟網絡卡

1 檢視自己本機的網絡卡是否開啟 檢視 ens33 這個裝置是否連線上了,我這裡是已經連線上的狀態,如果未連線它會顯示未連線的狀態,如果未連線執行步驟 2 2 到 etc sysconfig network scripts 目錄下,檢視該目錄下的 ifcfg ens33 檔案 進入指定目錄 cd e...

CentOS7 開啟網絡卡

檢視ip位址命令 ip addr 第一次裝機後,預設網絡卡是關閉狀態,所以要把網絡卡開啟,才能以後遠端 使用以下命令進行網路配置 vi etc sysconfig network scripts ifcfg ens33 簡潔輸入 vi etc sysc tab鍵 自動補全 選項介紹 bootprot...