Print this Window
AXEL - Frequently Asked Questions
Using with AS/400

Expand / Collapse

Overview
O1 - Does my AX3000 Support AS400/5250 Connections?
O2 - How to Change the Keyboard Type (PC or AS/400)?
O3 - Using the 5250 Keyboard or the PC/AT Keyboard
O4 - Giving a Name to a Screen Session
O5 - Using <Memor> and <Exec> with a PC Keyboard?
O6 - How to Use the Rule Function?

Printer Sessions
P1 - How to Handle a Thin Client's Printer?
P2 - Setting-Up a Printer with the PRT5250 Protocol
P3 - Understanding the "Manufacturer Type and Model" Option
P4 - Connecting Specific Printers (industrial, barcode, etc.)
P5 - How to Create a Printer Driver?
P6 - Setting-Up a Printer with the LPD Protocol

Note: If the printer is accessed by a single AS/400, we recommend using the PRT5250 protocol. 

An LPD printer is set both at the AX3000 level and at the OS/400 level.

AX3000 Level

An LPD printer can be configured with 3 parameters:
   - an IP address (the AX3000’s IP address),
   - an identifier for the auxiliary port (character string),
   - an optional filter to pre-process the file before printing (but generally this processing is done at the operating system level).

Enter the AX3000 Set-Up and select [Configuration]-[Aux. Ports]-[xxx]. In the displayed box, set the "Associated Service" to "LPD", then select "Net Service Parameters" and press <Space>.

The displayed box allows to customize the LPD protocol. The following parameters must be set:

  • Printer Port Name
    It's the OS/400 RMTPRTQ name (Uppercase letters are required)
  • NL=CR+NL Filter
    Always No
  • Auto Form Feed
    Always No

OS/400 Level

Note: only an OUTQUEUE can be created but we advise to create first a Printer DEVICE. (The device itself will not be used, only its OUTQUEUE will be used).

Printer Device Creation (the DEVD parameter is the printer, other parameter value are always the same). 
===> CRTDEVPRT DEVD(AXPRT01) DEVCLS(*VRT) TYPE(3812) MODEL(1) FONT(11)

Outqueue Modification (to associate it with the AX3000 auxiliary port):
===> CHGOUTQ OUTQ(AXPRT01) RMTSYS(*INTNETADR) RMTPRTQ('PARALLEL') CNNTYPE(*IP) DESTTYPE(*OTHER) TRANSFORM(*YES) MFRTYPMDL(*NECP2) INTNETADR('192.168.1.240')

Where:

  • AXPRT01 :
    Outqueue name (same as printer device name)
  • PARALLEL :
    It's the AX3000 "Printer Port Name". 
    Uppercase letters are required.
  • *NECP2 :
    Manufacturer type and model (here a NEC type P2)
    Attention: this name must be an existing entry within the OS/400 driver list.
  • 192.168.1.240 :
    AX3000 IP address.

The run the following command to start the outqueue:
===> STRRMTWTR OUTQ(AXPRT01)




Miscalleneous
M1 - Editing a TCP/IP Trace on AS/400
M2 - How to Connect a Serial Device (scanner, scales, etc....)?
M3 - IBM API Socket: Addressing Auxiliary Ports through an RPG Program
M4 - Transparent Mode: Sending ASCII Data to Session

Troubleshooting
T1 - Disconnection Problems with OS V5R1, V5R2 and V5R3
T2 - Reconnection Problems with OS V5R4
T3 - In Event of Problems with PRT5250 Printing...