1752676 Members
6095 Online
108789 Solutions
New Discussion юеВ

Re: reg:domain name

 
p.balamurugan
Advisor

reg:domain name

If we want find the ip for microsoft.com in open vms. How we can find.
4 REPLIES 4
Steven Schweda
Honored Contributor

Re: reg:domain name

It depends on the VMS version and/or the
TCP/IP package which is installed. As a
guess, you might try something like:

alp $ NSL*OOKUP :== $ SYS$SYSTEM:TCPIP$NSLOOKUP.EXE
alp $ nsl microsoft.com
Server: alp-l.antinode.org
Address: 10.0.0.9

Non-authoritative answer:
Name: microsoft.com
Addresses: 207.46.130.108, 207.46.250.119


Of course, it also depends on what you
intend to do with the IP address(es).
Hein van den Heuvel
Honored Contributor

Re: reg:domain name

Which TCP Stack are you using?
UCX, "HP TCP/IP Services for OpenVMS"
Do you wnat the data from a command line or from a program?

Just use 'ping microsoft.com'
Or $UCX PING microsoft.com
Or TCPIP SHOW HOST ...

Or call gethostbyname ?

http://h71000.www7.hp.com/doc/tcpip55.html

fwiw,
Hein
comarow
Trusted Contributor

Re: reg:domain name


Do you mean you want the tcpip address of microsoft.com?

Lots of ways. With HP TCPIP
TCPIP ping it

$tcpip
tcpip> ping www.microsoft.com


Is that what you mean?
p.balamurugan
Advisor

Re: reg:domain name

Thank for all