Générateur pour option 90 DHCP Orange
by Kirth Gersen
HTML
<h3>Générateur pour option 90 DHCP Orange</h3>
<a href="https://lafibre.info/remplacer-livebox/remplacer-la-livebox-sans-pppoe/24/">voir ce sujet sur lafibre.info</a><br>
<hr>
fti/<input id="txt2" placeholder="identifiant Orange"></input><br>(execution locale au navigateur, l'identifiant n'est pas envoyé sur le réseau)<br>
<hr>
<button id="btn2">Générer la chaine</button><br>
chaine option dhcp 90:<textarea id="txt1" placeholder=""></textarea><br>
CSS
textarea{
width:100%;
height:100px;
}
JavaScript
(function(){
btn2.onclick = function(){
var strin = txt2.value;
var strout = '00:00:00:00:00:00:00:00:00:00:00:66:74:69:2f:';
var i, toAdd;
for(i = 0; i < strin.length; i++){
toAdd = strin.charCodeAt(i).toString(16).toUpperCase();
if(toAdd.length<2)toAdd = '0'+toAdd;
strout += toAdd;
if (i<strin.length-1) strout+=":";
}
txt1.value = strout;
}
})();