Thank you for the video! This worked, but foy my setup I ran into a python traceback error. This fixed it : md5input=iouPad1 + iouPad2 + struct.pack('!I', ioukey) + iouPad1 The letter i in the struct.pack was a small letter i in the original code. Changing it to a capital avoided the error.
@JKRowl9 ай бұрын
Where is the IOU Python code from the description?
@DineshkumarPalani7 ай бұрын
Sorry missed to post the code in description will post it soon.. thanks for noticing it..
@DineshkumarPalani7 ай бұрын
the special chracter not accpeted so not able to paste the code please find the code here #! /usr/bin/python #print "*********************************************************************" #print "Cisco IOU License Generator - Kal 2011, python port of 2006 C version" import os import socket import hashlib import struct # get the host id and host name to calculate the hostkey hostid=os.popen("hostid").read().strip() hostname = socket.gethostname() ioukey=int(hostid,16) for x in hostname: ioukey = ioukey + ord(x) print "hostid=" + hostid +", hostname="+ hostname + ", ioukey=" + hex(ioukey)[2:] # create the license using md5sum iouPad1='\x4B\x58\x21\x81\x56\x7B\x0D\xF3\x21\x43\x9B\x7E\xAC\x1D\xE6\x8A' iouPad2='\x80' + 39*'\0' md5input=iouPad1 + iouPad2 + struct.pack('!i', ioukey) + iouPad1 iouLicense=hashlib.md5(md5input).hexdigest()[:16] print " Add the following text to ~/.iourc:" print "[license] " + hostname + " = " + iouLicense + "; " print "You can disable the phone home feature with something like:" print " echo '127.0.0.127 xml.cisco.com' >> /etc/hosts "
@AdiM-n7o5 ай бұрын
Thanks bro, it worked..was searching for solution since long..thank you !
@DineshkumarPalani4 ай бұрын
Welcome 👍
@sephiroth67525 ай бұрын
how do i paste code to nano file control+ c doesn't work? I'm using VMware
@DineshkumarPalani4 ай бұрын
CTRL+shift+V try this
@saul-bipa2 ай бұрын
use putty not on VMware workstation
@saul-bipa2 ай бұрын
use putty not on VMware workstation
@legacierpaz7628 ай бұрын
I love you thank you brother I was trying for 2 days and keep getting that error message had to redo everything with your tutorial