- use WinSCP
- Eve Ng Cisco Images
- Eve Ng Pro License
- Eve Ng Labs
- Eve-ng Iol Images Download
- Eve-ng Huawei Images Download
Web for load WinSCP
https://sourceforge.net/projects/winscp/?source=typ_redirect
Eve Ng Cisco Images
- This EVE-NG tutorial shows you step by step how to download Cisco IOS images, how to upload them to the EVE-NG server and then how to use them in EVE-NG topologies. This video is part of a series of videos that give you a full EVE-NG installation guide. Use this EVE-NG tutorial to add Cisco images to EVE-NG and get an EVE-NG lab set up.
- Upload any image to EVE-NG.
- Virtual Images Features For EVE-NG. Are now strongly focused on moving to the next generation NXOS as implemented today on the NEXUS 9000-series platform.
- Aug 10, 2017 If the file you are trying to access is particularly large or is shared with many people, it may take up to 24 hours to be able to view or download the file. If you still can't access a file after 24 hours, contact your domain administrator.
May 04, 2020 Download Cisco Nexus Switch Images For GNS3 & Eve-ng, download cisco nexus 9000v, download nexus 5k image for +eve-ng, download nexus titanium.
- The location of WinSCP
C:UserUserDownloadsProgramsWinSCP-5.10.1.beta-Setup.exe
- After setup WinSCP, open the WinSCP from destop
- Click login
- Click “Yes”
- Password : eve
- The interface of WinSCP which have 2 side.
left hand side of page for directory in your computer
in my computer
Eve Ng Pro License
D:Training-CATCisco IOL
right hand side of page for directory in WinSCP
/opt/unetlab/addons/iol/bin/
- Copy (drag) the file from your computer to WinSCP
there are the file that should copy
Eve Ng Labs
L2-ADVENTERPRISE-M-15.1-20140814.bin
L3-ADVENTERPRISEK9-M-15.4-2T.bin
script.py
Eve-ng Iol Images Download
- for file script.py copy from the internet paste into the notepad
## create file “scripts.py” , save file, and then upload to /opt/unetlab/addons/iol/bin/
Eve-ng Huawei Images Download
##———————————————————————————————–##
#! /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=’x4Bx58x21x81x56x7Bx0DxF3x21x43x9Bx7ExACx1DxE6x8A’
iouPad2=’x80′ + 39*’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”
print “You can disable the phone home feature with something like:”
print ” echo ‘127.0.0.127 xml.cisco.com’ >> /etc/hostsn”
##———————————————————————————————–##
Note::
Here is the script: