Before starting any
DomUs, brctl show should give something like :
bridge name bridge id STP enabled interfaces
ethext 8000.xxxxxxxxxxxx no eth0
ethint 8000.xxxxxxxxxxxx no
ethdmz 8000.xxxxxxxxxxxx no
After starting the
first DomU as your firewall device, you should see it change to
something like :
ethext 8000.xxxxxxxxxxxx no vifa.b eth0
ethint 8000.xxxxxxxxxxxx no vifa.c
ethdmz 8000.xxxxxxxxxxxx no vifa.d
Not too sure about
the "vifa.b" stuff, I give my DomUs explicit interface names, so
I might see :
ethext 8000.xxxxxxxxxxxx no fwext eth0
ethint 8000.xxxxxxxxxxxx no fwint
ethdmz 8000.xxxxxxxxxxxx no fwdmz
Eg, in the config
for my firewall DomU, I might have something like :
vif = [ 'bridge=ethext,vifname=fwext',
'bridge=ethint,vifname=fwint', 'bridge=ethdmz,vifname=fwdmz' ]
I just like having
meaningful names - makes things easier when you have a few VMs
running. On the other hand, it causes some confusion when
cloning a VM and I forget to change the names !
Sounds good, thanks !