多個site管理
過去是列表管控使用的WAN兩端IP
在網路除錯上會有一定的幫助
除非是網管軟體自動discovery協助搜尋對應wan ip
說到config備份還原
我想我的方法不是最好的(cisco/netscreen 是可行)
利用linux下 expect/spawn的互動指令
去執行備份或還原的自動化
下列是備份的指令
內容含 cisco 指令部份就不多描述
192.168.1.100 是備份目標也是tftp主機
<pre class="c" name="code">
#!/usr/bin/expect
spawn telnet -8 10.10.10.10
expect "\n"
send "password1\r"
expect "\n"
send "enable\r"
expect "\n"
send "password2\r"
expect "\n"
send "copy startup-config tftp\r"
expect "\n"
send "192.168.1.100\r"
expect "\n"
send "10.10.10.10.startup-config\r"
send "\r"
send "q\r"
interact