linux ip位址配置

2021-09-27 18:07:39 字數 1263 閱讀 3203

centos 系統ip配置

centos系統ip配置檔案的路徑:

/etc/sysconfig/network-scripts目錄中。

以下是ip配置檔案預設的配置:

ipv6 init=yes

ipv6_autoconf=yes

ipv6_defroute=yes

ipv6_peerdns=yes

ipv6_peerroutes=yes

ipv6_failure_fatal=no

name=eno16777735

uuid=6128ac6c-b173-434f-8f8f-9ba1ea96c4bb

device=eno16777735

onboot=no

要永久修改ip位址,需設定以下引數:

onboot=yes #系統啟動時是否啟用此裝置

ipaddr=192.168.0.1 #ip位址

bootproto=static #ip位址的分配方式(static表示靜態ip位址,dhcp表示自動分配ip位址)

netmask=255.255.255.0 #子網掩碼

gateway=192.168.0.2 #預設閘道器

dns1=192.168.12.15 #dns網域名稱解析伺服器

dns2=125.168.12.5

設定dns配置檔案路徑:

/etc/resolv.conf檔案中。

以下是dns檔案的配置

nameserver 8.8.8.8 #google網域名稱伺服器

設定好配置檔案儲存好後,需要重啟網絡卡才會生效(或者重啟伺服器)

service newwork restart #重啟網路服務

或者systemctl restart network

也可以單個網絡卡重啟

ifdown eth0

ifup eth0

1.檢視當前虛擬機器使用的什麼網路連線方式,在虛擬機器->設定中,可以看到當前虛擬機器的預設連線是:nat模式,如下:

(可根據個人需要設定連線方式)

2.進入編輯->虛擬網路編輯器頁面->【dhcp設定】頁面

確定好要設定的ip位址後,還要確認要設定的預設閘道器是多少,在【nat設定】中可以看到閘道器ip

3.檢視本機dns伺服器:ipconfig –all (windows系統)

4.進入linux系統/etc/sysconfig/network-scripts/下的ip位址配置檔案,將以上資訊配置上去後,重啟網絡卡

5.使用ping測試一下網路是否連通

Linux IP位址配置

底層修改ip 1 修改 etc sysconfig network scripts ifcfg eth0裡面的ip,子網掩碼,預設閘道器等資訊 我的虛擬機器裡沒有eth0這個檔案,只有eto33?資訊如下圖所示 type為乙太網連線 bootproto引導時為dhcp協議 defroute 將介面設...

linux ip位址檢視

1.ifconfig 如果找不到ifconfig需要安裝 net tools yum install net tools 或者 apt install net tools ip addr 或者 ip addr show 或者 ip a 4.curl apt install curl 安裝程式 cur...

LinuxIP配置方法

linux伺服器雙網絡卡雙ip和單網絡卡雙ip配置方法 一 雙網絡卡雙ip。eth0為電信,eth1為聯通。cd etc sysconfig network scripts vi ifcfg eth0 device eth0 hwaddr 00 e0 b1 07 d5 86 onboot yes b...