免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4410 | 回复: 3
打印 上一主题 下一主题

[系统管理] centos下配置IP-shell脚本 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2013-07-16 15:46 |只看该作者 |倒序浏览
使用方法: static_ip.sh -e "网卡名如eth0,eth1..." -i "ip" -m "子网掩码" -h "主机名" -d "dns1 dns2..." -g "网关"
  1. #!/bin/bash
  2. #set -x
  3. #. /etc/profile
  4. #################################################
  5. # 脚本有linux系统实战提供
  6. # linux系统实战致力于centos redhat linux实战
  7. # 网址http://www.linuxshizhan.com
  8. # 该脚本主要修改ip,主机名,网关,dns
  9. #使用方法: static_ip.sh -e "网卡名如eth0,eth1..." -i "ip" -m "子网掩码" -h "主机名" -d "dns1 dns2..." -g "网关"
  10. ###############################################
  11. pid=$
  12. file_name=`basename $0`
  13. #dir_name=`dirname $0`
  14. #echo "file name :$file_name"
  15. #echo "dir name: $dir_name"

  16. normal="\\033[31;39m"
  17. red="\033[1;35m"
  18. blue="\033[0;36m"

  19. real_file=`lsof -p $pid |  awk '{print $9}' | grep -e "$file_name" `
  20. real_path=$(dirname $real_file)


  21. function Usage()
  22. {
  23. echo -e  "$blue使用方法:$normal $red$0 -e \"网卡名如eth0,eth1...\" -i \"ip\" -m \"子网掩码\" -h \"主机名\" -d \"dns1 dns2...\" -g \"网关\" $normal"
  24. }

  25. echo -e "$blue 脚本名 $normal $red :$file_name $normal"
  26. echo -e "$blue 脚本的PID is $normal $red : $pid $normal"
  27. echo -e "$blue 脚本所在目录 $normal $red: $real_path $normal"
  28. echo -e "$blue 脚本所在绝对路径 $normal $red : $real_file $normal"
  29. #echo -e "$blue ################### useage ########### $normal"
  30. #Usage

  31. function get_ip(){
  32. old_ip=$(ifconfig | sed -n '/Bcast/ { s/:/ /g; p }' | awk '{ print $3 }')
  33. echo -e "$blue本机的IP是:$normal  $red $old_ip$normal"
  34. }

  35. function get_mask(){
  36. old_mask=$(ifconfig | sed -n '/Bcast/p' | sed 's/mask:\([0-9]*\.[0-9]*\.[0-9]*\.[0-9]*||\).*/\1/' | awk -F':' '{print $4}')
  37. echo -e "$blue本机的子网掩码是:$normal  $red $old_mask$normal"
  38. }
  39. function get_gateway(){
  40. old_gw=$(netstat -nr | sed -n 5p | awk '{print $2}')
  41. echo -e "$blue本机的网关是:$normal  $red $old_gw $normal"
  42. }

  43. function get_hostname(){
  44. old_hostname=$(hostname)
  45. echo -e "$blue本机的主机名是:$normal  $red $old_hostname$normal"
  46. }
  47. show_all(){
  48. echo -e "$red重启网络服务,主机名需重启机器才生效哦...: $normal"
  49. /sbin/service  network restart
  50. echo -e "$red现在的主机和网卡信息:$normal"
  51. get_ip;
  52. get_mask;
  53. get_gateway;
  54. get_hostname;

  55. }
  56. # Execute getopt
  57. ARGS=$(getopt  -o e:i:m:h:d:g -l ethn:,ipadress:,mask:,host_name:,dns:,gateway  -- "$@");

  58. #Bad arguments
  59. if [ $? -ne 0 ];
  60. then
  61.   Usage;
  62.   exit 1
  63. fi
  64. flag=$(echo $@ | egrep -cv '-e|-i|-m|-d|-h|-g')
  65. if [ $flag -ne 0 ];
  66. echo -e "$red输入的信息不符合要求,请看帮助$normal"
  67. Usage
  68. then
  69.   Usage;
  70.   exit 1
  71. fi

  72. eval set -- "$ARGS";

  73. while true; do
  74.   case "$1" in
  75.     -e|--ethn)
  76.       shift;
  77.       if [ -n "$1" ]; then
  78.                 # 检查网卡是否存在
  79.                 ##去掉参数前后的空格,非常重要
  80.                ethn=$(echo "$1"|sed 's/^[ ]\{1,\}//;s/[ ]\{1,\}$//g')
  81.                ethn_file=/etc/sysconfig/network-scripts/ifcfg-$ethn
  82.                if [ -f "$ethn_file" ];then
  83.                    echo "修改的是ethn网卡对应的是这个$ethn_file文件"
  84.                   
  85.                else
  86.                    echo "$ethn 网卡不存在哦,"
  87.                fi
  88.         shift;
  89.       else
  90.       echo "参数-e不能为空,即网卡名不能为空"
  91.       exit
  92.       fi
  93.       ;;
  94.     -i|--ipadress)
  95.       shift;
  96.       if [ -n "$1" ]; then
  97.                 ##去掉参数前后的空格,非常重要
  98.                 ipadress=$(echo "$1"|sed 's/^[ ]\{1,\}//;s/[ ]\{1,\}$//g')
  99.                 sed -i '/IPADDR/d' $ethn_file
  100.                 echo "IPADDR=\"$ipadress\"" >> $ethn_file
  101.         shift;
  102.       else
  103.       echo "参数-i不能为空,即IP不能为空"
  104.       exit      
  105.       fi
  106.       ;;
  107.     -m|--mask)
  108.       shift;
  109.       if [ -n "$1" ]; then
  110.            ##去掉参数前后的空格,非常重要
  111.            mask=$(echo "$1" | sed 's/^[ ]\{1,\}//;s/[ ]\{1,\}$//g')
  112.            sed -i '/NETMASK/d' $ethn_file
  113.            echo  "NETMASK=\"$mask\"" >> $ethn_file
  114.       shift;
  115.       else
  116.       echo "参数-m不能为空,即mask不能为空"
  117.       exit
  118.       fi
  119.       ;;
  120.     -h|--host_name)
  121.       shift;
  122.       if [ -n "$1" ]; then
  123.              ##去掉参数前后的空格,非常重要
  124.              host_name=$(echo "$1"| sed 's/^[ ]\{1,\}//;s/[ ]\{1,\}$//g')
  125.              sed -i '/HOSTNAME/d' /etc/sysconfig/network
  126.              echo "HOSTNAME=$host_name" >> /etc/sysconfig/network
  127.         shift;
  128.       else
  129.       echo "参数-h不能为空,即主机名不能为空"
  130.       exit
  131.       fi
  132.       ;;
  133.     -d|--dns)
  134.       shift;
  135.       if [ -n "$1" ]; then
  136.              ##去掉参数前后的空格,非常重要
  137.              dns=$(echo "$1"| sed 's/^[ ]\{1,\}//;s/[ ]\{1,\}$//g')
  138.              sed -i '/DNS/d' /etc/sysconfig/network-scripts/ifcfg-eth0
  139.              printf "$dns"  | sed  's/ /\n/g'  | sed 's/^/="/g' | sed 's/$/"/g' | cat -n | sed 's/^[ \t]*//g' | sed 's/^/DNS/g' | sed 's/[ \t]//g' >> $ethn_file
  140.              echo "" >> $ethn_file
  141.              printf "$dns" | sed  's/ /\n/g'   | sed 's/^/nameserver /g' > /etc/resolv.conf
  142.         shift;
  143.       else
  144.       echo "参数-d不能为空,即dns不能为空"
  145.       exit
  146.       fi
  147.       ;;
  148.     -g|--gateway)
  149.       shift;
  150.       if [ -n "$1" ]; then
  151.              ##去掉参数前后的空格,非常重要
  152.              gateway=$(echo "$1"| sed 's/^[ ]\{1,\}//;s/[ ]\{1,\}$//g')
  153.              sed -i '/GATEWAY/d'  $ethn_file
  154.              echo "GATEWAY=\"$gateway\"" >>$ethn_file
  155.              sed -i '/GATEWAY/d' /etc/sysconfig/network
  156.              echo "GATEWAY=$gateway" >> /etc/sysconfig/network
  157.       else
  158.       echo "参数-g不能为空,即网关不能为空"
  159.       exit
  160.       fi
  161.       ;;
  162.     --)
  163.       shift;
  164.       break;
  165.       ;;
  166.   esac
  167. done
  168. show_all
复制代码

论坛徽章:
3
2015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:51:162015年亚洲杯之阿曼
日期:2015-04-07 20:00:59
2 [报告]
发表于 2013-07-16 16:11 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽

论坛徽章:
0
3 [报告]
发表于 2013-07-18 10:22 |只看该作者
可以用getopts 不能大于6个参数,否则第六个以后的永远无法读取到

论坛徽章:
3
2015年辞旧岁徽章
日期:2015-03-03 16:54:152015年迎新春徽章
日期:2015-03-04 09:51:162015年亚洲杯之阿曼
日期:2015-04-07 20:00:59
4 [报告]
发表于 2013-07-18 10:46 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP