SDL-Hercules-390 / hyperion

The SDL Hercules 4.x Hyperion version of the System/370, ESA/390, and z/Architecture Emulator
Other
244 stars 92 forks source link

QETH in Level 3 mode crashes z/VM #372

Closed moshix closed 3 years ago

moshix commented 3 years ago

I have the following Hyperion build:

12:06:59 HHC01417I ** The SoftDevLabs version of Hercules **
12:06:59 HHC01415I Build date: Feb 26 2021 at 11:56:09
12:06:59 HHC01417I Built with: GCC 5.4.0 20160609
12:06:59 HHC01417I Build type: GNU/Linux x86_64 host architecture build

I have a the following device in the Hyperion config file (as per qeth.c instructions):

0400.3   QETH IPADDR 192.168.1.60

Upon starting TCPIP, z/VM will crash every time with the error below:

HHC00911E 0:0400 QETH: Error writing to device tun0: 5 Input/output error

See log below:

07:04:25 XAUTOLOG TCPIP
07:04:25 Command accepted
07:04:25 AUTO LOGON  ***       TCPIP    USERS = 15    BY OPERATOR
07:04:25 HCPCLS6056I XAUTOLOG information for TCPIP: The IPL command is verified by the IPL command processor.
07:04:25 OSA 0400 ATTACHED TO TCPIP 0001 BY TCPIP
07:04:25 OSA 0401 ATTACHED TO TCPIP 0002 BY TCPIP
07:04:25 OSA 0402 ATTACHED TO TCPIP 0003 BY TCPIP
HHC03800I 0:0402 QETH: Adapter mode set to Layer 3
HHC03805I 0:0402 QETH: tun0: Register guest IP address 192.168.1.64
07:04:36 AUTO LOGON  ***       WEBSERV  USERS = 16    BY AUTOLOG1
07:04:36 USER DSC   LOGOFF AS  AUTOLOG1 USERS = 15
HHC00911E 0:0400 QETH: Error writing to device tun0: 5 Input/output error
HHC00007I Previous message from function 'write_packet' at qeth.c(2781)
HHC00809I Processor CP00: disabled wait state 0002000000000000 0000000000009005
07:04:44 HCPWRP963I SHUTDOWN STEP SGPST - STOP OTHER PROCESSORS
07:04:45 HCPWRP959I ZVM  SYSTEM TERMINATION IN PROGRESS ON 2021-02-26
07:04:45 HCPWRP963I SHUTDOWN STEP TXTDS - TERMINATE DATA TRACES
07:04:45 HCPWRP963I SHUTDOWN STEP SVACV - ACTIVATE TERMINATION SAVE AREAS
07:04:46 HCPWRP963I SHUTDOWN STEP CHMOF - DISABLE CHANNEL MEASUREMENT
07:04:46 HCPWRP963I SHUTDOWN STEP ISHDA - DISABLE ALL DEVICES
07:04:47 HCPWRP963I SHUTDOWN STEP DMPDK - TAKE DUMP
mcisho commented 3 years ago

Hmm... I was going to say please issue a QETH DEBUG ON ALL 0xFFF command before IPL'ing z/VM and attach the resulting log, but then I discovered that the QETH command doesn't find QETH devices anymore!

So, please add the debug parameter to your config statement, i.e. 0400.3 QETH debug IPADDR 192.168.1.60, and attach the resulting log.

mcisho commented 3 years ago

A note of what caused the QETH command to stop working.

The following lines of qeth.c were changed from

        dev->rcd = &qeth_read_configuration_data;
        dev->numsense = 32;
        memset (dev->sense, 0, sizeof(dev->sense));
        dev->numdevid = sizeof(sense_id_bytes);
        memcpy(dev->devid, sense_id_bytes, sizeof(sense_id_bytes));
        dev->devtype = dev->devid[1] << 8 | dev->devid[2];
        dev->chptype[0] = CHP_TYPE_OSD;
        dev->pmcw.flag4 |= PMCW4_Q;
        dev->fd = -1;

to


        dev->rcd         =  &qeth_read_configuration_data;
        dev->numsense    =  32;
        dev->numdevid    =  sizeof( sense_id_bytes );
        dev->devtype     =  dev->devid[1] << 8 | dev->devid[2];
        dev->chptype[0]  =  CHP_TYPE_OSD;
        dev->pmcw.flag4 |=  PMCW4_Q;
        dev->fd          =  -1;

        memset( dev->sense,        0,       sizeof( dev->sense     ));
        memcpy( dev->devid, sense_id_bytes, sizeof( sense_id_bytes ));

As a result variable dev->devid had not been initialized when its contents were used to initialize variable dev->devtype, hence dev->devtype did not contain the expected value 0x1731, hence the QETH command no longer worked.

The change to qeth.c was part of a commit titled Use set_lock_name to assign better device lock names. I don't know when it was originally committed, the major re-organization of 18 May 2020 suppressed my desire to find an actual date.

A fix will be along soon.

mcisho commented 3 years ago

Also, I forgot to ask you to please attach a copy of the console messages produced by the TCPIP virtual machine, if you are able to capture them.

Fish-Git commented 3 years ago

As a result variable dev->devid had not been initialized when its contents were used to initialize variable dev->devtype, hence dev->devtype did not contain the expected value 0x1731, hence the QETH command no longer worked.

(Oops!)  My bad.   :(

Sorry about that, Ian.  I guess I was going too fast and not looking closely enough at what I was doing. I'll try harder to not let that happen again.   :(

Fish-Git commented 3 years ago

Moshix: can you attach the entire logfile please? There are some things I'd like to look at. Thanks.

Fish-Git commented 3 years ago

For what it's worth, QETH/OSA in Level 3 mode works perfectly fine for me with z/VM.  <shrug>

(But then again I'm not using Linux either, I'm using Windows. Linux networking is weird!)

Are you sure you've defined your adapter correctly in your SYSTEM CONFIG file as well as in your USER DIRECT?

mcisho commented 3 years ago

Fish, perhaps you should pin your 'How to make a problem report' notes at the top of the issues page, so that people know what they should provide when they make a problem report?

Moshix, other things that would be useful:

Fish-Git commented 3 years ago

Fish, perhaps you should pin your 'How to make a problem report' notes at the top of the issues page, so that people know what they should provide when they make a problem report?

That sounds like a good idea!  I'll add that to my TODO list.  Thanks!

Fish-Git commented 3 years ago

I don't know when it was originally committed, the major re-organization of 18 May 2020 suppressed my desire to find an actual date.

FYI: the date of the original commit didn't change after the "re-organization". It just became the "AuthorDate".

All the "re-organization" did was was to merge in all of the TXF changes that had been accumulating in our other repository. After the TXF changes were rolled into our primary repository however, then all of the commits that had been done during that TXF development period were then simply re-applied again. The original date of each of those changes however, didn't change. Due to the way the changes were rolled in however (revert everything then re-apply (commit) everything again), they just ended up becoming the "AuthorDate", that's all (with the "CommitDate" being set to the date of the "re-organization").

They all still have their original AuthorDates however. Only their CommitDates changed:

hyperion-0> git show -s --format=fuller 8018f7796a9b9e9d0604626596738f27e40e7f93
commit 8018f7796a9b9e9d0604626596738f27e40e7f93
Author:     Fish (David B. Trout) 
AuthorDate: Wed Feb 19 02:19:09 2020 -0800
Commit:     Fish (David B. Trout) 
CommitDate: Wed Feb 19 02:19:09 2020 -0800

    Use set_lock_name to assign better device lock names

hyperion-0> git show -s --format=fuller bce6a754db983f807f8abadc0df9c3a22b409539
commit bce6a754db983f807f8abadc0df9c3a22b409539
Author:     Fish (David B. Trout) 
AuthorDate: Wed Feb 19 03:48:00 2020 -0800
Commit:     Fish (David B. Trout) 
CommitDate: Sun May 17 22:06:40 2020 -0700

    Use set_lock_name to assign better device lock names

    [skip travis]

hyperion-0>
Fish-Git commented 3 years ago

@moshix

  1. What version of z/VM are you using?  6.3?  6.4?  7.1?

  2. Please do as Ian has requested: please issue a QETH DEBUG ON ALL 0xFFF command before IPL'ing z/VM, and then attach the complete resulting Hercules logfile. This will help Ian a lot. Thanks.

  3. Please attach your complete (entire) Hercules logfile.

    (The messages that we developers feel are important might not be the same as the messages you feel are important. That is why you should always post your entire (complete) Hercules logfile and not just a few messages that you feel are important.)

  4. Posting your entire (complete) configuration file is also important for the very same reason.

  5. Can you show us your z/VM "SYSTEM CONFIG" file as well as in your z/VM "USER DIRECT" file please? I would like to see how you are defining your adapter to z/VM.

  6. For what its worth, my own z/VM 7.1 OSA adapter is defined to Hercules (on Windows) as follows:

    0600.3  OSA  chpid F0  iface $(HOSTIP)  ipaddr $(GUESTIP)  netmask $(GUESTMASK)
    For Linux, it should probably look something like this:
    0400.3  OSA  chpid F0  iface $(TUNTAPDEV)  ipaddr $(GUESTIP)  netmask $(GUESTMASK)
    Have you tried changing your device statement to look more like the above? Does that help matters any?

  7. Do you have any type of NETDEV statement in your Hercules configuration file? If not, does adding one help matters any?

  8. Ian would also like to see:

    • the TCPIP profile
    • the DTSPARMS for the TCPIP vm
    • the TCPIP vm definition from USER DIRECTXA
    • the output from a 'q v' command issued in the TCPIP vm
    • the output of an 'ifconfig' command (or the equivlent ip commands) on the host
    • details of what the host actually is

Thanks!

moshix commented 3 years ago

Hello folks

Saw all your requests for more information. I have been very busy with stuff, and on top of that my hardware failed due to the power outages lately.

I will provide you more information about the crash in the next few days. Pls bear with me.

In the meantime, Fish, I can tell you it's 6.4 (however, it's a special 6.4, because it's the version that can install on FBA disks) .

thanks

M

Fish-Git commented 3 years ago

Fish, perhaps you should pin your 'How to make a problem report' notes at the top of the issues page, so that people know what they should provide when they make a problem report?

That sounds like a good idea!  I'll add that to my TODO list.  Thanks!

Done! Tell me what you think.

moshix commented 3 years ago

Ok, here is the line I have in the .cnf:

0400.3  QETH debug IPADDR 192.168.1.64

Here is my Hyperion build:

11:00:57 HHC00100I Thread id 00007fd4a51c7740, prio 5, name 'impl_thread' started
11:00:57 HHC00100I Thread id 00007fd4a2d7b700, prio 4, name 'logger_thread' started
11:00:57 HHC01413I Hercules version 4.4.9999.0-SDL-gdafb7e22-modified (4.4.9999.0)
11:00:57 HHC01414I (C) Copyright 1999-2020 by Roger Bowler, Jan Jaeger, and others
11:00:57 HHC01417I ** The SoftDevLabs version of Hercules **
11:00:57 HHC01415I Build date: Mar  1 2021 at 10:58:03
11:00:57 HHC01417I Built with: GCC 7.5.0
11:00:57 HHC01417I Build type: GNU/Linux x86_64 host architecture build
11:00:57 HHC01417I Modes: S/370 ESA/390 z/Arch
11:00:57 HHC01417I Max CPU Engines: 128

Here is my query virtual from TCPIP:

q virt
DMSACP723I D (198) R/O
DMSACP723I E (591) R/O
DMSACP723I F (592) R/O
Ready; T=0.05/0.07 12:02:48
STORAGE = 128M
XSTORE = ---
CPU 00  ID  FF01000129650000 (BASE) CP   CPUAFF ON
No AP Crypto Domains are available
CONS 0009 ON GRAF  0700   TERM STOP
     0009 CL T NOCONT NOHOLD COPY 001    READY FORM STANDARD
     0009 TO TCPIP    PRT DIST TCPIP     FLASHC 000 DEST OFF
     0009 FLASH       CHAR       MDFY       0 FCB       LPP OFF
     0009 3215   NOEOF CLOSED    NOKEEP NOMSG NONAME
     0009 SUBCHANNEL = 000F
RDR  000C CL * NOCONT NOHOLD   EOF       READY
     000C 2540         CLOSED    NOKEEP NORESCAN  SUBCHANNEL = 0009
PUN  000D CL A NOCONT NOHOLD COPY 001    READY FORM STANDARD
     000D TO TCPIP    PUN DIST TCPIP     DEST OFF
     000D FLASH      000 CHAR       MDFY       0 FCB
     000D 2540   NOEOF CLOSED    NOKEEP NOMSG NONAME
     000D SUBCHANNEL = 000A
PRT  000E CL A NOCONT NOHOLD COPY 001    READY FORM STANDARD
     000E TO TCPIP    PRT DIST TCPIP     FLASHC 000 DEST OFF
     000E FLASH       CHAR       MDFY       0 FCB       LPP OFF
     000E 1403   NOEOF CLOSED    NOKEEP NOMSG NONAME
     000E SUBCHANNEL = 000B
DASD 0190 9336 M01RES R/O     308160 BLK ON DASD  FF02 SUBCHANNEL = 0010
DASD 0191 9336 M01RES R/W       7200 BLK ON DASD  FF02 SUBCHANNEL = 0005
DASD 0198 9336 M01RES R/O      12960 BLK ON DASD  FF02 SUBCHANNEL = 0004
DASD 019D 9336 M01RES R/O     420480 BLK ON DASD  FF02 SUBCHANNEL = 0011
DASD 019E 9336 M01RES R/O     720000 BLK ON DASD  FF02 SUBCHANNEL = 0012
DASD 0401 9336 M01RES R/O     420480 BLK ON DASD  FF02 SUBCHANNEL = 0014
DASD 0402 9336 M01RES R/O     420480 BLK ON DASD  FF02 SUBCHANNEL = 0013
DASD 0491 9336 640RL1 R/O     115200 BLK ON DASD  FF00 SUBCHANNEL = 0000
DASD 0492 9336 640RL1 R/O     172800 BLK ON DASD  FF00 SUBCHANNEL = 0001
DASD 0591 9336 M01RES R/O     230400 BLK ON DASD  FF02 SUBCHANNEL = 0002
DASD 0592 9336 M01W01 R/O     345600 BLK ON DASD  FF04 SUBCHANNEL = 0003
OSA  2000 ON NIC  2000  UNIT 000 SUBCHANNEL = 0006
     2000 DEVTYPE OSA         VIRTUAL CHPID 00 OSD
     2000 MAC 02-00-00-00-00-02 CURRENT
     2000 QDIO-ELIGIBLE       QIOASSIST NOT AVAILABLE
OSA  2001 ON NIC  2000  UNIT 001 SUBCHANNEL = 0007
     2001 DEVTYPE OSA         VIRTUAL CHPID 00 OSD
     2001 MAC 02-00-00-00-00-02 CURRENT
     2001 QDIO-ELIGIBLE       QIOASSIST NOT AVAILABLE
OSA  2002 ON NIC  2000  UNIT 002 SUBCHANNEL = 0008
     2002 DEVTYPE OSA         VIRTUAL CHPID 00 OSD
     2002 MAC 02-00-00-00-00-02 CURRENT
     2002 QDIO-ELIGIBLE       QIOASSIST NOT AVAILABLE
Ready; T=0.01/0.01 12:02:56
DTCRUN1022I Console log will be sent to default owner ID: TCPMAINT
DTCRUN1046I Using TCP/IP data file: TCPIP DATA F1
DTCRUN1046I Using 'server' definition (TCPIP) from file: SYSTEM DTCPARMS D1
DTCRUN1046I Using 'class' definition (STACK) from file: IBM DTCPARMS E1
DTCRUN1096I STORAGE = 128M
DTCRUN1038I Server is configured to support secure connections
DTCRUN1034I Associated SSL server pool: SSL*
DTCRUN1042W Server SSLDCSSM status: Logged off
DTCRUN1043I Initiating XAUTOLOG of server SSLDCSSM
AUTO LOGON  ***       SSLDCSSM USERS = 15
DTCRUN1021R To cancel TCP/IP Stack startup, type any non-blank character and press ENTER. To continue startup, just press ENTER.
HCPCLS6056I XAUTOLOG information for SSLDCSSM: The IPL command is verified by the IPL command processor.

  Here is my TCPIP machine config (didn't change anything from normal z/VM install):

IDENTITY TCPIP    tcpip   128M  256M ABG
 INCLUDE TCPCMSU
 BUILD ON * USING SUBCONFIG TCPIP-1
* BUILD ON @@member2name USING SUBCONFIG TCPIP-2
* BUILD ON @@member3name USING SUBCONFIG TCPIP-3
* BUILD ON @@member4name USING SUBCONFIG TCPIP-4
 OPTION QUICKDSP SVMSTAT MAXCONN 1024 DIAG98 APPLMON
 SHARE RELATIVE 3000
 IUCV ALLOW
 IUCV ANY PRIORITY
 IUCV *CCS PRIORITY MSGLIMIT 255
 IUCV *VSWITCH MSGLIMIT 65535

SUBCONFIG TCPIP-1
 LINK TCPMAINT 491 491 RR
 LINK TCPMAINT 492 492 RR
 LINK TCPMAINT 591 591 RR
 LINK TCPMAINT 592 592 RR
 LINK TCPMAINT 198 198 RR
 MDISK 191 FB-512 17468000 0007200 M01RES MR RTCPIP   WTCPIP   MTCPIP
 NICDEF 2000 TYPE QDIO LAN SYSTEM VSW1
*SUBCONFIG TCPIP-2
* LINK TCPMAINT 491 491 RR
* LINK TCPMAINT 492 492 RR
* LINK TCPMAINT 591 591 RR
* LINK TCPMAINT 592 592 RR
* LINK TCPMAINT 198 198 RR

*SUBCONFIG TCPIP-3
* LINK TCPMAINT 491 491 RR
* LINK TCPMAINT 492 492 RR
* LINK TCPMAINT 591 591 RR
* LINK TCPMAINT 592 592 RR
* LINK TCPMAINT 198 198 RR

*SUBCONFIG TCPIP-4
* LINK TCPMAINT 491 491 RR
* LINK TCPMAINT 492 492 RR
* LINK TCPMAINT 591 591 RR
* LINK TCPMAINT 592 592 RR
* LINK TCPMAINT 592 592 RR
* LINK TCPMAINT 198 198 RR
*
************************************************************

And here is the log from hyperion with the DEBUG for qeth:

11:00:57 HHC00100I Thread id 00007fd4a51c7740, prio 5, name 'impl_thread' started
11:00:57 HHC00100I Thread id 00007fd4a2d7b700, prio 4, name 'logger_thread' started
11:00:57 HHC01413I Hercules version 4.4.9999.0-SDL-gdafb7e22-modified (4.4.9999.0)
11:00:57 HHC01414I (C) Copyright 1999-2020 by Roger Bowler, Jan Jaeger, and others
11:00:57 HHC01417I ** The SoftDevLabs version of Hercules **
11:00:57 HHC01415I Build date: Mar  1 2021 at 10:58:03
11:00:57 HHC01417I Built with: GCC 7.5.0
11:00:57 HHC01417I Build type: GNU/Linux x86_64 host architecture build
11:00:57 HHC01417I Modes: S/370 ESA/390 z/Arch
11:00:57 HHC01417I Max CPU Engines: 128
11:00:57 HHC01417I Using   shared libraries
11:00:57 HHC01417I Using   setresuid() for setting privileges
11:00:57 HHC01417I Using   POSIX threads Threading Model
11:00:57 HHC01417I Using   Error-Checking Mutex Locking Model
11:00:57 HHC01417I With    Shared Devices support
11:00:57 HHC01417I With    Dynamic loading support
11:00:57 HHC01417I With    External GUI support
11:00:57 HHC01417I With    IPV6 support
11:00:57 HHC01417I With    HTTP Server support
11:00:57 HHC01417I With    sqrtl support
11:00:57 HHC01417I With    Signal handling
11:00:57 HHC01417I With    Watchdog monitoring
11:00:57 HHC01417I With    CCKD BZIP2 support
11:00:57 HHC01417I With    HET BZIP2 support
11:00:57 HHC01417I With    ZLIB support
11:00:57 HHC01417I With    Regular Expressions support
11:00:57 HHC01417I Without Object REXX support
11:00:57 HHC01417I Without Regina REXX support
11:00:57 HHC01417I With    Automatic Operator support
11:00:57 HHC01417I Without National Language Support
11:00:57 HHC01417I With    CCKD64 Support
11:00:57 HHC01417I With    Transactional-Execution Facility support
11:00:57 HHC01417I With    "Optimized" instructions
11:00:57 HHC01417I Machine dependent assists: cmpxchg1 cmpxchg4 cmpxchg8 cmpxchg16 hatomics=C11
11:00:57 HHC01417I Running on: ns101109 (Linux-4.15.0-130-generic x86_64) MP=8
11:00:57 HHC01417I Built with crypto external package version 1.0.0.27-ga3e07b5
11:00:57 HHC01417I Built with decNumber external package version 3.68.0.80-gdb5c456
11:00:57 HHC01417I Built with SoftFloat external package version 3.5.0.83-g3da230f
11:00:57 HHC01417I Built with telnet external package version 1.0.0.45-g2d9f219-modified
11:00:57 HHC00018I Hercules is running in elevated mode
11:00:57 HHC00150I Crypto module loaded (C) Copyright 2003-2016 by Bernard van der Helm
11:00:57 HHC00151I Activated facility: Message Security Assist
11:00:57 HHC00151I Activated facility: Message Security Assist Extension 1, 2, 3 and 4
11:00:57 HHC00111I Thread CPU Time IS available (_POSIX_THREAD_CPUTIME=0)
11:00:57 HHC00100I Thread id 00007fd4a2236700, prio 7, name 'timer_thread' started
11:00:57 HHC00100I Thread id 00007fd4a2337700, prio 2, name 'Processor CP00' started
11:00:57 HHC00811I Processor CP00: architecture mode z/Arch
11:00:57 HHC01441E Config file[1] zvm64.conf: error processing statement: PUSERIAL 00063
11:00:57 HHC00007I Previous message from function 'process_config' at script.c(431)
11:00:57 HHC02204I CPUMODEL       set to 2965
11:00:57 HHC02204I CPUVERID       set to 00
11:00:57 HHC17003I MAIN     storage is 6192M (mainsize); storage is not locked
11:00:57 HHC00100I Thread id 00007fd4a253a700, prio 2, name 'Processor CP01' started
11:00:57 HHC00811I Processor CP01: architecture mode z/Arch
11:00:57 HHC00100I Thread id 00007fd4a2439700, prio 2, name 'Processor CP02' started
11:00:57 HHC00811I Processor CP02: architecture mode z/Arch
11:00:57 HHC00100I Thread id 00007fd4a092f700, prio 2, name 'Processor CP03' started
11:00:57 HHC00811I Processor CP03: architecture mode z/Arch
11:00:57 HHC00100I Thread id 00007fd483fff700, prio 2, name 'Processor CP04' started
11:00:57 HHC00811I Processor CP04: architecture mode z/Arch
11:00:57 HHC02204I NUMCPU         set to 5
11:00:57 HHC02204I MANUFACTURER   set to IBM
11:00:57 HHC02204I MODEL          set to hardware(N10) capacity(N10) perm() temp()
11:00:57 HHC02204I ARCHLVL        set to z/Arch
11:00:57 HHC02256W Command 'ALRF' is deprecated; use 'ARCHLVL ENABLE 006_ASN_LX_REUSE' instead
11:00:57 HHC00007I Previous message from function 'alrf_cmd' at hscpufun.c(1099)
11:00:57 HHC01600E Unknown command ;, enter 'help' for a list of valid commands
11:00:57 HHC00007I Previous message from function 'DoCallHercCmdLine' at cmdtab.c(430)
11:00:57 HHC01441E Config file[10] zvm64.conf: error processing statement: ALRF ENABLE
11:00:57 HHC00007I Previous message from function 'process_config' at script.c(431)
11:00:57 HHC02204I ARCHLVL        set to z/Arch
11:00:57 HHC00898I Facility( 044_PFPO ) Enabled for z/Arch
11:00:57 HHC00887W Note: Enabling/Disabling/Querying facilities via 'ARCHLVL' is deprecated.
11:00:57 HHC00007I Previous message from function 'archlvl_cmd' at archlvl.c(289)
11:00:57 HHC00888W       Please use the new FACILITY command instead.
11:00:57 HHC00007I Previous message from function 'archlvl_cmd' at archlvl.c(290)
11:00:57 HHC00898I Facility( 045_DISTINCT_OPERANDS ) Enabled for z/Arch
11:00:57 HHC00887W Note: Enabling/Disabling/Querying facilities via 'ARCHLVL' is deprecated.
11:00:57 HHC00007I Previous message from function 'archlvl_cmd' at archlvl.c(289)
11:00:57 HHC00888W       Please use the new FACILITY command instead.
11:00:57 HHC00007I Previous message from function 'archlvl_cmd' at archlvl.c(290)
11:00:57 HHC00898I Facility( 037_FP_EXTENSION ) Enabled for z/Arch
11:00:57 HHC00887W Note: Enabling/Disabling/Querying facilities via 'ARCHLVL' is deprecated.
11:00:57 HHC00007I Previous message from function 'archlvl_cmd' at archlvl.c(289)
11:00:57 HHC00888W       Please use the new FACILITY command instead.
11:00:57 HHC00007I Previous message from function 'archlvl_cmd' at archlvl.c(290)
11:00:57 HHC02204I ECPSVM         set to disabled
11:00:57 HHC02204I LOADPARM       set to 0020
11:00:57 HHC02204I LPARNAME       set to LILITH
11:00:57 HHC02256W Command 'PANTITLE' is deprecated; use PANOPT TITLE=xxx instead
11:00:57 HHC00007I Previous message from function 'pantitle_cmd' at hsccmd.c(4199)
11:00:57 HHC02204I PANTITLE       set to z/VM 6.4
11:00:57 HHC02204I DIAG8CMD       set to ENABLE  NOECHO
11:00:57 HHC02256W Command 'PANRATE' is deprecated; use PANOPT RATE=xxx instead
11:00:57 HHC00007I Previous message from function 'panrate_cmd' at hsccmd.c(4131)
11:00:57 HHC02204I PANRATE        set to 500
11:00:57 HHC00100I Thread id 00007fd4834e8700, prio 4, name 'console_connect' started
11:00:57 HHC00507I 0:FF00 FBA file 640RL1.fba: origin 0, blks 20971520
11:00:57 HHC00507I 0:FF01 FBA file M01P01.fba: origin 0, blks 20971520
11:00:57 HHC01024I Waiting for console connections on port 5270
11:00:57 HHC00507I 0:FF02 FBA file M01RES.fba: origin 0, blks 20971520
11:00:57 HHC00507I 0:FF03 FBA file M01S01.fba: origin 0, blks 20971520
11:00:57 HHC00507I 0:FF04 FBA file M01W01.fba: origin 0, blks 20971520
11:00:57 HHC00507I 0:FF05 FBA file VMCOM1.fba: origin 0, blks 20971520
11:00:57 HHC00507I 0:FF06 FBA file USER00.fba: origin 0, blks 20971520
11:00:57 HHC00507I 0:FF07 FBA file SELXM3.fba: origin 0, blks 20971520
11:01:02 HHC01603I ipl ff02
11:01:02 HHC00811I Processor CP04: architecture mode ESA/390
11:01:02 HHC00811I Processor CP00: architecture mode ESA/390
11:01:02 HHC00811I Processor CP01: architecture mode ESA/390
11:01:02 HHC00811I Processor CP02: architecture mode ESA/390
11:01:02 HHC00811I Processor CP03: architecture mode ESA/390
11:01:02 HHC03991D 0:0400 QETH: qeth_halt_or_clear: noop!
11:01:02 HHC03991D 0:0401 QETH: qeth_halt_or_clear: noop!
11:01:02 HHC03991D 0:0402 QETH: qeth_halt_or_clear: noop!
11:01:02 HHC00814I Processor CP00: SIGP Set architecture mode            (12) CP00, PARM 00000001: CC 0
11:01:02 HHC00811I Processor CP00: architecture mode z/Arch
11:01:02 HHC00814I Processor CP00: SIGP Set architecture mode            (12) CP00, PARM 0000000000000000: CC 0
11:01:02 HHC00811I Processor CP00: architecture mode ESA/390
11:01:02 HHC00814I Processor CP00: SIGP Set architecture mode            (12) CP00, PARM 00000001: CC 0
11:01:02 HHC00811I Processor CP00: architecture mode z/Arch
11:01:02 HHC00814I Processor CP00: SIGP Set architecture mode            (12) CP00, PARM 0000000000000000: CC 0
11:01:02 HHC00811I Processor CP00: architecture mode ESA/390
11:01:02 HHC00814I Processor CP00: SIGP Set architecture mode            (12) CP00, PARM 00000001: CC 0
11:01:02 HHC00811I Processor CP00: architecture mode z/Arch
11:01:06 HHC03995D 0:0400 QETH: SID:
11:01:06 FF CU=1731-01 DEV=1732-01 00
11:01:06 CIW: 40FA0080  typ:RCD op:FA len:128
11:01:06 CIW: 41810004  typ:SII op:81 len:4
11:01:06 CIW: 42820040  typ:RNI op:82 len:64
11:01:06 CIW: 431B1000  typ:3   op:1B len:4096
11:01:06 CIW: 441F0000  typ:4   op:1F len:0
11:01:06 HHC03995D 0:0400 QETH: RCD:
11:01:06 NED: typ:DEVICE cls:COMM lvl:RELATED sn:NODE tag:0400
11:01:06      SDC: type/model:001732-001 mfg:HRC plant:ZZ seq/serial:000000000001
11:01:06 NED: typ:CTLUNIT lvl:RELATED sn:NODE tag:0400
11:01:06      SDC: type/model:001730-001 mfg:HRC plant:ZZ seq/serial:000000000002
11:01:06 NED:*typ:UNSPEC lvl:RELATED sn:NODE tag:0400
11:01:06      SDC: type/model:001730-002 mfg:HRC plant:ZZ seq/serial:000000000003
11:01:06 NEQ: typ:GENEQ IID:0400 DDTO:0
11:01:06      80000400 00000000
11:01:06      00000000 00000000
11:01:06      00000000 00000000
11:01:06      00000000 00000000
11:01:06 HHC03995D 0:0401 QETH: SID:
11:01:06 FF CU=1731-01 DEV=1732-01 00
11:01:06 CIW: 40FA0080  typ:RCD op:FA len:128
11:01:06 CIW: 41810004  typ:SII op:81 len:4
11:01:06 CIW: 42820040  typ:RNI op:82 len:64
11:01:06 CIW: 431B1000  typ:3   op:1B len:4096
11:01:06 CIW: 441F0000  typ:4   op:1F len:0
11:01:06 HHC03995D 0:0401 QETH: RCD:
11:01:06 NED: typ:DEVICE cls:COMM lvl:RELATED sn:NODE tag:0401
11:01:06      SDC: type/model:001732-001 mfg:HRC plant:ZZ seq/serial:000000000001
11:01:06 NED: typ:CTLUNIT lvl:RELATED sn:NODE tag:0400
11:01:06      SDC: type/model:001730-001 mfg:HRC plant:ZZ seq/serial:000000000002
11:01:06 NED:*typ:UNSPEC lvl:RELATED sn:NODE tag:0400
11:01:06      SDC: type/model:001730-002 mfg:HRC plant:ZZ seq/serial:000000000003
11:01:06 NEQ: typ:GENEQ IID:0400 DDTO:0
11:01:06      80000400 00000000
11:01:06      00000000 00000000
11:01:06      00000000 00000000
11:01:06      00000000 00000000
11:01:06 HHC03995D 0:0402 QETH: SID:
11:01:06 FF CU=1731-01 DEV=1732-01 00
11:01:06 CIW: 40FA0080  typ:RCD op:FA len:128
11:01:06 CIW: 41810004  typ:SII op:81 len:4
11:01:06 CIW: 42820040  typ:RNI op:82 len:64
11:01:06 CIW: 431B1000  typ:3   op:1B len:4096
11:01:06 CIW: 441F0000  typ:4   op:1F len:0
11:01:06 HHC03995D 0:0402 QETH: RCD:
11:01:06 NED: typ:DEVICE cls:COMM lvl:RELATED sn:NODE tag:0402
11:01:06      SDC: type/model:001732-001 mfg:HRC plant:ZZ seq/serial:000000000001
11:01:06 NED: typ:CTLUNIT lvl:RELATED sn:NODE tag:0400
11:01:06      SDC: type/model:001730-001 mfg:HRC plant:ZZ seq/serial:000000000002
11:01:06 NED:*typ:UNSPEC lvl:RELATED sn:NODE tag:0400
11:01:06      SDC: type/model:001730-002 mfg:HRC plant:ZZ seq/serial:000000000003
11:01:06 NEQ: typ:GENEQ IID:0400 DDTO:0
11:01:06      80000400 00000000
11:01:06      00000000 00000000
11:01:06      00000000 00000000
11:01:06      00000000 00000000
11:01:06 12:01:06 z/VM  V6 R4.0  SERVICE LEVEL 1701 (64-BIT)
11:01:06 12:01:06 SYSTEM NUCLEUS CREATED ON 2017-04-24 AT 16:30:42, LOADED FROM M01RES
11:01:06 12:01:06  
11:01:06 12:01:06 ****************************************************************
11:01:06 12:01:06 * LICENSED MATERIALS - PROPERTY OF IBM*                        *
11:01:06 12:01:06 *                                                              *
11:01:06 12:01:06 * 5741-A07 (C) COPYRIGHT IBM CORP. 1983, 2016. ALL RIGHTS      *
11:01:06 12:01:06 * RESERVED. US GOVERNMENT USERS RESTRICTED RIGHTS - USE,       *
11:01:06 12:01:06 * DUPLICATION OR DISCLOSURE RESTRICTED BY GSA ADP SCHEDULE     *
11:01:06 12:01:06 * CONTRACT WITH IBM CORP.                                      *
11:01:06 12:01:06 *                                                              *
11:01:06 12:01:06 * * TRADEMARK OF INTERNATIONAL BUSINESS MACHINES.              *
11:01:06 12:01:06 ****************************************************************
11:01:06 12:01:06  
11:01:06 12:01:06 HCPZCO6718I Using parm disk 4 on volume M01RES (device FF02). 
11:01:06 12:01:06 HCPZCO6718I Parm disk resides on blocks 575600 through 748392.
11:01:06 12:01:06 Start ((Warm Force COLD CLEAN) (DRain) (DIsable)  (NODIRect) 
11:01:06 12:01:06       (NOAUTOlog)) or (SHUTDOWN)
11:01:06 HCPSED6013A A CP read is pending.  
11:01:58 HHC01603I /force drain
11:01:58 HHC01600E Unknown command /force, enter 'help' for a list of valid commands
11:01:58 HHC00007I Previous message from function 'DoCallHercCmdLine' at cmdtab.c(430)
11:02:03 HHC00160I SCP command: force drain
11:02:03 12:02:03 FORCE DRAIN
11:02:03 12:02:03 NOW 12:02:03 EST MONDAY 2021-03-01
11:02:03 12:02:03 Change TOD clock (Yes No)
11:02:03 HCPSED6013A A CP read is pending.  
11:02:05 HHC00160I SCP command: no
11:02:05 12:02:05 NO
11:02:05 12:02:05 The directory on volume M01RES at address FF02 has been brought online.
11:02:10 12:02:10 HCPWRS2513I  
11:02:10 12:02:10 HCPWRS2513I Spool files available      228
11:02:10 12:02:10 HCPWRS2512I Spooling initialization is complete.
11:02:10 HHC00811I Processor CP04: architecture mode z/Arch
11:02:10 HHC00814I Processor CP00: SIGP Initial CPU reset                (0B) CP04, PARM 0000000000000000: CC 0
11:02:10 HHC00814I Processor CP00: SIGP Set prefix                       (0D) CP04, PARM 0000000000B06000: CC 0
11:02:10 HHC00811I Processor CP03: architecture mode z/Arch
11:02:10 HHC00814I Processor CP00: SIGP Initial CPU reset                (0B) CP03, PARM 0000000000000000: CC 0
11:02:10 HHC00814I Processor CP00: SIGP Set prefix                       (0D) CP03, PARM 0000000000B04000: CC 0
11:02:10 HHC00811I Processor CP02: architecture mode z/Arch
11:02:10 HHC00814I Processor CP00: SIGP Initial CPU reset                (0B) CP02, PARM 0000000000000000: CC 0
11:02:10 HHC00814I Processor CP00: SIGP Set prefix                       (0D) CP02, PARM 0000000000B02000: CC 0
11:02:10 HHC00811I Processor CP01: architecture mode z/Arch
11:02:10 HHC00814I Processor CP00: SIGP Initial CPU reset                (0B) CP01, PARM 0000000000000000: CC 0
11:02:10 HHC00814I Processor CP00: SIGP Set prefix                       (0D) CP01, PARM 0000000000B00000: CC 0
11:02:10 HHC00814I Processor CP00: SIGP Initial CPU reset                (0B) CP01, PARM 000000000010C658: CC 0
11:02:10 HHC00814I Processor CP00: SIGP Set prefix                       (0D) CP01, PARM 0000000000B00000: CC 0
11:02:10 HHC00814I Processor CP00: SIGP Initial CPU reset                (0B) CP02, PARM 000000000010C658: CC 0
11:02:10 HHC00814I Processor CP00: SIGP Set prefix                       (0D) CP02, PARM 0000000000B02000: CC 0
11:02:10 HHC00814I Processor CP00: SIGP Initial CPU reset                (0B) CP03, PARM 000000000010C658: CC 0
11:02:10 HHC00814I Processor CP00: SIGP Set prefix                       (0D) CP03, PARM 0000000000B04000: CC 0
11:02:10 HHC00814I Processor CP00: SIGP Initial CPU reset                (0B) CP04, PARM 000000000010C658: CC 0
11:02:10 HHC00814I Processor CP00: SIGP Set prefix                       (0D) CP04, PARM 0000000000B06000: CC 0
11:02:10 12:02:10 DASD FF03 dump unit CP IPL pages 30705
11:02:10 HHC00004I Control program identification: type VM, name SEVMM1, sysplex , level 4006170100000000
11:02:10 HHC00130W PGMPRDOS LICENSED specified and a licenced program product operating system is running
11:02:10 HHC00007I Previous message from function 'losc_check' at losc.c(49)
11:02:10 12:02:10 HCPAAU2700I System gateway SEVMM1 identified.
11:02:10 12:02:10 z/VM Version 6 Release 4.0, Service Level 1701 (64-bit), 
11:02:10 12:02:10 built on IBM Virtualization Technology
11:02:10 12:02:10 There is no logmsg data
11:02:10 12:02:10 FILES:   NO RDR,   NO PRT,   NO PUN
11:02:10 12:02:10 LOGON AT 12:02:10 EST MONDAY 03/01/21
11:02:10 12:02:10 SYSC       LOGON  AS  OPERATOR USERS = 1
11:02:10 12:02:10 HCPSZP8702E Device FF00 is defined as a real device.
11:02:10 12:02:10 HCPSZP8702E Device FF01 is defined as a real device.
11:02:10 12:02:10 HCPSZP8702E Device FF02 is defined as a real device.
11:02:10 12:02:10 HCPSZP8702E Device FF03 is defined as a real device.
11:02:10 12:02:10 HCPSZP8702E Device FF04 is defined as a real device.
11:02:10 12:02:10 HCPSZP8702E Device FF05 is defined as a real device.
11:02:10 12:02:10 HCPSZP8702E Device FF06 is defined as a real device.
11:02:10 12:02:10 HCPSZP8702E Device FF07 is defined as a real device.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF8 LUN 0011000000000000 was deleted from EDEV FF11 because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF9 LUN 0011000000000000 was deleted from EDEV FF11 because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B218CF9 LUN 0011000000000000 was deleted from EDEV FF11 because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B228CF8 LUN 0011000000000000 was deleted from EDEV FF11 because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF8 LUN 0011000000000000 was deleted from EDEV FF11 because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF9 LUN 0011000000000000 was deleted from EDEV FF11 because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPIIO8700I Emulated Device FF11 cannot be varied online because 
11:02:10 12:02:10 HCPIIO8700I there are no valid paths defined to the device.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF8 LUN 0010000000000000 was deleted from EDEV FF10 because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF9 LUN 0010000000000000 was deleted from EDEV FF10 because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B218CF9 LUN 0010000000000000 was deleted from EDEV FF10 because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B228CF8 LUN 0010000000000000 was deleted from EDEV FF10 because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF8 LUN 0010000000000000 was deleted from EDEV FF10 because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF9 LUN 0010000000000000 was deleted from EDEV FF10 because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPIIO8700I Emulated Device FF10 cannot be varied online because 
11:02:10 12:02:10 HCPIIO8700I there are no valid paths defined to the device.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF8 LUN 000F000000000000 was deleted from EDEV FF0F because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF9 LUN 000F000000000000 was deleted from EDEV FF0F because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B218CF9 LUN 000F000000000000 was deleted from EDEV FF0F because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B228CF8 LUN 000F000000000000 was deleted from EDEV FF0F because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF8 LUN 000F000000000000 was deleted from EDEV FF0F because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF9 LUN 000F000000000000 was deleted from EDEV FF0F because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPIIO8700I Emulated Device FF0F cannot be varied online because 
11:02:10 12:02:10 HCPIIO8700I there are no valid paths defined to the device.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF8 LUN 000E000000000000 was deleted from EDEV FF0E because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF9 LUN 000E000000000000 was deleted from EDEV FF0E because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B218CF9 LUN 000E000000000000 was deleted from EDEV FF0E because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B228CF8 LUN 000E000000000000 was deleted from EDEV FF0E because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF8 LUN 000E000000000000 was deleted from EDEV FF0E because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF9 LUN 000E000000000000 was deleted from EDEV FF0E because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPIIO8700I Emulated Device FF0E cannot be varied online because 
11:02:10 12:02:10 HCPIIO8700I there are no valid paths defined to the device.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF8 LUN 000D000000000000 was deleted from EDEV FF0D because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF9 LUN 000D000000000000 was deleted from EDEV FF0D because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B218CF9 LUN 000D000000000000 was deleted from EDEV FF0D because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B228CF8 LUN 000D000000000000 was deleted from EDEV FF0D because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF8 LUN 000D000000000000 was deleted from EDEV FF0D because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF9 LUN 000D000000000000 was deleted from EDEV FF0D because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPIIO8700I Emulated Device FF0D cannot be varied online because 
11:02:10 12:02:10 HCPIIO8700I there are no valid paths defined to the device.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF8 LUN 000C000000000000 was deleted from EDEV FF0C because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF9 LUN 000C000000000000 was deleted from EDEV FF0C because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B218CF9 LUN 000C000000000000 was deleted from EDEV FF0C because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B228CF8 LUN 000C000000000000 was deleted from EDEV FF0C because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF8 LUN 000C000000000000 was deleted from EDEV FF0C because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF9 LUN 000C000000000000 was deleted from EDEV FF0C because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPIIO8700I Emulated Device FF0C cannot be varied online because 
11:02:10 12:02:10 HCPIIO8700I there are no valid paths defined to the device.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF8 LUN 000B000000000000 was deleted from EDEV FF0B because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF9 LUN 000B000000000000 was deleted from EDEV FF0B because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B218CF9 LUN 000B000000000000 was deleted from EDEV FF0B because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B228CF8 LUN 000B000000000000 was deleted from EDEV FF0B because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF8 LUN 000B000000000000 was deleted from EDEV FF0B because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF9 LUN 000B000000000000 was deleted from EDEV FF0B because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPIIO8700I Emulated Device FF0B cannot be varied online because 
11:02:10 12:02:10 HCPIIO8700I there are no valid paths defined to the device.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF8 LUN 000A000000000000 was deleted from EDEV FF0A because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF9 LUN 000A000000000000 was deleted from EDEV FF0A because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B218CF9 LUN 000A000000000000 was deleted from EDEV FF0A because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B228CF8 LUN 000A000000000000 was deleted from EDEV FF0A because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF8 LUN 000A000000000000 was deleted from EDEV FF0A because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF9 LUN 000A000000000000 was deleted from EDEV FF0A because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPIIO8700I Emulated Device FF0A cannot be varied online because 
11:02:10 12:02:10 HCPIIO8700I there are no valid paths defined to the device.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF8 LUN 0009000000000000 was deleted from EDEV FF09 because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF9 LUN 0009000000000000 was deleted from EDEV FF09 because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B218CF9 LUN 0009000000000000 was deleted from EDEV FF09 because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B228CF8 LUN 0009000000000000 was deleted from EDEV FF09 because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF8 LUN 0009000000000000 was deleted from EDEV FF09 because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF9 LUN 0009000000000000 was deleted from EDEV FF09 because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPIIO8700I Emulated Device FF09 cannot be varied online because 
11:02:10 12:02:10 HCPIIO8700I there are no valid paths defined to the device.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF8 LUN 0008000000000000 was deleted from EDEV FF08 because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1000 WWPN 500507680B218CF9 LUN 0008000000000000 was deleted from EDEV FF08 because FCP device 1000 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B218CF9 LUN 0008000000000000 was deleted from EDEV FF08 because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1200 WWPN 500507680B228CF8 LUN 0008000000000000 was deleted from EDEV FF08 because FCP device 1200 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF8 LUN 0008000000000000 was deleted from EDEV FF08 because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPSZP8701I Path FCP_DEV 1300 WWPN 500507680B228CF9 LUN 0008000000000000 was deleted from EDEV FF08 because FCP device 1300 does not exist.
11:02:10 12:02:10 HCPIIO8700I Emulated Device FF08 cannot be varied online because 
11:02:10 12:02:10 HCPIIO8700I there are no valid paths defined to the device.
11:02:10 12:02:10 HCPIOP952I 6192M system storage
11:02:10 12:02:10 FILES: 0000158 RDR, 0000043 PRT,      NO PUN
11:02:10 12:02:10 XAUTOLOG EREP
11:02:10 12:02:10 HCPCRC8082I Accounting records are accumulating for userid DISKACNT.
11:02:10 12:02:10 HCPCRC8082I EREP records are accumulating for userid EREP.
11:02:10 12:02:10 Command accepted
11:02:10 12:02:10 XAUTOLOG DISKACNT
11:02:10 12:02:10 AUTO LOGON  ***       EREP     USERS = 2     BY OPERATOR
11:02:10 12:02:10 Command accepted
11:02:10 12:02:10 XAUTOLOG AUTOLOG1
11:02:10 12:02:10 AUTO LOGON  ***       DISKACNT USERS = 3     BY OPERATOR
11:02:10 12:02:10 HCPCLS6056I XAUTOLOG information for EREP: The IPL command is verified by the IPL command processor.
11:02:10 12:02:10 Command accepted
11:02:10 12:02:10 HCPCLS6056I XAUTOLOG information for DISKACNT: The IPL command is verified by the IPL command processor.
11:02:10 12:02:10 XAUTOLOG OPERSYMP
11:02:10 12:02:10 Command accepted
11:02:10 12:02:10 AUTO LOGON  ***       AUTOLOG1 USERS = 4     BY OPERATOR
11:02:10 12:02:10 AUTO LOGON  ***       OPERSYMP USERS = 5     BY OPERATOR
11:02:10 12:02:10 HCPCLS6056I XAUTOLOG information for OPERSYMP: The IPL command is verified by the IPL command processor.
11:02:10 12:02:10 HCPCLS6056I XAUTOLOG information for AUTOLOG1: The IPL command is verified by the IPL command processor.
11:02:12 12:02:12  * MSG FROM OPERSYMP: 0 RECORDING FILE(S), 0 RECORDS, A DISK 01 % FULL
11:02:12 12:02:12 HCPCRC8064I Recording data retrieval has been started; recording *SYMPTOM for userid OPERSYMP.
11:02:12 12:02:12 AUTO LOGON  ***       VMSERVS  USERS = 6     BY AUTOLOG1
11:02:12 12:02:12  * MSG FROM EREP    : 1 RECORDING FILE(S), 172 RECORDS, A DISK 04 % FULL
11:02:12 12:02:12 AUTO LOGON  ***       VMSERVU  USERS = 7     BY AUTOLOG1
11:02:12 12:02:12 AUTO LOGON  ***       VMSERVP  USERS = 8     BY AUTOLOG1
11:02:12 12:02:12 AUTO LOGON  ***       VMSERVR  USERS = 9     BY AUTOLOG1
11:02:12 12:02:12 HCPCRC8064I Recording data retrieval has been started; recording *LOGREC for userid EREP.
11:02:12 12:02:12 AUTO LOGON  ***       DTCVSW1  USERS = 10    BY AUTOLOG1
11:02:12 12:02:12 AUTO LOGON  ***       DTCVSW2  USERS = 11    BY AUTOLOG1
11:02:12 12:02:12 AUTO LOGON  ***       DTCVSW3  USERS = 12    BY AUTOLOG1
11:02:12 12:02:12 AUTO LOGON  ***       DTCVSW4  USERS = 13    BY AUTOLOG1
11:02:12 12:02:12  * MSG FROM DISKACNT: 20 RECORDING FILE(S), 140 RECORDS, A DISK 16 % FULL
11:02:12 12:02:12 HCPCRC8064I Recording data retrieval has been started; recording *ACCOUNT for userid DISKACNT.
11:02:14 12:02:14 HCPSWU2838I Device 2000.P00 specified for VSWITCH VSW1 does not exist.
11:02:14 12:02:14 HCPSWU2838I Device 2000.P00 specified for VSWITCH VSW1 does not exist.
11:02:14 12:02:14 HCPSWU2838I Device 2000.P00 specified for VSWITCH VSW1 does not exist.
11:02:14 12:02:14 HCPSWU2838I Device 2000.P00 specified for VSWITCH VSW1 does not exist.
11:02:17 HHC02915I client 0 COMM: Connection received
11:02:17 HHC02914I 0:0700 COMM: client 0 negotiations complete; ttype = 'IBM-DYNAMIC'
11:02:17 HHC01018I 0:0700 COMM: client 50.240.236.133 devtype 3270: connected
11:02:31 HHC00160I SCP command: enable all
11:02:31 12:02:31 ENABLE ALL
11:02:31 12:02:31 Command complete
11:02:42 12:02:42 AUTO LOGON  ***       WEBSERV  USERS = 14    BY AUTOLOG1
11:02:42 12:02:42 USER DSC   LOGOFF AS  AUTOLOG1 USERS = 13
11:02:44 12:02:44 GRAF  0700 LOGON  AS  TCPIP    USERS = 14
11:02:56 12:02:56 AUTO LOGON  ***       SSLDCSSM USERS = 15    BY TCPIP
11:03:16 12:03:16 GRAF  0700 DISCONNECT TCPIP    USERS = 15
11:03:21 12:03:21 GRAF  0700 LOGON  AS  MAINT    USERS = 16
11:05:41 12:05:41 USER DSC   LOGOFF AS  TCPIP    USERS = 15    FORCED BY MAINT
11:05:44 12:05:44 AUTO LOGON  ***       TCPIP    USERS = 16    BY MAINT
11:05:47 12:05:47 USER DSC   LOGOFF AS  TCPIP    USERS = 15    FORCED BY MAINT
11:05:50 12:05:50 AUTO LOGON  ***       TCPIP    USERS = 16    BY MAINT
11:05:50 12:05:50 OSA 0400 ATTACHED TO TCPIP 0001 BY TCPIP
11:05:50 12:05:50 OSA 0401 ATTACHED TO TCPIP 0002 BY TCPIP
11:05:50 12:05:50 OSA 0402 ATTACHED TO TCPIP 0003 BY TCPIP
11:05:54 12:05:54 USER DSC   LOGOFF AS  TCPIP    USERS = 15    FORCED BY MAINT
11:05:54 12:05:54 OSA   0400 DETACHED TCPIP    0001 BY TCPIP
11:05:54 12:05:54 OSA   0401 DETACHED TCPIP    0002 BY TCPIP
11:05:54 12:05:54 OSA   0402 DETACHED TCPIP    0003 BY TCPIP
11:05:57 12:05:57 AUTO LOGON  ***       TCPIP    USERS = 16    BY MAINT
11:05:57 12:05:57 OSA 0400 ATTACHED TO TCPIP 0001 BY TCPIP
11:05:57 12:05:57 OSA 0401 ATTACHED TO TCPIP 0002 BY TCPIP
11:05:57 12:05:57 OSA 0402 ATTACHED TO TCPIP 0003 BY TCPIP
11:05:57 HHC03995D 0:0400 QETH: SID:
11:05:57 FF CU=1731-01 DEV=1732-01 00
11:05:57 CIW: 40FA0080  typ:RCD op:FA len:128
11:05:57 CIW: 41810004  typ:SII op:81 len:4
11:05:57 CIW: 42820040  typ:RNI op:82 len:64
11:05:57 CIW: 431B1000  typ:3   op:1B len:4096
11:05:57 CIW: 441F0000  typ:4   op:1F len:0
11:05:57 HHC03991D 0:0401 QETH: IDX_ACT_TYPE_READ: Request
11:05:57 HHC03981D 0:0401 QETH: IEA: +0000< 00008000 00000000 190101C0 0779AE98  .............y..  ...........{.`.q
11:05:57 HHC03981D 0:0401 QETH: IEA: +0010< 01010000 0000A961 E5D4F0F0 F0F10001  .......a........  ......z/VM0001..
11:05:57 HHC03981D 0:0401 QETH: IEA: +0020< 0000                                 ..                ..              
11:05:57 HHC03991D 0:0401 QETH: IDX_ACT_TYPE_READ: Response
11:05:57 HHC03981D 0:0401 QETH: IEAR: +0000> 00008000 00000000 1A0101C0 D8C5E3F1  ................  ...........{QET1
11:05:57 HHC03981D 0:0401 QETH: IEAR: +0010> 0201C8D9 C3F1A961 E5D4F0F0 F0F10001  .......a........  ..HRC1z/VM0001..
11:05:57 HHC03981D 0:0401 QETH: IEAR: +0020> 0000                                 ..                ..              
11:05:57 HHC03991D 0:0402 QETH: IDX_ACT_TYPE_WRITE: Request
11:05:57 HHC03981D 0:0402 QETH: IEA: +0000< 00008000 00000000 150101C0 0779AE98  .............y..  ...........{.`.q
11:05:57 HHC03981D 0:0402 QETH: IEA: +0010< 01010000 0000A961 E5D4F0F0 F0F10001  .......a........  ......z/VM0001..
11:05:57 HHC03981D 0:0402 QETH: IEA: +0020< 0000                                 ..                ..              
11:05:57 HHC03991D 0:0402 QETH: IDX_ACT_TYPE_WRITE: Response
11:05:57 HHC03981D 0:0402 QETH: IEAR: +0000> 00008000 00000000 160101C0 D8C5E3F1  ................  ...........{QET1
11:05:57 HHC03981D 0:0402 QETH: IEAR: +0010> 0201C8D9 C3F1A961 E5D4F0F0 F0F10001  .......a........  ..HRC1z/VM0001..
11:05:57 HHC03981D 0:0402 QETH: IEAR: +0020> 0000                                 ..                ..              
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_CM: PUK_TYPE_ENABLE (CM_ENABLE): Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 00000001 00000014 00000055  ...............U  .\..............
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 817E0001 00000000 00000000  .....~..........  ....a=..........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C001D 00001D05 D8C5E3F1           ............      ........QET1    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 0100001D 00000038                    .......8          ........        
11:05:57 HHC03981D 0:0402 QETH: PUK: +0000< 000C4102 00110000 00000000           ..A.........      ............    
11:05:57 HHC03981D 0:0402 QETH: PUS: +0000< 000B0401 7E040507 79AE98             ....~...y..       ....=...`.q     
11:05:57 HHC03981D 0:0402 QETH: PUS: +0000< 00060402 0000                        ......            ......          
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_CM: PUK_TYPE_ENABLE (CM_ENABLE): Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 00000001 00000014 0000005B  ...............[  .\.............$
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 817E0001 00000000 00000000  .....~..........  ....a=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C0023 00002305 0779AE98           ...#..#..y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 01000023 00000038                    ...#...8          ........        
11:05:57 HHC03981D 0:0401 QETH: PUK: +0000> 000C4102 00170000 00000000           ..A.........      ............    
11:05:57 HHC03981D 0:0401 QETH: PUS: +0000> 000B0401 7E0405D8 C5E3F2             ....~......       ....=..QET2     
11:05:57 HHC03981D 0:0401 QETH: PUS: +0000> 000C0402 00000000 00000000           ............      ............    
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_CM: PUK_TYPE_SETUP (CM_SETUP): Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 00000002 00000014 0000005C  ...............\  .\.............*
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 817E0001 00000000 00000000  .....~..........  ....a=..........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0024 00002405 D8C5E3F1           ...$..$.....      ........QET1    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000024 00000038                    ...$...8          ........        
11:05:57 HHC03981D 0:0402 QETH: PUK: +0000< 000C4104 00180000 00000000           ..A.........      ............    
11:05:57 HHC03981D 0:0402 QETH: PUS: +0000< 00090404 050779AE 98                 ......y..         ......`.q       
11:05:57 HHC03981D 0:0402 QETH: PUS: +0000< 00090405 05D8C5E3 F2                 .........         .....QET2       
11:05:57 HHC03981D 0:0402 QETH: PUS: +0000< 00060406 C800                        ......            ....H.          
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_CM: PUK_TYPE_SETUP (CM_SETUP): Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 00000002 00000014 0000005E  ...............^  .\.............;
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 817E0001 00000000 00000000  .....~..........  ....a=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C0026 00002605 0779AE98           ...&..&..y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 01000026 00000038                    ...&...8          ........        
11:05:57 HHC03981D 0:0401 QETH: PUK: +0000> 000C4106 001A0000 00000000           ..A.........      ............    
11:05:57 HHC03981D 0:0401 QETH: PUS: +0000> 00090404 050779AE 98                 ......y..         ......`.q       
11:05:57 HHC03981D 0:0401 QETH: PUS: +0000> 00090408 05D8C5E3 F3                 .........         .....QET3       
11:05:57 HHC03981D 0:0401 QETH: PUS: +0000> 00080407 40000000                    ....@...          .... ...        
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_ULP: PUK_TYPE_ENABLE (ULP_ENABLE): Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 00000003 00000014 00000067  ...............g  .\..............
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 417E0001 00000001 00000000  ....A~..........  .....=..........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C002F 00002F05 D8C5E3F3           .../../.....      ........QET3    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 0100002F 00000038                    .../...8          ........        
11:05:57 HHC03981D 0:0402 QETH: PUK: +0000< 000C4102 001F0000 00000000           ..A.........      ............    
11:05:57 HHC03981D 0:0402 QETH: PUS: +0000< 000B0401 03040507 79AE98             ........y..       ........`.q     
11:05:57 HHC03981D 0:0402 QETH: PUS: +0000< 0014040A 00200000 00000000 40404040  ..... ......@@@@  ............    
11:05:57 HHC03981D 0:0402 QETH: PUS: +0010< 40404040                             @@@@                              
11:05:57 HHC03800I 0:0402 QETH: Adapter mode set to Layer 3
11:05:57 HHC00901I 0:0402 QETH: Interface tun0, type TUN opened
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_ULP: PUK_TYPE_ENABLE (ULP_ENABLE): Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 00000003 00000014 00000067  ...............g  .\..............
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 41020001 00000001 00000001  ....A...........  ................
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C002F 00002F05 0779AE98           .../../..y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 0100002F 00000038                    .../...8          ........        
11:05:57 HHC03981D 0:0401 QETH: PUK: +0000> 000C4102 00230000 00000000           ..A..#......      ............    
11:05:57 HHC03981D 0:0401 QETH: PUS: +0000> 000B0401 030405D8 C5E3F4             ...........       .......QET4     
11:05:57 HHC03981D 0:0401 QETH: PUS: +0000> 0018040A 00200000 05DC0000 40404040  ..... ......@@@@  ............    
11:05:57 HHC03981D 0:0401 QETH: PUS: +0010> 40404040 01000000                    @@@@....              ....        
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_ULP: PUK_TYPE_SETUP (ULP_SETUP): Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 00000004 00000014 00000064  ...............d  .\..............
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 417E0001 00000000 00000000  ....A~..........  .....=..........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C002C 00002C05 D8C5E3F3           ...,..,.....      ........QET3    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 0100002C 00000038                    ...,...8          ........        
11:05:57 HHC03981D 0:0402 QETH: PUK: +0000< 000C4104 00200000 00000000           ..A.. ......      ............    
11:05:57 HHC03981D 0:0402 QETH: PUS: +0000< 00090404 050779AE 98                 ......y..         ......`.q       
11:05:57 HHC03981D 0:0402 QETH: PUS: +0000< 00090405 05D8C5E3 F4                 .........         .....QET4       
11:05:57 HHC03981D 0:0402 QETH: PUS: +0000< 00060406 4000                        ....@.            .... .          
11:05:57 HHC03981D 0:0402 QETH: PUS: +0000< 0008040B 00010000                    ........          ........        
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_ULP: PUK_TYPE_SETUP (ULP_SETUP): Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 00000004 00000014 00000066  ...............f  .\..............
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 41020001 00000002 00000000  ....A...........  ................
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C002E 00002E05 0779AE98           .........y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 0100002E 00000038                    .......8          ........        
11:05:57 HHC03981D 0:0401 QETH: PUK: +0000> 000C4106 00220000 00000000           ..A.."......      ............    
11:05:57 HHC03981D 0:0401 QETH: PUS: +0000> 00090404 050779AE 98                 ......y..         ......`.q       
11:05:57 HHC03981D 0:0401 QETH: PUS: +0000> 00090408 05D8C5E3 F5                 .........         .....QET5       
11:05:57 HHC03981D 0:0401 QETH: PUS: +0000> 00080407 40000000                    ....@...          .... ...        
11:05:57 HHC03981D 0:0401 QETH: PUS: +0000> 0008040B 00010000                    ........          ........        
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_ULP: PUK_TYPE_ACTIVE (ULP_ACTIVE): Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 00000005 00000014 0000004D  ...............M  .\.............(
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 417E0001 00000002 00000001  ....A~..........  .....=..........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0015 00001505 D8C5E3F3           ............      ........QET3    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000015 00000038                    .......8          ........        
11:05:57 HHC03981D 0:0402 QETH: PUK: +0000< 000C4360 00090000 00000000           ..C`........      ...-........    
11:05:57 HHC03981D 0:0402 QETH: PUS: +0000< 00090404 05D8C5E3 F5                 .........         .....QET5       
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_ULP: PUK_TYPE_ACTIVE (ULP_ACTIVE): Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 00000005 00000014 0000004D  ...............M  .\.............(
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 41020001 00000003 00000002  ....A...........  ................
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C0015 00001505 0779AE98           .........y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 01000015 00000038                    .......8          ........        
11:05:57 HHC03981D 0:0401 QETH: PUK: +0000> 000C4360 00090000 00000000           ..C`........      ...-........    
11:05:57 HHC03981D 0:0401 QETH: PUS: +0000> 00090404 050779AE 98                 ......y..         ......`.q       
11:05:57 HHC03991D 0:0400 QETH: Establish Queues: Entry
11:05:57 HHC00979D QETH: QDIO_QDR: +0000  00000000 00010001 00080008 00000000  ................ ................
11:05:57 HHC00979D QETH: QDIO_QDR: +0010  00000000 00000000 00000000 00000000  ................ ................
11:05:57 HHC00979D QETH: QDIO_QDR: +0020  00000000 00000000 00000000 00000000  ................ ................
11:05:57 HHC00979D QETH: QDIO_QDR: +0030  00000000 7FD77000 00000000 00000000  ......p......... ...."P..........
11:05:57 HHC00979D QETH: QDIO_QDR: +0040  00000000 1FF76800 00000000 1FF75000  ......h.......P. .....7.......7&.
11:05:57 HHC00979D QETH: QDIO_QDR: +0050  00000000 1FF76000 00000000 EEEE0000  ......`......... .....7-.........
11:05:57 HHC00979D QETH: QDIO_QDR: +0060  00000000 7F0EF800 00000000 7F0EE000  ................ ....".8.....".\.
11:05:57 HHC00979D QETH: QDIO_QDR: +0070  00000000 7F0EF000 00000000 EEEE0000  ................ ....".0.........
11:05:57 HHC03991D 0:0400 QETH: Initialize Input Queue: qmask(0x80000000)
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_IPA: IPA_CMD_STARTLAN: Request
11:05:57 HHC03991D 0:0400 QETH: Initialize Output Queue: qmask(0x80000000)
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 00000006 00000014 00000048  ...............H  .\..............
11:05:57 HHC03991D 0:0400 QETH: Establish Queues: Exit
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 C1030001 00000000 00000000  ................  ....A...........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0010 00001005 D8C5E3F5           ............      ........QET5    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000010 00000038                    .......8          ........        
11:05:57 HHC03981D 0:0402 QETH: IPA: +0000< 01000000 00000100 01000000 00000000  ................  ................
11:05:57 HHC03997I 0:0402 QETH: tun0: using MAC address 02:00:5e:98:06:38
11:05:57 HHC03997I 0:0402 QETH: tun0: using IP address 192.168.1.64
11:05:57 HHC03997I 0:0402 QETH: tun0: using MTU 1500
11:05:57 HHC03997I 0:0402 QETH: tun0: using drive MAC address de:55:b6:37:95:cc
11:05:57 HHC03997I 0:0402 QETH: tun0: using drive IP address fe80::de55:b6ff:fe37:95cc
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_IPA: IPA_CMD_STARTLAN: Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 00000006 00000014 00000048  ...............H  .\..............
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 C17E0001 00000000 00000000  .....~..........  ....A=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C0010 00001005 0779AE98           .........y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 01000010 00000038                    .......8          ........        
11:05:57 HHC03981D 0:0401 QETH: IPA: +0000> 01000000 00000100 01000000 00005D71  ..............]q  ..............).
11:05:57 HHC03991D 0:0400 QETH: Activate Queues: Entry iqm=80000000 oqm=80000000
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_IPA: IPA_CMD_QIPASSIST (IPv4): Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 00000007 00000014 0000004C  ...............L  .\.............<
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 C1030001 00000000 00000000  ................  ....A...........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0014 00001405 D8C5E3F5           ............      ........QET5    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000014 00000038                    .......8          ........        
11:05:57 HHC03981D 0:0402 QETH: IPA: +0000< B2000001 00000100 01000004 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: IPA: +0010< 00000000                             ....              ....            
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_IPA: IPA_CMD_QIPASSIST (IPv4): Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 00000007 00000014 0000004C  ...............L  .\.............<
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 C17E0001 00000000 00000000  .....~..........  ....A=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C0014 00001405 0779AE98           .........y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 01000014 00000038                    .......8          ........        
11:05:57 HHC03981D 0:0401 QETH: IPA: +0000> B2000001 00000100 01000004 00005D71  ..............]q  ..............).
11:05:57 HHC03981D 0:0401 QETH: IPA: +0010> 00000400                             ....              ....            
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): START 0x00000001: Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 00000008 00000014 00000060  ...............`  .\.............-
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 C1030001 00000000 00000000  ................  ....A...........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0028 00002805 D8C5E3F5           ...(..(.....      ........QET5    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000028 00000038                    ...(...8          ........        
11:05:57 HHC03981D 0:0402 QETH: IPA: +0000< B3000002 00000100 01010004 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: IPA: +0010< 00000000                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0000< 00000001 00080001 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0010< 00000000                             ....              ....            
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): START 0x00000001: Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 00000008 00000014 00000058  ...............X  .\..............
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 C17E0001 00000000 00000000  .....~..........  ....A=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C0020 00002005 0779AE98           ... .. ..y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 01000020 00000038                    ... ...8          ........        
11:05:57 HHC03981D 0:0401 QETH: IPA: +0000> B3000002 00000100 01010004 00005D71  ..............]q  ..............).
11:05:57 HHC03981D 0:0401 QETH: IPA: +0010> 00000401                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0000> 00000001 00080001 00000000           ............      ............    
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): START 0x00000040: Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 00000009 00000014 00000060  ...............`  .\.............-
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 C1030001 00000000 00000000  ................  ....A...........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0028 00002805 D8C5E3F5           ...(..(.....      ........QET5    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000028 00000038                    ...(...8          ........        
11:05:57 HHC03981D 0:0402 QETH: IPA: +0000< B3000003 00000100 01010004 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: IPA: +0010< 00000000                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0000< 00000040 00080001 00000000 00000000  ...@............  ... ............
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0010< 00000000                             ....              ....            
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): START 0x00000040: Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 00000009 00000014 00000058  ...............X  .\..............
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 C17E0001 00000000 00000000  .....~..........  ....A=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C0020 00002005 0779AE98           ... .. ..y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 01000020 00000038                    ... ...8          ........        
11:05:57 HHC03981D 0:0401 QETH: IPA: +0000> B3000003 00000100 01010004 00005D71  ..............]q  ..............).
11:05:57 HHC03981D 0:0401 QETH: IPA: +0010> 00000441                             ...A              ....            
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0000> 00000040 00080001 00000000           ...@........      ... ........    
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): START 0x00000010: Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 0000000A 00000014 00000060  ...............`  .\.............-
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 C1030001 00000000 00000000  ................  ....A...........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0028 00002805 D8C5E3F5           ...(..(.....      ........QET5    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000028 00000038                    ...(...8          ........        
11:05:57 HHC03981D 0:0402 QETH: IPA: +0000< B3000004 00000100 01010004 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: IPA: +0010< 00000000                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0000< 00000010 00080001 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0010< 00000000                             ....              ....            
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): START 0x00000010: Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 0000000A 00000014 00000058  ...............X  .\..............
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 C17E0001 00000000 00000000  .....~..........  ....A=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C0020 00002005 0779AE98           ... .. ..y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 01000020 00000038                    ... ...8          ........        
11:05:57 HHC03981D 0:0401 QETH: IPA: +0000> B3000004 00000100 01010004 00005D71  ..............]q  ..............).
11:05:57 HHC03981D 0:0401 QETH: IPA: +0010> 00000451                             ...Q              ....            
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0000> 00000010 00080001 00000000           ............      ............    
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): CMD_0005 0x00000001: Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 0000000B 00000014 000000B8  ................  .\..............
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 C1030001 00000000 00000000  ................  ....A...........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0080 00008005 D8C5E3F5           ............      ........QET5    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000080 00000038                    .......8          ........        
11:05:57 HHC03981D 0:0402 QETH: IPA: +0000< B3000005 00000100 01010004 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: IPA: +0010< 00000000                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0000< 00000001 00600005 00000000 FFFFFFFF  .....`..........  .....-..........
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0010< FFFF0000 00000001 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0020< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0030< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0040< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0050< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0060< 00000000 00000000 00000000           ............      ............    
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): CMD_0005 0x00000001: Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 0000000B 00000014 000000B0  ................  .\..............
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 C17E0001 00000000 00000000  .....~..........  ....A=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C0078 00007805 0779AE98           ...x..x..y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 01000078 00000038                    ...x...8          ........        
11:05:57 HHC03981D 0:0401 QETH: IPA: +0000> B3000005 00000100 01010004 00005D71  ..............]q  ..............).
11:05:57 HHC03981D 0:0401 QETH: IPA: +0010> 00000451                             ...Q              ....            
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0000> 00000001 00600005 00000000 FFFFFFFF  .....`..........  .....-..........
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0010> FFFF0000 00000001 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0020> 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0030> 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0040> 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): START 0x00000800: Request
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0050> 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0060> 00000000                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 0000000C 00000014 00000060  ...............`  .\.............-
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 C1030001 00000000 00000000  ................  ....A...........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0028 00002805 D8C5E3F5           ...(..(.....      ........QET5    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000028 00000038                    ...(...8          ........        
11:05:57 HHC03981D 0:0402 QETH: IPA: +0000< B3000006 00000100 01010004 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: IPA: +0010< 00000000                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0000< 00000800 00080001 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0010< 00000000                             ....              ....            
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): START 0x00000800: Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 0000000C 00000014 00000058  ...............X  .\..............
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 C17E0001 00000000 00000000  .....~..........  ....A=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C0020 00002005 0779AE98           ... .. ..y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 01000020 00000038                    ... ...8          ........        
11:05:57 HHC03981D 0:0401 QETH: IPA: +0000> B3000006 00000100 01010004 00005D71  ..............]q  ..............).
11:05:57 HHC03981D 0:0401 QETH: IPA: +0010> 00000C51                             ...Q              ....            
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0000> 00000800 00080001 00000000           ............      ............    
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_IPA: IPA_CMD_SETADPPARMS (IPv4): SETMAC: READ: Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 0000000D 00000014 000000AC  ................  .\..............
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 C1030001 00000000 00000000  ................  ....A...........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0074 00007405 D8C5E3F5           ...t..t.....      ........QET5    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000074 00000038                    ...t...8          ........        
11:05:57 HHC03981D 0:0402 QETH: IPA: +0000< B8000007 00000100 01010004 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: IPA: +0010< 00000000                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0000< 00000000 00000000 003E0000 00000002  .........>......  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0010< 00000101 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0020< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0030< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0040< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0050< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_IPA: IPA_CMD_SETADPPARMS (IPv4): SETMAC: READ: Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 0000000D 00000014 00000076  ...............v  .\..............
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 C17E0001 00000000 00000000  .....~..........  ....A=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C003E 00003E05 0779AE98           ...>..>..y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 0100003E 00000038                    ...>...8          ........        
11:05:57 HHC03981D 0:0401 QETH: IPA: +0000> B8000007 00000100 01010004 00005D71  ..............]q  ..............).
11:05:57 HHC03981D 0:0401 QETH: IPA: +0010> 00000C51                             ...Q              ....            
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0000> 00000C03 00000C03 00220000 00000002  ........."......  ................
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0010> 00000101 00000000 00000000 00000006  ................  ................
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0020> 00000001 02005E98 0638               ......^..8        ......;q..      
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_IPA: IPA_CMD_SETADPPARMS (IPv4): QUERY: Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 0000000E 00000014 000000AC  ................  .\..............
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 C1030001 00000000 00000000  ................  ....A...........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0074 00007405 D8C5E3F5           ...t..t.....      ........QET5    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000074 00000038                    ...t...8          ........        
11:05:57 HHC03981D 0:0402 QETH: IPA: +0000< B8000008 00000100 01010004 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: IPA: +0010< 00000000                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0000< 00000000 00000000 00400000 00000001  .........@......  ......... ......
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0010< 00000101 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0020< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0030< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0040< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0050< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_IPA: IPA_CMD_SETADPPARMS (IPv4): QUERY: Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 0000000E 00000014 00000078  ...............x  .\..............
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 C17E0001 00000000 00000000  .....~..........  ....A=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C0040 00004005 0779AE98           ...@..@..y..      ... .. ..`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 01000040 00000038                    ...@...8          ... ....        
11:05:57 HHC03981D 0:0401 QETH: IPA: +0000> B8000008 00000100 01010004 00005D71  ..............]q  ..............).
11:05:57 HHC03981D 0:0401 QETH: IPA: +0010> 00000C51                             ...Q              ....            
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0000> 00000C03 00000000 00240000 00000001  .........$......  ................
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0010> 00000101 00000000 00000001 01000000  ................  ................
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0020> 00000C03 00000000 00000000           ............      ............    
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_IPA: IPA_CMD_SETIP (IPv4): Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 0000000F 00000014 00000070  ...............p  .\..............
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 C1030001 00000000 00000000  ................  ....A...........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0038 00003805 D8C5E3F5           ...8..8.....      ........QET5    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000038 00000038                    ...8...8          ........        
11:05:57 HHC03981D 0:0402 QETH: IPA: +0000< B1000009 00000100 01000004 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: IPA: +0010< 00000000                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0000< C0A80140 FFFFFF00 00000000 00000000  ...@............  {y. ............
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0010< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0020< 00000000                             ....              ....            
11:05:57 HHC03805I 0:0402 QETH: tun0: Register guest IP address 192.168.1.64
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_IPA: IPA_CMD_SETIP (IPv4): Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 0000000F 00000014 00000058  ...............X  .\..............
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 C17E0001 00000000 00000000  .....~..........  ....A=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C0020 00002005 0779AE98           ... .. ..y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 01000020 00000038                    ... ...8          ........        
11:05:57 HHC03981D 0:0401 QETH: IPA: +0000> B1000009 00000100 01000004 00005D71  ..............]q  ..............).
11:05:57 HHC03981D 0:0401 QETH: IPA: +0010> 00000C51                             ...Q              ....            
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0000> C0A80140 FFFFFF00 00000000           ...@........      {y. ........    
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): CONFIGURE 0x00000010: Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 00000010 00000014 000000B8  ................  .\..............
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 C1030001 00000000 00000000  ................  ....A...........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0080 00008005 D8C5E3F5           ............      ........QET5    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000080 00000038                    .......8          ........        
11:05:57 HHC03981D 0:0402 QETH: IPA: +0000< B300000A 00000100 01010004 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: IPA: +0010< 00000000                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0000< 00000010 000C0003 00000000 FFFFF7FF  ................  ..............7.
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0010< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0020< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0030< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0040< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0050< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0060< 00000000 00000000 00000000           ............      ............    
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): CONFIGURE 0x00000010: Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 00000010 00000014 0000005C  ...............\  .\.............*
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 C17E0001 00000000 00000000  .....~..........  ....A=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C0024 00002405 0779AE98           ...$..$..y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 01000024 00000038                    ...$...8          ........        
11:05:57 HHC03981D 0:0401 QETH: IPA: +0000> B300000A 00000100 01010004 00005D71  ..............]q  ..............).
11:05:57 HHC03981D 0:0401 QETH: IPA: +0010> 00000C51                             ...Q              ....            
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_IPA: IPA_CMD_SETIPM (IPv4): Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 00000011 00000014 00000064  ...............d  .\..............
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0000> 00000010 000C0003 00000000 FFFFF7FF  ................  ..............7.
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 C1030001 00000000 00000000  ................  ....A...........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C002C 00002C05 D8C5E3F5           ...,..,.....      ........QET5    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 0100002C 00000038                    ...,...8          ........        
11:05:57 HHC03981D 0:0402 QETH: IPA: +0000< B400000B 00000100 01000004 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: IPA: +0010< 00000000                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0000< 01005E00 00010000 00000000 00000000  ..^.............  ..;.............
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0010< 00000000 E0000001                    ........          ....\...        
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_IPA: IPA_CMD_SETIPM (IPv4): Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 00000011 00000014 00000064  ...............d  .\..............
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 C17E0001 00000000 00000000  .....~..........  ....A=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C002C 00002C05 0779AE98           ...,..,..y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 0100002C 00000038                    ...,...8          ........        
11:05:57 HHC03981D 0:0401 QETH: IPA: +0000> B400000B 00000100 01000004 00005D71  ..............]q  ..............).
11:05:57 HHC03981D 0:0401 QETH: IPA: +0010> 00000C51                             ...Q              ....            
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0000> 01005E00 00010000 00000000 00000000  ..^.............  ..;.............
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0010> 00000000 E0000001                    ........          ....\...        
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): CMD_0006 0x00000001: Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 00000012 00000014 000000B8  ................  .\..............
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 C1030001 00000000 00000000  ................  ....A...........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0080 00008005 D8C5E3F5           ............      ........QET5    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000080 00000038                    .......8          ........        
11:05:57 HHC03981D 0:0402 QETH: IPA: +0000< B300000C 00000100 01010004 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: IPA: +0010< 00000000                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0000< 00000001 00600006 00000000 00000000  .....`..........  .....-..........
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0010< 00000000 00000001 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0020< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0030< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0040< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0050< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0060< 00000000 00000000 00000000           ............      ............    
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): CMD_0006 0x00000001: Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 00000012 00000014 000000B0  ................  .\..............
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 C17E0001 00000000 00000000  .....~..........  ....A=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C0078 00007805 0779AE98           ...x..x..y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 01000078 00000038                    ...x...8          ........        
11:05:57 HHC03981D 0:0401 QETH: IPA: +0000> B300000C 00000100 01010004 00005D71  ..............]q  ..............).
11:05:57 HHC03981D 0:0401 QETH: IPA: +0010> 00000C51                             ...Q              ....            
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0000> 00000001 00600006 00000000 00000000  .....`..........  .....-..........
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0010> 00000000 00000001 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0020> 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): NOT SUPPORTED (0x0008): Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 00000013 00000014 000000B8  ................  .\..............
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0030> 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0040> 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 C1030001 00000000 00000000  ................  ....A...........
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0050> 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0080 00008005 D8C5E3F5           ............      ........QET5    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000080 00000038                    .......8          ........        
11:05:57 HHC03981D 0:0402 QETH: IPA: +0000< B300000D 00000100 01010004 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: IPA: +0010< 00000000                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0060> 00000000                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0000< 00000800 000A0008 00000000 07E50000  ................  .............V..
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0010< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0020< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0030< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0040< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0050< 00000000 00000000 00000000 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0060< 00000000 00000000 00000000           ............      ............    
11:05:57 HHC03991D 0:0401 QETH: RRH_TYPE_IPA: IPA_CMD_SETASSPARMS (IPv4): NOT SUPPORTED (0x0008): Response
11:05:57 HHC03981D 0:0401 QETH: TH : +0000> 00E00000 00000013 00000014 0000005A  ...............Z  .\.............!
11:05:57 HHC03981D 0:0401 QETH: TH : +0010> 0FFC0001                             ....              ....            
11:05:57 HHC03981D 0:0401 QETH: RRH: +0000> 00000000 C17E0001 00000000 00000000  .....~..........  ....A=..........
11:05:57 HHC03981D 0:0401 QETH: RRH: +0010> 001C0022 00002205 0779AE98           ...".."..y..      .........`.q    
11:05:57 HHC03981D 0:0401 QETH: PH : +0000> 01000022 00000038                    ..."...8          ........        
11:05:57 HHC03981D 0:0401 QETH: IPA: +0000> B300000D E00E0100 01010004 00005D71  ..............]q  ....\.........).
11:05:57 HHC03981D 0:0401 QETH: IPA: +0010> 00000C51                             ...Q              ....            
11:05:57 HHC03981D 0:0401 QETH: Cmd: +0000> 00000800 000A0008 00000000 07E5      ..............    .............V  
11:05:57 HHC03991D 0:0402 QETH: RRH_TYPE_IPA: IPA_CMD_SETRTG (IPv4): Request
11:05:57 HHC03981D 0:0402 QETH: TH : +0000< 00E00000 00000014 00000014 0000004D  ...............M  .\.............(
11:05:57 HHC03981D 0:0402 QETH: TH : +0010< 10000001                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: RRH: +0000< 00000000 C1030001 00000000 00000000  ................  ....A...........
11:05:57 HHC03981D 0:0402 QETH: RRH: +0010< 001C0015 00001505 D8C5E3F5           ............      ........QET5    
11:05:57 HHC03981D 0:0402 QETH: PH : +0000< 01000015 00000038                    .......8          ........        
11:05:57 HHC03981D 0:0402 QETH: IPA: +0000< B600000E 00000100 01000004 00000000  ................  ................
11:05:57 HHC03981D 0:0402 QETH: IPA: +0010< 00000000                             ....              ....            
11:05:57 HHC03981D 0:0402 QETH: Cmd: +0000< 01                                   .                 .               
11:05:57 HHC03991D 0:0400 QETH: Halting data device
11:05:57 HHC03991D 0:0400 QETH: Activate Queues: QDSIG_HALT received
11:05:57 HHC03991D 0:0400 QETH: Activate Queues: Exit
11:05:57 HHC03991D 0:0400 QETH: Data device halted
11:05:57 HHC02499I Hercules utility hercifc - Hercules Network Interface Configuration Program - version 4.4.9999.0-SDL-gdafb7e22-modified
11:05:57 HHC01414I (C) Copyright 1999-2020 by Roger Bowler, Jan Jaeger, and others
11:05:57 HHC01417I ** The SoftDevLabs version of Hercules **
11:05:57 HHC01415I Build date: Mar  1 2021 at 10:58:03
11:06:05 HHC01603I quit
11:06:05 HHC01426I Shutdown initiated
11:06:05 12:06:05 HCPSHU6018I The processor controller has sent a shutdown signal with a timeout interval of 0 seconds
11:06:05 12:06:05 HCPSHU6020I Guests do not have time to shut down because VM SHUTDOWN requires 30 seconds
11:06:05 12:06:05 HCPSHU2116I SHUTDOWN issued at 2021-03-01 12:06:05 by SYSTEM
11:06:05 HHC00809I Processor CP01: disabled wait state 0002000000000000 0000000000009003
11:06:05 HHC00814I Processor CP00: SIGP CPU reset                        (0C) CP01, PARM 00000000004DA470: CC 0
11:06:05 HHC00809I Processor CP02: disabled wait state 0002000000000000 0000000000009003
11:06:05 12:06:05 Processor 01 offline
11:06:05 HHC00814I Processor CP00: SIGP CPU reset                        (0C) CP02, PARM 00000000004DA470: CC 0
11:06:05 HHC00809I Processor CP03: disabled wait state 0002000000000000 0000000000009003
11:06:05 12:06:05 Processor 02 offline
11:06:05 HHC00814I Processor CP00: SIGP CPU reset                        (0C) CP03, PARM 00000000004DA470: CC 0
11:06:05 HHC00809I Processor CP04: disabled wait state 0002000000000000 0000000000009003
11:06:05 12:06:05 Processor 03 offline
11:06:05 HHC00814I Processor CP00: SIGP CPU reset                        (0C) CP04, PARM 00000000004DA470: CC 0
11:06:07 HHC01603I quit
11:06:07 HHC01420I Begin Hercules shutdown
11:06:07 11:06:07 HHC01423I Calling termination routines
HHC01423I Calling termination routines
11:06:07 HHC00101I Thread id 00007fd4a2337700, prio 2, name 'Processor CP00' ended
11:06:07 HHC00101I Thread id 00007fd4a253a700, prio 2, name 'Processor CP01' ended
11:06:07 HHC00101I Thread id 00007fd4a2439700, prio 2, name 'Processor CP02' ended
11:06:07 HHC00101I Thread id 00007fd4a092f700, prio 2, name 'Processor CP03' ended
11:06:07 HHC00101I Thread id 00007fd483fff700, prio 2, name 'Processor CP04' ended
11:06:07 HHC00101I Thread id 00007fd4834e8700, prio 4, name 'console_connect' ended
11:06:07 HHC01427I Main storage released
11:06:07 HHC01427I Expanded storage released
11:06:07 HHC01422I Configuration released
11:06:07 HHC00101I Thread id 00007fd4a2236700, prio 7, name 'timer_thread' ended
11:06:08 HHC00101I Thread id 00007fd4a51c7740, prio 5, name 'panel_display' ended
mcisho commented 3 years ago

It appears that VM did not crash this time? What actually happened? What did the TCPIP virtual machine say?

moshix commented 3 years ago

Well yes, it did. I caused z/VM to shutdown and restart. So, I would call that a crash

Fish-Git commented 3 years ago

I personally would like to also see your SYSTEM CONFIG and USER DIRECT files too.

Somewhere in your SYSTEM CONFIG file, there should be one (or more, depending on your needs) pairs of Define VSWITCH ... and associated Modify VSWITCH ... statements that define the Virtual Swicth(es) that are available to those userids that need them.

In your USER DIRECT file, for each userid that needs access to the network, there should be a NICDEF statement that tells z/VM which Virtual Switch(es) that userid wishes to use.

On my own system, I have two OSA adapters and two Virtual Switches defined (with my ZOS userid using one of them) as follows:

I personally would very much like to see these same statements for your system.

moshix commented 3 years ago

There is no vswitch defined. System config would bore you to death.

The user directory for tcpip is in the information I provided

m

Fish-Git commented 3 years ago

Also, when you originally installed your z/VM 6.4 system, how did you define your OSA adapter(s) to ipwizard? As Layer 2 mode adapter(s)? Or as Layer 3 mode adapter(s).

As I recall, it is the z/VM ipwizard command run during your initial install that sets up both the system as well as all of your TCP et al. virtual machines to access your defined OSA device in the proper mode, and that cannot (*) be changed once the system is installed, so it is important to define it with the correct mode (Layer 2 or Layer 3) during installation time because once installed it cannot (*) be changed.


*`()** _Well, not without a lot of effort anyway! (i.e. manually modifying a lot of TCPIP related configuration files in various userid, etc, which is easy to get wrong). Which is why it's recommended to choose you adapter mode (Layer 2 or Layer 3) during installation (when you runipwizard`) and then don't try to change from that mode once the system has been installed._

mcisho commented 3 years ago

Well yes, it did. I caused z/VM to shutdown and restart. So, I would call that a crash

So would I, but as the log gave no indication that anything other than a shutdown occurred, it was hard to know what happened.

I've updated the Hercules source to add support for the unsupported Set Assist Parameters command. If you could update your source, rebuild Hercules and repeat the test, who knows what might happen.

And I would like to see your TCPIP PROFILE, please.

moshix commented 3 years ago

z/VM was installed with Level 3 from the get go. Will try the new build in the next few days

m

moshix commented 3 years ago

TCPIP profile was included in the information I gave above. You asked for it. I made it available. If you want it it separately it’s easy to copy and paste

Fish-Git commented 3 years ago

Well, here is what is bothering me:

Here is my TCPIP machine config (didn't change anything from normal z/VM install):

IDENTITY TCPIP    tcpip   128M  256M ABG
 INCLUDE TCPCMSU
 BUILD ON * USING SUBCONFIG TCPIP-1
[...]
SUBCONFIG TCPIP-1
 LINK TCPMAINT 491 491 RR
 LINK TCPMAINT 492 492 RR
[...]
 NICDEF 2000 TYPE QDIO LAN SYSTEM VSW1

Here is my query virtual from TCPIP:

OSA  2000 ON NIC  2000  UNIT 000 SUBCHANNEL = 0006
     2000 DEVTYPE OSA         VIRTUAL CHPID 00 OSD
     2000 MAC 02-00-00-00-00-02 CURRENT
     2000 QDIO-ELIGIBLE       QIOASSIST NOT AVAILABLE
OSA  2001 ON NIC  2000  UNIT 001 SUBCHANNEL = 0007
     2001 DEVTYPE OSA         VIRTUAL CHPID 00 OSD
     2001 MAC 02-00-00-00-00-02 CURRENT
     2001 QDIO-ELIGIBLE       QIOASSIST NOT AVAILABLE
OSA  2002 ON NIC  2000  UNIT 002 SUBCHANNEL = 0008
     2002 DEVTYPE OSA         VIRTUAL CHPID 00 OSD
     2002 MAC 02-00-00-00-00-02 CURRENT
     2002 QDIO-ELIGIBLE       QIOASSIST NOT AVAILABLE

And here is the log from hyperion with the DEBUG for qeth:

11:02:14 12:02:14 HCPSWU2838I Device 2000.P00 specified for VSWITCH VSW1 does not exist.
11:02:14 12:02:14 HCPSWU2838I Device 2000.P00 specified for VSWITCH VSW1 does not exist.
11:02:14 12:02:14 HCPSWU2838I Device 2000.P00 specified for VSWITCH VSW1 does not exist.
11:02:14 12:02:14 HCPSWU2838I Device 2000.P00 specified for VSWITCH VSW1 does not exist.

  That does not look right to me, which is why I'd personally like to see your SYSTEM CONFIG file please.

mcisho commented 3 years ago

TCPIP profile was included in the information I gave above.

No, it wasn't. The profile you gave was from USER DIRECTXA, I want the profile read by the TCPIP virtual machine that defines the devices, routes, etc used by the TCPIP virtual machine. It is normally to be found (or at least it was on systems I've been involved with) on the TCPMAINT 198, and is usually named TCPIP PROFILE.

mcisho commented 3 years ago

Darn, shouldn't write this stuff late at night, mistakes creep in. Though what I want to see is commonly known as the TCPIP profile, these days VM apparently refers to it as the "Initial Configuration File".

Page 498 of manual  z/VM 7.2 TCP/IP Planning and Customization (SC24-6331-05):

Step 3: Create an Initial Configuration File When the TCPIP virtual machine is started, TCP/IP operation and configuration parameters are read from an initial configuration file. TCP/IP searches for an initial configuration file in the following order and uses the first file present in that order:

  1. userid TCPIP, where userid is the user ID of the TCP/IP server
  2. _nodename TCPIP, where _nodename is the system node name returned by the CMS IDENTIFY command
  3. PROFILE TCPIP

Sorry for the confusion.

moshix commented 3 years ago

thanks. the PROFILE TCPIP D file is well known to me, that's how I configure L3 networking. I will start up the instance again and will send it over, sometime in the next few days.

thx

M

mcisho commented 3 years ago

You have specified the VLAN parameter on the LINK statement for QDIOETHERNET in your PROFILE TCPIP. As Hercules' QETH doesn't support VLAN, you should remove the VLAN from the LINK. Your VM should be OK after that.

Fish-Git commented 3 years ago

Ivan,     (@ivan-w)

Is there anything that maybe you can do to help Ian with this issue of moshix's? Just asking!

moshix commented 3 years ago

Hello

Sorry, for not having provided yet the documents requested by mcisho. I have been busy. Whether there is VLAN or not (I will provide more information about this in the coming days), z/VM shoudn't crash... and indeed it doesn't crash on real z hardware.

I will get back with more info

thanks

M

moshix commented 3 years ago

Ok, you were right I had a vswitch definition in SYSTEM CONFIG.

However, the fact remains that it shouldn't crash just because a vswitch is configured.

thanks

M

mcisho commented 3 years ago

z/VM shoudn't crash...

I agree, however only IBM has any control over how z/VM reacts in any given situation.

... and indeed it doesn't crash on real z hardware.

I should hope not! If it doesn't work on real z hardware what hope would Hercules ever have!

However, the fact remains that it shouldn't crash just because a vswitch is configured.

And I doubt that it has crashed just because a vswitch is configured, but it may well have crashed because the vswitch is attempting to use a feature that Hercules' QETH doesn't support. I believe it is the use of VLAN operand that is causing the problem. Can you confirm that the VLAN operand was being used? If the VLAN operand wasn't being used, investigation will have to start again. (I'm referring to VLAN as defined by IEEE 802.1Q standard, not virtual LAN as defined by z/VM.)

Though Hercules' QETH is no longer considered Experimental, it should (imho) be considered Use At Your Own Risk, particularly if one attempts to use any of the many features supported by a real OSA, because QETH doesn't support any of them. QETH moves data out of and in to the guest, and that's pretty much all it does.

moshix commented 3 years ago

so, you're saying qeth is not experimental but if it doesnt' work, there is nothing we can do about it. Ok, let's leave it broken, let's ignore the issues users experience, and let's leave Hyperion a mess of broken code with half-supported features.

That's why people revert to Spinhawk and TK-4 Upd 8's Hercules 4.00 so much: it just works.

I am closing this issue as it's hopeless to even try to get to the ground of this problem.

thx anyway

mcisho commented 3 years ago

How an OSA works internally is completely undocumented, at least publicly, so Hercules' QETH will never be able to support all, or even most, of the features of a real OSA.

I'm not saying 'let's leave it broken, let's ignore the issues users experience', and it isn't 'hopeless to even try to get to the ground of this problem', I believe I know what the problem is and have coded a fix to get round the problem, but until you can confirm that the use of VLAN is the problem, I'm just guessing.

Fish-Git commented 3 years ago

Wow.   :(

ivan-w commented 3 years ago

Cool off people...

I can also reproduce another problem related to QETH (Layer 2 this time) leading to a VAI008 Abend... (Both z/VM 6.3 and z/VM 7.1).

May or may not be related.

Just let me some time. I'm in the process of moving where I live (not for away, but it needs a bit of organizing).

--Ivan

Fish-Git commented 3 years ago

Cool off people...

I'm not the one that's upset, Ivan. I simply expressed, with a single-word non-inflammatory response, my surprise/shock at someone else apparently getting upset and then going away in a huff after launching unfair characterizations and accusations at a fellow developer who was only after all trying to help him, simply because he was apparently unable to offer an immediate fix for him.

If I was upset I'd tell him to f**k off and fix the problem himself if he didn't like the help we were trying to give him. It's not like he's very cooperative in the first place. Trying to get any information out of him is like pulling teeth. And then he has the nerve of being upset with us simply because our emulation of a complicated, sophisticated and completely undocumented device is incomplete and still somewhat buggy around the edges? Sheesh!

But I'm not upset, Ivan.

Shocked and surprised? Absolutely!

But certainly not upset.   ;-)

(sigh... Maybe he's just having a bad day/week/month/year/decade?)

moshix commented 3 years ago

Well, I provided several hundred, if not over a thousand lines of information that was requested from me, so I was forthcoming with information at the fastest possible speed I could surmise.

Ivan, the last request was to know if there was VLAN involved. Since it crashes upon IPL, it's not that easy to find out what's in the SYSTEM CONFIG, but I mounted that volume under another VM system and, yes, it's got a VLAN definition in the vswitch configuration.

thanks

M

mcisho commented 3 years ago

If you rebuild Hercules using the latest commit, does it prevent the z/VM crash? The vswitch probably won't become active, but that's what is intended.

Ian

moshix commented 3 years ago

Ian

Will check this week-end. Have been swamped with work this week.

will let you know

m

moshix commented 3 years ago

Indeed, the new build I downloaded as of this morning, doesn't make it crash anymore, which is great because now I can go in and remove the vswitch.

thanks

M

mcisho commented 3 years ago

Good.

The quickest way solve network interface problems is to remove, or comment, the appropriate Hercules config file statement. The guest should then start, allowing guest issues to be investigated.

Ian

Fish-Git commented 3 years ago

@mcisho, @ivan-w, @moshix,

Should this issue be closed? Has it been resolved? Is there anything still remaining to be done? Or can we safely close it now?

I'm just asking since there hasn't been any activity for several months now.

Thanks.

moshix commented 3 years ago

As far as I am concerned it can be closed. It was stated by @mcisho that VLANs are not supported, so I stopped using them.

thanks

M