473,569 Members | 2,400 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

O.T. ==> PING discussion

MLH
C:\Docs\TitleWo rk>ping piedmonttriadto wing.dyndns.org

Pinging piedmonttriadto wing.dyndns.org [70.60.253.195] with 32 bytes
of data:

Reply from 70.60.253.195: bytes=32 time=49ms TTL=239
Reply from 70.60.253.195: bytes=32 time=52ms TTL=239
Reply from 70.60.253.195: bytes=32 time=324ms TTL=239
Reply from 70.60.253.195: bytes=32 time=61ms TTL=239

Ping statistics for 70.60.253.195:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 49ms, Maximum = 324ms, Average = 121ms

C:\Docs\TitleWo rk>

Q: Should one expect shorter ping times pinging the IP
address directly as opposed to traveling through dyndns?
Aug 31 '06 #1
4 1730
On Thu, 31 Aug 2006 11:00:29 -0400, MLH <CR**@NorthStat e.netwrote:
>C:\Docs\TitleW ork>ping piedmonttriadto wing.dyndns.org

Pinging piedmonttriadto wing.dyndns.org [70.60.253.195] with 32 bytes
of data:

Reply from 70.60.253.195: bytes=32 time=49ms TTL=239
Reply from 70.60.253.195: bytes=32 time=52ms TTL=239
Reply from 70.60.253.195: bytes=32 time=324ms TTL=239
Reply from 70.60.253.195: bytes=32 time=61ms TTL=239

Ping statistics for 70.60.253.195:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 49ms, Maximum = 324ms, Average = 121ms

C:\Docs\TitleW ork>

Q: Should one expect shorter ping times pinging the IP
address directly as opposed to traveling through dyndns?
No. The ping will travel the same route. The only difference is that
you won't have to resolve the address before pinging.

-=-=-=-=-=-=-=-=-=-=-=-=
Randy Harris
tech at promail dot com
Aug 31 '06 #2
Why on God's Green Earth would you post this in an Access newsgroup?
Maybe an MS O/S newsgroup, but ACCESS???

MLH wrote:
C:\Docs\TitleWo rk>ping piedmonttriadto wing.dyndns.org

Pinging piedmonttriadto wing.dyndns.org [70.60.253.195] with 32 bytes
of data:

Reply from 70.60.253.195: bytes=32 time=49ms TTL=239
Reply from 70.60.253.195: bytes=32 time=52ms TTL=239
Reply from 70.60.253.195: bytes=32 time=324ms TTL=239
Reply from 70.60.253.195: bytes=32 time=61ms TTL=239

Ping statistics for 70.60.253.195:
Packets: Sent = 4, Received = 4, Lost = 0 (0% loss),
Approximate round trip times in milli-seconds:
Minimum = 49ms, Maximum = 324ms, Average = 121ms

C:\Docs\TitleWo rk>

Q: Should one expect shorter ping times pinging the IP
address directly as opposed to traveling through dyndns?
Aug 31 '06 #3
MLH
Sounds reasonable. Thx, Randy.
Aug 31 '06 #4
Since we're on an OT excursion...

You can ping a list of IPs from inside Access and write the results
back to your DB. Very little to it. There's code at vbnet (Randy
Birch's site). You can call it from inside Access. The way I did it
was to convert the various possible responses to T/F (I think the
"success" variable = 0, so you compare that result to zero.) Then if
you open an updateable recordset on your table, you can have access do
all the pinging for you.

Aug 31 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
2527
by: Sven Dzepina | last post by:
Hello, How I can cancle or jump over to the next if the progress is longer than 1 sec. He must cancle the fsockopen connection if the host is offline... Here is my Code: /////////////////////////////////////////////////////////////////////
1
9215
by: Marc | last post by:
Hi all, In searching for an answer to this problem I found several solutions dealing with Unix but none dealing with Windows. Basically I want to send a ping for an indefinite period of time, stop it at some point, and then read the results. I open up a ping process using popen(). I found ways to send a break signal using signal module,...
61
24420
by: Toby Austin | last post by:
I'm trying to replace <table>s with <div>s as much as possible. However, I can't figure out how to do the following… <table> <tr> <td valign="top" width="100%">some data that will 'stretch'</td> <td valign="top" width="300">some data that won't 'stetch'</td> </tr> </table>
3
2243
by: Jason Rodman | last post by:
I have downloaded every example on how to create a ping utility in .Net in both VB and C#, but have been disappointed with the results. I have YET to find an example that returns consistent results that are even close the the actual ping command line utility. For example: If i would ping the same server over and over, some pings would come...
0
7754
by: Ed | last post by:
I've attached some VB.NET code I've hacked together (some taken from MS examples & newsgroup postings) that will perform a ping or IcmpSendEcho using the icmp.dll (see this for more info: http://support.microsoft.com/default.aspx?scid=kb;en-us;170591 ). The problem I have is in order to perform a discovery/ping of an entire subnet...
21
30492
by: Neel | last post by:
I am trying to "ping" a remote host in my C++/Redhat Linux code to check whether that host is connected or not. if (0 == system("ping -w 2 192.168.0.2)) But, in both cases (connected/disconnected), system call returns 0. Can someone please show what I am doing wrong? How to check the actual result of the ping status using C++ on Redhat...
5
5573
by: Deepak | last post by:
I am programing a ping application which pings various centers . I used timer loop and it pings one by one. Now when i finish pinging one center it should wait for the ping_completed function to be executed and then continue pinging another certer. The ping_completed function is called on completion of ping by the os and i have no...
1
18456
by: Krish | last post by:
All, I have an offline application that works online for some data syncronization. For data syncronization I access a webservice. I want to show whether my application is online or not by checking whether the application is able to access the webservice. If the webservice is accessible, the application is online. otherwise it is offline ...
6
3450
by: Dave Marden | last post by:
I currently use this routine in vbscript to ping computers and get the status of ping to determine whether to try to backup a machine, I am trying to change it to work with vb2003.net I am wondering if anyone has a ping function they could share with me. I have done some searching on this but cannot find anything specifically for vb2003. ...
0
7618
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7926
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
8138
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7679
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
7983
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the...
0
6287
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
0
5223
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
1
2117
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
0
946
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.