home *** CD-ROM | disk | FTP | other *** search
- <html>
- <head>
- <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
- <meta NAME="Author,Design" Content="GateKeeper Team; gatekeeper.gatekeeper@infopulse.ro">
- <meta NAME="CopyRight" Content="Infopulse Romania; www.infopulse.ro">
- <title>Empty</title>
- </head>
-
- <body>
-
-
- <%
- if Request.ReqParam("action") = "Delete" Then
- Dialer.DeleteLocalAddress 1,Request.ReqParam("mask")
- If Not Err.Number = 0 Then
- ErrLine = Err.Description
- End If
- End If
-
- if Request.ReqParam("action") = "Edit" Then
-
- if(Request.ReqParam("bIp")="TRUE") then
- Response.Redirect("LocalIp.agp?action=Edit&mask=" & Request.ReqParam("mask") )
- else
- Response.Redirect("LocalDomain.agp?action=Edit&mask=" & Request.ReqParam("mask") )
- end if
-
- End If
-
- %>
- <p><big><strong><font face="Arial">Edit the Dialer service</font></strong></big></p>
- <%
- If Not Len(ErrLine) = 0 Then
- Response.Write("<B><FONT COLOR=""#FF0000"">" & ErrLine & "</FONT></B><br>")
- End If
- %>
-
-
-
- <p><big><strong><font face="Arial">IP Address Masks</font></strong></big></p>
-
-
-
- <table border="1" cellpadding="0" cellspacing="0" width="100%">
- <tr>
- <td bgcolor="#183159" NOWRAP><strong><font face="Arial" color="#FFFFFF"> Mask </font></strong></td>
- <td bgcolor="#183159"><strong><font face="Arial" color="#FFFFFF"> Action </font></strong></td>
- </tr>
-
- <tr>
-
- <%
- FirstIp=""
- Dialer.InitLocalIMask
- FirstIp = Dialer.GetNextLocalIp
- while(Len(FirstIp))
- %>
- <tr>
- <td width="80%"><strong><font face="Arial">
- <%
- Response.Write(FirstIp)
- %>
- </font></strong></td>
- <form method="POST" action= "LocalAddresses.agp">
- <td width="20%">
- <input type="hidden" name="mask" value="<%Response.Write(FirstIp)%>" >
- <input type="hidden" name="bIp" value="TRUE" >
- <input type="submit" name="action" value="Edit">
- <input type="submit" name="action" value="Delete">
- </td>
- </form>
- </tr>
- <%
- FirstIp=Dialer.GetNextLocalIp
- wend
- %>
-
- </table>
-
- <p><big><strong><font face="Arial">Domain Name Masks</font></strong></big></p>
-
-
- <table border="1" cellpadding="0" cellspacing="0" width="100%">
- <tr>
- <td bgcolor="#183159" NOWRAP><strong><font face="Arial" color="#FFFFFF"> Mask </font></strong></td>
- <td bgcolor="#183159"><strong><font face="Arial" color="#FFFFFF"> Action </font></strong></td>
- </tr>
-
- <tr>
-
- <%
- FirstIp=""
- Dialer.InitLocalIMask
- FirstIp = Dialer.GetNextLocalDomain
- while(Len(FirstIp))
- %>
-
- <tr>
- <td width="80%"><strong><font face="Arial">
-
- <%
- Response.Write(FirstIp)
- %>
- </font></strong></td>
- <form method="POST" action= "LocalAddresses.agp">
- <td width="20%">
- <input type="hidden" name="mask" value="<%Response.Write(FirstIp)%>" >
- <input type="hidden" name="bIp" value="FALSE" >
- <input type="submit" name="action" value="Edit">
- <input type="submit" name="action" value="Delete">
- </td>
- </form>
- </tr>
-
- <%
- FirstIp=Dialer.GetNextLocalDomain
- wend
- %>
-
- </table>
-
-
-
- </div>
- <br>
- <H4>
- <font face="Arial">
- <a href="LocalIp.agp">Add local IP mask</a>/
- <a href="LocalDomain.agp">Add local domain-name mask</a>
- </font>
- </H4>
- <br>
- <br>
- <font size="1" face="Arial"><%Response.Write(GateKeeper.Version)%></font>
- <br>
- </body>
- </html>
-