1. CentOS 7 如何配置網路
1 你要弄清楚網卡名稱不是eth0
2. 主機鏈接wifi,vmware中centos 7虛擬機如何設置才能聯網
1.虛擬機設置 VMware界面最上面,選擇虛擬機->設置:將網路連接改為橋接模式,
2.查看主機DNS地址 win+R 輸入cmd,啟動命令行界面,輸入ipconfig/all,查看主機DNS伺服器地址, 注意,由於本機是無線上網,此處為無線區域網的DNS伺服器地址,記下此地址,後面...
3.修改CentOS7網路配置文件 1.在CentOS7中打開終端,輸入 cd /etc/
3. 如何配置centos7網路配置
一.
查看網路地址:
centos7取消了ifconfig命令,使用ip
addr命令查看IP地址
二.配置網路
用VirtualBox安裝的CentOS7,安裝完成後,發現無法上網,於是到網上查了一下,經過以下幾步即可上網。
1.找到乙太網卡配置文件ifcfg-enp**文件,過面的數字好像是隨機生成的。
2.
使用Root打開並編輯些文件,將onboot的"no"改為「yes」,然後重啟網路。
最後輸入:wq
保存並退出,再重啟一下network:
3.重啟網路命令
#
service
network
restart
這樣再啟動系統時,網路也會自動啟動。
4. centos 7 怎樣配置網路
一. 查看網路地址:
centos7取消了ifconfig命令,使用ip addr命令查看IP地址
二.配置網路
用VirtualBox安裝的CentOS7,安裝完成後,發現無法上網,於是到網上查了一下,經過以下幾步即可上網。
1.找到乙太網卡配置文件ifcfg-enp**文件,過面的數字好像是隨機生成的。
2. 使用Root打開並編輯些文件,將onboot的"no"改為「yes」,然後重啟網路。
最後輸入:wq 保存並退出,再重啟一下network:
3.重啟網路命令
# service network restart
這樣再啟動系統時,網路也會自動啟動。
5. 筆記本安裝centos7 網路配置步驟
CentOS7中已經取消了ifconfig,用nmcli進行了代替,服務管理也升級為systemd。所以之前在6.x版本上的網路配置操作在7.x上行不通了。
下面介紹一下在CentOS7.x上進行網路配置的方法。
環境准備:新安裝的CentOS7.x,最小化安裝,沒有進行網路配置。
1、查看當前網卡信息
[root@localhost ~]# nmcli connection showNAME UUID TYPE DEVICE
enp0s3 5d58d8cc-8caf-458b-a672-ed0cdf58292e 802-3-ethernet ---
CentOS7中對網上的命名規則有所變更,具體規則如下:
eno1 :代表由主板 BIOS 內建的網卡
ens1 :代表由主板 BIOS 內建的 PCI-E 界面的網卡
enp2s0 :代表 PCI-E 界面的獨立網卡,可能有多個網卡介面,因此會有 s0, s1... 的編號
eth0 :如果上述的名稱都不適用,就回到原本的預設網卡編號
由於現在網卡沒有啟用,也沒有建立相關的配置文件,因此在DEVICE 欄位里顯示的是」—」。在配置完成,重啟網路服務後就會顯示相應的設備名,在我的虛擬機上顯示的是「enp0s3」
2、使用nmcli命令手工配置網卡
需要配置的網路信息:
IP地址:172.20.31.221/24
網關:172.20.31.240
DNS:202.96.69.38
命令:
[root@localhost ~]# nmcli connection modify enp0s3 \> connection.autoconnect yes \
> ipv4.method manual \
> ipv4.address 172.20.31.221/24 \
> ipv4.gateway 172.20.31.240 \
> ipv4.dns 202.96.64.68
autoconnect 是設置開機自動連接
ipv4.method 是設置手工配置IPV4地址
重啟網路服務
[root@localhost ~]# systemctl restart network
3、查看配置後的網卡配置信息
[root@localhost ~]# nmcli connection show enp0s3connection.id: enp0s3connection.uuid: 5d58d8cc-8caf-458b-a672-ed0cdf58292e
......(中間省略)......ipv4.method: manualipv4.dns: 202.96.69.38ipv4.dns-search:ipv4.addresses: 172.20.31.221/24ipv4.gateway: 172.20.31.240......(中間省略)......
IP4.地址[1]: 172.20.31.221/24IP4.網關: 172.20.31.240IP4.DNS[1]: 202.96.69.38......(以下省略)......
因為在CentOS7.x中取消了ifconfig命令, 我們使用ip addr來代替。
[root@localhost ~]# ip addr1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWNlink/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever2: enp0s3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 08:00:27:ef:69:36 brd ff:ff:ff:ff:ff:ff
inet 172.20.31.221/24 brd 172.20.31.255 scope global enp0s3
valid_lft forever preferred_lft forever
inet6 fe80::a00:27ff:feef:6936/64 scope link
valid_lft forever preferred_lft forever
4、設置雙IP
[root@localhost ~]# cd /etc/sysconfig/network-scripts/[root@localhost network-scripts]# cp ifcfg-enp0s3 ifcfg-enp0s3:1[root@localhost network-scripts]# vi ifcfg-enp0s3:1
將下列二項內容進行修改:
NAME=enp0s3:1DEVICE=enp0s3:1IPADDR=172.20.31.222PREFIX=24
保存退出後,生詞網路服務,然後查看配置信息
[root@localhost ~]# nmcli connection show enp0s3connection.id: enp0s3connection.uuid: 5d58d8cc-8caf-458b-a672-ed0cdf58292e
......(中間省略)......ipv4.method: manualipv4.dns: 202.96.69.38ipv4.dns-search:ipv4.addresses: 172.20.31.221/24, 172.20.31.222/24ipv4.gateway: 172.20.31.240......(中間省略)......
IP4.地址[1]: 172.20.31.221/24IP4.地址[2]: 172.20.31.222/24IP4.網關: 172.20.31.240IP4.DNS[1]: 202.96.69.38......(以下省略)......
查看全部網路設備信息
[root@localhost network-scripts]# ip addr1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
inet 127.0.0.1/8 scope host lo
valid_lft forever preferred_lft forever
inet6 ::1/128 scope host
valid_lft forever preferred_lft forever2: enp0s3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc pfifo_fast state UP qlen 1000
link/ether 08:00:27:ef:69:36 brd ff:ff:ff:ff:ff:ff
inet 172.20.31.221/24 brd 172.20.31.255 scope global enp0s3
valid_lft forever preferred_lft forever
inet 172.20.31.222/24 brd 172.20.31.255 scope global secondary enp0s3:1
valid_lft forever preferred_lft forever
inet6 fe80::a00:27ff:feef:6936/64 scope link
valid_lft forever preferred_lft forever
在enp0s3中會出現二個」inet」,包含配置過的二個IP的信息。
5、配置hostname
使用hostnamectl來配置主機的hostname
[root@localhost network-scripts]# hostnamectl set-hostname www.cmzsteven.com[root@localhost network-scripts]# cat /etc/hostnamewww.cmzsteven.com
重新登錄後生效。
6、自動獲取IP地址
如果區域網里有DHCP伺服器,那麼可以使用自動獲取來取得主機的IP等相關信息
[root@localhost ~]# nmcli connection modify eth0 \> connection.autoconnect yes \
> ipv4.method auto
然後重啟網路服務即可。
6. centos7 網路配置
centos7 網路配置方法:
通過VMware菜單欄,依次點擊編輯和虛擬網路編輯器,選中VMnet8取消勾選使用本地DHCP服務將IP地址分配給虛擬機,查看DHCP確保未啟用,點擊NAT設置查看網關IP,通過VMware菜單欄,依次點擊虛擬機和設置,然後選中網路適配器,點擊高級和生成mac地址。
CentOS 7是一個企業級的Linux發行版本,源於RedHat免費公開的源代碼進行再發行。CentOS 7內核更新至3.10.0、支持Linux容器、支持Open VMware Tools及3D圖像即裝即用、OpenJDK-7作為預設JDK、支持內核空間內的iSCSI及FCoE、支持PTPv2等功能。
相關信息
CentOS 7引進了一個新功能,即swap內存壓縮。Swap壓縮由zswap執行,用於frontswap的精簡後端。採用swap內存壓縮技術可保證顯著減少I/O,並提高性能。在CentOS 7中,內核會在同一系統的不同NUMA節點間自動重置進程和內存以提高沒有統一內存訪問(NUMA)系統的性能。
在CentOS 7中,vmcp內核模塊內嵌在內核中。這可保證vmcp設備節點總會出現,同時用戶可在不首先載入vmcp內核模塊的情況下發送IBM z/VM hypervisor控製程序命令。nohz_full引導參數將最初的無縫內核功能延伸到額外的情況,可以停止tick的時候、可以使用per-cpunr_running=1設置的時候。
7. CentOS7網路設置修復
伺服器有兩個網卡enp7s0和enp8s0
伺服器需要通過enp8s0和互聯網聯通,互聯網為筆記本轉接
通過centos7界面修改ip,失敗;
通過centos7的網路配置文件/etc/sysconfig/network-scripts/ifcfg-enp8s0修改ip設置
設置如下:
1.啟動 service network start 報錯,通過journalctl -xe查看如下
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit fprintd.service has begun starting up.
12月 29 19:31:12 crrchost dbus-daemon[851]: dbus[851]: [system] Successfully activated service 'net.reactivated.Fprint'
12月 29 19:31:12 crrchost dbus[851]: [system] Successfully activated service 'net.reactivated.Fprint'
12月 29 19:31:12 crrchost systemd[1]: Started Fingerprint Authentication Daemon.
-- Subject: Unit fprintd.service has finished start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit fprintd.service has finished starting up.
--
-- The start-up result is done.
12月 29 19:31:12 crrchost fprintd[6685]: Launching FprintObject
12月 29 19:31:12 crrchost fprintd[6685]: ** Message: D-Bus service launched with name: net.reactivated.Fprint
12月 29 19:31:12 crrchost fprintd[6685]: ** Message: entering main loop
12月 29 19:31:18 crrchost polkitd[835]: Operator of unix-session:1 successfully authenticated as unix-user:windfarm to gain TEMPORARY authorization for action org.freedesktop.systemd1.manage-units for system-bus
12月 29 19:31:18 crrchost systemd[1]: Starting LSB: Bring up/down networking...
-- Subject: Unit network.service has begun start-up
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit network.service has begun starting up.
12月 29 19:31:18 crrchost network[6693]: 正在打開環回介面: [ 確定 ]
12月 29 19:31:18 crrchost network[6693]: 正在打開介面 enp7s0:
12月 29 19:31:24 crrchost network[6693]: 正在確定 enp7s0 的 IP 信息...失敗:不存在鏈接。檢查電纜?
12月 29 19:31:24 crrchost network[6693]: [失敗]
12月 29 19:31:24 crrchost network[6693]: 正在打開介面 enp8s0: RTNETLINK answers: File exists
12月 29 19:31:25 crrchost network[6693]: [ 確定 ]
12月 29 19:31:25 crrchost network[6693]: RTNETLINK answers: File exists
12月 29 19:31:25 crrchost network[6693]: RTNETLINK answers: File exists
12月 29 19:31:25 crrchost network[6693]: RTNETLINK answers: File exists
12月 29 19:31:25 crrchost network[6693]: RTNETLINK answers: File exists
12月 29 19:31:25 crrchost network[6693]: RTNETLINK answers: File exists
12月 29 19:31:25 crrchost network[6693]: RTNETLINK answers: File exists
12月 29 19:31:25 crrchost network[6693]: RTNETLINK answers: File exists
12月 29 19:31:25 crrchost network[6693]: RTNETLINK answers: File exists
12月 29 19:31:25 crrchost network[6693]: RTNETLINK answers: File exists
12月 29 19:31:25 crrchost systemd[1]: network.service: control process exited, code=exited status=1
12月 29 19:31:25 crrchost systemd[1]: Failed to start LSB: Bring up/down networking.
-- Subject: Unit network.service has failed
-- Defined-By: systemd
-- Support: http://lists.freedesktop.org/mailman/listinfo/systemd-devel
--
-- Unit network.service has failed.
--
-- The result is failed.
12月 29 19:31:25 crrchost systemd[1]: Unit network.service entered failed state.
12月 29 19:31:25 crrchost systemd[1]: network.service failed.
12月 29 19:31:25 crrchost polkitd[835]: Unregistered Authentication Agent for unix-process:6669:319312 (system bus name :1.263, object path /org/freedesktop/PolicyKit1/AuthenticationAgent, locale zh_CN.UTF-8) (d
3.systemctl status network.service查看如下:
● network.service - LSB: Bring up/down networking
Loaded: loaded (/etc/rc.d/init.d/network; bad; vendor preset: disabled)
Active: failed (Result: exit-code) since 六 2018-12-29 18:38:17 CST; 1min 24s ago
Docs: man:systemd-sysv-generator(8)
Process: 909 ExecStart=/etc/rc.d/init.d/network start (code=exited, status=1/FAILURE)
12月 29 18:38:06 crrchost systemd[1]: Starting LSB: Bring up/down networking...
12月 29 18:38:06 crrchost network[909]: 正在打開環回介面: [ 確定 ]
12月 29 18:38:06 crrchost network[909]: 正在打開介面 enp7s0:
12月 29 18:38:12 crrchost network[909]: 正在確定 enp7s0 的 IP 信息...失敗:…?
12月 29 18:38:12 crrchost network[909]: [失敗]
12月 29 18:38:17 crrchost network[909]: 正在打開介面 enp8s0: [ 確定 ]
12月 29 18:38:17 crrchost systemd[1]: network.service: control process exi...=1
12月 29 18:38:17 crrchost systemd[1]: Failed to start LSB: Bring up/down n...g.
12月 29 18:38:17 crrchost systemd[1]: Unit network.service entered failed ...e.
12月 29 18:38:17 crrchost systemd[1]: network.service failed.
Hint: Some lines were ellipsized, use -l to show in full.
1.參考網路方法停用NetworkManager,依舊報錯
systemctl stop NetworkManager
systemctl disable NetworkManager
2.比對兩個網卡的MAC地址和配置文件的MAC地址
a.查看mac地址配置,ipconfig
b.查看配置文件中的macd地址是否匹配,ifcfg-enp8s0和ifcfg-enp7s0,
按照網路方法增加一行HWADDR=ipconfig查詢到的對應網卡MAC地址;
c.重啟network服務依舊報錯;
3.通過GUI界面查看網路,提示「系統的網路服務與此版本的網路管理器不兼容」
這與之前停掉NetworkManager有關,此處不表;
4.因為ifcfg-enp7s0實際上沒有插網線,修正其配置文件如下:
ONBOOT=no
重新啟動服務後網路正常;
5.檢查網路
1.network 和NetworkManager不同,通過界面和通過配置文件,可能會導致配置混亂,且NetworkManager有些程序不支持,需要停用;
2.BOOTPROTO=none 雖然可以表示靜態ip,但是如果要啟用,必須設置其為
BOOTPROTO=static 或BOOTPROTO=dhcp
3.一個網卡沒喲被啟用,也就是沒有設置動態ip或靜態ip,是無法被初始化的,不能設置ONBOOT=yes
In Centos7.0 disabling NetworkManager will leave a dhcp client running configured for NetworkManager. This causes the error message RTNETLINK answers: File exists when the network service is started.
The stale dhclient process has the additional "benefit" that when the lease expires your dhclientwill choke, since it cannot reach NetWorkManager, thus removing your IP address.
If you grep for it, you will see that it points to a NetWorkManager configuration file.
[root@host ~]# ps -ef | grep dhc
root 1865 792 0 Apr28 ? 00:00:00 /sbin/dhclient -d -sf \
/usr/libexec/nm-dhcp-helper -pf /var/run/dhclient-eno1.pid -lf\
/var/lib/NetworkManager/dhclient-c96e56d3-a4c9-4a87-85ca-93dc0ca268f2-eno1.lease\
-cf /var/lib/NetworkManager/dhclient-eno1.conf eno1
So what you can do is kill the dhclient and only then start your network service.
8. centos7 網路設置
"ifcfg-eno16777736" [readonly] 20L, 370C
TYPE=Ethernet
BOOTPROTO=static//修改成靜態
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=3c126f7c-9463-409e-88d3-e8554829e914
DEVICE=eno16777736
ONBOOT=yes //開機啟動
IPADDR=192.168.1.221 //虛擬機ip(網段(第三位)跟實體機一致,最後一位設置(2-225))
NETMASK=255.255.255.0
GATEWAY=192.168.1.1 //網關跟實體機一致
DNS1=114.114.114.114
DNS2=8.8.8.8
~