相關(guān)資訊
本類常用軟件
-
福建農(nóng)村信用社手機(jī)銀行客戶端下載下載量:584212
-
Windows優(yōu)化大師下載量:419731
-
90美女秀(視頻聊天軟件)下載量:366966
-
廣西農(nóng)村信用社手機(jī)銀行客戶端下載下載量:365708
-
快播手機(jī)版下載量:325898
遠(yuǎn)程登錄linux主機(jī)更換IP地址
2013/8/14 23:01:14 出處:本站原創(chuàng) 人氣:204次 字號(hào):小 中 大
每日一囧
通過VCenter對(duì)RHEL6.0以下版本的系統(tǒng)進(jìn)行克隆的時(shí)候,無法使用高級(jí)選項(xiàng)進(jìn)行IP的指定操作,從而通過CloudStack對(duì)新的實(shí)例指定IP也是不能實(shí)現(xiàn)的,而且,不能夠使用DHCP服務(wù)器解決該問題,否則會(huì)導(dǎo)致新虛擬機(jī)IP地址跟指定IP的不一致,也可能導(dǎo)致整個(gè)系統(tǒng)中IP地址分配的混亂。
解決思路:
給RHEL6.0以下系統(tǒng)制作的模板均指定一個(gè)固定的保留IP地址,比如192.168.3.0/24網(wǎng)段中,保留192.168.3.240~192.168.3.250給此類模板系統(tǒng)。
不管是通過VCenter克隆虛擬機(jī)還是CloudStack新建實(shí)例,只要是通過該固定IP地址啟動(dòng)的所有虛擬機(jī),均會(huì)成功以原有IP地址啟動(dòng),并正常跟網(wǎng)段內(nèi)其他IP地址通訊,需要保證同一時(shí)間不允許同一IP地址的模板同時(shí)啟動(dòng)。
下文以模板固定IP為:10.196.18.250的系統(tǒng),在控制節(jié)點(diǎn),如cloudstackmanagement節(jié)點(diǎn)上面/etc/hosts中進(jìn)行解析:
10.196.18.250 vm250
1.啟動(dòng)vm250 ,通過檢測(cè)機(jī)制判斷其啟動(dòng)成功,程序中去對(duì)10.196.18.250進(jìn)行簡(jiǎn)單的連接測(cè)試,ping 通即可。
2.在啟動(dòng)實(shí)例的過程中,同時(shí)將IP地址信息寫入本地目錄中,按照如下格式保存:
假設(shè)文件名為:ifcfg-eth0.001,內(nèi)容為如下
DEVICE=eth0
ONBOOT=on
BOOTPROTO=static
IPADDR=10.196.28.208
NETMASK=255.255.255.0
GATEWAY=10.196.28.254
3.調(diào)用腳本文件:ChangeIP.sh ,該腳本文件完成兩項(xiàng)任務(wù):
【1】將ifcfg-eth0.Id 拷貝到vmId指定目錄中,重命名為ifcfg-eth0
【2】通過cloudstack management 登陸vmId,重啟網(wǎng)絡(luò)服務(wù),使得新的網(wǎng)絡(luò)配置文件生效。
使用方法:./ChangeIP.sh id_of_ifcfg-eth0 id_of_vm
如: ./ChangeIP.sh 001 250 ,將ifcfg-eth0.001 文件拷貝紙vm250系統(tǒng)中,并重新啟動(dòng)網(wǎng)絡(luò)服務(wù),使得新實(shí)例的最終IP地址為10.196.28.208
--------------------------------------------------------------------------------
12345678910111213141516171819202122232425262728293031323334353637 #!/bin/bash
#description: change ip on instances
#Usage: ./ChangeIP.sh fileId vmId
# flush the caches of remote hosts
>~/.ssh/known_hosts
#define the network configfile location
dist=/etc/sysconfig/network-scripts/ifcfg-eth0
# define a function which copy the new ifcfg-eth0 file
# from cloudstack management or from other host to new
# instance boot from vm_fixip without interactive
function scp_file(){
expect -c "
set timeout -1
spawn -noecho scp $1 $2
expect "yes/no"
send \"yes\r\"
expect "password:"
send \"password\r\"
expect eof
"
}
scp_file ifcfg-eth0.$1 root@vm$2:$dist
# this function named res_new means restart network
# on new instance loading from new network config file
# without interactive
function res_net(){
expect -c "
set timeout -1
spawn -noecho ssh $1 $2
expect "password:"
send \"password\r\"
expect eof
"
}
res_net root@vm$2 "service network restart > /dev/null 2>&1 &"
sleep 2
exit 0
解決思路:
給RHEL6.0以下系統(tǒng)制作的模板均指定一個(gè)固定的保留IP地址,比如192.168.3.0/24網(wǎng)段中,保留192.168.3.240~192.168.3.250給此類模板系統(tǒng)。
不管是通過VCenter克隆虛擬機(jī)還是CloudStack新建實(shí)例,只要是通過該固定IP地址啟動(dòng)的所有虛擬機(jī),均會(huì)成功以原有IP地址啟動(dòng),并正常跟網(wǎng)段內(nèi)其他IP地址通訊,需要保證同一時(shí)間不允許同一IP地址的模板同時(shí)啟動(dòng)。
下文以模板固定IP為:10.196.18.250的系統(tǒng),在控制節(jié)點(diǎn),如cloudstackmanagement節(jié)點(diǎn)上面/etc/hosts中進(jìn)行解析:
10.196.18.250 vm250
1.啟動(dòng)vm250 ,通過檢測(cè)機(jī)制判斷其啟動(dòng)成功,程序中去對(duì)10.196.18.250進(jìn)行簡(jiǎn)單的連接測(cè)試,ping 通即可。
2.在啟動(dòng)實(shí)例的過程中,同時(shí)將IP地址信息寫入本地目錄中,按照如下格式保存:
假設(shè)文件名為:ifcfg-eth0.001,內(nèi)容為如下
DEVICE=eth0
ONBOOT=on
BOOTPROTO=static
IPADDR=10.196.28.208
NETMASK=255.255.255.0
GATEWAY=10.196.28.254
3.調(diào)用腳本文件:ChangeIP.sh ,該腳本文件完成兩項(xiàng)任務(wù):
【1】將ifcfg-eth0.Id 拷貝到vmId指定目錄中,重命名為ifcfg-eth0
【2】通過cloudstack management 登陸vmId,重啟網(wǎng)絡(luò)服務(wù),使得新的網(wǎng)絡(luò)配置文件生效。
使用方法:./ChangeIP.sh id_of_ifcfg-eth0 id_of_vm
如: ./ChangeIP.sh 001 250 ,將ifcfg-eth0.001 文件拷貝紙vm250系統(tǒng)中,并重新啟動(dòng)網(wǎng)絡(luò)服務(wù),使得新實(shí)例的最終IP地址為10.196.28.208
--------------------------------------------------------------------------------
12345678910111213141516171819202122232425262728293031323334353637 #!/bin/bash
#description: change ip on instances
#Usage: ./ChangeIP.sh fileId vmId
# flush the caches of remote hosts
>~/.ssh/known_hosts
#define the network configfile location
dist=/etc/sysconfig/network-scripts/ifcfg-eth0
# define a function which copy the new ifcfg-eth0 file
# from cloudstack management or from other host to new
# instance boot from vm_fixip without interactive
function scp_file(){
expect -c "
set timeout -1
spawn -noecho scp $1 $2
expect "yes/no"
send \"yes\r\"
expect "password:"
send \"password\r\"
expect eof
"
}
scp_file ifcfg-eth0.$1 root@vm$2:$dist
# this function named res_new means restart network
# on new instance loading from new network config file
# without interactive
function res_net(){
expect -c "
set timeout -1
spawn -noecho ssh $1 $2
expect "password:"
send \"password\r\"
expect eof
"
}
res_net root@vm$2 "service network restart > /dev/null 2>&1 &"
sleep 2
exit 0
熱門評(píng)論
最新評(píng)論