千家信息网

OGG运维优化脚本(十二)-信息同步类--信息上传

发表于:2025-01-20 作者:千家信息网编辑
千家信息网最后更新 2025年01月20日,文件: upload.sh路径:$HOME/ggscript/ggupload功能:该脚本不会直接使用,为满足其他脚本进行信息上传而设计,在脚本内直接调用上传相应的文件信息他会读取系统信息配置文件sy
千家信息网最后更新 2025年01月20日OGG运维优化脚本(十二)-信息同步类--信息上传

文件: upload.sh

路径:$HOME/ggscript/ggupload

功能:该脚本不会直接使用,为满足其他脚本进行信息上传而设计,在脚本内直接调用上传相应的文件信息

他会读取系统信息配置文件sysinfo内的系统配置信息

范例

[detest#]

Ip-MTMyLjEyMS4xMDEuODYK

UserName-Z2dzCg==

PassWord-Z2dzxxxxxx

Port-MjIK

path-L2RhdGExL2dncy9nZ3NlcnZlci9kaXJkZWYK

[#detest]

以上信息以base64进行加密,保证信息安全,获取IP 用户名,密码,以及端口路径

并将相应的文件下发至对应的机器

#!/bin/bashif [ $# -eq 0 ]; then        echo "info host file checkf"        exit 2fi if [ $# -eq 1 ]; then        echo "info host file checkf"        exit 2fiif [ $# -eq 1 ]; then        echo "info host file checkf"        exit 2fihost=$1file=$2checkf=$3cd $HOME/ggscript/ggupload#sed  '/"$host"/,/5/p' $checkf > infotmpcat $HOME/ggscript/ggupload/$checkf | awk '/'$host'#/,/#'$host'/{if(i>1)print x;x=$0;i++}' > $HOME/ggscript/ggupload/infotmpip=`cat $HOME/ggscript/ggupload/infotmp|grep -w "Ip"|cut -d "-" -f 2`pw=`cat $HOME/ggscript/ggupload/infotmp|grep -w "PassWord"|cut -d "-" -f 2`port=`cat $HOME/ggscript/ggupload/infotmp|grep -w "Port"|cut -d "-" -f 2`us=`cat $HOME/ggscript/ggupload/infotmp|grep -w "UserName"|cut -d "-" -f 2`path=`cat $HOME/ggscript/ggupload/infotmp|grep -w "path"|cut -d "-" -f 2`echo "code"echo "ip=$ip"echo "pw=$pw"echo "port=$port"echo "user= $us"echo "path=$path"echo $ip > tmpperl -MMIME::Base64 -ne 'print decode_base64($_)' <  tmp > outip=`cat out`echo $pw > tmpperl -MMIME::Base64 -ne 'print decode_base64($_)' <  tmp > outpw=`cat out`echo $port > tmpperl -MMIME::Base64 -ne 'print decode_base64($_)' <  tmp > outport=`cat out`echo $us > tmpperl -MMIME::Base64 -ne 'print decode_base64($_)' <  tmp > outus=`cat out`echo $path > tmpperl -MMIME::Base64 -ne 'print decode_base64($_)' <  tmp > outpath=`cat out`#echo "decode"#echo "ip=$ip"#echo "pw=$pw"#echo "port=$port"#echo "user=$us"#echo "path=$path"while [ ${#port} -le 1 ]do        port=22done#echo $ip $pw $port $pathexpect -c "  spawn scp -r -P $port $file $us@$ip:$path  expect {    \"*assword\" {set timeout 300; send \"$pw\r\";}    \"yes/no\" {send \"yes\r\"; exp_continue;}  }expect eof"


0