Gå til innhold

Trøbbel med linksys WRT 54g


Anbefalte innlegg

Hei,

Har ett problem med Linksys WRT54G. Når jeg går inn på instillinger for routern i nettleseren (http://192.168.1.1/, med admin som passord) ser sida sånn ut: http://bildr.no/image/138164.jpeg, men egentlig skal den se ut omtrent som denne: http://www.lycoming.edu/acad/linksys01.jpg.

 

Får verken stilt inn passord eller oppdatert firmware. Er det noen som vet hva jeg må gjøre for å fikse dette? Har prøvd på to maskiner (bærbar med vista og stasjonær med XP) koblet begge via både kabel og trådløs.

Her er kildekoden fra sida jeg får opp:

[/b]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD><TITLE>Basic Setup</TITLE>
<META http-equiv=expires content=0>
<META http-equiv=cache-control content=no-cache>
<META http-equiv=pragma content=no-cache>

<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">

<LINK href="style.css" type=text/css rel=stylesheet>
<STYLE fprolloverstyle>A:hover {
       COLOR: #00ffff
}
.small A:hover {
       COLOR: #00ffff
}
</STYLE>

<script src="common.js"></SCRIPT>
<script language="Javascript" type="text/javascript" src="capsetup.js"></SCRIPT>
<script language="javascript" type="text/javascript" src="share.js"></SCRIPT>
<script language="javascript" type="text/javascript" src="help.js"></SCRIPT>
<script language=JavaScript>
var EN_DIS2 = '0';

var dhcp_win = null;

function valid_mtu(I)
{
       var start = null;
       var end = null;
       var num=document.setup.wan_proto.selectedIndex;
       if(num == 2){
               start = 576;
               end = 1492;
       }
       else if((num == 3)||(num == 4)){
               start = 576;
	end = 1460;
       }
       else{
               start = 576;
               end = 1500;
       }
       if(parseInt(I.defaultValue) > end){
       	I.defaultValue = end
       }
       valid_range(I,start,end,share.mtu,I.defaultValue);
}
function SelMTU()
{
       var F=document.setup;
       var num=F.mtu_enable.selectedIndex;

       mtu_enable_disable(F,num);
}
function mtu_enable_disable(F,I)
{
       EN_DIS1 = I;
       if ( I == "0" ){
               choose_disable(F.wan_mtu);
       }
       else{
               choose_enable(F.wan_mtu);
       }
}

function SelWAN(bflg)
{
var oldMode=document.setup.OldWanMode.value;
       var num=document.setup.wan_proto.selectedIndex;
       var str;
       date=new Date();
       if(num==0){
               if(bflg == false){
                       if(oldMode!=num)
                                document.setup.wan_mtu.value=1500;
                       else
                               document.setup.wan_mtu.value=document.setup.oldMtu.value;
               }
       }else if(num == 1){
               if(bflg == false){
                       if(oldMode!=num)
                               document.setup.wan_mtu.value=1500;
                       else
                               document.setup.wan_mtu.value=document.setup.oldMtu.value;
               }
       }else if(num == 2){
               if(bflg == false){
                       PPPEnable();
                       if(oldMode!=num)
                               document.setup.wan_mtu.value=1492;
                       else
                               document.setup.wan_mtu.value=document.setup.oldMtu.value;
               }
       }else if(num == 3){
               if(bflg == false){
                       if(oldMode!=num)
                               document.setup.wan_mtu.value=1460;
                       else
                               document.setup.wan_mtu.value=document.setup.oldMtu.value;
                       PPPEnable();
               }
       }else if(num == 4){
               if(bflg == false){
                       if(oldMode!=num)
                               document.setup.wan_mtu.value=1460;
                       else
                               document.setup.wan_mtu.value=document.setup.oldMtu.value;
                       PPPEnable();
               }
       }else if(num == 5){
               if(bflg == false){
                       if(oldMode!=num)
                               document.setup.wan_mtu.value=1500;
                       else
                               document.setup.wan_mtu.value=document.setup.oldMtu.value;
                       PPPEnable();
               }
       }
       SelWANMode();
       if(bflg == true){
               document.cookie="sWanMode="+escape(document.setup.now_proto.value)+"; expirse="+date.toGMTString();
               location.href="basic.htm";
       }
}
function SelWANMode(){
       var num=document.setup.wan_proto.selectedIndex;
       if(num==0)
               document.setup.now_proto.value="dhcp";
       else if(num==1)
               document.setup.now_proto.value="static";
       else if(num==2)
               document.setup.now_proto.value="pppoe";
else if(num==3)
	document.setup.now_proto.value="pptp";
else if(num==4)
	document.setup.now_proto.value="l2tp";
else if(num==5)
	document.setup.now_proto.value="heartbeat";
}
function to_submit(F)
{
       var sdhcp=new Number(document.setup.dhcp_start.value);
       var ndhcp=new Number(document.setup.dhcp_num.value);

       if((F.now_proto.value=="pppoe") || (F.now_proto.value=="pptp") || (F.now_proto.value=="l2tp") || (F.now_proto.value=="heartbeat")){
               var tmppd=document.setup.ppp_passwd.value;

               if(tmppd!="****************")
                 document.setup.pd.value=tmppd;
       }
       if(F.lan_ipaddr_3.value == F.dhcp_start.value){
       	alert("The DHCP server IP address is same with the DHCP Client IP address.")
       	return false
       }
       if(F.now_proto.value == "static" || F.now_proto.value == "pptp"){
	var WANIPPP = ''+F.wan_ipaddr_0.value+'.'+F.wan_ipaddr_1.value+'.'+F.wan_ipaddr_2.value+'.'+F.wan_ipaddr_3.value
        var str=F.lan_ipaddr_0.value + '.' + F.lan_ipaddr_1.value +'.'+F.lan_ipaddr_2.value+'.'+F.lan_ipaddr_3.value;
        if(WANIPPP == str)
        {
	      alert("The WAN IP address is same with the LAN IP address! Please check them again!")
	      return false
        }
        if(F.now_proto.value == "static"){
              var DNSip = F.wan_dns0_0.value + '.' + F.wan_dns0_1.value +'.'+F.wan_dns0_2.value+'.'+F.wan_dns0_3.value;
              if(DNSip == "0.0.0.0"){
        	alert("Please config one set of DNS to finish the setting.")
        	return false
              }
        }
}
       if(valid_value(F)){
	if(F.daylight_time.checked == false)
		F._daylight_time.value = 0;
	else
		F._daylight_time.value = 1;
               document.setup.dhcp_end.value=sdhcp+ndhcp-1;
               CheckLanIP(F);
               F.submit();
       }
}
function CheckLanIP(F)
{
var str=F.lan_ipaddr_0.value + '.' + F.lan_ipaddr_1.value +'.'+F.lan_ipaddr_2.value+'.'+F.lan_ipaddr_3.value;
if((str != F.chg_lanip.value) || (F.lan_netmask.value != F.oldLanSubnet.value)){
	document.cookie="SetSucc="+other.setsuc+": RenewIP="+other.renewip+": butClose="+sbutton.close+"; expirse="+date.toGMTString();
}
}
function valid_value(F)
{
if(F.now_proto.value == "pptp" || F.now_proto.value == "static"){
               if(!valid_ip(F,"F.wan_ipaddr",errmsg.err34,ZERO_NO|MASK_NO))
                       return false;
               if(!valid_mask(F,"F.wan_netmask",ZERO_NO|BCST_NO))
                       return false;

               if(F.now_proto.value == "static"){
                       if(!valid_ip(F,"F.wan_gateway",errmsg.err35,ZERO_NO|MASK_NO))
                               return false;

                       if(!valid_ip_gw(F,"F.wan_ipaddr","F.wan_netmask","F.wan_gateway"))
                               return false;
                       if(!valid_ip(F,"F.wan_dns0",errmsg.err36,MASK_NO))
               		return false;
     			if(!valid_ip(F,"F.wan_dns1",errmsg.err36,MASK_NO))
               		return false;
               }
	if(F.now_proto.value == "pptp"){
		if(!valid_ip(F,"F.wan_gateway",errmsg.err35,ZERO_NO|MASK_NO))
               		return false;
		if(!valid_ip_gw(F,"F.wan_ipaddr","F.wan_netmask","F.wan_gateway"))
			return false;
       	}
}
if(F.now_proto.value == "pppoe" || F.now_proto.value == "pptp" || F.now_proto.value == "l2tp" || F.now_proto.value == "heartbeat"){
               if(F.ppp_username.value == ""){
                       alert(errmsg.err0);
                       F.ppp_username.focus();
                       return false;
               }
       }
       if(!valid_dhcp_server(F))
               return false;
       if(F.router_name.value == ""){
               alert(errmsg.err1);
               F.router_name.focus();
               return false;
       }
       return true;
}
function valid_dhcp_server(F)
{
       if(F.lan_proto[1].checked == true)
               return true;

       a1 = parseInt(F.dhcp_start.value,10);
       a2 = parseInt(F.dhcp_num.value,10);

       if((a1 + a2 - 1) > 254){
               alert(errmsg.err2);
               return false;
       }
       if(F.now_proto.value != "static"){
       if(!valid_ip(F,"F.dns0",errmsg.err36,MASK_NO))
               return false;
       if(!valid_ip(F,"F.dns1",errmsg.err36,MASK_NO))
               return false;
       }
       if(!valid_ip(F,"F.wins",share.wins,MASK_NO)){
               return false;
       }        
       return true;
}
function SelDHCP(T,F)
{
       dhcp_enable_disable(F,T);
}

function dhcp_enable_disable(F,T)
{
       var start = '';
       var end = '';
       var total = F.elements.length;
       for(i=0 ; i < total ; i++){
               if(F.elements[i].name == "dhcp_start")  start = i;
               if(F.elements[i].name == "wan_wins_3")  end = i;
       }
       if(start == '' || end == '')    return true;

       if( T == "static" ) {
               EN_DIS = 0;
               for(i = start; i<=end ;i++)
                       choose_disable(F.elements[i]);
       }
       else {
               EN_DIS = 1;
               for(i = start; i<=end ;i++)
                       choose_enable(F.elements[i]);
       }
}
function SelTime()
{
       var AryCaption=new Array(3,4,6,8,10,12,13,15,17,19,21,23,33,36);
       var i;
       var f=document.setup;
       daylight_enable_disable(f,0);
       for(i=0;i<AryCaption.length;i++){
               if(f.time_zone.selectedIndex==AryCaption[i]){
                       daylight_enable_disable(f,1);
                       return false;
               }
       }
}

function ppp_enable_disable(F,I)
{
       if( I == "0"){
               choose_disable(F.ppp_idletime);
               choose_enable(F.ppp_redialperiod);
       }
       else{
               choose_enable(F.ppp_idletime);
               choose_disable(F.ppp_redialperiod);
       }
}
function daylight_enable_disable(F,aaa)
{
       if(aaa == 0){
               F.daylight_time.checked = false;
               choose_disable(F.daylight_time);
       }
       else{
               choose_enable(F.daylight_time);
               F.daylight_time.checked = true;
       }
}
function init()
{
var AryCaption=new Array(3,4,6,8,10,12,13,15,17,19,21,23,33,36);
var i;
var f=document.setup;
var flag;
       for(i=0;i<AryCaption.length;i++){
               if(f.time_zone.selectedIndex==AryCaption[i]){
               	flag=0;
               	break;
               }
       }
       if(flag != 0){
       	daylight_enable_disable(f,0);
       }

       document.setup.save.value=sbutton.save;
       document.setup.cancel.value=sbutton.cancel;
       document.setup.oldMtu.value=document.setup.wan_mtu.value;

       SelWAN(false);
       SelMTU();
       /*SelTime();*/

       PPPEnable();
       dhcp_enable_disable(document.setup,'dhcp');
}
function PPPEnable(){
       if(document.setup.wan_proto.selectedIndex==2 || document.setup.wan_proto.selectedIndex==3 ||
          document.setup.wan_proto.selectedIndex==4 || document.setup.wan_proto.selectedIndex==5){
               if(document.setup.ppp_demand[0].checked==true)
                       ppp_enable_disable(document.setup,'1');
               else
                       ppp_enable_disable(document.setup,'0');
       }
}
</SCRIPT>

<META content="MSHTML 6.00.2800.1226" name=GENERATOR></HEAD>
<BODY onload=init()>
<DIV align=center>
<FORM name=setup action="Basic.tri" method=post>
<INPUT type=hidden name="dhcp_end">
<INPUT type=hidden name=oldMtu>
<TABLE cellSpacing=0 cellPadding=0 width=809 border=0>
 <TBODY>
 <TR>
   <TD width=95><IMG height=57 src="UILinksys.gif" width=165
     border=0></TD>
   <TD vAlign=bottom align=right width=714 bgColor=#6666cc><FONT
     style="FONT-SIZE: 7pt" color=#ffffff><FONT face=Arial><script>Capture(share.firmwarever)</script>: v1.00.1    </FONT></FONT></TD></TR>
 <TR>
   <TD width=808 bgColor=#6666cc colSpan=2><IMG height=11
     src="UI_10.gif" width=809 border=0></TD></TR></TBODY></TABLE>
<TABLE height=77 cellSpacing=0 cellPadding=0 width=809 bgColor=black border=0>
 <TBODY>
 <TR>
   <TD
   style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; COLOR: black; FONT-STYLE: normal; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-VARIANT: normal"
   borderColor=#000000 align=middle width=163 height=49>
     <H3 style="MARGIN-TOP: 1px; MARGIN-BOTTOM: 1px"><FONT
     style="FONT-SIZE: 15pt" face=Arial color=#ffffff><script>Capture(bmenu.setup)</script></FONT></H3></TD>
   <TD
   style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; COLOR: black; FONT-STYLE: normal; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-VARIANT: normal"
   vAlign=center borderColor=#000000 width=646 bgColor=#000000 height=49>
     <TABLE
     style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; COLOR: black; FONT-STYLE: normal; FONT-FAMILY: Arial, Helvetica, sans-serif; BORDER-COLLAPSE: collapse; FONT-VARIANT: normal"
     height=33 cellSpacing=0 cellPadding=0 bgColor=#6666cc border=0>
       <TBODY>
       <TR>
         <TD style="FONT-WEIGHT: bolder; FONT-SIZE: 10pt" align=right
         bgColor=#6666cc height=33><FONT color=#ffffff><script>Capture(share.productname)</script>  </FONT></TD>
         <TD borderColor=#000000 borderColorLight=#000000 align=middle
         width=109 bgColor=#000000 borderColorDark=#000000 height=12
           rowSpan=2><FONT color=#ffffff><SPAN
           style="FONT-SIZE: 8pt"><B>WRT54G</B></SPAN></FONT></TD></TR>
       <TR>
         <TD
         style="FONT-WEIGHT: normal; FONT-SIZE: 1pt; COLOR: black; FONT-STYLE: normal; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-VARIANT: normal"
         width=537 bgColor=#000000 height=1> </TD></TR>
       <TR>
         <TD width=646 bgColor=#000000 colSpan=2 height=32>
           <TABLE id=AutoNumber1
           style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; COLOR: black; FONT-STYLE: normal; FONT-FAMILY: Arial, Helvetica, sans-serif; BORDER-COLLAPSE: collapse; FONT-VARIANT: normal"
           height=6 cellSpacing=0 cellPadding=0 width=637 border=0>
             <TBODY>
             <TR
             style="BORDER-RIGHT: medium none; BORDER-TOP: medium none; FONT-WEIGHT: normal; FONT-SIZE: 1pt; BORDER-LEFT: medium none; COLOR: black; BORDER-BOTTOM: medium none; FONT-STYLE: normal; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-VARIANT: normal"
             align=middle bgColor=#6666cc>
               <TD width=83 height=1><IMG height=10
                 src="UI_07.gif" width=83 border=0></TD>
               <TD width=73 height=1><IMG height=10
                 src="UI_06.gif" width=83 border=0></TD>
               <TD width=113 height=1><IMG height=10
                 src="UI_06.gif" width=83 border=0></TD>
               <TD width=103 height=1><IMG height=10
                 src="UI_06.gif" width=103 border=0></TD>
               <TD width=85 height=1><IMG height=10
                 src="UI_06.gif" width=100 border=0></TD>
               <TD width=115 height=1><IMG height=10
                 src="UI_06.gif" width=115 border=0></TD>
               <TD width=74 height=1><IMG height=10
                 src="UI_06.gif" width=79 border=0></TD></TR>
             <TR>
               <TD align=middle bgColor=#6666cc height=20><FONT
                 style="FONT-WEIGHT: 700" color=#ffffff><A
                 style="TEXT-DECORATION: none"
                 href="basic.htm"><script>Capture(bmenu.setup)</script></A></FONT></TD>
               <TD align=middle bgColor=#000000 height=20><FONT
                 style="FONT-WEIGHT: 700" color=#ffffff><A
                 style="TEXT-DECORATION: none"
                 href="wireless.htm"><script>Capture(bmenu.wireless)</script></A></FONT></TD>
               <TD align=middle bgColor=#000000 height=20><FONT
                 style="FONT-WEIGHT: 700" color=#ffffff><A
                 style="TEXT-DECORATION: none"
                 href="Firewall.htm"><script>Capture(bmenu.security)</script></A></FONT></TD>
               <TD align=middle bgColor=#000000 height=20><FONT
                 style="FONT-WEIGHT: 700" color=#ffffff><A
                 style="TEXT-DECORATION: none"
                 href="Filters.htm"><script>Capture(bmenu.accrestriction)</script></A></FONT></TD>
               <TD align=middle bgColor=#000000 height=20>
                 <P style="MARGIN-BOTTOM: 4px"><FONT style="FONT-WEIGHT: 700"
                 color=#ffffff><A style="TEXT-DECORATION: none"
                 href="Forward.htm"><script>Capture(bmenu.applications)</script> <BR>&
                 <script>Capture(bmenu.gaming)</script></A>    </FONT></P></TD>
               <TD align=middle bgColor=#000000 height=20>
                 <P style="MARGIN-BOTTOM: 4px"><FONT style="FONT-WEIGHT: 700"
                 color=#ffffff><A style="TEXT-DECORATION: none"
                 href="Manage.htm"><script>Capture(bmenu.admin)</script></A>    </FONT></P></TD>
               <TD align=middle bgColor=#000000 height=20>
                 <P style="MARGIN-BOTTOM: 4px"><FONT style="FONT-WEIGHT: 700"
                 color=#ffffff><A style="TEXT-DECORATION: none"
                 href="StaRouter.htm"><script>Capture(bmenu.statu)</script></A>    </FONT></P></TD></TR>
             <TR>
               <TD width=643 bgColor=#6666cc colSpan=7 height=21>
                 <TABLE borderColor=black height=21 cellSpacing=0 cellPadding=0
                 width=558>
                   <TBODY>
                   <TR align=left>
                     <TD width=40></TD>
                     <TD class=small width=135><FONT
                       style="COLOR: white"><script>Capture(topmenu.basicsetup)</script></FONT></TD>
                     <TD>
                       <P class=bar><FONT color=white><B>|</B></FONT></P></TD>
                     <TD width=75></TD>
                     <TD class=small width=100><A
                       href="DDNS.htm"><script>Capture(share.ddns)</script></A></TD>
                     <TD>
                       <P class=bar><FONT color=white><B>|</B></FONT></P></TD>
                     <TD width=22></TD>
                     <TD class=small width=153><A
                       href="WanMAC.htm"><script>Capture(topmenu.macaddrclone)</script></A></TD>
                     <TD>
                       <P class=bar><FONT color=white><B>|</B></FONT></P></TD>
                     <TD width=30></TD>
                     <TD class=small width=140><A
                       href="Routing.htm"><script>Capture(topmenu.advrouting)</script></A></TD>
</TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<TABLE height=5 cellSpacing=0 cellPadding=0 width=806 bgColor=black border=0>
 <TBODY>
 <TR bgColor=black>
   <TD
   style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; COLOR: black; FONT-STYLE: normal; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-VARIANT: normal"
   borderColor=#e7e7e7 width=163 bgColor=#e7e7e7 height=1><IMG height=15
     src="UI_03.gif" width=164 border=0></TD>
   <TD
   style="FONT-WEIGHT: normal; FONT-SIZE: 10pt; COLOR: black; FONT-STYLE: normal; FONT-FAMILY: Arial, Helvetica, sans-serif; FONT-VARIANT: normal"
   width=646 height=1><IMG height=15 src="UI_02.gif" width=645
     border=0></TD></TR></TBODY></TABLE>
<TABLE id=AutoNumber9 style="BORDER-COLLAPSE: collapse" borderColor=#111111
height=23 cellSpacing=0 cellPadding=0 width=809 border=0>
 <TBODY>
 <TR>
   <TD width=633>
     <TABLE cellSpacing=0 cellPadding=0 border=0>
       <TBODY>
       <TR>
         <TD align=right width=156 bgColor=#000000 colSpan=3
           height=25><B><FONT style="FONT-SIZE: 9pt" face=Arial
           color=#ffffff><script>Capture(lefemenu.intersetup)</script></FONT></B></TD>
         <TD width=8 bgColor=#000000 height=25> </TD>
         <TD width=14 height=25> </TD>
         <TD width=17 height=25> </TD>
         <TD width=13 height=25> </TD>
         <TD width=101 height=25> </TD>
         <TD width=296 height=25> </TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
       <TR>
         <TD align=right width=156 bgColor=#e7e7e7 colSpan=3
           height=1><B><script>Capture(lefemenu.conntype)</script></B></TD>
         <TD width=8 background=UI_04.gif height=1> </TD>
         <TD colSpan=6>
<INPUT type=hidden name=oldLanSubnet value="0">
<INPUT type="hidden" name="OldWanMode" value="0">
<INPUT type="hidden" name="SDHCP1" value="192">
<INPUT type="hidden" name="SDHCP2" value="168">
<INPUT type="hidden" name="SDHCP3" value="1">
<INPUT type="hidden" name="SDHCP4" value="100">
<INPUT type="hidden" name="EDHCP1" value="192">
<INPUT type="hidden" name="EDHCP2" value="168">
<INPUT type="hidden" name="EDHCP3" value="1">
<INPUT type="hidden" name="EDHCP4" value="150">
<INPUT type="hidden" name="pd"     value="" >
<INPUT type=hidden name=now_proto value="">
<INPUT type=hidden name=old_domain value="">
<INPUT type=hidden name=chg_lanip value="192.168.1.1">
           <TABLE>
             <TBODY>
             <TR>
               <TD width=16 height=1> </TD>
               <TD width=28 height=1> </TD>
               <TD width=396 colSpan=3 height=1>
<script language="javascript">
                 document.write("<SELECT onchange=SelWAN(true) name=wan_proto>")
                 document.write("<OPTION value=0 selected>"+setupcontent.dhcp+"</OPTION>")
                 document.write("<OPTION value=1 >"+share.staticip+"</OPTION>")
                 document.write("<OPTION value=2 >"+share.pppoe+"</OPTION>")
                 document.write("<OPTION value=3 >"+share.pptp+"</OPTION>")
                 document.write("<OPTION value=4 >"+share.l2tp+"</OPTION>")
                 document.write("<OPTION value=5 >"+share.heartbeat+"</OPTION>")
                 document.write("</SELECT>")
</script>
               </TD>
               <TD width=15> </TD></TR></TBODY></TABLE></TD>
         <TD width=15 background=UI_05.gif height=1> </TD></TR>
<script language=javascript>
       SelWANMode();
	var strproto=document.cookie.split("=");
	var protoAry=new Array('dhcp','static','pppoe','pptp','l2tp','heartbeat');
var i;
       if(strproto[0]=="sWanMode"){
         document.setup.now_proto.value=strproto[1];
         for(i=0;i<protoAry.length;i++){
           if(protoAry[i]==strproto[1]){
             document.setup.wan_proto.selectedIndex=i;
             document.cookie="sWanMode="+escape(document.setup.now_proto.value)+"; expires=Fri, 31 Dec 1999 23:59:59 GMT;";
             break;
           }
         }
       }

if((document.setup.now_proto.value=="static") || (document.setup.now_proto.value=="pptp")){
         document.write("<TR>");
         document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
         document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
         document.write("<TD colSpan=3 height=25> </TD>");
         document.write("<TD width=101 height=25><FONT style='FONT-SIZE: 8pt' ");
         document.write("face=Arial> "+share.interipaddr+": </FONT></TD>");
         document.write("<TD width=296 height=25><FONT style='FONT-SIZE: 8pt' face=Arial>");
         document.write("<INPUT class=num maxLength=3 size=3 value='84' name='wan_ipaddr_0' onBlur=valid_range(this,0,223,errmsg.err34,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='202' name='wan_ipaddr_1' onBlur=valid_range(this,0,255,errmsg.err34,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='56' name='wan_ipaddr_2' onBlur=valid_range(this,0,255,errmsg.err34,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='220' name='wan_ipaddr_3' onBlur=valid_range(this,0,254,errmsg.err34,this.defaultValue)></FONT></TD>");
         document.write("<TD width=13 height=25> </TD>");
         document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
         document.write("<TR>");
         document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
         document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
         document.write("<TD colSpan=3 height=25> </TD>");
         document.write("<TD width=101 height=25><FONT style='FONT-SIZE: 8pt' ");
         document.write("face=Arial> "+share.submask+": </FONT></TD>");
         document.write("<TD width=296 height=25><FONT style='FONT-SIZE: 8pt' face=Arial>");
         document.write("<INPUT class=num maxLength=3 size=3 value='255' name='wan_netmask_0' onBlur=valid_range(this,0,255,errmsg.err37,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='255' name='wan_netmask_1' onBlur=valid_range(this,0,255,errmsg.err37,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='255' name='wan_netmask_2' onBlur=valid_range(this,0,255,errmsg.err37,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='0' name='wan_netmask_3' onBlur=valid_range(this,0,255,errmsg.err37,this.defaultValue)></FONT></TD>");
         document.write("<TD width=13 height=25> </TD>");
         document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
         document.write("<TR>");
         document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
         document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
         document.write("<TD colSpan=3 height=25> </TD>");
         document.write("<TD width=101 height=25><FONT style='FONT-SIZE: 8pt' ");
         document.write("face=Arial> "+share.gateway+": </FONT></TD>");
         document.write("<TD width=296 height=25><FONT style='FONT-SIZE: 8pt' face=Arial>");
         document.write("<INPUT class=num maxLength=3 size=3 value='84' name='wan_gateway_0' onBlur=valid_range(this,0,223,errmsg.err34,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='202' name='wan_gateway_1' onBlur=valid_range(this,0,255,errmsg.err34,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='56' name='wan_gateway_2' onBlur=valid_range(this,0,255,errmsg.err34,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='1' name='wan_gateway_3' onBlur=valid_range(this,0,254,errmsg.err34,this.defaultValue)></FONT></TD>");
         document.write("<TD width=13 height=25> </TD>");
         document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
       }
if(document.setup.now_proto.value=="static"){
         document.write("<TR>");
         document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
         document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
         document.write("<TD colSpan=3 height=25> </TD>");
         document.write("<TD width=101 height=25> "+setupcontent.stadns1+": </FONT></TD>");
         document.write("<TD width=296 height=25><FONT style='FONT-SIZE: 8pt' face=Arial>");
         document.write("<INPUT class=num maxLength=3 size=3 value='0' name='wan_dns0_0' onBlur=valid_range(this,0,223,errmsg.err34,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='0' name='wan_dns0_1' onBlur=valid_range(this,0,255,errmsg.err34,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='0' name='wan_dns0_2' onBlur=valid_range(this,0,255,errmsg.err34,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='0' name='wan_dns0_3' onBlur=valid_range(this,0,254,errmsg.err34,this.defaultValue)></FONT></TD>");
         document.write("<TD width=13 height=25> </TD>");
         document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
         document.write("<TR>");
         document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
         document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
         document.write("<TD colSpan=3 height=25> </TD>");
         document.write("<TD width=101 height=25> "+setupcontent.stadns2+": </FONT></TD>");
         document.write("<TD width=296 height=25><FONT style='FONT-SIZE: 8pt' face=Arial>");
         document.write("<INPUT class=num maxLength=3 size=3 value='0' name='wan_dns1_0' onBlur=valid_range(this,0,223,errmsg.err34,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='0' name='wan_dns1_1' onBlur=valid_range(this,0,255,errmsg.err34,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='0' name='wan_dns1_2' onBlur=valid_range(this,0,255,errmsg.err34,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='0' name='wan_dns1_3' onBlur=valid_range(this,0,254,errmsg.err34,this.defaultValue)></FONT></TD>");
         document.write("<TD width=13 height=25> </TD>");
         document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
         document.write("<TR>");
         document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
         document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
         document.write("<TD colSpan=3 height=25> </TD>");
         document.write("<TD width=101 height=25> "+setupcontent.stadns3+": </FONT></TD>");
         document.write("<TD width=296 height=25><FONT style='FONT-SIZE: 8pt' face=Arial>");
         document.write("<INPUT class=num maxLength=3 size=3 value='0' name='wan_dns2_0' onBlur=valid_range(this,0,223,errmsg.err34,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='0' name='wan_dns2_1' onBlur=valid_range(this,0,255,errmsg.err34,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='0' name='wan_dns2_2' onBlur=valid_range(this,0,255,errmsg.err34,this.defaultValue)> .");
         document.write("<INPUT class=num maxLength=3 size=3 value='0' name='wan_dns2_3' onBlur=valid_range(this,0,254,errmsg.err34,this.defaultValue)></FONT></TD>");
         document.write("<TD width=13 height=25> </TD>");
         document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
       }

if((document.setup.now_proto.value=="pppoe") || (document.setup.now_proto.value=="pptp") || (document.setup.now_proto.value=="l2tp") || (document.setup.now_proto.value=="heartbeat")){
 	  document.write("<TR>");
         document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
         document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
         document.write("<TD colSpan=3 height=25> </TD>");
         document.write("<TD width=101 height=25> "+share.usrname+":</TD>");
         document.write("<TD width=296 height=25><INPUT maxLength=63 size=24 name='ppp_username' value='' onBlur='valid_name(this,share.usrname,this.defaultValue)'></TD>");
         document.write("<TD width=13 height=25> </TD>");
         document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
         document.write("<TR>");
         document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
         document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
         document.write("<TD colSpan=3 height=25> </TD>");
         document.write("<TD width=101 height=25> "+share.passwd+":  </TD>");
         document.write("<TD width=296 height=25><INPUT maxLength=63 size=24 name='ppp_passwd' value='' type=password onBlur='valid_name(this,share.passwd,this.defaultValue)'></TD>");
         document.write("<TD width=13 height=25> </TD>");
         document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
         if(document.setup.now_proto.value=="l2tp"){
           document.write("<TR>");
           document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
           document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
           document.write("<TD colSpan=3 height=25> </TD>");
           document.write("<TD width=101 height=25> "+setupcontent.l2tpserv+": </FONT></TD>");
           document.write("<TD width=296 height=25><FONT style='FONT-SIZE: 8pt' face=Arial>");
           document.write("<INPUT class=num maxLength=3 size=3 value='0' name='l2tpserv_0' onBlur=valid_range(this,0,223,setupcontent.l2tpserv,this.defaultValue)> .");
           document.write("<INPUT class=num maxLength=3 size=3 value='0' name='l2tpserv_1' onBlur=valid_range(this,0,255,setupcontent.l2tpserv,this.defaultValue)> .");
           document.write("<INPUT class=num maxLength=3 size=3 value='0' name='l2tpserv_2' onBlur=valid_range(this,0,255,setupcontent.l2tpserv,this.defaultValue)> .");
           document.write("<INPUT class=num maxLength=3 size=3 value='0' name='l2tpserv_3' onBlur=valid_range(this,0,254,setupcontent.l2tpserv,this.defaultValue)>");
           document.write("</FONT></TD>");
           document.write("<TD width=13 height=25> </TD>");
           document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
         }else if(document.setup.now_proto.value=="heartbeat"){
           document.write("<TR>");
           document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
           document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
           document.write("<TD colSpan=3 height=25> </TD>");
           document.write("<TD width=101 height=25> "+setupcontent.heartbeat+": </FONT></TD>");
           document.write("<TD width=296 height=25><FONT style='FONT-SIZE: 8pt' face=Arial>");
           document.write("<INPUT maxLength=63 size=24 name='hb_server_ip' value='' onBlur=valid_name(this,'Heartbeat%20Server',this.defaultValue)>");
           document.write("</FONT></TD>");
           document.write("<TD width=13 height=25> </TD>");
           document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
         }
         document.write("<TR>");
         document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
         document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
         document.write("<TD colSpan=3 height=25> </TD>");
         document.write("<TD width=397 height=25 colspan=2><INPUT type=radio value=1 name='ppp_demand'   onclick=ppp_enable_disable(this.form,1) ><font color=black>"+setupcontent.conndemand+" </font>");
         document.write("<INPUT class=num maxLength=4 size=4 value='5' name='ppp_idletime' onBlur='valid_range(this,1,9999,errmsg.err38,this.defaultValue)'> <font color=black>"+setupcontent.min+"</font></TD></TD>");
         document.write("<TD width=13 height=25> </TD>")
         document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>")
         document.write("<TR>")
         document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>")
         document.write("<TD width=8 background=UI_04.gif height=25> </TD>")
         document.write("<TD colSpan=3 height=25> </TD>")
         document.write("<TD width=397 height=25 colspan=2><INPUT type=radio value=0 name='ppp_demand' checked onclick=ppp_enable_disable(this.form,0)><font color=black>"+setupcontent.keepalive+" </font>");
         document.write("<INPUT class=num maxLength=3 size=4 value='30' name='ppp_redialperiod' onBlur='valid_range(this,20,180,errmsg.err39,this.defaultValue)'> <font color=black>"+setupcontent.sec+"</font></TD>");
         document.write("<TD width=13 height=25> </TD>");
         document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
}
</script>
       <TR>
         <TD width=156 bgColor=#e7e7e7 colSpan=3 height=1> </TD>
         <TD width=8 background=UI_04.gif height=1> </TD>
         <TD colSpan=6>
           <TABLE>
             <TBODY>
             <TR>
               <TD width=16 height=1> </TD>
               <TD width=13 height=1> </TD>
               <TD width=410 colSpan=3 height=1>
                 <HR color=#b5b5e6 SIZE=1>
               </TD>
               <TD width=15 height=1> </TD></TR></TBODY></TABLE></TD>
         <TD width=15 background=UI_05.gif height=1> </TD></TR>
       <TR>
         <TD width=156 bgColor=#e7e7e7 colSpan=3 height=25>
           <P align=right><FONT style="FONT-WEIGHT: 700"><B><script>Capture(lefemenu.optset)</script></B><BR><B><script>Capture(lefemenu.requireisp)</script></B></FONT></P></TD>
         <TD width=8 background=UI_04.gif height=25> </TD>
         <TD colSpan=3 height=25> </TD>
         <TD width=101 height=25><FONT style="FONT-SIZE: 8pt"
           face=Arial> <script>Capture(share.routename)</script>: </FONT></TD>
         <TD width=296 height=25><FONT style="FONT-SIZE: 8pt"
           face=Arial><INPUT onblur="valid_name(this,share.routename,this.defaultValue)"
           maxLength=39 size="20" value="WRT54G" name=router_name></FONT></TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
       <TR>
         <TD width=156 bgColor=#e7e7e7 colSpan=3 height=25> </TD>
         <TD width=8 background=UI_04.gif height=25> </TD>
         <TD colSpan=3 height=25> </TD>
         <TD width=101 height=25><FONT style="FONT-SIZE: 8pt"
           face=Arial> <script>Capture(share.hostname)</script>: </FONT></TD>
         <TD width=296 height=25><FONT style="FONT-SIZE: 8pt"
           face=Arial><INPUT onblur="valid_name(this,share.hostname,this.defaultValue)"
           maxLength=39 size="20" name=wan_hostname value=""></FONT></TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
       <TR>
         <TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>
         <TD width=8 background=UI_04.gif height=25> </TD>
         <TD colSpan=3 height=25> </TD>
         <TD width=101 height=25><FONT style="FONT-SIZE: 8pt"
           face=Arial> <script>Capture(share.domainname)</script>: </FONT></TD>
         <TD width=296 height=25><FONT style="FONT-SIZE: 8pt"
           face=Arial><INPUT onblur="valid_name(this,share.domainname,this.defaultValue)"
           maxLength=63 size="20" name=wan_domain value=""></FONT></TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
       <TR>
         <TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>
         <TD width=8 background=UI_04.gif height=25> </TD>
         <TD colSpan=3 height=25> </TD>
         <TD width=101 height=25><FONT style="FONT-SIZE: 8pt"
           face=Arial> <script>Capture(share.mtu)</script>:</FONT></TD>
         <TD width=296 height=25><B>
<script language="javascript">
         document.write("<SELECT onchange='SelMTU()' name=mtu_enable>");
         document.write("<OPTION value=0 selected>"+share.auto+"</OPTION>");
         document.write("<OPTION value=1 >"+setupcontent.mtumanual+" </OPTION>");
         document.write("</SELECT>");
</script>
          </B></TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
       <TR>
         <TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>
         <TD width=8 background=UI_04.gif height=25> </TD>
         <TD colSpan=3 height=25> </TD>
         <TD width=101 height=25><FONT style="FONT-SIZE: 8pt"
           face=Arial> </FONT><script>Capture(setupcontent.mtusize)</script>:</B></TD>
         <TD width=296 height=25><INPUT class=num onblur=valid_mtu(this)
           maxLength=4 size=5 value="1500" name=wan_mtu></TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
       <TR>
         <TD width=156 bgColor=#e7e7e7 colSpan=3 height=1> </TD>
         <TD width=8 background=UI_04.gif height=1> </TD>
         <TD colSpan=6>
           <TABLE>
             <TBODY>
             <TR>
               <TD width=16 height=1> </TD>
               <TD width=13 height=1> </TD>
               <TD width=410 colSpan=3 height=1>
                 <HR color=#b5b5e6 SIZE=1>
               </TD>
               <TD width=15 height=1> </TD></TR></TBODY></TABLE></TD>
         <TD width=15 background=UI_05.gif height=1> </TD></TR>
       <TR>
         <TD align=right width=156 bgColor=#000000 colSpan=3
           height=25><B><FONT style="FONT-SIZE: 9pt" face=Arial
           color=#ffffff><script>Capture(lefemenu.netsetup)</script></FONT></B></TD>
         <TD width=8 bgColor=#000000 height=25> </TD>
         <TD width=14 height=25> </TD>
         <TD width=17 height=25> </TD>
         <TD width=13 height=25> </TD>
         <TD width=101 height=25> </TD>
         <TD width=296 height=25> </TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
       <TR>
         <TD align=right width=156 bgColor=#e7e7e7 colSpan=3
           height=25><B><script>Capture(lefemenu.routerip)</script></B></TD>
         <TD width=8 background=UI_04.gif height=25> </TD>
         <TD colSpan=3 height=25> </TD>
         <TD width=101 height=25> <script>Capture(setupcontent.localipaddr)</script>:</TD>
         <TD width=296 height=25><INPUT class=num
           onblur='valid_range(this,1,223,errmsg.err34,this.defaultValue)' maxLength=3 size=3 value="192"
           name=lan_ipaddr_0> . <INPUT class=num
           onblur='valid_range(this,0,255,errmsg.err34,this.defaultValue)' maxLength=3 size=3 value="168"
           name=lan_ipaddr_1> . <INPUT class=num
           onblur='valid_range(this,0,255,errmsg.err34,this.defaultValue)' maxLength=3 size=3 value="1"
           name=lan_ipaddr_2> . <INPUT class=num
           onblur='valid_range(this,1,254,errmsg.err34,this.defaultValue)' maxLength=3 size=3 value="1"
           name=lan_ipaddr_3></TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
       <TR>
         <TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>
         <TD width=8 background=UI_04.gif height=25> </TD>
         <TD colSpan=3 height=25> </TD>
         <TD width=101 height=25><FONT style="FONT-SIZE: 8pt"
           face=Arial> <script>Capture(share.submask)</script>:</FONT></TD>
         <TD width=296 height=25>
               <SELECT class=num size=1 name=lan_netmask>
                       <OPTION value=0 selected>255.255.255.0</OPTION>
                       <OPTION value=1 >255.255.255.128</OPTION>
                       <OPTION value=2 >255.255.255.192</OPTION>
                       <OPTION value=3 >255.255.255.224</OPTION>
                       <OPTION value=4 >255.255.255.240</OPTION>
                       <OPTION value=5 >255.255.255.248</OPTION>
                       <OPTION value=6 >255.255.255.252</OPTION>
               </SELECT></TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
       <TR>
         <TD width=156 bgColor=#e7e7e7 colSpan=3 height=1> </TD>
         <TD width=8 background=UI_04.gif height=1> </TD>
         <TD colSpan=6>
           <TABLE>
             <TBODY>
             <TR>
               <TD width=16 height=1> </TD>
               <TD width=13 height=1> </TD>
               <TD width=410 colSpan=3 height=1>
                 <HR color=#b5b5e6 SIZE=1>
               </TD>
               <TD width=15 height=1> </TD></TR></TBODY></TABLE></TD>
         <TD width=15 background=UI_05.gif height=1> </TD></TR>
       <TR>
         <TD align=right width=156 bgColor=#e7e7e7 colSpan=3
           height=25><B><script>Capture(lefemenu.netaddr)</script></B><BR><B><script>Capture(lefemenu.dhcpserverset)</script></B></TD>
         <TD width=8 background=UI_04.gif height=25> </TD>
         <TD colSpan=3 height=25> </TD>
         <TD width=101 height=25> <script>Capture(share.dhcpsrv)</script>:</TD>
         <TD width=296 height=25><INPUT onclick="SelDHCP('dhcp',this.form)" 
           type=radio checked value="Enable" name=lan_proto><B><script>Capture(share.enable)</script></B> <INPUT
           onclick="SelDHCP('static',this.form)" type=radio  value="Disable"
           name=lan_proto><B><script>Capture(share.disable)</script></B></TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
       <TR>
         <TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>
         <TD width=8 background=UI_04.gif height=25> </TD>
         <TD colSpan=3 height=25> </TD>
         <TD width=101 height=25><FONT style="FONT-SIZE: 8pt"
           face=Arial> <script>Capture(share.startipaddr)</script>:</FONT></TD>
         <TD width=296 height=25> <B><script language="javascript">document.write(document.setup.SDHCP1.value+"."+document.setup.SDHCP2.value+"."+document.setup.SDHCP3.value+".")</script></B><B><INPUT class=num
           onblur='valid_range(this,1,254,errmsg.err40,this.defaultValue)' maxLength=3
           size=3 name="dhcp_start" value="100"></B></TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
       <TR>
         <TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>
         <TD width=8 background=UI_04.gif height=25> </TD>
         <TD colSpan=3 height=25> </TD>
         <TD width=101 height=25><FONT style="FONT-SIZE: 8pt"
           face=Arial> <script>Capture(setupcontent.maxdhcpusr)</script>:</FONT></TD>
         <TD width=296 height=25> <INPUT class=num
           onblur='valid_range(this,1,253,errmsg.err41,this.defaultValue)'
           maxLength=3 size=3 value="50" name=dhcp_num></TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
       <TR>
         <TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>
         <TD width=8 background=UI_04.gif height=25> </TD>
         <TD colSpan=3 height=25> </TD>
         <TD width=101 height=25><FONT style="FONT-SIZE: 8pt"
           face=Arial> <script>Capture(share.clileasetime)</script>:</FONT></TD>
         <TD width=296 height=25> <INPUT class=num
           onblur='valid_range(this,0,9999,errmsg.err42,this.defaultValue)' maxLength=4
           size=4 value="0" name=dhcp_lease> <script>Capture(setupcontent.clileasetimemin)</script></TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
<script language=javascript>
       if((document.setup.now_proto.value=="dhcp") || (document.setup.now_proto.value=="pppoe") ||
          (document.setup.now_proto.value=="pptp") || (document.setup.now_proto.value=="l2tp")  ||
          (document.setup.now_proto.value=="heartbeat")){
         document.write("<TR>");
         document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
         document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
         document.write("<TD colSpan=3 height=25> </TD>");
         document.write("<TD width=101 height=25><FONT style='FONT-SIZE: 8pt'");
         document.write("face=Arial> "+setupcontent.stadns1+": </FONT></TD>");
         document.write("<TD width=296 height=25> <INPUT class=num onblur='valid_range(this,0,223,errmsg.err36,this.defaultValue)' ");
         document.write("maxLength=3 size=3 value='0' name=dns0_0> . <INPUT class=num ");
         document.write("onblur='valid_range(this,0,255,errmsg.err36,this.defaultValue)' maxLength=3 size=3 value='0' ");
         document.write("name=dns0_1> . <INPUT class=num ");
         document.write("onblur='valid_range(this,0,255,errmsg.err36,this.defaultValue)' maxLength=3 size=3 value='0' ");
         document.write("name=dns0_2> . <INPUT class=num ");
         document.write("onblur='valid_range(this,0,254,errmsg.err36,this.defaultValue)' maxLength=3 size=3 value='0' name=dns0_3></TD>");
         document.write("<TD width=13 height=25> </TD>");
         document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
         document.write("<TR>");
         document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
         document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
         document.write("<TD colSpan=3 height=25> </TD>");
         document.write("<TD width=101 height=25><FONT style='FONT-SIZE: 8pt'");
         document.write("face=Arial> "+setupcontent.stadns2+": </FONT></TD>");
         document.write("<TD width=296 height=25> <INPUT class=num ");
         document.write("onblur='valid_range(this,0,223,errmsg.err36,this.defaultValue)' maxLength=3 size=3 value='0' ");
         document.write("name=dns1_0> . <INPUT class=num ");
         document.write("onblur='valid_range(this,0,255,errmsg.err36,this.defaultValue)' maxLength=3 size=3 value='0' ");
         document.write("name=dns1_1> . <INPUT class=num ");
         document.write("onblur='valid_range(this,0,255,errmsg.err36,this.defaultValue)' maxLength=3 size=3 value='0' ");
         document.write("name=dns1_2> . <INPUT class=num ");
         document.write("onblur='valid_range(this,0,254,errmsg.err36,this.defaultValue)' maxLength=3 size=3 value='0' ");
         document.write("name=dns1_3></TD>");
         document.write("<TD width=13 height=25> </TD>");
         document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
         document.write("<TR>");
         document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
         document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
         document.write("<TD colSpan=3 height=25> </TD>");
         document.write("<TD width=101 height=25><FONT style='FONT-SIZE: 8pt' ");
         document.write("face=Arial> "+setupcontent.stadns3+": </FONT></TD>");
         document.write("<TD width=296 height=25> <INPUT class=num ");
         document.write("onblur='valid_range(this,0,223,errmsg.err36,this.defaultValue)' maxLength=3 size=3 value='0' ");
         document.write("name=dns2_0> . <INPUT class=num ");
         document.write("onblur='valid_range(this,0,255,errmsg.err36,this.defaultValue)' maxLength=3 size=3 value='0' ");
         document.write("name=dns2_1> . <INPUT class=num ");
         document.write("onblur='valid_range(this,0,255,errmsg.err36,this.defaultValue)' maxLength=3 size=3 value='0' ");
         document.write("name=dns2_2> . <INPUT class=num ");
         document.write("onblur='valid_range(this,0,254,errmsg.err36,this.defaultValue)' maxLength=3 size=3 value='0' ");
         document.write("name=dns2_3></TD>");
         document.write("<TD width=13 height=25> </TD>");
         document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
       }
</script>
       <TR>
         <TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>
         <TD width=8 background=UI_04.gif height=25> </TD>
         <TD colSpan=3 height=25> </TD>
         <TD width=101 height=25><FONT style="FONT-SIZE: 8pt"
           face=Arial> <script>Capture(share.wins)</script>: </FONT></TD>
         <TD width=296 height=25> <INPUT class=num
           onblur='valid_range(this,0,223,share.wins,this.defaultValue)' maxLength=3 size=3 value="0"
           name="wins_0"> . <INPUT class=num
           onblur='valid_range(this,0,255,share.wins,this.defaultValue)' maxLength=3 size=3 value="0"
           name="wins_1"> . <INPUT class=num
           onblur='valid_range(this,0,255,share.wins,this.defaultValue)' maxLength=3 size=3 value="0"
           name="wins_2"> . <INPUT class=num
           onblur='valid_range(this,0,254,share.wins,this.defaultValue)' maxLength=3 size=3 value="0"
           name="wins_3"></TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
       <TR>
         <TD width=156 bgColor=#e7e7e7 colSpan=3 height=1> </TD>
         <TD width=8 background=UI_04.gif height=1> </TD>
         <TD colSpan=6>
           <TABLE>
             <TBODY>
             <TR>
               <TD width=16 height=1> </TD>
               <TD width=13 height=1> </TD>
               <TD width=410 colSpan=3 height=1>
                 <HR color=#b5b5e6 SIZE=1>
               </TD>
               <TD width=15 height=1> </TD></TR></TBODY></TABLE></TD>
         <TD width=15 background=UI_05.gif height=1> </TD></TR>
       <TR>
         <TD align=right width=156 bgColor=#e7e7e7 colSpan=3
           height=25><B><script>Capture(lefemenu.timeset)</script></B></TD>
         <TD width=8 background=UI_04.gif height=25> </TD>
         <TD colSpan=3 height=25> </TD>
         <TD width=101 height=25> <script>Capture(share.timezone)</script>:</TD>
         <TD width=296 height=25> </TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
       <TR>
         <TD align=right width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>
         <TD width=8 background=UI_04.gif height=25> </TD>
         <TD colSpan=3 height=25> </TD>
         <TD width=397 colSpan=2 height=25> <SELECT
           onchange=SelTime() name=time_zone><option>(GMT-12:00) Kwajalein</option><option>(GMT-11:00) Midway Island,Samoa</option><option>(GMT-10:00) Hawaii</option><option>(GMT-09:00) Alaska</option><option selected>(GMT-08:00) Pacific Time (USA & Canada)</option><option>(GMT-07:00) Arizona</option><option>(GMT-07:00) Mountain Time (USA & Canada)</option><option>(GMT-06:00) Mexico</option><option>(GMT-06:00) Central Time(USA & Canada)</option><option>(GMT-05:00) Indiana East,Colombia,Panama</option><option>(GMT-05:00) Eastern Time(USA & Canada)</option><option>(GMT-04:00) Bolivia,Venezuela</option><option>(GMT-04:00) Atlantic Time (Canada),Brazil West</option><option>(GMT-03:30) Newfoundland</option><option>(GMT-03:00) Guyana</option><option>(GMT-03:00) Brazil East,Greenland</option><option>(GMT-02:00) Mid-Atlantic</option><option>(GMT-01:00) Azores</option><option>(GMT) Cambia,Liberia,Morocco</option><option>(GMT) England</option><option>(GMT+01:00) Tunisia</option><option>(GMT+01:00) France,Germany,Itlay</option><option>(GMT+02:00) South Africa</option><option>(GMT+02:00) Greece,Ukraine,Romania,Turkey</option><option>(GMT+03:00) Iraq,Jordan,Kuwait</option><option>(GMT+04:00) Armenia</option><option>(GMT+05:00) Pakistan,Russia</option><option>(GMT+06:00) Bangladesh,Russia</option><option>GMT+07:00) Thailand,Russia</option><option>GMT+08:00) China,Hong Kong,Australia Western</option><option>GMT+08:00) Singapore,Taiwan,Russia</option><option>GMT+09:00) Japan,Korea</option><option>GMT+10:00) Gaum,Russia</option><option>GMT+10:00) Australia</option><option>GMT+11:00) Solomon Islands</option><option>GMT+12:00) Fiji</option><option>GMT+12:00) NewZealand</option></SELECT></TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
       <TR>
         <TD align=right width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>
         <TD width=8 background=UI_04.gif height=25> </TD>
         <TD colSpan=3 height=25> </TD>
         <TD width=397 colSpan=2 height=25><INPUT type=checkbox
           value="ON" checked name="daylight_time"><FONT style="FONT-SIZE: 8pt"
           face=Arial><script>Capture(setupcontent.autoadjtime)</script></FONT></TD>
         <TD width=13 height=25> </TD>
         <TD width=15 background=UI_05.gif height=25> </TD></TR>
         <INPUT type=hidden value=1 name=_daylight_time>


<INPUT type=hidden value=en name=layout>

<script language=javascript>
if((document.setup.layout.value=="en") && (document.setup.now_proto.value=="heartbeat")){
document.write(other.block1);
}
if((document.setup.layout.value=="de") && (document.setup.now_proto.value=="static")){
document.write(other.block1);
}
if((document.setup.layout.value=="de") && (document.setup.now_proto.value=="pptp")){
document.write(other.block2);
}
if((document.setup.layout.value=="de") && ((document.setup.now_proto.value=="l2tp") || (document.setup.now_proto.value=="pppoe") || (document.setup.now_proto.value=="heartbeat"))){
document.write(other.block4);
}
if((document.setup.layout.value=="fr") && ((document.setup.now_proto.value=="pptp") || (document.setup.now_proto.value=="l2tp"))){
document.write(other.block1);
}
if((document.setup.layout.value=="fr") && ((document.setup.now_proto.value=="static") || (document.setup.now_proto.value=="pppoe"))){
document.write(other.block2);
}
if((document.setup.layout.value=="fr") && (document.setup.now_proto.value=="heartbeat")){
document.write(other.block3);
}
if((document.setup.layout.value=="sp") && ((document.setup.now_proto.value=="static") || (document.setup.now_proto.value=="pppoe") || (document.setup.now_proto.value=="pptp") || (document.setup.now_proto.value=="l2tp"))){
document.write(other.block1);
}
if((document.setup.layout.value=="sp") && (document.setup.now_proto.value=="heartbeat")){
document.write(other.block2);
}
if((document.setup.layout.value=="sw") && ((document.setup.now_proto.value=="pppoe") || (document.setup.now_proto.value=="l2tp"))){
document.write(other.block1);
}
if((document.setup.layout.value=="sw") && ((document.setup.now_proto.value=="l2tp") || (document.setup.now_proto.value=="heartbeat"))){
document.write(other.block2);
}
</script>
<script language=javascript>
 if(document.setup.now_proto.value=="dhcp"){
   document.write("<TR>");
   document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
   document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
   document.write("<TD colSpan=3 height=25> </TD>");
   document.write("<TD width=101 height=25> </FONT></TD>");
   document.write("<TD width=296 height=25> </TD>");
   document.write("<TD width=13 height=25> </TD>");
   document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
   document.write("<TR>");
   document.write("<TD width=156 bgColor=#e7e7e7 colSpan=3 height=25></TD>");
   document.write("<TD width=8 background=UI_04.gif height=25> </TD>");
   document.write("<TD colSpan=3 height=25> </TD>");
   document.write("<TD width=101 height=25> </FONT></TD>");
   document.write("<TD width=296 height=25> </TD>");
   document.write("<TD width=13 height=25> </TD>");
   document.write("<TD width=15 background=UI_05.gif height=25> </TD></TR>");
 }
</script>
       <TR>
         <TD width=44 bgColor=#e7e7e7 height=5> </TD>
         <TD width=65 bgColor=#e7e7e7 height=5> </TD>
         <TD width=47 bgColor=#e7e7e7 height=5> </TD>
         <TD width=8 background=UI_04.gif height=5> </TD>
         <TD width=454 colSpan=6 height=5></TD>
         <TD width=15 background=UI_05.gif
       height=5> </TD></TR></TBODY></TABLE></TD>
   <TD vAlign=top width=176 bgColor=#6666cc>
     <TABLE cellSpacing=0 cellPadding=0 width=176 border=0>
       <TBODY>
       <TR>
         <TD width=11 bgColor=#6666cc height=25> </TD>
         <TD width=156 bgColor=#6666cc height=25><FONT color=#ffffff><br>
<script language=javascript>
if(document.setup.now_proto.value == "dhcp"){
document.write(hsetup.phase44);
}
else if(document.setup.now_proto.value == "pppoe"){
document.write(hsetup.phase45);
document.write(hsetup.phase46);
document.write(hsetup.phase47);
document.write("<b><a target=_blank href=HSetup.htm>"+share.more+"</a></b><br><br>");
}
else if(document.setup.now_proto.value == "static"){
document.write(hsetup.phase48);
document.write(hsetup.phase49);
document.write(hsetup.phase50);
document.write("<b><a target=_blank href=HSetup.htm>"+share.more+"</a></b><br><br><br><br>");
}
else if(document.setup.now_proto.value == "pptp"){
document.write(hsetup.phase51);
document.write(hsetup.phase49);
document.write(hsetup.phase50+"<br>");
document.write(hsetup.phase54);
document.write("<b><a target=_blank href=HSetup.htm>",share.more,"</a></b><br><br><br><br>");
}
else if(document.setup.now_proto.value == "l2tp"){
document.write(hsetup.phase55);
document.write(hsetup.phase46);
document.write(hsetup.phase47);
document.write("<b><a target=_blank href=HSetup.htm>"+share.more+"</a></b><br><br><br><br><br>");
}
else if(document.setup.now_proto.value == "heartbeat"){
document.write(hsetup.phase57);
document.write(hsetup.phase46);
document.write(hsetup.phase47);
document.write("<b><a target=_blank href=HSetup.htm>"+share.more+"</a></b><br><br><br><br><br>");
}
</script>
<script>Capture(hsetup.phase37)</script><br><br><br>
<script>Capture(hsetup.phase38)</script><br>
<b><a target="_blank" href="HSetup.htm"><script>Capture(share.more)</script><br></a></b><br><br>
<script>Capture(hsetup.phase39)</script><br><br>
<script>Capture(hsetup.phase40)</script><br><br><br><br>
<script>Capture(hsetup.phase41)</script><br><br>
<script>Capture(hsetup.phase42)</script><br>
<br>
<script language=javascript>
if(document.setup.now_proto.value == "dhcp"){
document.write(hsetup.phase56);
document.write("<b><a target=_blank href=HSetup.htm>"+share.more+"</a></b><br><br>");
}
else if(document.setup.now_proto.value == "static"){
document.write("<b><a target=_blank href=HSetup.htm>"+share.more+"</a></b><br><br>");
}
else if(document.setup.now_proto.value == "pppoe"){
document.write(hsetup.phase56);
document.write("<b><a target=_blank href=HSetup.htm>"+share.more+"</a></b><br><br>");
}
else if(document.setup.now_proto.value == "pptp"){
document.write(hsetup.phase56);
document.write("<b><a target=_blank href=HSetup.htm>"+share.more+"</a></b><br><br>");
}
else if(document.setup.now_proto.value == "l2tp"){
document.write(hsetup.phase56);
document.write("<b><a target=_blank href=HSetup.htm>"+share.more+"</a></b><br><br>");
}
else if(document.setup.now_proto.value == "heartbeat"){
document.write(hsetup.phase56);
document.write("<b><a target=_blank href=HSetup.htm>"+share.more+"</a></b><br><br>");
}
</script><br><br>
<script>Capture(hsetup.phase43)</script>
           <A href="HSetup.htm"
           target=_blank></A></FONT></TD>
         <TD width=9 bgColor=#6666cc
 height=25> </TD></TR></TBODY></TABLE></TD></TR>
 <TR>
   <TD width=809 colSpan=2>
     <TABLE cellSpacing=0 cellPadding=0 border=0>
       <TBODY>
       <TR>
         <TD width=156 bgColor=#e7e7e height=30> </TD>
         <TD width=8 background=UI_04.gif> </TD>
         <TD width=16> </TD>
         <TD width=12> </TD>
         <TD width=411> </TD>
         <TD width=15> </TD>
         <TD width=15 background=UI_05.gif> </TD>
         <TD width=176 bgColor=#6666cc rowSpan=2><IMG height=64
           src="UI_Cisco.gif" width=176 border=0></TD></TR>
       <TR>
         <TD width=156 bgColor=#000000> </TD>
         <TD width=8 bgColor=#000000> </TD>
         <TD width=16 bgColor=#6666cc> </TD>
         <TD width=12 bgColor=#6666cc> </TD>
         <TD width=411 bgColor=#6666cc>
           <TABLE height=19 cellSpacing=0 cellPadding=0 align=right border=0>
             <TBODY>
             <TR>
               <TD align=middle width=101></FONT>
               <script language="javascript">
               document.write("<INPUT onclick=to_submit(this.form) name=save type=button value="+sbutton.save+">")
               </script>
               </TD>
               <TD align=middle width=8 bgColor=#6666cc> </TD>
               <TD align=middle bgColor=#6666cc>
               <script language="javascript">
	document.write("<INPUT onclick=window.location.replace('basic.htm') type=button name=cancel value="+sbutton.cancel+">")
               </script>
               </TD></TR></TBODY></TABLE></TD>
         <TD width=15 bgColor=#6666cc height=33> </TD>
         <TD width=15 bgColor=#000000
 height=33> </TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></FORM></DIV></BODY></HTML>[b]

 

Sivert

Endret av -sio-
Lenke til kommentar
Videoannonse
Annonse
Prøvd med annen nettleser?

Har du noen fancy og paranoid brannvegg ala Norton?

 

Prøvd med Opera, Internet Explorer og Firefox. Bruker Avast anitivirus home edition på ene maskina og AVG 7 på den andre. Bruker bare standard windows bannmur.

Lenke til kommentar
Du har prøvd å resette routeren? Sånn det skal gjøres?

 

Inn med resettknappen med en penn, tell til tre, ut med strømmen, tell til tre, inn med strømmen og tell til 30. Slipp resett knapp og la den boote opp.

Prøvde nå, men det samme skjer fremdeles.

Lenke til kommentar

Opprett en konto eller logg inn for å kommentere

Du må være et medlem for å kunne skrive en kommentar

Opprett konto

Det er enkelt å melde seg inn for å starte en ny konto!

Start en konto

Logg inn

Har du allerede en konto? Logg inn her.

Logg inn nå
  • Hvem er aktive   0 medlemmer

    • Ingen innloggede medlemmer aktive
×
×
  • Opprett ny...