diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-07-19 09:56:24 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-07-19 09:56:24 +0000 |
commit | 8a16d273887cce159fd1c30ee820ec30ef93e661 (patch) | |
tree | e2c0220bdb810f7e31ba5bcabcb273be35cbcd93 /qemu-doc.texi | |
parent | linux-user: Fix target_statfs[64] on 64-bit hosts (diff) | |
download | qemu-kvm-8a16d273887cce159fd1c30ee820ec30ef93e661.tar.gz qemu-kvm-8a16d273887cce159fd1c30ee820ec30ef93e661.tar.bz2 qemu-kvm-8a16d273887cce159fd1c30ee820ec30ef93e661.zip |
Add Virtual Distributed Ethernet native support, by Luca Bigliardi.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4896 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'qemu-doc.texi')
-rw-r--r-- | qemu-doc.texi | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/qemu-doc.texi b/qemu-doc.texi index 78ba5878f..f09391585 100644 --- a/qemu-doc.texi +++ b/qemu-doc.texi @@ -675,6 +675,21 @@ qemu linux.img -net nic,macaddr=52:54:00:12:34:56 \ /path/to/linux ubd0=/path/to/root_fs eth0=mcast @end example +@item -net vde[,vlan=@var{n}][,sock=@var{socketpath}][,port=@var{n}][,group=@var{groupname}][,mode=@var{octalmode}] +Connect VLAN @var{n} to PORT @var{n} of a vde switch running on host and +listening for incoming connections on @var{socketpath}. Use GROUP @var{groupname} +and MODE @var{octalmode} to change default ownership and permissions for +communication port. This option is available only if QEMU has been compiled +with vde support enabled. + +Example: +@example +# launch vde switch +vde_switch -F -sock /tmp/myswitch +# launch QEMU instance +qemu linux.img -net nic -net vde,sock=/tmp/myswitch +@end example + @item -net none Indicate that no network devices should be configured. It is used to override the default configuration (@option{-net nic -net user}) which |