ping Questions
4
Solved
I use websocket in javascript. But the connection close after one minute.
I am wondering somethings:
1- Is not Websocket naturaly providing with Ping/Pong messages not to close the connecti...
Jordans asked 15/6, 2018 at 13:38
3
Solved
I made in erlang shell:
1> node().
nonode@nohost
But
2> net_adm:ping(node()).
pang
Why? What's problem? Why not pong?
Thank you.
3
I'm attempting to write a Python script which uses the Scapy module to ping an internal IP range to determine which IP's are online. I've got this so far:
#!/usr/bin/python
from scapy.all import *...
1
I am using cuckoo sandbox for malware analysis. I have a virtualbox vm which has the IP set to 192.168.56.101. When the vm is powered on, there is a script agent.py which listens on port 8000. The ...
13
Solved
public void LoadAveragePingTime()
{
try
{
PingReply pingReply = pingClass.Send("logon.chronic-domination.com");
double AveragePing = (pingReply.RoundtripTime / 1.75);
label4.Text = (AveragePi...
Fragrance asked 18/8, 2009 at 2:24
7
I am trying to write a part in my app that will differentiate between an Active Wifi connection and an actual connection to the internet. Finding out if there is an active Wifi connection is pretty...
Freer asked 18/7, 2013 at 7:54
13
Solved
I'm trying to use a batch file to confirm a network connection using ping. I want to do batch run and then print if the ping was successful or not. The problem is that it always displays 'failure' ...
Salutary asked 17/2, 2012 at 14:12
1
It all started when I was trying to connect to a VM setup on GCP for SFTP only. Everytime I try to check SSH or setup an SFTP on this machine, it becomes unreachable (and its reachable and well con...
Prehensile asked 15/2, 2018 at 7:26
1
Solved
I know my router's IPv4 address. But when I Ping using TTL = 1 I don't get that IP. Rather, I get its IPv6 address. (I know of address.MapToIPv4() but that's only for IPv4s that were changed into I...
Think asked 1/4, 2019 at 19:2
9
Solved
I run a couple of game tunnelling servers and would like to have a page where the client can run a ping on all the servers and find out which is the most responsive. As far as I can see there seems...
Antediluvian asked 2/2, 2009 at 13:25
5
Solved
I just can't seem to understand how to structure an asynchronous call to SendPingAsync. I want to loop through a list of IP addresses and ping them all asynchronously before moving on in the progra...
Carlycarlye asked 27/2, 2014 at 19:31
7
Solved
I would like to be able to perform a ping and traceroute from within Python without having to execute the corresponding shell commands so I'd prefer a native python solution.
Genital asked 20/7, 2009 at 5:1
6
Solved
I am trying to calculate the average round-trip time for a collection of servers. In order to speed things up, I would like to perform the pings in parallel. I have written a function called Averag...
Electropositive asked 15/11, 2012 at 20:42
7
Solved
I know what SNMP is and I know what ping is. What is meant by a 'SNMP ping'? SNMP can be used to see if devices on a network are still alive.. what does it use to do this? I wouldn't have thought a...
Essentialism asked 12/3, 2012 at 15:2
1
Solved
1.What is the difference between --name and --hostname in docker run command?
2.Why foo can't reach bar by its hostname = barhost ?
create network and two containers connected to it:
docker netw...
Trula asked 23/12, 2018 at 22:5
4
Hi I need to execute the PING command using Java code and get summary of the ping host. How to do it in Java?
Whallon asked 11/1, 2012 at 6:20
1
Solved
I have a websocket client in python implemented using tornado.websocket.
WebSocketClientConnection
which connects to a server at remote end and communicate over websocket. Earlier I had implemente...
Hurlburt asked 6/9, 2018 at 10:0
2
Solved
I've created a method to check if my app is able to connect to my server using OkHttp.
This is my test class:
public class NetworkTest {
static boolean resultWeb = false;
public static boolean ...
Drumm asked 4/1, 2016 at 18:12
2
I can ping an IP from host box (Linux centos rhel 7.2) but when I do the same inside docker container, it fails to respond.
[root@f321ef079128]# ping 10.254.19.46
PING 10.254.19.46 (10.254.19.46) ...
Tol asked 31/10, 2016 at 10:22
4
Solved
I have a script that is looping through and sending a ping to a host every second. The purpose of which is to test wireless performance on my home network. The issue is, I seem to be getting timeou...
Giverin asked 29/3, 2014 at 1:12
2
How can I ping some web server in Android to test if I've Internet connection?
So I need the method which pings the given site and returns false if I've no Internet and true if I have.
Canzonet asked 5/7, 2013 at 16:8
8
Solved
So I have to use batch only for this. Basically, the server HOSTNAMES are all listed in a txt file. I used the following code to ping all the servers and display their results in a txtfile.
For /...
Obtrude asked 13/9, 2012 at 14:32
7
Solved
I'm thinking that this needs to be changed to a while clause, at the moment it'll wait till all 10000 pings are done, I need it to return when the ping is successful. The program "say" is on OSX it...
Zondra asked 25/5, 2011 at 2:36
4
Solved
Currently I use this code for retrieving the ping of a target system.
However it works so far only under linux and it is likely dependent on the locale settings.
To add support for windows will b...
Antisepsis asked 8/4, 2014 at 11:6
9
Solved
For frequent network troubleshooting purposes, do you know a publicly pingable host with an easy to remember IP address (such as 1.2.3.4)?
Hoeg asked 16/4, 2009 at 18:0
© 2022 - 2024 — McMap. All rights reserved.