配置網路 centos安裝系列6

2021-06-20 09:55:05 字數 1878 閱讀 7090

1.1 備份網路配置檔案(預設是dhcp方式):

mkdir /root/install-scripts/eth_dhcp/

cp /etc/sysconfig/network-scripts/ifcfg-eth* /root/install-scripts/eth_dhcp/

1.2 修改網路配置檔案(/etc/sysconfig/network-scripts/ifcfg-eth0/1/2/3)為靜態ip配置:

修改/etc/sysconfig/network-scripts/ifcfg-eth0/1/2/3

device="eth0"

hwaddr="00:0c:29:3b:c4:25"

nm_controlled="yes"

type="ethernet"

uuid="de9f44e4-d976-4fe2-999d-e55ecab9616e"

bootproto="static"

onboot="yes"           # 啟動時有效

ipaddr=192.168.3.101

prefix=24

ipv6init="no"

ipv6_autoconf=no

#gateway=192.168.32.2            # 不要gateway欄位

dns1=192.168.32.2                      # 加入dns1欄位

#dns2                   #可選加入dns2欄位

修改和加入以下字段:

onboot="no"

bootproto=static

hwaddr=實際的mac位址

ipaddr=

prefix=

注釋掉以下字段

#gateway=***.***.***.***

#defroute=yes

1.3 如果有/etc/sysconfig/network-scripts/ifcfg-eth0:0/1/2這樣的附屬網路介面配置檔案

加入和修改以下字段:

device="eth0:0/1/2/"

bootproto=static

onparent="yes"

onboot=yes

ipaddr=

prefix=

注釋掉以下字段:

#hwaddr="00:0c:29:3b:c4:25"

#nm_controlled="yes"

#type="ethernet"

#uuid="de9f44e4-d976-4fe2-999d-e55ecab9616e"

#gateway=***.***.***.***

#defroute=no

2.1 修改/etc/hosts檔案

在最上邊新加入一行

127.0.0.1    myhostname

2.2 修改/etc/sysconfig/network檔案:

networking=yes

hostname=myhostname           #必須和/etc/hosts保持一致

修改/etc/sysconfig/network檔案,加入一行:

gateway=192.168.1.1

為每個網路介面新建乙個路由檔案,檔案路徑:

/etc/sysconfig/network-scripts/route-eth0/1/2/3

/etc/sysconfig/network-scripts/route-eth0:0/1/2

每個檔案寫入需要的路由,例如:

0.0.0.0/0 via 192.168.1.1 dev eth0

192.168.10.0/24 via 192.168.10.1 dev eth0:0

Centos6系列安裝nginx

設定ssh服務為開機啟動 輸入命令 chkconfig sshd on 即可。注 若是chkconfig sshd off則禁止ssh開機啟動 設定賬號為bizuser 密碼為123456 第一步 環境安裝 sudo yum install y pcre pcre devel openssl dev...

CentOS 6 X 網路配置

centos 6.x 最新的版本安裝後,網路不會自動啟用了 做如下配置 1,vi etc sysconfig network scripts ifcfg eth0 device eth0 網路裝置名稱 name eth0 名稱 type ethernet 網路型別 onboot yes 裝置啟用 b...

Centos 6安裝KVM配置

centos 6安裝kvm配置 一 安裝系統配置 1 安裝系統時選擇minimal最小化安裝,然後選擇自定義配置 customize now 安裝的包,然後next下一步。2 選擇virtualzation,勾選裡邊的所有子選項。3 選擇development,勾選除了eclipse外的所有子選項。...