Log files can be downloaded from InCenter using either an SCP or SFTP client. By using the default SSH port number of 22, transfers will be mediated by InCenter which means that the only directory accessible will be /mgmtsystem/storage. This section will show examples using SCP only.
Assuming that the InCenter IP address is 192.168.23.206, the following will download all log files:
> scp -r admin@192.168.23.206:./ .
To download just the system.log file:
> scp admin@192.168.23.206:./logs/system.log .
To download all the error files:
> scp -r admin@192.168.23.206:./errors .
Downloading all the error files like this at once may be more convenient because the error file names can be long.