免费注册 查看新帖 |

Chinaunix

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

利用 linux 自动备份定期思科交换机配置及IOS [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2006-05-08 16:57 |只看该作者 |倒序浏览
#!/bin/bash
linuxchen=$(date +%Y%m%d)
tmptty=`tty`
tmptty=`basename $tmptty`
tmpname=`whoami`
ip="172.18.18.249"
inp1="youpasswd"
inp2="enable"
inp3="youpasswd"
inp4="copy startup-config tftp:"
inp5="172.18.8.11"
inp6="config-$linuxchen"
inp7="exit"



inputfile=in
outputfile=out.log
rm -fr $inputfile
rm -fr $outputfile
mknod $inputfile p
touch $outputfile

exec 7<>$outputfile
exec 8<>$inputfile
telnet $ip <&8 >&7 &
sleep 2; echo $inp1 >> $inputfile
sleep 2; echo $inp2 >> $inputfile
sleep 2; echo $inp3 >> $inputfile
sleep 30; echo $inp4 >> $inputfile
sleep 2; echo $inp5 >> $inputfile
sleep 2; echo $inp6 >> $inputfile
sleep 2; echo $inp7 >> $inputfile
tail -f $outputfile &
while true
do
  read str
  if [[ $str = "quit" || $str = "exit" ]]
  then echo $str >> $inputfile ; exit
  else echo $str >> $inputfile
  fi
done
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP