- 论坛徽章:
- 0
|
还有个小小的脚本,类似于aix的smit工具,每次在vmware里面从模板刻录的服务器都要免不了要改主机名,配ip,mac重启网络,磁盘分区格式化什么的一大堆杂事。所以干脆写个带界面的工具偷偷懒,有兴趣的还可以往里面多加些功能:
[root@jinni ~]# cat chghostname.sh
#!/bin/bash
file0=/etc/sysconfig/network.bak.bak
file1=/etc/sysconfig/network.bak
cat $file0 >/dev/null 2>&1
if [ $? -eq 1 ] ; then
cp $file1 $file0
fi
display () {
echo "########################################"
echo " configure hostname and ipaddr program "
echo "########################################"
echo "# #"
echo "# 1-modify hostname #"
echo "# 2-check hostname available #"
echo "# 3-reconfigure ip address #"
echo "# 4-restart network service #"
echo "# 5-check network available #"
echo "# 0-quit #"
echo "# #"
echo "# by jinni tang #"
echo "########################################"
}
modifyhostname () {
clear
sed -e '/HOSTNAME/!d' $file1;sed -e '/GATEWAY/!d' $file1
echo -e "\t\t\t\t"
echo -n "Input your hostname: "
read hostname
echo -n "Input your gateway:"
read gateway
sed -i '/HOSTNAME/d' $file1
sed -i '/GATEWAY/d' $file1
echo "HOSTNAME=$hostname">>$file1
echo "GATEWAY=$gateway">>$file1
hostname $hostname
}
netdev() {
read -p "which network device would you like to reconfigure?(ag:eth0 or ethx):" netdev
echo $netdev |grep eth >/dev/null 2>&1
if [ $? -eq 1 ] ; then
echo "invalid device name please input again "
netdev
fi
file2=/etc/sysconfig/network-scripts/ifcfg-$netdev.bak
}
reconfigureip () {
clear
netdev
cat $file2
echo -e "\t\t\t\t"
echo -n "Input your ip address:"
read ipaddr
sed -i '/IPADDR/d' $file2
sed -i '/HWADDR/d' $file2
echo "IPADDR=$ipaddr">>$file2
mac=`ifconfig $netdev |grep HWaddr|awk '{print$5}'`
echo "HWADDR=$mac">>$file2
###########add hostname and ipaddr to /etc/hosts #########################
hostname=`cat $file1 |grep HOSTNAME|awk -F '=' '{print $2}'`
cat /etc/hosts |grep $hostname >/dev/null 2>&1
if [ $? -eq 1 ] ; then
echo "$ipaddr $hostname" >>/etc/hosts
fi
}
restartnetwork () {
clear
/etc/init.d/network restart
echo -e "\t\t\t\t"
}
chkhostname () {
clear
echo -e "#cat $file1"
cat $file1
echo -e "\t\t\t\t"
echo -e "your FQDN hostname is `hostname -f`"
echo -e "\t\t\t\t"
}
chknetwork () {
clear
echo -e "#cat $file2"
cat $file2
echo -e "\t\t\t\t"
}
quit () {
clear
echo "######################"
echo "# thank you good bye #"
echo "######################"
sleep 2
clear
exit 1
}
while true
do
display
echo -n "please input your options [0-5]: "
read options
case "$options" in
1 ) modifyhostname ;;
2 ) chkhostname ;;
3 ) reconfigureip ;;
4 ) restartnetwork ;;
5 ) chknetwork ;;
0 ) quit ;;
* ) clear;echo "Only can choose the number [0-5],Please input again!";echo -e "\t\t\t\t"
esac
done |
|