a10 config backup for aXAPI


#!/bin/bash 
################################################# 
# 
#   script by Vincent yu 
#   created at 20140306 
#   a10 config backup for aXAPI version: 2.1 
# 
# 
################################################# 
A10IP="1.1.1.1 1.1.1.2"
USER=admin 
PASSWORD=a10 
TODAY=`date "+%Y%m%d"` 
BACKUPDIR=/path/$TODAY 
TIMENOW=`date "+%Y%m%d%H%m"` 
LOG="/tmp/mail"
MAILLIST="ng@ng.com.tw"
 for COUNT in $A10IP do
 METHOD1="method=authenticate&username=$USER&password=$PASSWORD"
 SESSION=`curl -k --data $METHOD1 https://$COUNT/services/rest/V2.1/ | sed -n -e 's/.*(.*)</session_id>.*/1/p'` 
 
 if [ ! -d $BACKUPDIR ];then
  mkdir -p $BACKUPDIR 
 fi
 
 GETHOST_M="session_id=$SESSION&method=system.hostname.get"
 GETHOST=`curl -k https://$COUNT/services/rest/V2.1/?$GETHOST_M | sed -n -e 's/.*(.*)</hostname>.*/1/p'` 
 FILENAME="$GETHOST-$TIMENOW.tar.gz"
 BACKUP_M="session_id=$SESSION&format=json&method=system.backup"
 BACKUP=`curl -k  https://$COUNT/services/rest/V2.1/?$M -o $BACKUPDIR/$FILENAME` 
 CLOSE_M="session_id=$SESSION&method=session.close"
 CLOSE=`curl -k https://$COUNT/services/rest/V2.1/?$CLOSE_M` done
 cd $BACKUPDIR echo "|----------- A10 System Backup notification ------------------|" > $LOG echo " " >>$LOG ls -la *.gz | awk '{print $5,$6,$7,$8,$9}' >> $LOG echo " " >> $LOG echo "|------------------------------------------------------------------|" >>$LOG

一键备份gitolite服务器的Shell脚本
运行一次就能够把gitolite服务器上的仓库备份到本地.第一次运行会创建远程仓库的本地镜像,以后每次运行会把本地镜像更新.本程序只支持ssh方式其他

nagios 分发文件实现代码
Nagios是一款开源的免费网络监视工具,能有效监控Windows、Linux和Unix的主机状态,交换机路由器等网络设置,打印机等。在系统或服务状态异常时发出邮

阿里云云服务器Linux系统更新yum源Shell脚本
所有执行的脚本都需要root身份来执行,执行方法:以root身份执行命令:bashxxx.sh功能:自动检测系统并更新源适用系统版本:兼容线上所有linux版本执行