The tolt diagnostics corefiles portion of the tree is utilized for management of corefiles on the system. It allows for the creation of corefile archives that can be used by Tellabs Development to determine the cause of failures in the system.
There are three actions, a list to list the corefiles present on the OLT, a create action to create a corefile archive to sending to tellabs tac, and a delete action for deleting unneeded core files.
.png?Policy=eyJTdGF0ZW1lbnQiOlt7IlJlc291cmNlIjoiaHR0cHM6Ly9kemY4dnF2MjRlcWhnLmNsb3VkZnJvbnQubmV0L3VzZXJmaWxlcy80MTcwMy81NDk1Mi9ja2ZpbmRlci9pbWFnZXMvcXUvMjAyNi9pbWFnZSgyOSkucG5nIiwiQ29uZGl0aW9uIjp7IkRhdGVMZXNzVGhhbiI6eyJBV1M6RXBvY2hUaW1lIjoxNzc5NzU0MTc4fX19XX0_&Signature=D4mn8Yqqj-JeHLagdPgRu54HGbaDzRLnCMiQKHfUxboDM5mRn-w15PrGYN3JYv1ofepfQZAtXiUKI7P7nCUfC7LbdRMnJJP-5uAFOmIGr0-j1AfoYlYXmSd7B71Xa7zgHeZ03gMhIBGqSJbDQ~8cx-IJdkm8rABtkELENiWm~qs5Ddnhb7BJu4QVARAEOVeK9Vuw6~6FcDP9lzecMp3pBYJko2yEyCg8CkZfvzjrXE6pWyGCRde0n8XdBvJ~4mehVlUEeW18KZKtlQJDh4FTR50iyDMnjOiFmq4tk2Z8PQkinBaJ12WEmeoOb4piljdiUTDd5Dvm7nUDipABXn6xxg__&Key-Pair-Id=K2TK3EG287XSFC)
Diagnostics corefiles Attributes
|
Attribute |
Values |
Description |
|
List |
|
The action to list all corefiles on the OLT disk. Most corefiles are issues that should be shared with TAC for analysis. |
|
Create |
|
The action to create a corefile archive and place it into the sftp files area for transfer off the OLT. |
|
Input |
|
Container for action parameters. |
|
Corefile-names |
<string> |
This parameter is optional and specifies the name of specific corefiles to include in the archive. By default all will be included in the archive. |
|
Tgz-name |
String |
The filename to use for the corefiles archive. |
|
Delete |
String |
The delete action is used to detete specific corefiles from the OLT. |
|
Corefile-names |
String |
A list of one or more corefile names to delete. This is a standard list. |
This example will list the corefiles present on the OLT.
MDS1-ESUA# tolt diagnostics corefile list <enter>
status Found 7 core file(s) in /usr/bob/tmp/corefiles
action-success true
reason Core files listed successfully
corefiles core.db_recover.2628.1775600182 | 614400 bytes | 2026-04-07 17:16:22
core.db_recover.2750.1775600183 | 614400 bytes | 2026-04-07 17:16:23
core.db_recover.2959.1775600184 | 614400 bytes | 2026-04-07 17:16:24
core.db_recover.2986.1775600184 | 614400 bytes | 2026-04-07 17:16:24
core.db_recover.2990.1775600184 | 614400 bytes | 2026-04-07 17:16:24
core.db_recover.3034.1775600188 | 614400 bytes | 2026-04-07 17:16:28
core.db_recover.3051.1775600191 | 614400 bytes | 2026-04-07 17:16:31
MDS1-ESUA# _
|
Corefiles that are created are placed in the diagnostics directory of the sftp area of the disk.
MDS1-ESUA# tolt diagnostics corefiles create tqz-name my-corefiles-4-10-2026 <enter>
status Created archive 'my-corefiles-4-10-2026.tgz' with 7 core file(s) from /usr/bob/tmp/corefiles into /usr/bob/sftp/diagnostic
action-success true
reason Created archive 'my-corefiles-4-10-2026.tgz' with 7 core file(s) from /usr/bob/tmp/corefiles into /usr/bob/sftp/diagnostic
archive-name my-corefiles-4-10-2026.tgz
archive-path /usr/bob/sftp/diagnostic/my-corefiles-4-10-2026.tgz
warning Archive created successfully. Please retrieve and delete it after use, since core archives may consume significant disk space.
MDS1-ESUA# _
|
The delete function is used to delete corefiles from the OLT. Archive files are deleted via the sftp tool and any sftp user should be able to delete files.
MDS1-ESUA# tolt diagnostics corefiles delete corefile-names [ core.db_recover.2990.1775600184 core.db_recover.3034.1775600188 ] <enter>
status Deleted 2 file(s)
action-success true
reason Deleted: core.db_recover.2990.1775600184, core.db_recover.3034.1775600188
MDS1-ESUA# _
|