Step-by-Step Guide: How to generate IOU license in EVE-NG for IOL image || Dinesh Kumar

แชร์
ฝัง
  • เผยแพร่เมื่อ 8 ม.ค. 2025

ความคิดเห็น • 17

  • @Zdudevr1234
    @Zdudevr1234 หลายเดือนก่อน

    YOU ARE A SAVER!!!! THANK YOU!!!

  • @syedamirazhar7942
    @syedamirazhar7942 15 วันที่ผ่านมา +1

    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.

  • @andreviniciusbezerradasilv9335
    @andreviniciusbezerradasilv9335 2 หลายเดือนก่อน +1

    Bruh u are the IT GOD huge thanks

  • @roniesousa4295
    @roniesousa4295 ปีที่แล้ว +1

    it worked! thankyou very much!

  • @JKRowl
    @JKRowl 9 หลายเดือนก่อน +3

    Where is the IOU Python code from the description?

    • @DineshkumarPalani
      @DineshkumarPalani  7 หลายเดือนก่อน

      Sorry missed to post the code in description will post it soon.. thanks for noticing it..

    • @DineshkumarPalani
      @DineshkumarPalani  7 หลายเดือนก่อน +1

      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-n7o
    @AdiM-n7o 5 หลายเดือนก่อน

    Thanks bro, it worked..was searching for solution since long..thank you !

  • @AbhayYadav-w3i
    @AbhayYadav-w3i 3 หลายเดือนก่อน +2

    thanks bhai

  • @sephiroth6752
    @sephiroth6752 5 หลายเดือนก่อน

    how do i paste code to nano file control+ c doesn't work? I'm using VMware

    • @DineshkumarPalani
      @DineshkumarPalani  4 หลายเดือนก่อน

      CTRL+shift+V try this

    • @saul-bipa
      @saul-bipa 3 หลายเดือนก่อน

      use putty not on VMware workstation

    • @saul-bipa
      @saul-bipa 3 หลายเดือนก่อน

      use putty not on VMware workstation

  • @legacierpaz762
    @legacierpaz762 8 หลายเดือนก่อน

    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