RHEL7 0 配置網路IP的三種方法

2021-08-20 00:26:52 字數 2974 閱讀 9834

rhel7.0 配置網路ip的三種方法

2023年04月26日 12:03:51

rhel7裡面的網絡卡命名方式從eth0,1,2的方式變成了eno***xx的格式。 en代表的是enthernet (乙太網),o 代表的是onboard (內建),那一串數字是主機板的某種索引編號自動生成,以便保證其唯一性。和原先的命名方式對比,這種新的方式比較長,難以記憶,不過優點在於編號唯一,做系統遷移的時候不容易出錯。

1.修改/etc/sysconfig/network-scripts/eno16777736

檢視你的網絡卡名稱(本機是eno16777736):

[root@linuxprobe desktop]# ifconfig

eno16777736: flags=4163 mtu 1500

inet 192.168.1.100 netmask 255.255.255.0 broadcast 192.168.1.255

inet6 fe80::20c:29ff:feb8:2b07 prefixlen 64 scopeid 0x20

inet6 fde0:b912:e3a9:0:20c:29ff:feb8:2b07 prefixlen 64 scopeid 0x0

ether 00:0c:29:b8:2b:07 txqueuelen 1000 (ethernet)

rx packets 37 bytes 5428 (5.3 kib)

rx errors 0 dropped 0 overruns 0 frame 0

tx packets 62 bytes 8269 (8.0 kib)

tx errors 0 dropped 0 overruns 0 carrier 0 collisions 0

lo: flags=73 mtu 65536

inet 127.0.0.1 netmask 255.0.0.0

inet6 ::1 prefixlen 128 scopeid 0x10

loop txqueuelen 0 (local loopback)

rx packets 134 bytes 10928 (10.6 kib)

rx errors 0 dropped 0 overruns 0 frame 0

tx packets 134 bytes 10928 (10.6 kib)

tx errors 0 dropped 0 overruns 0 carrier 0 collisions 0

[root@linuxprobe desktop]#

編輯ifcfg-eno16777736 檔案:

紅色為需要修改或者新增的內容,儲存並退出。

部分釋義:

type=ethernet        #網路介面型別

bootproto=static #動態為dhcp

defroute=yes

ipv4_failure_fatal=yes

ipv6init=yes #是否支援ipv6

ipv6_autoconf=yes

ipv6_defroute=yes

ipv6_failure_fatal=no

name=eno16777736 #網絡卡名稱

uuid=72cf53fd-534c-4765-912b-3df575a10a7d

onboot=yes #開啟自動啟用網路連線

ipaddro=192.168.1.20 #設定ip位址

gateway0=192.168.1.1 #設定閘道器

prefix0=24 #設定子網掩碼

dns1=192.168.1.1 #設定dns

hwaddr=00:0c:29:b8:2b:07

peerdns=yes

peerroutes=yes

ipv6_peerdns=yes

ipv6_peerroutes=yes

重啟網絡卡並測試網路:

2.圖形工具nmtui在終端執行命令:

你依然需要重啟網絡卡才能生效,並測試網路。

3.圖形工具nm-connection-editor

終端執行命令:

三種方法只要會一種就可以上網,配置你所需要的服務,是不是非常簡單啊!

RHEL7 0 配置網路IP的三種方法

1.修改 etc sysconfig network scripts eno16777736 檢視你的網絡卡名稱 本機是eno16777736 root linuxprobe desktop ifconfig eno16777736 flags 4163 mtu 1500 inet 192.168....

VMware三種網路配置方式

vmware是很受歡迎的虛擬機器,在我們平時的工作中需要經常用到,此文簡單總結了平時使用的三種網路配置方式,具體的原理沒有去深究。虛擬機器系統安裝的是linux系統。首先,我們在本機上檢視所有網路配置連線,使用命令 ipconfig c documents and settings user ipc...

Vagrant 三種網路配置詳解

vagrant 中一共有三種網路配置,下面我們將會詳解三種網路配置各自優缺點。埠對映 forwarded port 顧名思義是指把宿主計算機的埠對映到虛擬機器的某乙個埠上,訪問宿主計算機埠時,請求實際是被 到虛擬機器上指定埠的。vagrantfile中設定語法為 config.vm.forwarde...