starinternet 发表于 2017-1-2 20:14:45

EVE-NG 2.0.3-102 2019.11.19更新,官方OVA、ISO及Ubuntu环境下安装eve-ng

本帖最后由 starinternet 于 2019-11-23 17:34 编辑

v2.0.3-102 release notes
1. All EVE Pro supported images and templates are included in EVE Community
2. Custom image creation is same as for EVE Pro custom_templates.yml
3. All images icons are updated and matching EVE Pro
4. Updated Qemu versions up to 4.1, same as in EVE Pro
5. Dark mode for EVE topology background
6. CPU settings improvement for qemu nodes, like in the EVE Pro
7. Added all configurations export scripts from EVE Pro
8. Major upgrade to EVE Pro Kernel linux-image-4.20.17-eve-ng-ukms+

链接:https://pan.baidu.com/s/16w5itvai_-ztbPw5X9TaXw
提取码:**** Hidden Message *****

v2.0.3-95 (02 January 2019)
v2.0.3-95 release notes
1. Fixed IOL image excesscoll error, symlink to original .bin
2. Added EVE Pro custom templates form, for how to follow EVE Pro cookbook, section 17.3
3. Added troubleshooting script eve-info. Run CLI command 'eve-info' to collect info about your EVE
4. Added SQL database recovery script, run cli command 'unl_wrapper -a restoredb' to restore SQL user database (admin recovery only)
5. Updated node icons, EVE-PRO icons
6. Added new templates for images
7. Arista vEOS zerotouch images startup config export

升级方法:
Stop all nodes/labs
apt autoremove (answer Y)
apt-get update
apt-get install eve-ng
apt-get dist-upgrade
reboot ( if previous version < V84 )

2017.11.14 eve-ng 2.0.3-95版本
链接: https://pan.baidu.com/s/1ydPNaPY1KlbPfZp14RnwQw 密码: **** Hidden Message *****
增加Windows工具集
增加ISO文件,OVF有问题的朋友可以用ISO文件安装。


视频:
http://i.youku.com/starinternet
已通过ova安装2.0.3-83及之前版本的同学,现在可以升级到2.0.3-84版本,升级方法如下:
Stop all nodes/labs
apt-get update ; apt-get install eve-ng ; apt-get dist-upgrade
reboot ( if previous version < 2.0.3.79 )

!!! For users updating from V81 , see important instructions in changelog !!!

How to install EVE on bare box using Ubuntuoriginal ISO distro.
Get Ubuntu ISO:
https://www.ubuntu.com/download/ ... &architecture=amd64
Ubuntu 16.04 安装:
1、获取root权限
      sudo su
2、修改root密码
      root@unl01:~# sudo passwd root
      Enter new UNIX password: eve
      Retype new UNIX password: eve
3、修改主机名
      sudo vim /etc/hostname
      将原主机名改为eve-ng
      sudo vim /etc/hosts
      增加:127.0.0.1       eve-ng
4、修改ssh配置允许root用户登陆
      sudo vim /etc/ssh/sshd_config
      将此行PermitRootLogin prohibit-password
      修改为PermitRootLogin yes
5、修改网卡命名方式并重启
      sed -i -e 's/GRUB_CMDLINE_LINUX=""/GRUB_CMDLINE_LINUX="net.ifnames=0"/'/etc/default/grub
      update-grub
      reboot
      16.04.02版本以上操作后仍然需要手工修改网卡名,方法如6
6、修改网上配置如下:
      sudo vim /etc/network/interfaces
      # This file describes the network interfaces available on your system
      # and how to activate them. For more information, see interfaces(5).
      # The loopback network interface
      auto lo
      iface lo inet loopback
      # The primary network interface
      auto eth0
      iface eth0 inet dhcp
7、下载key
      sudo wget -O - http://www.eve-ng.net/repo/eczema@ecze.com.gpg.key | sudo apt-key add
8、更新
      sudo apt-get update
9、添加软件仓库      
      sudo add-apt-repository "deb http://www.eve-ng.net/repo xenial main"
10、更新
       sudo apt-get update
11、安装eve-ng
      DEBIAN_FRONTEND=noninteractive apt-get -y install eve-ng
12、 su -

原文:
Get newest Ubuntu 16.04.3 LTS ISO:

https://www.ubuntu.com/download/server

Create bootable installation media from iso, CD or USB, boot server from it.

Ubuntu installation steps:

> Option: * Install Ubuntu Server

> Language: English

> Location: United States

> Configure keyboard: No

> Configure keyboard: English (US)

> Keyboard layout: English (US)

> if your server is connected to LAN with DHCP, the all will continues automatically, if not please setup IP/mask/GW and DNS IPs manually

> hostname: eve-ng

> Domain name (if you don't have, make it example.com)

> fullname of user: user (example, this will be used first time login in to Ubuntu)

> username of your account: user

> password: enter password, confirm enter password again

> use weak password: YES

> Encrypt your home directory: NO

> Configure Clock: YES, if your DNS IP is set right or server got it from your DHCP, time zone will sets automatically

> Partition disks: use entire disk and setup LVM

> Partition disks: Choose your main HDD were ubuntu will be installed. Usually it will be single HDD, if your raid is set right.

> Write changes to disk and create LVM: YES

> Amount of volume: leave all offered size

> Force UEFI Installation: YES

> Write changes to disk: YES

> http proxy: NO, if you have such, please configure it for internet reachability

> Configuring task: Install security updates automatically

> Software selection: IMPORTANT: select Open SSH server (mark with spacebar)

> Install GRUB boot loader: YES

> remove from your server Ubuntu install media and reboot server



After the installation of Ubuntu server is done, follow the steps below in order to install the EVE. For futher convenient choose hostname as eve-ng.

1. Login with your user as root:

sudo su
2. Change root password:

This password change option is only for how to purposes, of course you can choose your own root password, but don't forget that it will be used in the Wireshark wrapper file!

sudo passwd root
root@eve-ng:~# sudo passwd root
Enter new UNIX password: eve
Retype new UNIX password: eve
passwd: password updated successfully
3. For convenience to use EVE, install NANO editor application.

apt-get install nano
4. If you didn’t setup hostname during Ubuntu installation, change it and hosts file to look as bellow, for save settings do (ctrl+o, ctrl+x):

nano /etc/hostname
GNU nano 2.5.3                      File: /etc/hostname                                                   
eve-ng

nano /etc/hosts                                             

GNU nano 2.5.3                     File: /etc/hosts                                                      
127.0.0.1       localhost
127.0.1.1       eve-ng.example.com      eve-ng
5. Allow access to use root user ssh, edit line below:

nano /etc/ssh/sshd_config
PermitRootLogin prohibit-password
to
PermitRootLogin yes
6. Save settings (ctrl+o, ctrl+x) and do restart ssh server:

sudo service ssh restart


7. Copy/Paste bellow one my one into your terminal:

1: sed -i -e 's/GRUB_CMDLINE_LINUX_DEFAULT=.*/GRUB_CMDLINE_LINUX_DEFAULT="net.ifnames=0 noquiet"/' /etc/default/grub

2: update-grub
8. IMPORTANT!!! Do adding’s and necessary changes for this file below. It can also to be a static IP as well, follow Linux Ubuntu how to set stat IP for the interface. Example below showing DHCP IP settings.

!!! Warning !!! after GRUB update changed interface names to ethX, original name after first boot will not work !!!!! YOU MUST EDIT interfaces below and reboot!!!

Change your original interface name to eth0

nano /etc/network/interfaces
# This file describes the network interfaces available on your system
# and how to activate them. For more information, see interfaces(5).

# The loopback network interface

auto lo
iface lo inet loopback

# The primary network interface

auto eth0
iface eth0 inet dhcp
                           8.1. Option for 10Gb interfaces ONLY !!! No need install it on regular servers. Broadcom interfaces NetXtreme II 10Gb, not necessary for regular servers:

                            apt-get install firmware-bnx2x
9. Save ctrl+o, ctrl+x settings and reboot:

reboot
10. Get the eve key from repositary:

wget -O - http://www.eve-ng.net/repo/eczema@ecze.com.gpg.key | sudo apt-key add -
11. Update server:

apt-get update
sudo add-apt-repository "deb http://www.eve-ng.net/repo xenial main"
apt-get update
12. Install the EVE:

DEBIAN_FRONTEND=noninteractive apt-get -y install eve-ng
13. Close your session and re-Login with root user to the EVE and follow the setup wizard:

http://www.eve-ng.net/index.php/ ... e-during-first-boot

14. Update and upgrade the EVE:

apt-get update
apt-get upgrade
χγκο

moz-extension://b8c31867-4082-4c0e-96e2-8ba5b1c6336d/static/sound.svg

chgko





Rockyw 发表于 2017-1-2 21:49:35

感谢楼主分享!

木一 发表于 2017-1-3 08:51:55

{:6_263:}

hmxaur 发表于 2017-1-3 09:37:56

好东西谢谢楼主分享

李友 发表于 2017-1-3 10:15:34

李友 发表于 2017-1-3 10:15:40

2012ranshao 发表于 2017-1-3 11:13:21

{:6_269:}

2012ranshao 发表于 2017-1-3 11:13:25

{:6_269:}

uqmeuqmeuqme 发表于 2017-1-3 13:04:23

多谢分享!

jzhang896 发表于 2017-1-3 15:57:02

感谢楼主分享!

fb001 发表于 2017-1-3 16:04:54

cccccccccccccccccccccccccccc

zhangjie809 发表于 2017-1-3 22:22:08

楼主可以介绍一下么

hk20130810 发表于 2017-1-3 22:45:56

{:6_267:}

faerl 发表于 2017-1-4 21:54:35

{:1_1:}

zhangxugou 发表于 2017-1-5 06:32:34

试阶段,安装方法与之前unetlab有些不同,通过iso文件安装64位ubuntu及EVE-NG。有时间的朋友可以下载研究一下。
页: [1] 2 3 4 5 6 7 8 9 10
查看完整版本: EVE-NG 2.0.3-102 2019.11.19更新,官方OVA、ISO及Ubuntu环境下安装eve-ng