PING to get ip address


 
Thread Tools Search this Thread
Top Forums Shell Programming and Scripting PING to get ip address
# 1  
Old 10-06-2012
PING to get ip address

I want to print the domain:ip for a list of domains in a text file.

the problem is godaddy has blocked the domains so the result of a ping is like this:

Code:
PING domain.com (68.178.232.99): 56 data bytes

--- domain.com ping statistics ---
1 packets transmitted, 0 packets received, 100.0% packet loss

(domain.com is an example domain)







a normal result is like this:
Code:
PING domain.com (123.123.123.123): 56 data bytes
64 bytes from 123.123.123.123: icmp_seq=0 ttl=52 time=235.424 ms

(123.123.123.123 is just an example ip)
(not on godaddy)




because the godaddy domains are blocked from ping or something it takes very long to run, how can i get the ip faster?

thanks
# 2  
Old 10-06-2012
What's your system?

On Linux, you can use -w to set the deadline to something smaller.
# 3  
Old 10-06-2012
nslookup is designed in both windows and unix to get IP and domain name information.

Code:
nslookup ip.addr
#
#or 
nslookup someplace.com

In widnwos you should be in cmd.exe first.
# 4  
Old 10-07-2012
What is your goal?
To get the IP for DNS.
Then you can try the host command

Example
Code:
# host www.unix.com
www.unix.com has address 4.59.125.171

# 5  
Old 12-22-2012
Hi,if you want to know the domain name or ip address there is a easy way to find.I recommend the site Whoisxy.com .Here they are providing the services of Domain to Ip to find the ip address by entering the domain name and Ip to Domain to find the domain name by entering the ip address.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Beginners Questions & Answers

Ping certain range of ip address

hey guys, In my program i am giving an initial ip & end ip. i just want to check every ip in that range is pingable or not echo "Enter the initial ip:" read inip echo "Enter the end ip:" read endip for (( i=0; i<=$endip; i++ )) do if ping -c 4 $inip then echo "pingable" else echo... (5 Replies)
Discussion started by: Meeran Rizvi
5 Replies

2. Programming

Ping test sends mail when ping fails

help with bash script! im am working on this script to make sure my server will stay online, so i made this script.. HOSTS="192.168.138.155" COUNT=4 pingtest(){ for myhost in "$@" do ping -c "$COUNT" "$myhost" &&return 1 done return 0 } if pingtest $HOSTS #100% failed... (4 Replies)
Discussion started by: mort3924
4 Replies

3. UNIX for Advanced & Expert Users

C program to detect duplicate ip address if any after assigning ip address to ethernet interface

Hi , Could someone let me know how to detect duplicate ip address after assigning ip address to ethernet interface using c program (3 Replies)
Discussion started by: Gopi Krishna P
3 Replies

4. IP Networking

Ping domain indicates the external ip address and not the local ip

when i execute from local machine ping domainname i get the external ip address but i am on local dns and i expect the local ip address.. using nslookup : no problem so i cannot find why... thanks (2 Replies)
Discussion started by: activedms
2 Replies

5. Shell Programming and Scripting

How to get reason for ping failure using perls Net::Ping->new("icmp");?

Hi I am using perl to ping a list of nodes - with script below : $p = Net::Ping->new("icmp"); if ($p->ping($host,1)){ print "$host is alive.\n"; } else { print "$host is unreacheable.\n"; } $p->close();... (4 Replies)
Discussion started by: tavanagh
4 Replies

6. Shell Programming and Scripting

Animation Ping on Solaris Like Cisco Ping

Hi, I develop simple animation ping script on Solaris Platform. It is like Cisco ping. Examples and source code are below. bash-3.00$ gokcell 152.155.180.8 30 Sending 30 Ping Packets to 152.155.180.8 !!!!!!!!!!!!!.!!!!!!!!!!!!!!!. % 93.33 success... % 6.66 packet loss...... (1 Reply)
Discussion started by: gokcell
1 Replies

7. Solaris

ping with source address

Hello, is there any way to ping with source address on Solaris ? (3 Replies)
Discussion started by: marmellata
3 Replies

8. IP Networking

Tracing a MAC address to IP address: Solaris

Hi there I lost connectivity to one of our remote systems and when I checked the messages log I found the following: Aug 10 23:42:34 host xntpd: time reset (step) 1.681729 s Aug 16 13:20:51 host ip: WARNING: node "mac address" is using our IP address x.x.x.x on aggr1 Aug 16 13:20:51 host... (9 Replies)
Discussion started by: notreallyhere
9 Replies

9. UNIX for Dummies Questions & Answers

Panic kernal-mode address fault on user address 0x14

:) Firstly Hi all!!, im NEW!! and on here hoping that someone might be able to offer me some help... i have a server that keeps crashing every few days with the error message: PANIC KERNAL-MODE ADDRESS FAULT ON USER ADDRESS 0X14 KERNAL PAGE FAULT FROM (CS:EIP)=(100:EF71B5BD) EAX=EF822000... (10 Replies)
Discussion started by: Twix
10 Replies

10. UNIX for Dummies Questions & Answers

Ping file with ip address

Hi, If have a file with 93 ip address that i want to ping in first place (later i want to use this file for snmp output of those ip addresses). First i want to do is to ping all those ip addresses. I know i can put for every ip address "ping" with the vi. But i want the keep this file... (3 Replies)
Discussion started by: Rensen
3 Replies
Login or Register to Ask a Question