|
Configuration for SNA (UNIX/Linux) |
|
|
The setup and configuration of the inter system communication services over the SNA protocol, requires the following steps:
SNA server product setup First of all, the SNA server product (DataConnection SNAP-IX, IBM Comm. Serv. or HP SNAPlus2), must be installed on the system and correctly configured. Some of these products have the possibility to select the components to install: It is mandatory to install the core and APPC API components. Please refer to your SNA server product documentation. XFRAME setup When the SNA server products is installed, XFRAME APPC components must be built with the product libraries. To do that, simply (re)install XFRAME, and specify the SNA product type during configuration phase. SNA node configuration SNA node must be configured and an active link to the partner system must be created. Of course, this link requires a correspondent definition in the VTAM of the partner system. Please refer to your SNA server product documentation to configure the node and the link, and refer to the corresponding documentation to define the node in the partner system (VTAM documentation for mainframes and SNA server product for other UNIX systems). Furthermore at least one LU to be used by the XCICS region must be defined. This LU should normally have the same name as the XCICS application name. XCICS identifies the LU by its alias therefore remember to correctly defined the alias too. The easiest way to configure the LU is to provide the same 8 byte identifer to the LU, to its alias and to the XCICS application name. Finally an alias identifying the remote partner must be added. XCICS configuration First of all, the LU alias for incoming and outgoing connections must be declared in xcics.conf. By default XCICS uses an LU alias equal to its name. Alternatively it is possible to override this behaviour specifing the default_inbound_lu and default_outbound_lu in xcics.conf. Then one or more connection entries (CCT) must defined using the define connection directive. A connection identifies the partner system, specifying the SYSID used in the application and the remote LU alias. Finally, sessions to serve incoming requestes must be defined, using the define sessions directive. Example configuration Following some example configuration describing a connection between an XCICS TS region and an IBM CICS TS on SNA over ethernet. Unix side in the UNIX/Linux SNA server product configuration file: [define_node] in xcics.conf: set application_name=XCICS001; # (1) the same as local LU alias Mainframe side LU definition in the partner VTAM for UNIX system XCASNET VBUILD TYPE=SWNET CICS CEDA definitions: DEFINE CONNECTION(XCX1) GROUP(XCICS001)
|