version

version - get version information for IxTclHal.

SYNOPSIS

version sub-command options

DESCRIPTION

This command allows to view the version information for IxTclHal. Note that when using TCL from a Unix system, the version may not be obtained until a connection to the chassis is made, for example through the use of

STANDARD OPTIONS
companyName

Read-only. The name of company: Ixia Communications

copyright

Read-only. Copyright banner for IxTclHal

installVersion

Read-only. Installed version of the software.

ixTclHALVersion

Read-only. The version number of ixTclHal.dll file

ixTclProtocolVersion

Read-only. The version of the IxRouter protocol.

productVersion

Read-only. The software version along with build number

COMMANDS

The version command is invoked with the following sub-commands. If no sub-command is specified, returns a list of all sub-commands available.

version cget option

Returns the current value of the configuration option given by option. Option may have any of the values accepted by the version command.

version config

Modify the version configuration options of the IxTclHal. If no option is specified, returns a list describing all of the available version options (see STANDARD OPTIONS).

version get

Gets the current version information from HAL. Call this command before calling version cget option to get the value of the configuration option.

EXAMPLES

package require IxTclHal

version get

ixPuts -nonewline "Company name is "

ixPuts [version cget -companyName]

ixPuts -nonewline "Copyright is "

ixPuts [version cget -copyright]

ixPuts -nonewline "Install Version is "

ixPuts [version cget -installVersion]

ixPuts -nonewline "ixTclHAL Version is "

ixPuts [version cget -ixTclHALVersion]

ixPuts -nonewline "ixTclProtocolVersion is "

ixPuts [version cget -ixTclProtocolVersion]

ixPuts -nonewline "Product Version is "

ixPuts [version cget -productVersion]

SEE ALSO