Hello everyone,
I buddy is finishing up a router server for me for tomorrow that uses the radius approach to a router to secure a lan with public access.
I've configured pages for this Mikrotik router before, but he's got a newer version. I know the script refferences the meta tag for the URL to redirct to. Where in the meta tag do I actually place the url...for instance the page should redirect to
http://www.myfavoritewebpage.comThanks a ton,
Chris
Code looks like:
<html>
<head>
<title>mikrotik hotspot > redirect</title>
<meta http-equiv="refresh" content="2; url=$(link-redirect)">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="expires" content="-1">
<style type="text/css">
<!--
textarea,input,select {
background-color: #FDFBFB;
border: 1px #BBBBBB solid;
padding: 2px;
margin: 1px;
font-size: 14px;
color: #808080;
}
body{ color: #737373; font-size: 12px; font-family: verdana; }
a, a:link, a:visited, a:active { color: #AAAAAA; text-decoration: none; font-size: 12px; }
a:hover { border-bottom: 1px dotted #c1c1c1; color: #AAAAAA; }
img {border: none;}
td { font-size: 12px; color: #7A7A7A; }
-->
</style>
<script language="JavaScript">
<!--
function startClock() {
$(if popup == 'true')
open('$(link-status)', 'hotspot_status', 'toolbar=0,location=0,dire
ctories=0,
status=0,m
enubars=0,
resizable=
1,width=29
0,height=2
00');
$(endif)
location.href = '$(link-redirect)';
}
//-->
</script>
</head>
<body onLoad="startClock()">
<table width="100%" height="100%">
<tr>
<td align="center" valign="middle"><img src="img/AppState_New_Logo
_wifi.jpg"
width="211" height="55">
<br>
You are logged in <br>
<br>
If nothing happens, click <a href="$(link-redirect)">he
re</a></td
>
</tr>
</table>
</body>
</html>