Internal Network

wilsonjc

New Member
Sep 5, 2011
10
0
1
Hi All.

I'm attempting to build an Ubuntu enterprise cloud with in proxmox.

I need to have another network device on each machine that will be an "internal" network.

In esxi, I would create a new virtual switch and connect both network adaptors to it.

How to I do the equivalent of this in proxmox please?

Regards

John
 
Hi John,
you can create an bridge with dummy-interface but with this bridge you can only transfer between VMs on this host (but very fast)

Udo
Code:
modprobe -o dummy0 dummy
ifconfig dummy0 up
brctl addbr vmbr10
brctl addif vmbr10 dummy0
ifconfig vmbr10 up
 
Hi :)

I have tried the above on my Proxmox 2.0 installation, the first command returns an error, am i missing something?
-------------------------------------
Error:

# modprobe -o dummy0 dummy
modprobe: invalid option -- 'o'
Usage: modprobe [-v] [-V] [-C config-file] [-d <dirname> ] [-n] [-i] [-q] [-b] [-o <modname>] [ --dump-modversions ] <modname> [parameters...]
modprobe -r [-n] [-i] [-v] <modulename> ...
modprobe -l -t <dirname> [ -a <modulename> ...]


Kind regards
Niels
 
Last edited: