Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I am using FTP from Notepad++ to connect to host. On getting connected I am getting following output in a window named NppFTP-Output
220---------- Welcome to Pure-FTPd [privsep] ----------
220-You are user number 17 of 500 allowed.
220-Local time is now 12:55. Server port: 21.
220-This is a private system - No anonymous login
220 You will be disconnected after 3 minutes of inactivity.
My question is about second line which says 220-You are user number 17 of 500 allowed., What does this mean? Does this mean I can connect only 500 times to the server?
It is telling you that 500 simultaneous connections (users) may be made at any point in time. When you connected, you were the 17th user connected (assuming every user has one connection).
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
Using static routes is it possible to access a host with an IP address of 1.2.3.4 on port 4000 that is connect to rtrnode on a wlan network that has a public ip address of x.x.x.14 from a remote host (h1)?
h1 -------router-------INTERNET-------(public IP(x.x.14)) = rtrnode(1.2.3.3)---------destination(1.2.3.4)
NO: Unless:You tunnel. This way the foreign LAN is a hop from the LAN you are on according to the routers on both ends that handle the packetizing and perform the VPN. It is easiest to set this up using firewalls like : PFSense or the likes. This link explains, there are many more: http://www.makeuseof.com/tag/vpn-tunnel-set/. You cannot route across the Internet with static routes unless you have control over the routers that are routing. They run BGP and will direct your traffic to the valid IP you are incorrectly using in your private LAN.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
Is there anyway to ping a web domain from another location in command line ?
I found some websites who provide this kind of services but was wondering if I can do this from terminal.
Thank you.
search online ping site; for example i found helloacm
i wrote this:
#!/bin/bash
echo -e $(curl -s https://helloacm.com/api/ping/?host=${1:-"yahoo.com"})
run and output is:
/tmp$ ./siteping anubis.ir
"PING anubis.ir (5.56.133.10) 56(84) bytes of data.
64 bytes from host4.azaronline.com (5.56.133.10): icmp_seq=1 ttl=54 time=14.9 ms
64 bytes from host4.azaronline.com (5.56.133.10): icmp_seq=2 ttl=54 time=14.8 ms
64 bytes from host4.azaronline.com (5.56.133.10): icmp_seq=3 ttl=54 time=14.8 ms
--- anubis.ir ping statistics ---
3 packets transmitted, 3 received, 0% packet loss, time 2002ms
rtt min\/avg\/max\/mdev = 14.849\/14.888\/14.951\/0.109 ms
"
OR you can write mini php script and upload it on your site..
then run it with curl from terminal
for example see this link's link1 link2 link3
If the domain's server firewall allows it you can use
ping www.domain.com
Of course it's only an example, the top level domain doesn't have to be '.com'
If ICMP is not allowed, you'll get timeouts.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 9 years ago.
Improve this question
I installed IHS and then configured the admin service, however, now when I try to access it using websphere 8.5 it fails
When I try to start
com.ibm.ws.management.webserver.ServerNotAvailableException: start No Connection
When I try to reach config
[1/10/14 17:15:24:868 EST] 0000006f SystemOut O IOException java.net.ConnectException: Connection refused: connect
and when I access through a browser I get the following...
[Fri Jan 10 16:28:29 2014] [error] [client 127.0.0.1] client denied by server configuration: C:/apache
This is clearly wrong as i do not have a c:\apache but I cannot figure what is configured wrong.
Any ideas?
In my case the problem was something with the proxy at work. When I edited my Hosts to direct my domain requests to 127.0.0.1 instead of leaving it up to the DNS it worked!
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I keep on getting this message while trying to move files from one server to another.
ftp: connect: A remote host did not respond within the timeout period.
What could be the cause and how could I fix it?
Thank you!!!
Check the server firewall
Check open ports
Check if the server or network is busy
Check the timeout specified at the server
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 11 years ago.
Improve this question
I have a non-static ip in my computer. But i want to use C# to write a program which ping a website through a proxy.
I collected 11 000 proxy in the world and i made a loop from 1 to 11 000. But:
When I ping a website, it uses my ip in computer instead of a proxy with its port.
I tried to make a tracert from a proxy to the website. It's ok. The problem is: Tracert is difference from ping.
Total, I mean that I want to make a loop from 1 to 11 000 with proxies and its port. then with a proxy, it will ping to the website.
It's like DoS.
hmm well you will need to connect to the proxy servers but the question is why do you want to connect to 11000 servers and ping?
My guess is nothing thats legal