I was almost determined to give up using this laboratory, I'm not kidding. I even downloaded malware yesterday trying to find these two files. but thank god your video gave me the solution; made me want to continue. * Sorry if I made a typo. I don't speak English, and I used the Google translator to be able to post here on your video. Thank you very much brother, very grateful to share your knowledge. A hug. God be with you
@dark_mystic22674 жыл бұрын
I was in the same boat as Acer Aspire. I was ready to give up on Eve-NG as the IOL L2 and L3 Switch images were not starting (only 7200 Dynamips router image was working). But, this worked and I now able to use the Switches as well. Many thanks for your excellent step-by step video.
@itgeekshub4 жыл бұрын
Thank you for comment
@rdx0000118 күн бұрын
Helpful even after 5 years.....
@emr1d3414 жыл бұрын
You're the best! Thank you so much! I actually had to tweak a couple things, but I eventually got it to work. Trying to fixpermissions using "/wrappers//unl wrapper" didn't seem to work, but a single "/" instead of "//" worked. I couldn't copy/paste license with a mouse (OracleVM). I was able to use FileZilla a .txt over and rename it. (Actually, the keygen I copy/pasted from your site didn't work, but I was able to find another one.) Ultimately, your guide got me to where I needed to get! Thanks a million! My future children also thank you.
@ottowhassan69324 жыл бұрын
am still struggling in 5:39 , i cant view the license after typing the code sudo ./CiscoKey.py
@emr1d3414 жыл бұрын
I had the same issue. I think the problem was with the license. Here's what I ended up using. #! /usr/bin/python print "************************************************************************" print "Cisco IOU License Generator v2 - 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('!Q', ioukey)[4:] + iouPad1 iouLicense=hashlib.md5(md5input).hexdigest()[:16] print "************************************************************************" print "Add the following text to ~/.iourc:" print "[license] " + hostname + " = " + iouLicense + "; " print "************************************************************************" print "You can disable the phone home feature with something like:" print " echo '127.0.0.127 xml.cisco.com' >> /etc/hosts" print "************************************************************************"
@pramodrag3 жыл бұрын
@@emr1d341 Thanks for this Worked
@cavid7822 жыл бұрын
@@emr1d341 not working bro(
@jiramos114 жыл бұрын
this method doesnt work for me either. the node (catalyst 3560) starts and then stops after a few seconds
@nabeehhn40903 жыл бұрын
hi, i faced the same problem please did you find a solution for this ??
@maalrush93864 жыл бұрын
Fixed the issue by converting the script to python3 and also modifying some of the config: Steps: > vi Ciscokey.py press i for insert ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ #! /usr/bin/python3 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 = b'\x4B\x58\x21\x81\x56\x7B\x0D\xF3\x21\x43\x9B\x7E\xAC\x1D\xE6\x8A' iouPad2 = b'\x80' + 39*b'\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 + "; ") with open("iourc.txt", "wt") as out_file: out_file.write("[license] " + hostname + " = " + iouLicense + "; ") print("^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ Already copy to the file iourc.txt ") print("You can disable the phone home feature with something like:") print(" echo '127.0.0.127 xml.cisco.com' >> /etc/hosts ") ++++++++++++++++++++++++++++++ press escape to get of insert mode !wq ! Grant execution permission: > chmod +x Ciscokey.py !Generate the key: > python3 Ciscokey.py Now you can use the generated key and save in iourc nano -c iourc End Good Luck:
@odchrono2 жыл бұрын
This one is working for v5 free edition (thanks)
@tunhtet2562 жыл бұрын
Thank You
@ricewu85197 ай бұрын
Thanks! Your script is the real one working!!!
@deenaadam5878 Жыл бұрын
hi sir, please how can i get the key generate python script ? the link below the video does not exist. Wish you help me
@cavid7822 жыл бұрын
sudo: unable to execute ./CiscoKey.py: No such file or directory this error why?
@MrGtagangster Жыл бұрын
Go a few comments lower, Python3 needs to be used
@amitpatil19004 жыл бұрын
i am running the python script...but not able to generate key...any solution?
@vigneshd55564 жыл бұрын
SAME HERE ANY SOLUTION
@cavid7822 жыл бұрын
@@vigneshd5556 +
@JoséLuisHernandezHernandez-x1h3 ай бұрын
Donde puedo conseguir el script para generar la licencia
@itgeekshub3 ай бұрын
@@JoséLuisHernandezHernandez-x1h send me your email I can send it to you bro
@isaacnavarro1461 Жыл бұрын
when I type "/opt/unetlab/wrappers/unl_wraper -a fixpermissions" it apears "ERROR: Unlicensed"
@itgeekshub Жыл бұрын
What error did you get?
@YesItsMe_Y Жыл бұрын
@@itgeekshub same here, only I recieve ERROR: Unlicensed when I do the fixpermissions command
@itgeekshub Жыл бұрын
Try this link: www.eve-ng.net/index.php/documentation/howtos/howto-add-cisco-iol-ios-on-linux/
@YesItsMe_Y Жыл бұрын
@@itgeekshub no, actually my issue is that I have mistakenly downloaded eve-pro which requires a license, but when I installed the normal client eve, issue just resolved, ty for ur reply!
@isaacnavarro1461 Жыл бұрын
@@itgeekshub I solved it when downloaded the normal eve not the PRO, thanks.
@satendranigam-d4z10 ай бұрын
Thank you for the share the valuable information.
@mohammedaklief27702 жыл бұрын
link it is not working ,can you write another link
@bravealikhan4 жыл бұрын
Hi, Thanks for the video. How could we paste the script on Windows while running VMware Workstation 15 Player. I open the GNU nano 2.5.3 but I can't R-click or use Ctrl+V
@oqasho.4 жыл бұрын
Not within VMware. SSH into the session and paste into it.
@sbapungi15064 жыл бұрын
@@oqasho.السلام عليكم انت تدرس لي ccna ?
@oqasho.4 жыл бұрын
@@sbapungi1506 انا خلصت ال ccna 😊
@emr1d3414 жыл бұрын
I had the same issue. I created a .txt on my computer, used FileZilla to get it to the right location in the vm, then renamed it. For the license itself (in the ioruc), I screenshotted and manually input.
@kukuman1003 жыл бұрын
It's wonderful! Many thanks.!
@fatzyrider4 жыл бұрын
hi, i followed your script but when i click start on my router it will start and stop at the same time.
@johnd.15064 жыл бұрын
same here
@johnd.15064 жыл бұрын
were you able to fix it?
@axxoaxx2884 жыл бұрын
same issue for me... any solution..
@nabeehhn40903 жыл бұрын
did you fix it ??
@luthfanfarizan78303 жыл бұрын
Many thanks. very helpful for this case.
@itgeekshub3 жыл бұрын
Glad it was helpful!
@vaishakpd38674 жыл бұрын
It is working.how can i do it same on ASAv License
@almoosoi3 жыл бұрын
You're the best! Thanks PRO
@mactech74597 ай бұрын
So helpful. Thank you!!
@jasonboykins28884 жыл бұрын
I keep getting this when running the sudo ./Cisco.py command Cisco IOU License Generator - Kal 2011, python port of 2006 C version Modified to work with python3 by c_d 2014 hostid=8e0a0500, hostname=eve-comm1, ioukey=8e0a084a Traceback (most recent call last): File "./Cisco.py", line 21, in md5input=iouPad1 + iouPad2 + struct.pack('!i', ioukey) + iouPad1 struct.error: 'i' format requires -2147483648
@malachjacob4 жыл бұрын
Hello, I got the same thing
@psnfilms4 жыл бұрын
Very helpful. Thank you! +1 sub
@thanhphunguyen2320 Жыл бұрын
Tks for your help
@robertosegundo234 Жыл бұрын
do not exist youre site
@chiragshetty80247 ай бұрын
Thanks it helped
@danfraser92572 жыл бұрын
dead link man
@zahidaliAyaal4 жыл бұрын
many thanx
@techsupport346310 ай бұрын
I have tried many times but getting this error =============================================================================== Cisco IOU License Generator - Kal 2011, python port of 2006 C version hostid=800a0200, hostname=myserver, ioukey=800a057d Traceback (most recent call last): File "CiscoIOUKeygen.py", line 18, in md5input=iouPad1 + iouPad2 + struct.pack('!i', ioukey) + iouPad1 struct.error: 'i' format requires -2147483648