I have 2 identical devices and am having mixed results when trying to backup configs. This is my device template that I am using for both
<Configuration-Management Device="Fortinet FW 1500D" SystemOID=" 1.3.6.1.4.1.12356.101.1.15000">
<Commands>
<Command Name="RESET" Value="config global ${CRLF}config system console ${CRLF}set output standard ${CRLF}end" />
<Command Name="Reboot" Value="reload${CRLF}y${CRLF}y" />
<Command Name="EnterConfigMode" Value="config global" />
<Command Name="ExitConfigMode" Value="end" />
<Command Name="Startup" Value="full-config" />
<Command Name="Running" Value="full-config" />
<Command Name="DownloadConfig" Value="execute backup ${ConfigType} tftp ${StorageFilename} ${StorageAddress}${CRLF}" />
<Command Name="UploadConfig" Value="${EnterConfigMode}${CRLF}${ConfigText}${CRLF}${ExitConfigMode}" />
<Command Name="DownloadConfigIndirect" Value="execute backup ${ConfigType} tftp ${StorageFilename} ${StorageAddress}${CRLF}"/>
<Command Name="UploadConfigIndirect" Value="copy ${TransferProtocol}://${StorageAddress}/${StorageFilename} ${ConfigType}${CRLF}${CRLF}" />
<Command Name="DownloadConfigIndirectSCP" Value="execute backup ${ConfigType} tftp ${StorageFilename} ${StorageAddress}${CRLF}" />
<Command Name="UploadConfigIndirectSCP" Value="copy ${TransferProtocol}://${SCPServerUserName}@${SCPStorageAddress}/${StorageFilename} ${ConfigType}${CRLF}${CRLF}${SCPServerPassword}" />
<Command Name="EraseConfig" Value="write erase${CRLF}Y" />
<Command Name="SaveConfig" Value="write memory" />
<Command Name="Version" Value="get system status" />
<Command Name="full" Value="full-config" />
</Commands>
</Configuration-Management>
DeviceA successfully tftp's the config to NCM and is then archived
DeviceB starts downloading the config via tftp but takes a lot longer to finish, by then Orion times out. Eventually the config does complete downloading.
I cannot find a location where I can change the timeout value for TFTP, is this possible? How do I handle slow downloads? Thanks