GNS3 1.5.0b1 的IOURC文件
谁有GNS3 1.5.0b1的IOIURC文件啊,急求,谢谢都是同样的吧
gns3-iouvm = cd11acbc599f2364;
gns3vm = 73635fd3b0a13ad0; 自己编入txt文档。已经在1.50b上验证。 田间 发表于 2016-5-29 00:16
自己编入txt文档。已经在1.50b上验证。
好的,谢谢你 yaoguojun1989 发表于 2016-5-28 23:26
都是同样的吧
嘿嘿,这个不一样,版本不同,楼下那位大神给的应该不错,我去试试 感谢分享!!!!! 1.5RC1能用吗? 感謝樓主,無私提供,立馬下來試試 hdf 万分感谢 {:6_267:}】 跪求
#! /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))
# 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("\nAdd the following text to ~/.iourc:")
print("\n" + hostname + " = " + iouLicense + ";\n")
with open("iourc.txt", "wt") as out_file:
out_file.write("\n" + hostname + " = " + iouLicense + ";\n")
print("^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^\nAlready copy to the file iourc.txt\n ")
print("You can disable the phone home feature with something like:")
print(" echo '127.0.0.127 xml.cisco.com' >> /etc/hosts\n")
页:
[1]