Previous | Contents | Index |
Creates an empty BOOTP service database, TCPIP$BOOTP.DAT, located in SYS$COMMON:[SYSEXE].If the logical name TCPIP$BOOTP is defined, CREATE BOOTP uses the definition to create the directory and file name for the BOOTP database. If TCPIP$BOOTP is not defined, the database is created as [current.directory]TCPIP$BOOTP.DAT.
Related commands: CONVERT/VMS BOOTP, SET BOOTP
CREATE BOOTP
Requires write access to the directory with the BOOTP configuration database. (Default directory is SYS$COMMON:[SYSEXE].)Do not execute this command unless you intend to reconfigure your entire cluster.
#1 |
---|
TCPIP> CREATE BOOTP |
Creates the empty database SYS$COMMON:[SYSEXE]TCPIP$BOOTP.DAT.
Creates an empty configuration database.If the logical name TCPIP$CONFIGURATION is defined, CREATE CONFIGURATION uses the definition to create the directory and file name for the configuration database. If TCPIP$CONFIGURATION is not defined, the database is created as SYS$COMMON:[SYSEXE]TCPIP$CONFIGURATION.DAT.
CREATE CONFIGURATION
Requires write access to the directory with the configuration database.Do not execute this command unless you intend to reconfigure your entire cluster.
#1 |
---|
TCPIP> CREATE CONFIGURATION |
Creates the empty database SYS$COMMON:[SYSEXE]TCPIP$CONFIGURATION.DAT.
Creates a UNIX style file system with:
- An empty OpenVMS style root directory
- An empty local directory that corresponds to the UNIX root directory
- A container file in the OpenVMS style root directory
Applies to the NFS server.
CREATE CONTAINER device:directory [ /HOST=host ]
[ /[NO]LOG ]
[ /OWNER=[uic] ]
[ /ROOT_MODE=n ]
[ /SIZE=option=value ]
[ /UID=n ]
[ /USER_NAME=vms_user_name ]
Requires:
- Read and write access to the specified device and directory.
- SYSPRV or BYPASS privileges.
device:directory
Required.Device and directory of the UNIX style container.
/HOST=host
Required. Default: None.If the proxy database has multiple entries with the same user name and UID, the NFS server selects the entry specified with this qualifier.
/LOG
/NOLOG
Optional. Default: Displays host, UID, GID, and user name.Displays a full description of the specified proxy database record for you to determine ownership (see /USER_NAME).
/OWNER=[uic]
Optional. Default: UIC in the selected proxy record.OpenVMS ownership of the container file directory and container file.
(The other files in this directory are owned by the OpenVMS users whose proxy database entries correspond to the UNIX owner UIDs of the individual files.)
/ROOT_MODE=n
Optional. Default: 755 (provides the following protection for owner, group, and world rwx-rx-rx).UNIX style protection of the default container files: root directory, bit map, and superblock.
Specify octal values in the following order: for user, for group, for others. The values are:
- 0 --- No access
- 1 --- Execute access
- 2 --- Write access
- 3 --- Write and execute access
- 4 --- Read access
- 5 --- Read and execute access
- 6 --- Read and write access
- 7 --- Read, write, and execute access
For example, /ROOT_MODE=751 provides:
User Read, write, and execute access 7 rwx Group Read and execute access 5 rx Other Execute access 1 x /SIZE=option=value
Optional. Default: /SIZE=(INITIAL=8917,EXTEND=160,MAXIMUM=0).The following file size attributes:
- INITIAL
Initial size, in OpenVMS blocks, of the container. Maximum value: 8917.- EXTEND
When an extension is necessary, the number of blocks by which the container is extended. Maximum supported value: 8192
Note
Using large values might impact system performance and disk usage. In most cases, the default is sufficient.- MAXIMUM
Maximum size of the container.
Value = 0 means the size of the container file can increase without limits./UID=n
Optional. Default: UID in the selected proxy record.Ownership of the UNIX style container root directory.
/USER_NAME=vms_user_name
Required.Selects the proxy record.
#1 |
---|
TCPIP> CREATE CONTAINER DUCK$4:[DUCKLING] /HOST=MALLARD - _TCPIP> /OWNER=[300,12] /ROOT_MODE=755 /UID=7015 - _TCPIP> /USER_NAME=G_JONES |
Creates container directory DUCK$4:[DUCKLING]. The local OpenVMS owner is [300,12]. Remote users will see the root directory as owned by UID 7015. The root directory is writable only by UID 7015; it is readable and executable by all others. Before you execute this command, there should be an OpenVMS account for G_JONES with UIC [300,12], and an incoming proxy record for G_JONES specifying UID 7015 on host MALLARD.
Creates a directory within an existing UNIX style container. Applies to the NFS server.Related commands: DIRECTORY, REMOVE DIRECTORY
CREATE DIRECTORY "/path/name" [ /HOST=host ]
[ /[NO]LOG ]
[ /MODE=n ]
[ /UID=n ]
[ /USER_NAME=vms_user_name ]
Requires:
- Read and write access to the parent directory.
- SYSPRV or BYPASS privileges if you specify /USER_NAME with a name other than your own.
The container file system must be mapped with the MAP command.
"/path/name"
Required.Name of the directory you wish to create.
/HOST=host
Optional. Default: Uses the first user name found.If the proxy database has multiple entries with the same user name and UID combination, the value of /HOST determines the specified record.
/LOG
/NOLOG
Optional. Default: Displays values for host, UID, GID, and user name.Displays a full description of the specified proxy database record for you to determine ownership (see /USER_NAME).
/MODE=n
Optional. Default: 755 (provides the following protection for owner, group, and world: rwx-rx-rx).UNIX style protection of the new directory.
Specify octal values in the following order: for user, for group, for others. The values are:
- 0 --- No access
- 1 --- Execute access
- 2 --- Write access
- 3 --- Write and execute access
- 4 --- Read access
- 5 --- Read and execute access
- 6 --- Read and write access
- 7 --- Read, write, and execute access
For example, /MODE=751 provides:
User Read, write, and execute access 7 rwx Group Read and execute access 5 rx Other Execute access 1 x /UID=n
Optional. Default: None.Entry in the proxy database that determines, if necessary, the ownership of the container root directory.
In the proxy database:
- UID and GID fields determine the root directory's UNIX identity.
- User name field determines the OpenVMS ownership.
Required to access an entry in the proxy database that lacks a unique UID, user name, and host combination.
You can use /UID with the /HOST and /USER_NAME qualifiers. If you do not have SYSPRV or BYPASS privileges, the values you specify must correspond to the values for your user name in the proxy database.
/USER_NAME=vms_user_name
Optional. Default: UID=0 and GID=1 (if you have SYSPRV or BYPASS privileges).Selects an entry in the proxy database and creates the UID, GID, and OpenVMS UIC for the directory files.
To select a user name that has a UIC different than the UIC of the process running the management program, you need SYSPRV or BYPASS privileges.
You can use /USER_NAME in combination with /HOST and /UID. However, if you do not have SYSPRV or BYPASS privileges, the values you specify must correspond to the values for your user name in the proxy database.
#1 |
---|
TCPIP> MAP "/user" dua0:[group_a] TCPIP> CREATE DIRECTORY "/user/umbrella.bird" |
Creates a UNIX style directory for user UMBRELLA called umbrella.bird. In this example, the user UMBRELLA is running the DIGITAL TCP/IP Services for OpenVMS management program from the directory ([UMBRELLA.BIRD]). The UIC for [UMBRELLA] is [340,6] and the TCPIP$PROXY entry is defined as follows:
USER UID GID HOST UMBRELLA 300 12 * SYSTEM 0 1 * If UMBRELLA does not have SYSPRV or BYPASS privileges, the directory is created as follows:
- UID = 300
- GID = 12
- UIC = [340,6]
If UMBRELLA has SYSPRV or BYPASS privileges, the directory is created as follows:
- UID = 0
- GID = 1
- UIC = [SYSTEM]
Creates an empty export database file.If the logical name TCPIP$EXPORT is defined, CREATE EXPORT uses the definition to create the directory and file name for the export database. If TCPIP$EXPORT is not defined, the database is created as SYS$COMMON:[SYSEXE]TCPIP$EXPORT.DAT.
Related commands: ADD EXPORT, SHOW EXPORT
Applies to: NFS server
CREATE EXPORT
Requires write access to the directory with the export database.Do not execute this command unless you intend to reconfigure your entire cluster.
#1 |
---|
TCPIP> CREATE EXPORT |
Creates an empty export database.
Creates a hosts database file with:
- One entry for LOCALHOST
- LOCALHOST's alias, localhost
- LOCALHOST's address, 127.0.0.1
If the logical name TCPIP$HOST is defined, CREATE HOST uses the definition to create the directory and file name for the hosts database. If TCPIP$HOST is not defined, the database is created as SYS$COMMON:[SYSEXE]TCPIP$HOST.DAT. Do not execute this command unless you intend to reconfigure your entire cluster.
Related commands: SET HOST, SHOW HOST, CONVERT/VMS HOST
CREATE HOST
Requires:
- Write access to the directory with the hosts database.
- Read and write access to the hosts database.
#1 |
---|
TCPIP> CREATE HOST |
Creates a DIGITAL TCP/IP Services for OpenVMS hosts database with one entry for LOCALHOST.
Creates an empty networks database file.If the logical name TCPIP$NETWORK is defined, CREATE NETWORK uses the definition to create the directory and file name for the networks database. If TCPIP$NETWORK is not defined, the database is created as SYS$COMMON:[SYSEXE]TCPIP$NETWORK.DAT.
Related commands: SET NETWORK, SHOW NETWORK, CONVERT/VMS NETWORK
CREATE NETWORK
Requires write access to the directory with the networks database.Do not execute this command unless you intend to reconfigure your entire cluster.
#1 |
---|
TCPIP> CREATE NETWORK |
Creates an empty networks database.
Creates an empty proxy database file.If the logical name TCPIP$PROXY is defined, CREATE PROXY uses the definition to create the directory and file name for the proxy database. If TCPIP$PROXY is not defined, the database is created as SYS$COMMON:[SYSEXE]TCPIP$PROXY.DAT.
Related commands: ADD PROXY, SHOW PROXY, CONVERT/VMS PROXY
CREATE PROXY
Requires write access to the directory with the proxy database.Do not execute this command unless you intend to reconfigure your entire cluster.
#1 |
---|
TCPIP> CREATE PROXY |
Creates an empty proxy database.
Creates an empty permanent routes database file.If the logical name TCPIP$ROUTE is defined, CREATE ROUTE uses the definition to create the directory and file name for the routes database. If TCPIP$ROUTE is not defined, the database is created as SYS$COMMON:[SYSEXE]TCPIP$ROUTE.DAT.
Related commands: SET ROUTE, SHOW ROUTE
CREATE ROUTE
Requires write access to the directory with the routes database.Do not execute this command unless you intend to reconfigure your entire cluster.
TCPIP> CREATE ROUTE |
Creates and empty routes database file TCPIP$ROUTE.DAT in the directory SYS$COMMON:[SYSEXE].
Makes communication controllers known to DIGITAL TCP/IP Services for OpenVMS. Use this command to configure a new controller model that you purchased after the latest release of the DIGITAL TCP/IP Services for OpenVMS product.Related commands: LIST COMMUNICATION_CONTROLLER, DELETE COMMUNICATION_CONTROLLER, and all the INTERFACE commands
DEFINE COMMUNICATION_CONTROLLER controller /INTERNET_INTERFACE=character /TYPE=options [ /DESCRIPTION=text ]
controller
Required.OpenVMS device name of the communication controller (as displayed with the DCL SHOW DEVICE command).
Specify a 2-letter name. For examples of controllers with their corresponding device names, see the LIST COMMUNICATION_CONTROLLER command.
/DESCRIPTION=text
Optional. Default: None.Any text that identifies the entry. For example, specify the device's name, such as DEFZA or DEUNA.
You can modify this value.
/INTERNET_INTERFACE=character
Required.First letter of the interface name. If you prefer a standard name, call your Compaq support representative. If a standard interface name is not important, you can use any unique alphabetic character.
/TYPE=options
Required.Controller type. You must specify one of the following: Ethernet, FDDI,
Token_Ring. Only one type at a time is valid.To change this definition, you can use the following command line:
TCPIP> DEFINE COMMUNICATION_CONTROLLER controller - _TCPIP /TYPE=([NO]old_type,new_type)The old_type,new_type options are:
- CLUSTER
- The interface can join an internet cluster. To do this, also issue SET INTERFACE /CLUSTER.
- You can specify CLUSTER with a controller type, for example, /TYPE=(ETHERNET,CLUSTER).
- [NO]ETHERNET
- [NO]FDDI
- [NO]TOKEN_RING
#1 |
---|
$ TCPIP DEFINE COMMUNICATION_CONTROLLER XE - _$ /INTERNET_INTERFACE=D /TYPE=(ETHERNET,CLUSTER) - _$ /DESCRIPTION=DEUNA |
Defines interface D as the OpenVMS device XE.
Deletes an entry for a communication controller from the configuration file.Related commands: DEFINE COMMUNICATION_CONTROLLER, LIST COMMUNICATION_CONTROLLER
DELETE COMMUNICATION_CONTROLLER [ controller ]
[ /[NO]CONFIRM ]
[ /INTERNET_INTERFACE=character ]
Requires OPER privileges.
controller
Optional. Default: All devices.OpenVMS device name of the communication controller (as displayed with the DCL SHOW DEVICE command).
Specify a 2-letter name that you entered with the DEFINE COMMUNICATION_CONTROLLER command.
/INTERNET_INTERFACE=character
Optional. Default: All letters.Deletes the specified letter (which represents the first letter of an interface name).
/CONFIRM
/NOCONFIRM
Optional. Default: /CONFIRM if you use a wildcard.Displays a message asking you to confirm the delete request.
#1 |
---|
TCPIP> DELETE COMMUNICATION_CONTROLLER EZ |
Deletes all the entries for the Ethernet controller with device name EZ.
#2 |
---|
TCPIP> DELETE COMMUNICATION_CONTROLLER - _TCPIP /INTERNET_INTERFACE=E |
Deletes all the communication controller entries with an internet interface name that begins with the letter E from the table used to match OpenVMS device names with internet interface names.
Previous | Next | Contents | Index |