主機配置靜態IP

2022-05-05 11:45:07 字數 1437 閱讀 3104

lvs虛擬機器配置閘道器

路徑:centos 6: 

vim /etc/sysconfig/network-scripts/ifcfg-eth0

centos 7:

vim /etc/sysconfig/network-scripts/ifcfg-ens32

1 device="

eth0

" #centos 6 的靜態ip配置檔案

2 bootproto="

static

" #靜態ip

3 ipaddr=192.168.189.130 # 區域網自由分配ip

4 gateway=192.168.189.2 #閘道器

5 hwaddr="

00:0c:29:e6:63:f4

"6 ipv6init="

yes"

7 nm_controlled="

yes"

8 onboot="

yes"

9 type="

ethernet

"10 uuid="

d3052071-4e6f-4bb9-8779-ab9cd8745fa0

"11 dns1='

192.168.189.129

' #根據實際情況填寫

12 dns2='

202.106.0.20

'

1 type=ethernet    #此配置為centos7

2 proxy_method=none

3 browser_only=no

4 bootproto='

static

' #靜態標註

5 defroute=yes

6 ipv4_failure_fatal=no ##

7 ipv6init=yes

8 ipv6_autoconf=yes

9 ipv6_defroute=yes

10 ipv6_failure_fatal=no

11 ipv6_addr_gen_mode=stable-privacy

12 name=ens32

13 uuid=387ffc24-3d8a-4e25-8997-e2682c2d2872

14 device=ens32

15 onboot=yes

16 ipaddr=192.168.189.139 #區域網靜態ip

17 gateway=192.168.189.2 #區域網靜態閘道器

18 netmask=255.255.255.0

19 dns1=192.168.189.2

:x 儲存後記得重啟網絡卡 service network restart      systemctl restart network

ifconfig檢視ip是否成功

ubuntu Server 設定主機靜態 ip位址

ubuntu server 設定主機靜態 ip位址 1 先輸入 ifconfig 檢視當前網路配置 2 然後關閉 eth0 網絡卡 sudo ifdown eth0 3 配置靜態ip sudo vim etc network inte ces 開啟檔案,修改eth0的配置,設定您的ip,閘道器,子網...

配置靜態IP

一 安裝centos虛擬機器 二 檢查防火牆是否開啟,如果開啟我們把它關了並設定禁止開機自啟動 service firewalld status 檢查防火牆服務狀態 systemctl stop firewalld 停止執行防火牆 systemctl disable firewalld 禁用開機自啟...

linux配置靜態IP

vi etc sysconfig network scripts ifcfg eth0針對特定的網絡卡進行設定 type ethernet bootproto static 啟動型別 靜態 預設dhcp defroute yes ipv4 failure fatal yes ipv6init no ...