This chapter provides information about file system management.
The 7210 SAS file system is used to store files used and generated by the system; for example, image files, configuration files, logging files and accounting files.
The file commands allow you to copy, create, move, and delete files and directories, navigate to a different directory, and display file or directory contents and the image version.
The file system is based on a DOS file system. The 7210 SAS devices provide several storage options, including internal flash and USB.
The following compact flash devices are supported:
The preceding device names are relative device names in that they refer to the devices local to the control processor running the current console session. As in the DOS file system, the colon (“:”) at the end of the name indicates it is a device.
The following table lists the storage locations available on different 7210 SAS platforms.
7210 SAS platforms | Storage locations | |
cf1:\ | uf1:\ 1 | |
7210 SAS-D | ✓ 2 | |
7210 SAS-Dxp | ✓ 3 | |
7210 SAS-K 2F1C2T | ✓ 4 | ✓ |
7210 SAS-K 2F6C4T | ✓ 5 | ✓ |
7210 SAS-K 3SFP+ 8C | ✓ 5 | ✓ |
Notes:
In addition to user-added files and directories, the number of files in the root directory can also increment when the admin save or bof save commands are issued. The system enforces a threshold limit of 80 entries (files and directories) for contents of the root directory on cf1:\; there is no restriction on the number of files and directories that you can add in the subdirectories. A trap (tmnxRootDirFull) is generated if the threshold limit is exceeded, and a warning is generated for each new file or directory created in the root directory on cf1:\ after the threshold limit is exceeded.
Note: User intervention is required when the system displays the threshold exceeded event (tmnxRootDirFull). You are required to clean the root directory on cf1:\ and ensure that the number of entries (files or directories) is below the enforced threshold limit of 80 entries. Remove unnecessary files and directories from the root directory or move them to a subdirectory that you have created under the root directory. The system does not generate a warning when the number of files and directories is reduced below the threshold limit. |
Use the file dir cf1:\ command to determine the number of entries (files or directories) present in the root directory, as shown in the following output example. For example, in the following listing, the total number of entries in the root directory (files and directories) is 14 files + 2 directories = 16.
Note: USB devices are supported on all 7210 SAS platforms as described in this document, except the 7210 SAS-D and 7210 SAS-Dxp. |
7210 SAS platforms support the use of the USB interface as an alternate storage location that provides a larger storage capacity than the internal flash. You can use a USB storage device to store TiMOS images, configuration files, accounting records, and log files. The BOF can point to images on the USB and you can use the USB to load TiMOS images and configuration files.
The 7210 SAS-K 2F1C2T, 7210 SAS-K 2F6C4T, and 7210 SAS-K 3SFP+ 8C provide an option to load the boot loader (boot.tim) from the USB storage device plugged into any one of the USB ports.
Note:
|
The arguments for the 7210 SAS file commands are modeled after standard universal resource locators (URLs). A URL refers to a file (a file-url) or a directory (a directory-url).
The 7210 SAS supports operations on both the local file system and remote files. For the purposes of categorizing the applicability of commands to local and remote file operations, URLs are divided into three types: local, ftp and tftp. The following table describes the syntax for each of the URL types.
URL type | Syntax | Notes |
local-url | [cflash-id:\]path [usb-flash-id:\]path | cflash-id is the compact flash device name Values: cf1: usb-flash-id is the USB device name Values: uf1: |
ftp-url | ftp://[username[:password]@]host/path | An absolute ftp path from the root of the remote file system username is the ftp username password is the ftp user password host is the remote host path is the path to the directory or file |
ftp://[username[:password]@]host/./path | A relative ftp path from the user’s home directory Note the period and slash (“./”) in this syntax compared to the absolute path | |
tftp-url | tftp://host[/path]/filename | tftp is only supported for operations on file URLs |
The system accepts either forward slash (“/”) or backslash (“\”) characters to delimit directory and/or filenames in URLs. Similarly, the 7210 SAS SCP client application can use either slash or backslash characters, but not all SCP clients treat backslash characters as equivalent to slash characters. In particular, UNIX systems will often interpret the backslash character as an “escape” character. This can cause problems when using an external SCP client application to send files to the SCP server. If the external system treats the backslash like an escape character, the backslash delimiter will get stripped by the parser and will not be transmitted to the SCP server.
For example, a destination directory specified as “cf1:\dir1\file1” will be transmitted to the SCP server as “cf1:dir1file1” where the backslash escape characters are stripped by the SCP client system before transmission. On systems where the client treats the backslash like an “escape” character, a double backslash “\\” or the forward slash “/” can typically be used to correctly delimit directories and the filename.
All the commands can operate on the local file system. The following table describes which commands also support remote file operations.
Command | local-url | ftp-url | tftp-url |
attrib | ✓ | ||
cd | ✓ | ✓ | |
copy | ✓ | ✓ | ✓ |
delete | ✓ | ✓ | |
dir | ✓ | ✓ | |
md | ✓ | ||
move | ✓ | ✓ | |
rd | ✓ | ||
scp | Source only | ||
type | ✓ | ✓ | ✓ |
version | ✓ | ✓ | ✓ |
The 7210 SAS supports the standard DOS wildcard characters. The asterisk (*) can represent zero or more characters in a string of characters, and the question mark (?) can represent any one character.
The following sections contain information about the basic system tasks.
Note: When a file system operation is performed with a command that can potentially delete or overwrite a file system entry (such as a copy, delete, move, rd, or scp command), a prompt appears to confirm the action. The force keyword performs these file management operations without displaying the confirmation prompt. |
The system administrator can change the read-only attribute in the local file. Enter the attrib command with no options to display the contents of the directory and the file attributes.
Use the following CLI syntax to modify file attributes.
The following example shows command syntax usage:
The following example shows the file configuration:
Use the md command to create a new directory in the local file system, one level at a time.
Enter the cd command to navigate to different directories.
Use the following CLI syntax to create a new directory:
The following example shows command syntax usage:
Use the copy command to upload or download an image file, configuration file, or other file types to or from a flash card or a TFTP server.
The scp command copies files between hosts on a network. It uses SSH for data transfer, and uses the same authentication and provides the same security as SSH.
The source file for the scp command must be local. The file must reside on the router. The destination file has to be of the following format: user@host:file-name. The destination does not need to be local.
Use the following CLI syntax to copy files.
The following example shows the copy command syntax usage:
Use the move command to move a file or directory from one location to another.
Use the following CLI syntax to move files.
The following example shows command syntax usage.
Use the delete and rd commands to delete files and remove directories. Directories must be empty before they can be removed. When files or directories are deleted, they cannot be recovered.
Use the following CLI syntax to delete files and remove directories.
The following example shows command syntax usage.
Use the dir command to display a list of files on a file system. Use the type command to display the contents of a file. Use the version command to display the version of a cpm.tim or iom.tim file.
Use the following CLI syntax to display directory and file information.
The following example shows command syntax usage.