jdogherman Posted June 20, 2012 Share Posted June 20, 2012 Just an idea but what if the MKIV could do an OUI lookup on the MAC? Quote Link to comment Share on other sites More sharing options...
PineDominator Posted June 20, 2012 Share Posted June 20, 2012 (edited) Just an idea but what if the MKIV could do an OUI lookup on the MAC? hmmm I'll look into adding that to blacklister:-D Edited June 20, 2012 by petertfm Quote Link to comment Share on other sites More sharing options...
Dazzle Posted June 22, 2012 Share Posted June 22, 2012 We should definitely look into that, just because of the fact 'Oui' means 'Yes' in French :P Quote Link to comment Share on other sites More sharing options...
Dazzle Posted June 22, 2012 Share Posted June 22, 2012 · Hidden by Dazzle, June 22, 2012 - No reason given Hidden by Dazzle, June 22, 2012 - No reason given We should definitely look into that, just because of the fact 'Oui' means 'Yes' in French :P Link to comment
Sebkinne Posted June 22, 2012 Share Posted June 22, 2012 This wouldn't be too bad to implement. I will check it out. Best, Sebkinne Quote Link to comment Share on other sites More sharing options...
Whistle Master Posted June 22, 2012 Share Posted June 22, 2012 Some of my modules (Site Survey, Status) already have the feature for MAC address lookup. Quote Link to comment Share on other sites More sharing options...
PineDominator Posted June 22, 2012 Share Posted June 22, 2012 (edited) This wouldn't be too bad to implement. I will check it out. Best, Sebkinne Seb this is what I did PHP $clientMAC = '00:11:22:33:44:55'; $clientMACOUI = 'http://standards.ieee.org/cgi-bin/ouisearch?'.strtoupper(str_replace(':', '-', substr($clientMAC, 0, 8))); echo('<a href="'.$clientMACOUI.'" target="popup" onClick="wopen(\''.$clientMACOUI.'\', \'popup\', 660, 360); return false;">'.$clientMAC.'</a> '); add this to top of page <script LANGUAGE="JavaScript"> <!-- Beginning of JavaScript - function wopen(url, name, w, h) { // Fudge factors for window decoration space. // In my tests these work well on all platforms & browsers. w += 32; h += 96; var win = window.open(url, name, 'width=' + w + ', height=' + h + ', ' + 'location=no, menubar=no, ' + 'status=no, toolbar=no, scrollbars=no, resizable=no'); win.resizeTo(w, h); win.focus(); } // - End of JavaScript - --> </SCRIPT> Edited June 22, 2012 by petertfm Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.