I've never used the SDM but I have it installed on laptop. I've gotten the router configured correctly but I get this when I try and connect to it:
<!---
*
* runAPP.shtml
*
* Copyright (c) 2004 by Cisco Systems, Inc. All rights reserved.
*
*-->
<HTML>
<HEAD>
<script language="javascript" src="common.js"></script>
<script language="javascript" src="appsupport.js"></script>
<script language="javascript" src="localized_msgs6.js"></script>
<script language="javascript">
function getcookie(cookiename) {
var cookiestring=""+document.cookie;
var index1=cookiestring.indexOf(cookiename)
if (index1==-1 || cookiename=="") {
return "";
}
var index2=cookiestring.indexOf(';',index1);
if (index2==-1) index2=cookiestring.length;
var c = unescape(cookiestring.substring(index1+cookiename.length+1,index2));
return c;
} // getcookie()
function cookieLifeTime() {
var UTCstring;
Today = new Date();
nomilli=Date.parse(Today);
Today.setTime(nomilli+365*24*60*60*1000);
UTCstring = Today.toUTCString();
return UTCstring;
} // cookieLifeTime()
function setcookie(name, value) {
cookiestring=name+"="+value+";EXPIRES="+cookieLifeTime()+";path=/";