I want to create a webpage in which I am adding some intranet links. I just wanted to know how to check whther the link that i have added, at a moment is working or not. I want to mark the link in RED if its not working else it should be green.
|
|
If you want check sever side (php example):
|
||
|
|
|
|
If you want to check client side...
|
||||
|
|
|
Ping something on the other side of the link. While you could probably find ways to check interface status or routing tables or various other things ... what you really want to know is whether the traffic is flowing to and from that destination. On unix can use
ping will exit with non-zero exit code if packets are dropped. |
||||
|
|
|
If you want a lightweight programmatic check, you could do an HTTP HEAD request and check for a response code greater than or equal to 200 and less than 400. |
||
|
|
