×
The internal search function is temporarily non-functional. The current search engine is no longer viable and we are researching alternatives.
As a stop gap measure, we are using Google's custom search engine service.
If you know of an easy to use, open source, search engine ... please contact support@midrange.com.
I think DIG is the new and improved version of NSLOOKUP.
-----Original Message-----
From: Bryan Dietz [mailto:bdietz400@xxxxxxxxx]
Sent: Wednesday, May 15, 2019 2:08 PM
To: Midrange Systems Technical Discussion <midrange-l@xxxxxxxxxxxxxxxxxx>
Subject: Re: Hostname lookup by IP?
I use DIG
/* before compiling CRTPF QTEMP/STDOUT RCDLEN(132) */
PGM &IP
DCL &IP *CHAR 15
DCL &X *CHAR 75
DCLF QTEMP/STDOUT
CRTPF QTEMP/STDOUT RCDLEN(132)
MONMSG CPF7302 EXEC(CLRPFM QTEMP/STDOUT)
OVRDBF (STDOUT) TOFILE(QTEMP/STDOUT)
/* DIG HOSTNAME(&IP) REVERSE(*YES) IPVSN(*IPV4ONLY) SHORT(*YES)
IDENTIFY(*YES) */
DIG HOSTNAME(&IP) REVERSE(*YES) IPVSN(*IPV4ONLY) SHORT(*YES)
LOOP: RCVF
MONMSG MSGID(CPF0864) EXEC(GOTO CMDLBL(END))
CHGVAR &X ('IP Address ' || &ip *tcat ' - ' || %TRIMR(&STDOUT '. '))
SNDPGMMSG MSG(&X)
GOTO LOOP
END:
/* DSPPFM QTEMP/STDOUT */
dltf QTEMP/STDOUT
DLTOVR STDOUT
endpgm
Justin Taylor wrote on 5/14/2019 6:54 PM:
How do I do a hostname lookup from IBMi via 5250? The equivalent to "ping -a" from my PC.
Thanks
As an Amazon Associate we earn from qualifying purchases.