Technical Tip: Export large files from FortiNAC-F to a support ticket
| Description | This article describes the steps to provide large files stored on the FortiNAC-F appliance to Technical Support. The process is useful for customers who need to provide files that are typically too large to attach to a ticket in the Customer Support Portal.
See related documents for commonly collected files to submit to support: | ||||
| Scope | FortiNAC-F, FortiNAC-OS. | ||||
| Solution |
Note: The SFTP client example in the article will not be used and should be ignored.
execute enter-shell sftp -P 2222 <USER_ID>@<FTP_Address>:/ <<< $'put <FortiNAC_path/filename>'
Note: Files will not be displayed in the ticket.
For example:
Upload logs, database and packet capture:
execute enter-shell
sftp -P 2222 U_1234@support.fortinet.com:/ <<< $'put /bsc/campusMgrUpdates/log-snapshot-fortinac-20251234.tar.gz'
sftp -P 2222 U_1234@support.fortinet.com:/ <<< $'put /bsc/campusMgrUpdates/capture20251234.pcap'
sftp -P 2222 U_1234@support.fortinet.com:/ <<< $'put /bsc/backups/database/FortiNAC_DataBase_BackUp_20251234_fortinac.gz' |
