FreeBSD上使用tftpd 備份 cisco 路由器的設定檔

2009-05-13 13:07:16来源:未知 阅读 ()

新老客户大回馈,云服务器低至5折

Description :

在 FreeBSD 下,使用 tftpd 保存 cisco 路由器的配置檔及cisco 路由器的 IOS 作業系統, FreeBSD 下配置狀況如下:
Environment :
作業系統: FreeBSD 5.3 Release
假設 FreeBSD Server IP:88.88.88.88
Setp 1.
修改 #vi /etc/inetd.conf 將有 tftp 的這行注解去掉

#tftp    dgram   udp     wait    root    /usr/libexec/tftpd      tftpd -l -s /tftpboot
tftp    dgram   udp     wait    root    /usr/libexec/tftpd      tftpd -l -s /tftpboot
Setp 2.
建立 /tftpboot目錄及文件,修改權限,要從 Cisco Router 裡 copy runing-config tftp: 必需於 FreeBSD 上先建立文件檔名,之後修改文件的權限為 -rw-rw-rw-,否則不能建立備份文件。

#mkdir /tftpboot
#cd /tftpboot
#touch cisco-config
#touch cisco-is-mz.122-2.T.bin
#chmod 666 cisco-config
#chmod 666 cisco-is-mz.122-2.T.bin
#ls -l cisco-config
-rw-rw-rw- 1 root wheel 0 Dec 1 14:42 cisco-config
-rw-rw-rw- 1 root wheel 0 Dec 1 14:42 cisco-is-mz.122-2.T.bin
Setp 3.
修改 #vi /etc/rc.conf 讓 tftp service 開機自動啟動
inetd_enable="YES"
#/usr/sbin/inetd      #  手動啟動 inetd
# netstat -na |grep LISTEN     # 查看 tftp 的 service port 8021 有無 runing
tcp4       0      0  *.8021                 *.*                    LISTEN
Setp 4.
CISCO Router 上的操作
cisco#show version      #  檢視 IOS 的檔名
System image file is "flash:cisco-is-mz.122-2.T.bin"
cisco#copy cisco-is-mz.122-2.T.bin tftp:      #  備份 IOS
Address or name of remote host []? 88.88.88.88
Destination filename [cisco-is-mz.122-2.T.bin]?
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
6952332 bytes copied in 25.564 secs (278093 bytes/sec)
cisco#copy running-config tftp:      #  備份 runing-config
Address or name of remote host []? 88.88.88.88
Destination filename [cisco-confg]?
!!
2510 bytes copied in 0.324 secs


本文来自ChinaUnix博客,如果查看原文请点:http://blog.chinaunix.net/u/4206/showart_521435.html

标签:

版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有

上一篇:FreeBSD下的内存文件系统

下一篇:FreeBSD 中建立一個如 Windows 般的『資源回收筒』