Using IFRAMEs and the "Publish Group" feature of IPCheck Server Monitor you can publish the current monitoring status of your network on any webpage.
If you are monitoring your network using IPCheck Server Monitor it is a good idea to make the current network status available to the other employees etc. in your company.
There are two options to review the current network monitoring status:
For authenticated access you would have to hand out the username and password to all employees and they would then be able to change monitoring settings. Usually this is not a good idea. We strongly recommend to make the status publicly accessible.
To make a group's status publicly available
Paste the public URL into a browser and test it.
Again there are two options:
What you need to do is to create a page in your Intranet or website which must include an IFRAME HTML tag. This creates a frame inside your webpage which will then show the monitoring status.
See below for the HTML code for a sample webpage. Replace the PUBLIC GROUP URL with your URLs and you are done!
Applies to: Version 4 or later
Last Edited: 2005/12/12
<html>
<head>
<title>Intranet Network Status </title>
</head>
<body marginheight="0" marginwidth="0">
<TABLE cellSpacing=0 cellPadding=0 width=600 border=2>
<TR>
<TD>
<H2>Header 1</H2></TD>
<TD>
<H2>Header 2</H2></TD>
<TD>
<H2>Header 3</H2></TD>
</TR>
<TR>
<TD><IFRAME name="Frame1" align=center hspace=2 vspace=2 src="PUBLIC GROUP URL 1" frameBorder=0 width=200 height=800></IFRAME></TD>
<TD><IFRAME name="Frame2" align=center hspace=2 vspace=2 src="PUBLIC GROUP URL 2" frameBorder=0 width=200 height=800></IFRAME></TD>
<TD><IFRAME name="Frame3" align=center hspace=2 vspace=2 src="PUBLIC GROUP URL 3" frameBorder=0 width=200 height=800></IFRAME></TD>
</tr></table>
</body>
</html>