|
VLINK="#008040" ALINK="#000000">
TCP/IP networking with HerculesThis page describes how to set up TCP/IP connectivity between a Hercules machine and the outside world. Since Hercules runs as a user process under the control of a driving system (usually Linux/x86 or Windows), it does not have direct access to the driving system's network adapter. This presents a problem in establishing connectivity between the network and the TCP/IP stack of an operating system running under Hercules. But thanks to a technique originally demonstrated by Willem Konynenberg, it is possible to establish a virtual point-to-point link between the TCP/IP stack running under Hercules and the TCP/IP stack of the driving system. The driving system is then used as a router to pass IP frames between the Hercules TCP/IP stack and the rest of the network, as shown in the following diagram:
The virtual CTC link is provided by the Universal TUN/TAP driver developed by Maxim Krasnyansky. This driver creates a tunnel which appears to Hercules as a character device (/dev/tun0 or /dev/net/tun) and appears to the driving system as a virtual network interface (tun0). The Hercules 3088 driver makes the tun device appear as a CTCA (Channel to Channel Adapter) to the S/390 operating system running under Hercules. Each end of the link has its own IP address which is distinct from the IP address of the driving system's real network adapter. The Universal TUN/TAP driver is currently only available for Linux, Solaris, and FreeBSD. However, similar functionality may be obtained on Windows 98/Me/2000/XP systems (but not Windows NT) via the CTCI-W32 protocol. Installing the TUN/TAP Driver (Linux 2.2)The Linux 2.2 kernel does not include the TUN/TAP driver, so you need to install it using the following procedure:
Installing the TUN/TAP Driver (Linux 2.4)The TUN/TAP driver is delivered as part of the Linux 2.4 kernel, and if you are using one of the popular Linux distributions you will find that the TUN/TAP driver is already installed. If not, then you must rebuild the kernel with the configuration option CONFIG_TUN=m specified. Note that the version of TUN/TAP in Linux 2.4 differs from the earlier version in that it allows access to all TUN interfaces (tun0, tun1, etc) through a single character device /dev/net/tun, instead of defining multiple devices /dev/tun0, /dev/tun1, etc. The procedure for completing the TUN/TAP setup for Linux 2.4 is shown below.
Configuring the TUN interfaceThe tun0 network interface in the driving system must be configured as a point-to-point link. The design of the TUN/TAP driver does not allow the interface to be statically configured like a regular network interface the tun0 interface does not exist until Hercules opens the TUN device. For this reason, Hercules provides a special program called hercifc to configure the tun0 network interface. This program is launched automatically by Hercules 3088 CTC device initialization.
To allow the hercifc program to issue the necessary configuration
commands, you must ensure that hercifc is installed with setuid root
file permissions. When Hercules is built with the
configuration option --enable-setuid-hercifc, make install
will install hercifc in /usr/local/bin with setuid root permissions.
Note: Unrestricted access to the hercifc program could present a
potential security exposure, so you will want to ensure that hercifc
can be executed only by the group which is authorized to run Hercules.
The following commands alter the file permissions to ensure that only
users in a trusted group can execute hercifc:
Enabling IP forwardingYou must ensure that your kernel is enabled for IP forwarding. Popular Linux distributions usually have a configuration option to enable IP forwarding or routing:
Defining a route to Hercules TCP/IP
Client systems which connect to TCP/IP applications running in
the Hercules machine need to have a routing entry which defines
the driving system as the gateway into the Hercules system. An
example route definition for a Unix client system is shown below:
For a Windows client, go to Settings -> Control Panel -> Network ->
Configuration -> TCP/IP -> Properties -> Gateway
and add the driving system's IP address to the list of gateways.
Alternatively, enter a route command such as:
If you want to avoid having to update client systems, another way is to add an appropriate routing entry to your default gateway router. Defining the link in HerculesYou must define a pair of CTC devices in the Hercules configuration file. The devices must be defined using an adjacent pair of even/odd device numbers such as 0E20 and 0E21, as in this example:
For Linux 2.2:
For Linux 2.4:
Two IP addresses must be assigned, one for the driving system's end of the link, and one for the Hercules end of the link. For this example I have chosen 192.168.200.1 for the Hercules IP address, and 192.168.200.2 for the driving system's IP address. Since this is a point-to-point link, any addresses may be chosen, provided that the network part of the address (192.168.200 in this example) does not conflict with any existing network addresses used in your IP network. In the above example, 1500 is the maximum transmission unit (MTU) size, and 255.255.255.0 is the netmask. Configuring the Hercules TCP/IP stackTCP/IP for VSEThis is an example of the configuration statements which you need to include in the IPINIT00.L member of PRD1.BASE: SET IPADDR = 192.168.200.001 SET MASK = 255.255.255.000 DEFINE LINK,ID=CTCE20,TYPE=CTCA,DEV=(E20,E21),MTU=1500 DEFINE ROUTE,ID=LINUX,LINKID=CTCE20,IPADDR=0.0.0.0 The CTC devices should be defined to VSE using the following statements in the $IPLxxx.PROC procedure in IJSYSRS.SYSLIB: ADD E20:E21,CTCA,EML TCP/IP for OS/390 or VM/ESAThis is an example of the configuration statements which you need to include in the TCPIP.PROFILE.TCPIP dataset (OS/390), or in the PROFILE TCPIP file on TCPMAINT 198 (VM): DEVICE CTCDEV1 CTC E20 LINK CTCLINK1 CTC 0 CTCDEV1 HOME 192.168.200.1 CTCLINK1 GATEWAY ; Network First Hop Link Name Size Subnet Mask Subnet Value 192.168.200.2 = CTCLINK1 1500 HOST DEFAULTNET 192.168.200.2 CTCLINK1 1500 0 START CTCDEV1
For OS/390, the CTC devices need to be defined as device type 3088 in
the IODF. Use the For VM, the CTC devices must be attached to the TCPIP virtual machine. Because TCP/IP uses long running channel programs, the missing interrupt handler should be disabled for the CTC devices. For OS/390, add this statement in PARMLIB member IECIOS00: MIH TIME=00:00,DEV=(E20-E21) For VM, add this command to the PROFILE EXEC file of OPERATOR 191: 'CP SET MITIME 0E20-0E21 OFF' Linux for S/390This is an example of the network definitions which you need in a Linux/390 system running under Hercules: ifconfig ctc0 192.168.200.1 pointopoint 192.168.200.2 mtu 1500 route add defaultroute gw 192.168.200.2 Linux/390 will autodetect the CTC devices E20 and E21 at startup and will assign the interface name ctc0. What to do if TUN/TAP doesn't workCheck the following (thanks to Richard Higson for this checklist):
Last updated 15 January 2002 by Roger Bowler |