TFTP/FTP/SFTPの実施例
TFTP/FTP/SFTPを利用する場合の実施例を示します。
TFTPサーバーからstartup-configへダウンロードする場合
TFTPサーバーから構成情報をダウンロードして、startup-configに上書きする場合の実施例を示します。
TFTPサーバーからstartup-configへダウンロードする場合の構成例
IPアドレスが[10.1.1.254]のTFTPサーバーから構成情報[switch-config.cfg]をダウンロードして、startup-configへ上書きコピーします。
sw1# copy tftp: //10.1.1.254/switch-config.cfg startup-config Address of remote host [10.1.1.254]? Source filename [switch-config.cfg]? Destination filename startup-config? [y/n]: y Accessing tftp://10.1.1.254/switch-config.cfg... Transmission start... Transmission finished, file length 2830 bytes. Please wait, programming flash.............. Done. sw1#
running-configをFTPサーバーへアップロードする場合
running-configをバックアップするために、FTPサーバーへアップロードする場合の実施例を示します。
running-configをFTPサーバーへアップロードする場合の構成例
running-configを、IPアドレスが[10.1.1.254]のFTPサーバーに、ファイル名を[switch-config.cfg]としてアップロードします。FTPサーバーにコピーする場合はFTPサーバーのユーザーアカウントとパスワードが必要ですが、この例ではユーザーアカウント[apresia-user]とパスワードを入力しています。
sw1# copy running-config ftp: Address of remote host []? 10.1.1.254 Destination username [Anonymous]? apresia-user Destination password []? ****** TCP port number of remote host [default]? Destination filename []? switch-config.cfg Accessing ftp://10.1.1.254/switch-config.cfg... Transmission start... Transmission finished, file length 2885 bytes. sw1#
TFTPサーバーからブートイメージファイルをダウンロードする場合
TFTPサーバーからブートイメージファイルをダウンロードする場合の実施例を示します。
TFTPサーバーからブートイメージファイルをダウンロードする場合の構成例
- IPアドレスが[10.1.1.254]のTFTPサーバーからブートイメージファイル[AEOS-NP7000_R10601.had]をダウンロードして、ファイル名を[R10601.had]として保存します。
sw1# copy tftp: //10.1.1.254/AEOS-NP7000_R10601.had flash: R10601.had Address of remote host [10.1.1.254]? Source filename [AEOS-NP7000_R10601.had]? Destination filename [R10601.had]? Accessing tftp://10.1.1.254/AEOS-NP7000_R10601.had... Transmission start... Transmission finished, file length 11037236 bytes. Please wait, programming flash.............. Done. sw1#
- 次回起動時のブートイメージファイルを[c:/R10601.had]に設定します。
sw1# configure terminal sw1(config)# boot image c:/R10601.had sw1(config)# end sw1#