ping Questions
2
I want to check if a specific device is connected to my network or not. I have the ip address of that device. I am unable to find a way to ping that device using flutter app.
The goal here is to c...
Gosney asked 3/1, 2020 at 7:39
16
Solved
Ping returns this by default:
64 bytes from 203.173.50.132: icmp_seq=0 ttl=244 time=57.746 ms
Is there some way I can get it to add the timestamp?
For example,
Mon 21 May 2012 15:15:37 EST | 6...
9
I'm unable to find any good easy to learn documentation on python and networking. In this instance, I'm just trying to make a easy script which I can ping a number of remote machines.
for ping in ...
Standoff asked 23/8, 2012 at 23:9
1
Solved
Is there a way to test a connection to a SQL Server through the command line or without any extra software? I've tried the ping and telnet methods shown in this article, but they both fail to find ...
Cushitic asked 13/5, 2020 at 19:51
7
Solved
Does anyone have C# code handy for doing a ping and traceroute to a target computer? I am looking for a pure code solution, not what I'm doing now, which is invoking the ping.exe and tracert.exe pr...
Durkheim asked 27/9, 2008 at 0:29
10
Solved
In my school, the Internet is not available (every night after 23:00 the school will kill the Internet connection, to put us to bed >..<), Then the ping will never stop, though I have used th...
5
Solved
When I ping an IP address, what is the difference between Request timed out and Destination host unreachable returned from the command?
Douce asked 1/3, 2014 at 5:36
3
Solved
The ping utility works above the network layer and DNS works in the application layer.
If we try ping www.google.com, how does it resolve the IP address of GOOGLE since the DNS is above the...
Laxation asked 18/6, 2013 at 5:15
9
How to calculate the speed of an internet connection by some average ping rates.What are the calculations involved in it.IS it possible to calculate upload/download limit by ping rate
EDIT
If ping...
Stjohn asked 1/1, 2011 at 20:5
1
Solved
I'm working with Docker containers for a while now but can't figure out how to ping docker containers which are part of my host network.
So until now I created my containers specifing the name and ...
Vomer asked 8/10, 2020 at 9:45
4
Solved
I want to write a C or C++ program, that given an IP address, Pings it and then performs further action based on whether the Ping was successful or not.
How to do this?
Gherkin asked 14/7, 2011 at 17:14
9
Solved
I want a bash script that'll do:
for c in computers:
do
ping $c
if ping is sucessfull:
ssh $c 'check something'
done
If I only do ssh and the computer is iresponsive, it takes forever for the...
3
Solved
I would like to programatically make my device answer to broadcast pings (i.e pinging 192.178.1.255) while connected to a wifi network.
Is there a way i can do that ? Maybe a listener that will pi...
Nador asked 4/11, 2012 at 14:45
4
I execute the ping command in python by opening a cmd window with the ping command using python's subprocess module.
For example:
import subprocess
p = subprocess.Popen('ping 127.0.0.1')
Afterw...
Timmytimocracy asked 2/3, 2016 at 14:30
8
My work laptop is is a member of a domain (the OS is Windows 8). Created a new VM, locally on this laptop (using built-in Hyper-V). DHCP is provided by the domain and all IP addresses are ass...
Effervesce asked 16/8, 2013 at 16:51
9
Solved
I have a device on a network that I am attempting to ping through my Java program. Through my windows command prompt, I can ping the device address fine and do a tracert on the address fine.
Onlin...
Hbeam asked 15/3, 2010 at 16:20
2
Solved
I want use node.js to ping host in local network. Here is my code :
var ping = require('ping');
var host2 = ['192.168.0.1', '192.168.1.2', '192.168.2.3'];
host2.forEach(function(host){
ping.sys...
Electrograph asked 26/5, 2017 at 4:20
3
Solved
I am trying to implement Mark Russinovich's SysInternals PsPing tool in C# to measure latencies using TCP ping.
I am not sure how it makes the ping call (apparently not uses raw Window sockets, be...
4
Solved
I have created a simple script that iterates through a list of servers that I need to both ping, and nslookup. The issue is, pinging can take some time, especially pinging more server than that are...
Abscind asked 30/1, 2020 at 20:23
2
Solved
I am testing connecting to a remote server from my local machine. Using ping I can successfully connect but if I try with curl it just hangs:
Working with ping:
$ ping db-machine-02
Pinging db-ma...
4
Solved
The following function will ping my subnet with PingRange 1 254 to check IP's:
function PingRange ($from, $to) {
$from..$to | % {"192.168.0.$($_): $(Test-Connection -BufferSize 2 -TTL 5 -Computer...
Lector asked 21/12, 2019 at 8:11
3
How to ping an IP address (or by server name) in Delphi 10.1 without using Indy components? TIdICMPClient works with elevated privileges but I want to do it as a normal user.
3
Solved
I have 5 pc and i want to ping this pc's are available or no. So I'm using c# Ping class. Two pc are available but the other 3 pc are closed when i ping them my program wait min 7 seconds for respo...
4
Solved
In Windows Azure role, I cannot ping out
D:\Users\foglight>ping www.google.com
Pinging www.l.google.com [209.85.143.104] with 32 bytes of data:
Request timed out.
Request timed out.
Request ti...
7
Usually, when pinging a server IP address we have this in return:
Pinging <IP address> with 32 bytes of data:
Reply from <ip> : bytes=32 time=151 TTL=121
Reply from <ip> : bytes=...
© 2022 - 2024 — McMap. All rights reserved.