Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

on proxmox

on eve-ng


Code Block
titleifconfig
root@eve-ng:~# ifconfig -a | grep ^eth
eth0      Link encap:Ethernet  HWaddr da:76:af:78:70:7e
eth1      Link encap:Ethernet  HWaddr 82:92:f0:2b:21:7a




Code Block
titlebrctl show
collapsetrue
bridge name     bridge id               STP enabled     interfaces
pnet0           8000.8e508fd7b2e4       no              eth0
                                                        vunl0_2_0
                                                        vunl0_3_0
                                                        vunl0_4_0
pnet1           8000.8292f02b217a       no              eth1           <<<<<<<<<<< This one is new 
pnet2           8000.000000000000       no
pnet3           8000.000000000000       no
pnet4           8000.000000000000       no
pnet5           8000.000000000000       no
pnet6           8000.000000000000       no
pnet7           8000.000000000000       no
pnet8           8000.000000000000       no
pnet9           8000.000000000000       no
vnet0_2         8000.6a2d8e80d0b0       no              vunl0_1_0
                                                        vunl0_4_3
vnet0_3         8000.d2ac5762aafc       no              vunl0_3_3
                                                        vunl0_7_0
vnet0_4         8000.000000000000       no
root@eve-ng:~# 




Code Block
title/etc/network/interfaces on ubuntu
collapsetrue
root@eve-ng:~# more /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
auto pnet0
iface pnet0 inet dhcp
    bridge_ports eth0
    bridge_stp off

# Cloud devices
iface eth1 inet manual
auto pnet1
iface pnet1 inet manual
    bridge_ports eth1
    bridge_stp off

iface eth2 inet manual
auto pnet2
iface pnet2 inet manual
    bridge_ports eth2
    bridge_stp off



on the EVE GUI

Image Added