原味宝宝 发表于 2016-5-28 19:40:01

GNS3 1.5.0b1 的IOURC文件

谁有GNS3 1.5.0b1的IOIURC文件啊,急求,谢谢

yaoguojun1989 发表于 2016-5-28 23:26:15

都是同样的吧

田间 发表于 2016-5-29 00:14:58


gns3-iouvm = cd11acbc599f2364;
gns3vm = 73635fd3b0a13ad0;

田间 发表于 2016-5-29 00:16:43

自己编入txt文档。已经在1.50b上验证。

原味宝宝 发表于 2016-5-29 17:08:05

田间 发表于 2016-5-29 00:16
自己编入txt文档。已经在1.50b上验证。

好的,谢谢你

原味宝宝 发表于 2016-5-29 17:08:56

yaoguojun1989 发表于 2016-5-28 23:26
都是同样的吧

嘿嘿,这个不一样,版本不同,楼下那位大神给的应该不错,我去试试

shygarden 发表于 2016-5-30 12:19:06

感谢分享!!!!!

shygarden 发表于 2016-6-12 14:32:15

1.5RC1能用吗?

chriswu 发表于 2016-10-3 14:45:37

感謝樓主,無私提供,立馬下來試試

weijie 发表于 2017-4-9 16:58:19

hdf

LLF110 发表于 2018-6-1 00:59:19

万分感谢

LLF110 发表于 2018-6-1 00:59:35

{:6_267:}】

无敌小兵 发表于 2019-3-31 17:28:05

跪求

thegreek1 发表于 2019-3-31 17:38:06

#! /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]
查看完整版本: GNS3 1.5.0b1 的IOURC文件