[Digital logo]
[HR]

OpenVMS Version 7.1 New Features Manual


Previous | Contents

  • END_PRIVATE
    The END_PRIVATE keyword can only be used to terminate data that is added after a BEGIN_PRIVATE statement.
  • NUM_VECTORS = number
    The NUM_VECTORS keyword specifies the number of vectors that the device uses. The default if not specified is 1.
    Example: NUM_VECTORS = 4

    Table 6-1 indicates keyword that can be included in the configuration file.

    Table 6-1 Keyword Summary
    Keyword Required Description
    DEVICE Yes Begins a device description
    END_DEVICE Yes Ends a device description
    ID Yes Specifies the hardware ID.
    NAME Yes Device Name
    DRIVER Yes Driver name
    ADAPTER Yes Adapter type
    UNITS No Units Default: 1
    FLAGS No Device Flags: Default: No flags
    PRIVATE_DATA No Specifies private data
    BEGIN_PRIVATE No Specifies start of private data
    END_PRIVATE No Specifies end of private data
    NUM_VECTORS No Number of Vectors Default: 1

    6.2.4 Rebuilding the USER_CONFIG.DAT File

    The REBUILD keyword requests SYSMAN to rebuild the configuration tables attached to each of the adapter blocks by re-reading and parsing SYS$SYSTEM:SYS$USER_CONFIG.DAT and SYS$SYSTEM:SYS$CONFIG.DAT. The REBUILD command will always rebuild all of the configuration tables, regardless of the type of bus. It is then necessary to re-execute the AUTOCONFIGURE command to load the device drivers for any newly defined devices:

    $ MC SYSMAN IO REBUILD 
    $ MC SYSMAN IO AUTOCONFIGURE 
    

    Note that once a driver has been loaded for a device, it cannot be reloaded.

    The MC SYSMAN IO REBUILD/VERIFY command causes SYSMAN to read and process the SYS$SYSTEM:SYS$USER_CONFIG.DAT and SYS$SYSTEM:CONFIG.DAT files, but not to rebuild the configuration files for OpenVMS. Messages will be displayed for any errors that are encountered. This command can be used by developers to test new changes to SYS$SYSTEM:SYS$USER_CONFIG.DAT without modifying the current system.

    6.3 Supported Buses for User Devices

    File-based autoconfiguration is supported for user-written device drivers on PCI, ISA, EISA, and TURBOchannel buses. This section includes additional information specific to configurations.

    6.3.1 ISA Configuration

    ISA devices do not provide a readable device ID that can be discovered during bus probing. A user must explicitly indicate the presence of the device at the console and must also reserve resources for the device at the console (IRQs, I/O ports, etc.). Once the device is known to the console OpenVMS can then autoconfigure it using file-based autoconfiguration.

    ISA devices may be used on either an ISA bus or an EISA bus. If the system has an ISA bus, the device is configured at the console using ISACFG. If the system has an EISA bus, the ISA device is configured using ECU. Both console utilities allow the users to reserve device resources.

    6.3.1.1 Configuring ISA Devices on the ISA Bus

    In previous versions of OpenVMS Alpha, ISA devices on an ISA bus required an entry in the SYS$MANAGER:ISA_CONFIG.DAT file that defined the hardware and the use of the console command ISACFG to reserve system resources like IRQs.


    Warning

    As of OpenVMS Alpha Version 7.2, the ISA_CONFIG.DAT file will be removed and will no longer be supported. Refer to Section 6.4 for more information.

    6.3.1.2 Configuring ISA devices on the EISA Bus

    ISA devices must be manually configured using the EISA Configuration Utility (ECU) which is run from the console. Devices must have a CFG file provided on a DOS floppy. The CFG file provides a string (up to 7 characters) as the device ID.

    See your card manufacturer, or the EISA Bus Specification for details on CFG file format.

    The ECU floppy (DOS format) contains an example ISA CFG file (ISA000.CFG) that may be used as a model for new configuration files. For more information, refer to the EISA Bus Support chapter in Writing OpenVMS Alpha Device Drivers in C.

    Once the ECU has been run, the device can be configured using file-based autoconfiguration.


    Note

    ISA devices cannot be easily autoconfigured on EISA bus systems on versions prior to OpenVMS Alpha Version 7.1 because the ID is not copied from the ECU data into the OpenVMS bus structures.

    6.4 SYS$MANAGER:ISA_CONFIG.DAT Unsupported in Future Releases

    Support for using the SYS$MANAGER:ISA_CONFIG.DAT file to configure ISA devices will be discontinued in a future release of OpenVMS Alpha. If you use this file, you should convert to using the ISACFG utility from the console and the file-based autoconfiguration method described in this chapter.

    Table 6-2 contains a list of keywords from ISA_CONFIG.DAT and their equivalents in either file-based autoconfiguration or the ISACFG utility.

    Table 6-2 ISA_CONFIG.DAT Keywords and Equivalents
    ISA_CONFIG.DAT File-based Autoconfigure ISACFG
    Not used ID -handle
    NAME NAME
    DRIVER DRIVER
    IRQ irq x
    NODE slot
    DMA dmachan x
    PORT iobase x
    MEM membase x
    FLAGS Bit 1 (unsupported)
    Bit 2 (FLAG=NOVECTOR)
    USER_PARAM PRIVATE_DATA

    An entry in ISA_CONFIG.DAT is matched to internal data kept for an ISA device using the number specified with the NODE keyword. But when you use SYS$USER_CONFIG.DAT file to configure an ISA device, the ID keyword is used to match the block, which defines the device, to data entered from the console with the ISACFG command. The value give to the ID keyword must be the same as the value specified with the ISACFG -handle keyword.

    Any identification string can be used for an ISA device. It should be eight characters or less. The ISACFG command does not set the -handle value to upper case, so two methods can be used to force the value to match one specified using the configuration keyword ID. You can specify the ID value in the correct case inside of quotation marks (matching the case you used for the -handle value). Or you can use the configuration keyword FLAGS=CASE_BLIND, which will cause a blind comparison to be done.

    For example, if you use the following in ISACFG:

    >>>isacfg -slot 3 -dev 0 -mk -enadev 1 -type 1 -handle MyDevice 
    

    you can match that to the following entry in SYS$USER_CONFIG.DAT:

    DEVICE   = "My Device" 
    ID = MYDEVICE 
    FLAGS = CASE_BLIND 
                . 
                . 
                . 
    END_DEVICE 
    

    Descriptions of the conversion for each parameter in ISA_CONFIG.DAT are as follows:

    NAME = xx

    Use the NAME keyword in SYS$USER_CONFIG.DAT. Use the same value, where xx is the device code. (The device code is usually 2 letters.)

    Example: NAME = ER

    DRIVER = driver_name

    Use the DRIVER keyword in SYS$USER_CONFIG.DAT. Use the same value for file-based autoconfiguration. driver_name is the name of the driver in SYS$LOADABLE_IMAGES.

    Example: DRIVER = SYS$ERDRIVER

    IRQ = i

    Use irqx in the ISACFG utility. You can express four irqs: -irq0 thru -irq3. Use the same value as you used for ISA_CONFIG.DAT. The IRQ is a value from 0 to 15, which specifies which ISA IRQ the device uses to report interrupts.

    Example:

    This example assigns IRQs 10 and 5 to the device.

    >>>isacfg -slot 3 -dev 0 -mk -handle MYDEV -enadev 1 -etyp 1  -irq0 10 -irq1 5 
    

    NODE = n

    Use -slot in the ISACFG utility. The slot number (n) does not represent the slot in which the device resides. It is a logical, not a physical number. However, the number does have to be between 1 and the maximum number of slots on the machine. Slot number 0 is not available to users.

    Example:

    >>>isacfg -slot 3 -dev 0 -mk -enadev 1 -etyp 1 -handle MYDEV -dmachan0 1 -irq0 10 
    

    This example assigned values to a device represented by slot 3. There must be at least 3 slots on the machine on which this command is executed. To see which logical slots are being used, enter the following command:

    >>>isacfg -all 
    

    DMA = (j,k, ...)

    Use -dmachanx in the ISACFG utility. Values j,k etc. are values zero through seven, which specify the channels of the DMA controller which the device is using to relay information. Use the same values for j, k, etc. with ISACFG, but assign each one to a different DMA channel. You can specify four DMA channels, using the keywords -dmachan0 thru -dmachan3.

    Example:

    >>>isacfg -slot 3 -dev 0 -mk -enadev 1 -etyp 1 -handle MYDEV -irq0 10 -dmachan0 1 -dmachan1 3 
    

    This example assigned two dma channels, 1 and 3, to the device.

    PORT = (aa:b, cc:d, ... )

    Use -iobasex in the ISACFG utility. You can specify six ports using the keywords -iobase0 through -iobase5. There is no equivalent for the length fields b, d etc. The ISACFG utility assumes that the driver knows the length of the port. Drivers that called the IOC$NODE_DATA routine with the keyword IOC$K_EISA_IO_PORT to obtain the length in the upper word of the returned longword should stop examining the upper word. With ISA_CONFIG.DAT, the length was returned; but with ISACFG, the length is always 8.

    Example:

    >>>isacfg -slot 3 -dev 0 -mk -enadev 1 -etyp 1 -handle AAA321 -irq0 10 -iobase0 2F8 
    

    This example assigned port 2F8 to the device.

    MEM = (ee:f, gg:h, ...)

    Use the ISACFG keywords -membasex, to specify the memory base, and -memlenx, to specify the memory length. Use the same values for ee, gg etc. and f, h etc. as you used for ISA_CONFIG.DAT. You can specify three memory regions using the keywords membase0 through membase2 and memlen0 through memlen2.

    Example:

    >>>isacfg -slot 3 -dev 0 -mk -enadev 1 -etyp 1 -handle MYDEV -irq0 10 -membase0 80000 -memlen0 20 
    

    FLAGS = n

    The FLAGS field in ISA_CONFIG.DAT had 2 meaningful bits:

    Bit 0 indicates the device being configured is a SCSI adapter.

    Bit 1 indicates that no interrupt is required for the device.

    Because it was never possible to use bit 0, it is not currently supported in file-based autoconfiguration. Bit 1 can be expressed with the file-based autoconfiguration FLAGS=NOVECTOR statement.

    USER_PARAM = text

    Use the PRIVATE_DATA keyword in file-based autoconfiguration to represent this value. If you used quotation marks with the USER_PARAM value, you must use BEGIN_PRIVATE and END_PRIVATE to continue to pass the quotation marks to the driver. For ISA devices, the PRIVATE_DATA values can be obtained the same way as USER_PARAM (that is, by using the IOC$NODE_DATA routine with the IOC$K_ISA_USER_PARAM keyword).

    While using ISACFG you must also be familiar with the following commands:

    To return the configuration to its initial state:

    >>>isacfg -init 
    

    To save your changes:

    >>>init 
    

    To delete an entry:

    >>>isacfg -slot 1 -dev 0 -rm 
    

    To see all the devices currently configured:

    >>>isacfg -all 
    

    To modify a device, use -mod:

    >>>isacfg -slot 2 -dev 0 -mod  (etc.) 
    

    The following keywords do not have equivalents in ISA_CONFIG.DAT:
    -enadev a_number Takes the numbers 0 (disabled) and 1 (enabled). It allows you to disable a device so that it will not be used in resource allocation calculations.
    -etyp a_number Defines an entry type for this entry. OpenVMS supports only the values 0 and 1. It should always be specified as a 1. It takes the following values:
    • 0 Causes the entry to be deleted
    • 1 Single option
    • 2 Embedded multiport device
    • 3 Multiport option device

    6.5 Error Information

    This section describes system messages that might appear when you are using file-based autoconfiguration to configure a device.

    For each message, the text of the message appears in uppercase letters and is followed by an explanation of why the message occurred and, where applicable, what you should do to correct the problem.

    %READ_CONFIG-W-BAD_HWID, the HW ID string cannot be zero. Device device_name ignored at line line_number.

    Explanation: A explicit attempt was made to make the ID zero. The ID cannot be zero for a hardware device. The device description will not be added.
    %READ_CONFIG-W-BAD_NUMBER, the argument text string to the keyword command is not a valid number. Device device_name ignored at line line_number.

    Explanation: The numeric value in an argument was illegal. The device description will not be added.
    %READ_CONFIG-W-BAD_EISA_ID, the ID text string must be 3 alpha characters, followed by 4 hex digits. Device device_name ignored at line line_number.

    Explanation: EISA device IDs are of the form XXXnnnv where XXX are three uppercase ASCII alphabetic characters, and nnn is a 3 digit hex product ID, and v is a hex revision value. When a EISA ID is entered as a string, it is validated, and compressed into a 32-bit binary ID that can be compared to the ID read from the EISA card.
    User Action: To enter this value directly, use a numeric ID.

    If the device is an ISA device on the EISA bus, use the flag ISA_ON_EISA to prevent compression of the ID.

    In OpenVMS Alpha Version 7.1, the device description will not be added.

    %READ_CONFIG-W-UNKOWN_COMMAND, unknown command: keyword at line line_number.

    Explanation: An unknown command was found. It is ignored.
    %READ_CONFIG-W-MISSING_INFO, a required field was not provided for: DEVICE = text string, NAME = text string, or DRIVER = text string at line line_number.

    Explanation: One of the listed fields is blank, and is required. The device description will not be added.
    %READ_CONFIG-W-NOT_ADDED, a error was detected for DEVICE = text string, NAME = text string, or DRIVER = text string, not added.

    Explanation: An error occured in the description (and is displayed prior to this message). This message confirms that the device description will not be added.
    %READ_CONFIG-W-MISSING_END_DEVICE, missing END_DEVICE. Device text string ignored at line line_number.

    Explanation: A DEVICE command was encountered before a END_DEVICE was found for the current device description. The device description will not be added.
    %READ_CONFIG-W-INSFARGS, insufficient arguments in the keyword command, needs number, found number at line line_number.

    Explanation: Not enough arguments were provided to the command. The device description will not be added.
    %READ_CONFIG-W-NOEQUALS, missing equal sign in keyword command at line line_number.

    Explanation: The command expected an equal sign. The device description will not be added.
    %READ_CONFIG-W-NOSTRING, string value is NULL in keyword command at line line_number.

    Explanation: A required string argument had a zero length. The device description will not be added.
    %READ_CONFIG-W-NEEDVALUE, needed value in keyword command, found text string instead at line line_number.

    Explanation: A required numeric value contained an illegal string. The device description will not be added.
    %READ_CONFIG-W-BADUNITS, illegal UNITS value text string at line line_number, forcing UNITS = 1.

    Explanation: A negative or null UNITS value was entered. The device description will not be added.
    %READ_CONFIG-W-UNKNOWNADAPTER, unknown adapter Type: text string at line line_number.

    Explanation: The ADAPTER type was unknown. The device description will not be added.
    %READ_CONFIG-W-MISSINGADAPTER, the device device_name has an ID, but no ADAPTER, premature END_DEVICE at line line_number.

    Explanation: The description requires an ADAPTER, which is missing. The device description will not be added.
    %READ_CONFIG-W-UNKNOWN_FLAG, unknown flag: text string at line line_number.

    Explanation: An unknown flag was specified. The device description will not be added.
    %READ_CONFIG-W-NULL_HW_ID, no ID was specified for DEVICE device_name, premature END_DEVICE at line line_number.

    Explanation: A hardware ID is required, and is missing. The device description will not be added.
    %READ_CONFIG-W-ID_NOT_STRING, the ID for device device_name is not a string, but CASE_BLIND is specified, at line line_number.

    Explanation: The CASE_BLIND flag implies that the device ID is a string, but the ID was specified as a number. The device description will not be added.
    %READ_CONFIG-W-LINE_TRUNCATED, more than number characters in line, at line line_number.

    Explanation: Lines cannot exceed 256 characters in length. The device description will not be added.
    %READ_CONFIG-W-NOT_IN_DEVICE, keyword command encountered with no preceding DEVICE command, at line line_number.

    Explanation: A valid command was found, but it was not preceded by a valid DEVICE command. The device description will not be added.
    %READ_CONFIG-W-NOT_IN_PRIVATE, END_PRIVATE command encountered with no preceding BEGIN_PRIVATE command, at line line_number.

    Explanation: An END_PRIVATE was found, but there was a missing or invalid BEGIN_PRIVATE command preceding it. The device description will not be added.
    %READ_CONFIG-W-TOOMANYARGS, command expected number arguments, but found number at line line_number.

    Explanation: The command had too many arguments specified. The device description will not be added.
    %READ_CONFIG-W-DUPLICATE_ID, Device device_name has the same ID as a previous device for this bus, at line line_number.

    Explanation: A previous device in the file has the same ID and same ADAPTER values. The initial occurance in the file will be used, and the second will never match.
    %READ_CONFIG-W-COMMAND_REPEAT, duplicate keyword command for device device_name is ignored, at line line_number.

    Explanation: A command was repeated within a description. Only the initial occurance within the description will be used, and the subsequent occurances will be ignored.
    %READ_CONFIG-F-NO_SYSTEM_CONFIG, the system file filename was not found, your system will not boot.

    Explanation: No SYS$CONFIG.DAT file was found in the SYS$COMMON or SYS$SYSROOT directories. It is highly unlikely that the system will boot.
    %READ_CONFIG-F-NOMEMORY, could not allocate memory, requested text string bytes.

    Explanation: Non-paged memory could not be allocated for the configuration table. Increase NPAGEDYN in SYSBOOT and retry the operation.
    %READ_CONFIG-I-NOAUTOCONFIG, filename will not be read, use SYSMAN IO REBUILD comamand to include devices after boot.

    Explanation: The NOAUTOCONFIG sysgen parameter will cause the SYS$USER_CONFIG.DAT file to be ignored during the bootstrap. This allows a corrupt file to be bypassed. Once booted, the SYSMAN IO REBUILD command will read the file and add the devices to the system configuration database, and a SYSMAN IO AUTO will then configure any devices from the SYS$USER_CONFIG.DAT file.


    Appendix A
    New OpenVMS System Messages

    This release includes new or changed messages for the following OpenVMS facilities:

    This appendix alphabetically lists and describes most messages that have been added or changed for this release. New and changed messages for the following facilities are documented with other messages for those facilities in OpenVMS System Messages: Companion Guide for Help Message Users: BACKUP, LOGIN, MOUNT, SHADOW, SYSINIT, and Cluster Port Driver. MEMORY CHANNEL (MC) messages are in the Help Message database only.

    You can access online descriptions of new and existing OpenVMS system messages by using the online Help Message utility. For information about the HELP/MESSAGE command and qualifiers, see DCL help (type HELP HELP/MESSAGE at the DCL prompt) or refer to OpenVMS System Messages: Companion Guide for Help Message Users.

    ABORT, fatal error encountered; operation terminated

    Facility: PPPD, Point-to-Point Protocol Utility
    Explanation: The fatal error reported in an accompanying message caused the command to fail.
    User Action: Correct the problem and retry the operation.
    ALPHADUMP, dump file header FLAGS2 DMP$V_ALPHADUMP is set indicating an Alpha dump

    Facility: SDA, System Dump Analyzer
    Explanation: The dump file you are trying to analyze was written on an OpenVMS Alpha system and cannot be analyzed using the OpenVMS VAX System Dump Analyzer.
    User Action: Use the OpenVMS Alpha System Dump Analyzer to analyze this dump file.
    ASNCNTINV, unable to show counters on an inactive line

    Facility: PPPD, Point-to-Point Protocol Utility
    Explanation: The current serial line is not in Point-to-Point Protocol (PPP) mode. No counter information is available for display.
    User Action: Switch the serial line into PPP mode using the PPPD command CONNECT [ddcu:], then reissue the PPPD command SHOW/COUNTERS [ddcu:].
    ASNSETUP, error with ASN device setup

    Facility: PPPD, Point-to-Point Protocol Utility
    Explanation: PPPD failed to configure an asynchronous device for the reason described in the accompanying message.
    User Action: Take action based on the accompanying message.
    ASSIGNCHAN, error trying to open device 'device-name'

    Facility: PPPD, Point-to-Point Protocol Utility
    Explanation: PPPD failed to access the specified device for the reason described in the accompanying message.
    User Action: Take action based on the accompanying message.
    AUTHFAIL, authorization failure

    Facility: SYSTEM, System Services
    Explanation: User authentication failed because of an invalid user name, password, or other account restriction.
    User Action: Verify that the user name and password are valid and that account restrictions on the local system and in the external authenticator (if applicable) allow for system access.
    BADCHECK, checksum is not valid for 'product' Authorization: 'authorization-number'

    Facility: LICENSE, License Management Utility
    Explanation: The checksum on the PAK record no longer matches the rest of the data on it.
    User Action: Delete the PAK and restore the original one from backup. Either register the original paper PAK or, from a backup copy of the license database, use one of these commands: COPY, MOVE, ISSUE.
    BADCHKSUM, dump header checksum incorrect; continuing anyway

    Facility: SDA, System Dump Analyzer
    Explanation: The header of the dump being analyzed has an incorrect checksum, indicating that the dump has been modified or corrupted. Dump analysis might not be possible.
    User Action: No action is required if the cause of the modification or corruption is known, and the dump can still be analyzed. If the problem persists, contact a Digital support representative.
    BADIOSBADDR, IOSB buffer address 'address' is not on allocated list

    Facility: PPPD, Point-to-Point Protocol Utility
    Explanation: The address of the I/O status block (IOSB) is not valid. PPPD tried to use a status block that is not in the IOSB allocation queue.
    User Action: Contact a Digital support representative.
    BADOVER4GB, dump file contains data written directly from addresses over 4GB

    Facility: SDA, System Dump Analyzer
    Explanation: The system dump includes data from a physical address above the first 4 gigabytes of system memory. This data cannot be written correctly in all configurations and may cause confusion when the dump is analyzed.

    This message indicates that all of the following conditions exist:

    Under these conditions, a selective memory dump is taken even if a full memory dump is requested. Also, the dump is not compressed even if compression was requested.
    User Action: Ensure that resident libraries are used. These are automatically installed when AUTOGEN is used to configure the system.

    BADPSBARRAY, invalid value in PSB array; array has been corrupted

    Facility: SDA, System Dump Analyzer
    Explanation: SDA determined that the PSB array for the specified process contains data that does not conform to design requirements. This status indicates that one or more cells in the array are corrupt.
    User Action: Examine the contents of the PSB to determine whether this corruption is responsible for or related to the problems being analyzed.
    BADRESSIZ, invalid value for memory reservation size

    Facility: SYSMAN, System Management Utility
    Explanation: An invalid value was specified for the /SIZE qualifier.
    User Action: Specify a positive value for the /SIZE qualifier.
    BADSELWGHT, selection weight not valid for 'product'; values range from 0 to 1000

    Facility: LICENSE, License Management Utility
    Explanation: The selection weight you entered is too large.
    User Action: Either specify a smaller value or use the defaults by entering a value of 0.
    BATCH, batch operations are not supported at this time

    Facility: PPPD, Point-to-Point Protocol Utility
    Explanation: An attempt was made to execute a PPPD command in batch mode. Batch mode is not currently supported for PPPD commands.
    User Action: Do not attempt to execute PPPD commands in batch mode.
    BREAKERR, error sending break on 'device-name'

    Facility: PPPD, Point-to-Point Protocol Utility
    Explanation: A break character was not transmitted to the specified device for the reason given in the accompanying message.
    User Action: Take action based on the accompanying message.
    CALLBACKERR, error calling network callback

    Facility: PPPD, Point-to-Point Protocol Utility
    Explanation: While negotiating the initial point-to-point connection, the network callback routine returned with a bad status block for the reason described in the accompanying message.
    User Action: Take action based on the accompanying message.
    CBLOCKMAPTOOBIG, compression block map too big for SDA to handle; may not be possible to copy dump correctly

    Facility: SDA, System Dump Analyzer
    Explanation: The compression block map in the dump is too big for SDA to read. In override mode, attempts to copy the dump fail if the portion of the compression block map actually used is too big for SDA to read. In normal operation, SDA attempts to read the entire compression block map, and fails only if it is unable to allocate sufficient memory for the map.
    User Action: None.
    CHKDOM, ExtAuth set for 'account'; ensure corresponding domain account exists

    Facility: UAF, Authorize Utility
    Explanation: The specified account uses external authentication and must have a corresponding account in the external authentication domain.
    User Action: Verify that an account exists in the external authentication domain and that it maps to the specified OpenVMS account.
    CLOSERR, unable to close file 'file-name'

    Facility: SDP, Set Dump Priority Utility
    Explanation: An error occurred while trying to close the specified data file.
    User Action: Take action based on the accompanying message. If that message does not provide enough information to correct the error, contact a Digital support representative.
    CMDNOTALLINPIP, the specified command sequence is not allowed in a PIPE command

    Facility: CLI, Command Language Interpreter (DCL)
    Explanation: You specified a command sequence that is illegal in a PIPE command. Refer to DCL Help or the OpenVMS DCL Dictionary for details.
    User Action: Remove the offending command sequence from the PIPE command.
    CMDPROC, error processing command

    Facility: PPPD, Point-to-Point Protocol Utility
    Explanation: An error occurred while processing the current PPPD command for the reason described in the accompanying message.
    User Action: Take action based on the accompanying message.
    CNFLTQUALS, conflicting qualifiers

    Facility: SDA, System Dump Analyzer
    Explanation: The SDA command contains conflicting qualifiers.
    User Action: Correct or remove the conflicting qualifiers and reissue the command.
    CONFIRMINPUT, SYS$COMMAND is not a terminal; /CONFIRM ignored

    Facility: SYSMAN, System Management Utility
    Explanation: A SYSMAN command with the /CONFIRM qualifier was submitted from something other than a terminal device.
    User Action: Either execute the SYSMAN command from a terminal device, or eliminate the /CONFIRM qualifier from the SYSMAN command.
    CONNECTERR, unable to connect to file 'file-name'

    Facility: SDP, Set Dump Priority Utility
    Explanation: An error occurred while trying to connect to the specified data file.
    User Action: Take action based on the accompanying message. If that message does not provide enough information to correct the error, contact a Digital support representative.
    CONNECTTERM, converting connection on device 'device-name' to a Point-to-Point connection

    Facility: PPPD, Point-to-Point Protocol Utility
    Explanation: PPPD has successfully accessed the specified device and is switching the serial line into Point-to-Point Protocol (PPP) mode.
    User Action: None.
    CREATED_SHPT, section did not exist; has been created with shared page tables

    Facility: SYSTEM, System Services
    Explanation: The named global section was successfully created with shared page tables.
    User Action: None.
    DATAOVERUN, data overrun on device 'device-name'

    Facility: PPPD, Point-to-Point Protocol Utility
    Explanation: The transmitting device is sending data too quickly. The specified receiving device cannot handle the volume of incoming data and has started to drop characters.
    User Action: Do one of the following:
    1. Set the flow control on the transmitting device to band control using the PPPD command SET/FLOW_CONTROL=XON_XOFF [ddcu:].
    2. If the problem persists, exit the utility and have someone with PHY_IO privileges (usually the system manager) enable an alternate type-ahead buffer on the receiving device by entering the following DCL command:
      $ SET TERMINAL/PERMANENT/ALTYPEAHD [ddcu:]
      
    DIALINIT, error in DIAL_OUT initialization

    Facility: PPPD, Point-to-Point Protocol Utility
    Explanation: PPPD failed to initialize the device specified by the PPPD command DIAL_OUT for the reason described in the accompanying message.
    User Action: Take action based on the accompanying message.
    DISCONNECTERR, unable to disconnect from file 'file-name'

    Facility: SDP, Set Dump Priority Utility
    Explanation: An error occurred while trying to disconnect from the specified data file.
    User Action: Take action based on the accompanying message. If that message does not provide enough information to correct the error, contact a Digital support representative.
    DUMPMOD, dump has been modified

    Facility: SDA, System Dump Analyzer
    Explanation: The dump was previously accessed in override mode and has been modified. Such modifications sometimes make the dump impossible to analyze.
    User Action: None. This is an informational message.
    DUPREDSYN, cannot specify the same type of redirection syntax more than once in a command sequence

    Facility: CLI, Command Language Interpreter (DCL)
    Explanation: The same type of redirection syntax was specified more than once in a command sequence.
    User Action: Remove the duplicate redirection syntax. You can specify multiple redirection syntaxes in a single command sequence, provided each syntax represents a different type of redirection.
    EDITDEVICE, error editing device name 'device-name'

    Facility: PPPD, Point-to-Point Protocol Utility
    Explanation: An OpenVMS system service could not edit the specified device name for the reason described in the accompanying message.
    User Action: Take action based on the accompanying message.
    ERLBUFTOOBIG, size of error log buffers exceeds maximum for system parameter ERLBUFFERPAGES

    Facility: SDA, System Dump Analyzer
    Explanation: The error log buffers in the dump are too big for SDA to read. In override mode, attempts to extract the error log buffers may fail. In normal operation, SDA attempts to read all the error log buffers and fails only if it is unable to allocate sufficient memory for them.
    User Action: None.
    ERRMAPAUTH, error mapping or authenticating user

    Facility: SYSTEM, System Services
    Explanation: A general system service failure occurred while trying to map or authenticate the user.
    User Action: Take action based on the accompanying message.
    EXTAUTH, ExtAuth set for 'account'; field modification may have no effect

    Facility: UAF, Authorize Utility
    Explanation: The specified account uses external authentication, so the requested field change may have no effect on the authentication of that account. Typically, this message results from attempting to modify a password related account parameter while the ExtAuth flag is set for that account.
    User Action: None.
    EXTPWDERR, password could not be set by external authenticator

    Facility: SET, SET PASSWORD Command
    Explanation: An error occurred while the external authenticator was attempting to process the password request.
    User Action: Take action based on the accompanying message.
    FAILED, failed to set process dump priority

    Facility: SDP, Set Dump Priority Utility
    Explanation: An error occurred while the list of processes was being loaded into system memory (nonpaged pool).
    User Action: Take corrective action based on the accompanying message; then retry the operation.
    FILENUMCHK, file identification number check

    Facility: SYSTEM, System Services
    Explanation: This message can occur under either of the following conditions:
    User Action: In the first case noted above, use the Analyze/Disk_Structure utility to repair the volume.


    Previous | Next | Contents | [Home] | [Comments] | [Ordering info] | [Help]

    [HR]

      6480P008.HTM
      OSSG Documentation
       5-DEC-1996 13:51:02.51
    

    Copyright © Digital Equipment Corporation 1996. All Rights Reserved.

    Legal