JunOS:如何将配置文件复制到 TFTP 服务器?

网络工程 杜松 杜松-朱诺斯 tftp
2022-02-15 05:00:16

型号:j6350

JUNOS 软件版本 [12.1X46-D65.4]

有没有一种简单的方法可以将配置文件复制到 TFTP?

1个回答

JunOS 有一个可从 shell 获得的 tftp 客户端。您可以按如下方式使用它:

jsw@router> start shell 
% cd /config
% tftp
tftp> connect 192.0.2.69
tftp> put juniper.conf.gz
Sent 3896 bytes in 0.4 seconds
tftp> ^D% 
% exit
exit

这样做的一个常见原因是备份您的配置。注意 JunOS 可以通过 FTP、HTTP 或 SCP 自动执行此操作,如果您将其配置如下(瞻博网络指南):

system {
    archival {
        configuration {
            transfer-on-commit;
            archive-sites {
                "scp://user@host:/directory/ password foo";
            }
        }
    }
}