How would you find whether a remote server is up or not?
Answers were Sorted based on User's Feedback
Answer / amitshiknis
You can ping to that server and check if it is online or
not. You can take a console of the server,or simply try to
telnet/ssh to that machine.
Thanks,
Amit Shiknis
| Is This Answer Correct ? | 13 Yes | 2 No |
Answer / bc
Some times icmp requests might be blocked on the server. So
server might not respond to ping requests.
So better option is try to telnet to various ports on the
server. If it's a webserver 80 port will surely be UP.
So
telnet <server-ip> 80
Will surely yield some results.
| Is This Answer Correct ? | 11 Yes | 2 No |
Answer / sujit
you ping to the server from you command prompt
ex: ping <IP ADDRESS>
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / satyaveer sharma
1 Method: which is generally used is ping command......
ping ip address
2 Method: if your ping command returns 0 packet received...
than we can try by either SSh or telnet command to remotly
login on that server..(use telnet command with port no which
is open using nmap serverip address)
telnet ip-address portno
butsome times in linux administrator can block this service
from outers network.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / girish g pillai
Ping could be disabled on the remote machine.
Telnet cannot be used as a reliable method, because we have
to know the services running on the machine to telnet to
that port.
nmap would be a reliable method, but normal nmap checks are
disabled in the network level, so it would be good to run
nmap in stealth mode.
nmap -sS <IP Addr>
| Is This Answer Correct ? | 2 Yes | 0 No |
script is like x=10; y=20; [$x-ne$y]; echo $ please give me output.
if i have one folder say aaa and that folder having 100 files from that 50 files there aaa word is written how to find in which aaa is writen and without opening that file
Why makefile is used in linux?
What is devops linux?
Which of the Commands delete the files from the /tmp directory, issued by non-root user?
Explain getopts command of linux?
how to call recursive grep function?
What is linux load average?
Hi All of Unix/Linux professional Q.Why soft link file not open by cat command. Ihave make following symbolic link but when i open with #cat linkfilename it does not oped please see the following code and try to answer. # ln -s file1 ~/mydir/filea [root@dhcppc0 ~]# cd mydir [root@dhcppc0 mydir]# ls -l total 4 lrwxrwxrwx 1 root root 5 2010-04-04 09:04 filea -> file1 [root@dhcppc0 mydir]# cat filea cat: filea: No such file or directory
How do I change directories in linux command line?
How do I run multiple commands in linux?
What is netstat command in linux?