M and MSM Series
1752799 Members
6197 Online
108789 Solutions
New Discussion

Re: 3CRWER100-75 Mac filtering problem

 
glw12345
New Member

3CRWER100-75 Mac filtering problem

I have a Office Connect 11G router which I'm the MAC filter option used. I recenty purchased a new MAC Book and tried to add the MAC ID to the list. Unfortunately, it gives me an error: MAC address invalid. The funny thing about the address is it starts with an "F". Fx.xx.xx.xx.xx.xx Apparenty, the router does not reconize the "F" as a valid number. Can anyone advise?



Thanks



Gray



This message was edited by glw12345 on 3-25-10 @ 1:59 AM
1 REPLY 1
basty
Occasional Advisor

Re: 3CRWER100-75 Mac filtering problem

I could save a mac address starting with whatever (debuging/changing the javascript that validates the mac address in that page) but i can't connect either so maybe it's a firmware limitation (not only a javascript issue).





 





here is the javascript:





if (   ( parseInt( m.charAt(0) , 16 ) & 0x8 ) == 0x8 || 





103     ((parseInt(m, 16))  & (parseInt(m, 16)) & (parseInt(m, 16)) &  (parseInt(m, 16)) & (parseInt(m, 16)) &(parseInt(m,  16))) == 0xff ||





104     ((parseInt(m, 16)) |  (parseInt(m, 16)) | (parseInt(m, 16)) | (parseInt(m, 16))|  (parseInt(m, 16)) | (parseInt(m, 16)))== 0x00    )





105     {





106        alert("Not a MAC  address!");





107        oldmac.focus();





108        return;





109     }





 





clearly, the first condition is true with whatever value equal or higher than 8.





 





Sebas