博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
expect备份n6k配置文件
阅读量:5126 次
发布时间:2019-06-13

本文共 381 字,大约阅读时间需要 1 分钟。

#!/bin/expect

spawn ssh username@192.168.1.2
expect "password:"
send "passwd"
expect "#"
send "copy startup-config scp:\r"
expect "]"
send "\r"
expect ":"
send "management\r"
expect "server:"
send "192.168.1.1\r"
expect "username"
send "username\r"
expect "password"
send "password\r"
expect "#"
send "exit\r"
interact

#expect eof

转载于:https://www.cnblogs.com/han1094/p/8329417.html

你可能感兴趣的文章
CodeForces Round 197 Div2
查看>>
boost-使用format和lexical_cast实现数字和字符串之间的转换
查看>>
Learn a Linux command every day--day2:ls命令
查看>>
java集合的三种遍历方式
查看>>
Visual formatting model
查看>>
木马分析(隐藏分析)实验
查看>>
eclipse中编译时enum出现cannot be resolved to a type错误
查看>>
POJ - 2823 Sliding Window(单调队列)
查看>>
Oozie分布式工作流——Action节点
查看>>
汇编语言 手记6
查看>>
linux添加超级用户
查看>>
Checkbutton
查看>>
Windows10修改Tomcat服务端口和一台机器部署多个Tomcat
查看>>
利用Python爬取网页图片
查看>>
bootstrap手风琴效果
查看>>
队列之数组实现
查看>>
2018牛客多校第一场 D.Two Graphs
查看>>
关于工作流程引擎中的岗位的设置的问题
查看>>
windows 导入sql文件 本地导入sql出现数据丢失
查看>>
构建maven项目3
查看>>