Jump to content

Detect servers are Online or Offline


mbkowns
 Share

Recommended Posts

Below are some examples of how I would detect a Microsoft server is online or offline. If I had any running databases then I could connect to that test reads or writes. Do any of you have any other ideas to better the detection if the server is up or down?

PING

Only works good if pinging is enabled and as long as the machine's network card isn't being overloaded (coping data many users slow link)

$pingerror = Ping($YOUR-IP)

If $pingerror Then

;Server online

Else

;Server Offline

EndifoÝ÷ Ù´Ä,Ñý°%Ø^n^°ÞyÛhrËZ¶ë(ªÞ'+¢Êµº1zË("×¥ëm¢Ø^¦í×ZصégzÛ-k+(¥éíéíë®÷«Ë©jwHrZ,zØ^±ë,²*'nëb~×¥ë_j)l×%¢Ç¬jwHq©Ýz׶ØZ·­èqë,{­±CÃ1
§çmë^w­r^(®Gڲ׫jëh×6$Telnet_PID = Run("telnet.exe mbkowns 139", "", @SW_HIDE)

ProcessWaitClose ($Telnet_PID, 5)
        
If ProcessExists("telnet.exe") Then
  MsgBox(4096, "", "Open")
  ProcessClose($Telnet_PID)
Else
  MsgBox(4096, "", "Closed")
Endif
Edited by mbkowns
Link to comment
Share on other sites

Hi.

Of course you can code that on your own. PING is a nice approach to check a host's up/down status. For other services you will have to check that service directly. Simple services can be checked by telnetting the according port (POP3 e.g., DNS, ...)

If you are looking for a reliable, comfortable and powerfull solution, have a look at WhatsUp. Of course, that's payware. And it isn't cheap payware, if you need to monitor a big bunch of hosts/services.

Nevertheless you get a really good application with a lot of notification options in case services / hosts go down or are up again, or if they tend to fail (PING drops, e.g.).

Regards, Rudi.

Earth is flat, pigs can fly, and Nuclear Power is SAFE!

Link to comment
Share on other sites

I have the ping and telnet working great I am just looking for other ways to detect it. I am basically building that same program but now I don't have to pay for it and it does exactly what I want it to do. I know there are many non freeware programs out there that do this...

Link to comment
Share on other sites

I have the ping and telnet working great I am just looking for other ways to detect it. I am basically building that same program but now I don't have to pay for it and it does exactly what I want it to do. I know there are many non freeware programs out there that do this...

Open port 139 and connect. If you can you got it.

♡♡♡

.

eMyvnE

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...