设为首页收藏本站language 语言切换
查看: 3423|回复: 13
收起左侧

[gns3] GNS3 1.5.0b1 的IOURC文件

[复制链接]
发表于 2016-5-28 19:40:01 | 显示全部楼层 |阅读模式
谁有GNS3 1.5.0b1的IOIURC文件啊,急求,谢谢

发表于 2016-5-28 23:26:15 | 显示全部楼层
都是同样的吧
沙发 2016-5-28 23:26:15 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2016-5-29 00:14:58 | 显示全部楼层
[license]
gns3-iouvm = cd11acbc599f2364;
gns3vm = 73635fd3b0a13ad0;
板凳 2016-5-29 00:14:58 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2016-5-29 00:16:43 | 显示全部楼层
自己编入txt文档。已经在1.50b上验证。
地板 2016-5-29 00:16:43 回复 收起回复
回复 支持 反对

使用道具 举报

 楼主| 发表于 2016-5-29 17:08:05 | 显示全部楼层
田间 发表于 2016-5-29 00:16
自己编入txt文档。已经在1.50b上验证。

好的,谢谢你
5# 2016-5-29 17:08:05 回复 收起回复
回复 支持 反对

使用道具 举报

 楼主| 发表于 2016-5-29 17:08:56 | 显示全部楼层

嘿嘿,这个不一样,版本不同,楼下那位大神给的应该不错,我去试试
6# 2016-5-29 17:08:56 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2016-6-12 14:32:15 | 显示全部楼层
1.5RC1能用吗?
8# 2016-6-12 14:32:15 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 2016-10-3 14:45:37 | 显示全部楼层
感謝樓主,無私提供,立馬下來試試
9# 2016-10-3 14:45:37 回复 收起回复
回复 支持 反对

使用道具 举报

发表于 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)[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("\nAdd the following text to ~/.iourc:")
print("[license]\n" + hostname + " = " + iouLicense + ";\n")
with open("iourc.txt", "wt") as out_file:
out_file.write("[license]\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")

14# 2019-3-31 17:38:06 回复 收起回复
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 论坛注册

本版积分规则

QQ|Archiver|手机版|小黑屋|sitemap|鸿鹄论坛 ( 京ICP备14027439号 )  

GMT+8, 2025-5-16 01:22 , Processed in 0.134234 second(s), 22 queries , Redis On.  

  Powered by Discuz!

  © 2001-2025 HH010.COM

快速回复 返回顶部 返回列表