EVE桥接网卡和加载镜像

EVE (Linux) 网卡重启
如果修改了ip,没有重启网卡,一般是没有奏效的。
Linux 下网卡重启的命令为:
/etc/init.d/network restart 或者是 /etc/init.d/networking restart
或者重启网络服务:
service network restart
在ubuntu下,还可以指定控制哪个网卡(其中eth0为网卡名):
sudo ifdown eth0
sudo ifup eth0
EVE 加载镜像后需要执行

/opt/unetlab/wrappers/unl_wrapper -a fixpermissions

如果您的EVE-NG在添加网卡后识别不了,可以重启EVE的网络服务

root@eve-ng:~# /etc/init.d/networking restart

[ ok ] Restarting networking (via systemctl): networking.service.

root@eve-ng:~#
二、编辑EVE网卡配置文件

用vim打开配置文件(我习惯用vim,nano也可以)

root@eve-ng:~# vim /etc/network/interfaces

其实默认配置已经做好桥接了。之所以加上这部分内容,我是想给大家解释一下桥接的原理和可以用到的参数

root@eve-ng:~# 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

iface eth0 inet manual #(EVE-NG的管理网卡)

auto pnet0

iface pnet0 inet dhcp #(管理网卡的桥接网卡,连接到pnet0上的设备都可以与eth0通信)

bridge_ports eth0 #(桥接到eth0)

bridge_stp off #(关闭stp生成树协议,这个在生产环境也非常重要,尤其是在KVM,OpenStack,Docker中都可能用到。)

iface pnet0 inet static #(修改固定IP的方法)

bridge_ports eth0

bridge_stp off

bridge_ageing 0

address 10.0.0.100

netmask 255.255.255.0

gateway 10.0.0.1

dns-domain UnetLab.sms.com

dns-nameservers 114.114.114.114

Cloud devices

iface eth1 inet manual #(新添加的VMnet1网卡)

auto pnet1

iface pnet1 inet manual #(VMnet1的桥接网卡,连接到pnet1上的设备都可以与VMnet1通信)

bridge_ports eth1

bridge_stp off

当然,这里也可以把pnet1配置成静态 or 动态IP,在实验时做tr可以排除桥接问题,pnet1有无IP,不会影响到桥接功能。

iface eth2 inet manual

auto pnet2

iface pnet2 inet manual

bridge_ports eth2

bridge_stp off

iface eth9 inet manual

auto pnet9

iface pnet9 inet manual

bridge_ports eth9

bridge_stp off

目前我的EVE-NG网卡配置

iface eth0 inet manual

auto pnet0

iface pnet0 inet static

bridge_ports eth0

bridge_stp off

address 10.0.0.100

netmask 255.255.255.0

gateway 10.0.0.1

iface eth1 inet manual

auto pnet1

iface pnet1 inet static

bridge_ports eth1

bridge_stp off

address 10.0.1.98

netmask 255.255.255.0

gateway 10.0.1.99

三、测试

1、Web界面上新建实验实例,添加Network Cloud,添加路由器。

你可能感兴趣的:(EVE桥接网卡和加载镜像)