View Full Version : What is my IP address?
Guest.Visitor
07-03-2001, 06:53 AM
For Windows 95/98: Run...WINIPCFG For Win NT/200: Go to command line and type IPCONFIG. Brian
Guest.Visitor
07-03-2001, 07:09 AM
I need to be able to find the PC's IP address from the AS/400.
dbrunner@co.kenosha.wi.us
07-03-2001, 07:44 AM
Kevin, WRKTCPSTS *CNN will give you all the connections into the system. But I don't really think this will do you any good. There are no individual profiles, or associated devices with the information, only QTCP, or QUSR. Dale
Guest.Visitor
07-03-2001, 12:50 PM
You can look at the joblog of the QZSCSRVS jobs in QUSRWRK subsystem. There is a CPIAD02 message that states 'User (user-id) from client (ip address) connected to server.'
Guest.Visitor
07-03-2001, 02:37 PM
You can use the following CL, which uses API to get the IP address PGM DCL VAR(&DEVD) TYPE(*CHAR) LEN(10) DCL VAR(&IP) TYPE(*CHAR) LEN(15) DCL VAR(&RECEIVER) TYPE(*CHAR) LEN(892) DCL VAR(&LENGTH) TYPE(*CHAR) LEN(4) DCL VAR(&ERRLENGTH) TYPE(*CHAR) LEN(4) RTVJOBA JOB(&DEVD) CHGVAR VAR(%BIN(&LENGTH)) VALUE(892) CHGVAR VAR(%BIN(&ERRLENGTH)) VALUE(0) CALL PGM(QDCRDEVD) PARM(&RECEIVER &LENGTH + DEVD0600 &DEVD &ERRLENGTH) CHGVAR VAR(&IP) VALUE(%SST(&RECEIVER 878 15)) SNDPGMMSG MSG(&IP) ENDPGM
Guest.Visitor
07-05-2001, 05:30 AM
Thank you.
Guest.Visitor
03-11-2002, 11:09 PM
I am connected to the AS400 using client access. How can I find the IP address of my PC?
mutluk@yahoo.com
03-11-2002, 11:09 PM
How can write this command from command line (You can look at the joblog of the QZSCSRVS jobs in QUSRWRK subsystem. There is a CPIAD02 message that states 'User (user-id) from client (ip address) connected to server.' ) Regards MUTLU
Powered by vBulletin® Version 4.1.5 Copyright © 2013 vBulletin Solutions, Inc. All rights reserved.