Commit f5fc9975460bbd024a0fcea08e03cb3598d556a1
1 parent
01a4afeb
qemu-doc.texi: document downscript network option
From Guido Günther, through the Debian BTS. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@5806 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
6 additions
and
4 deletions
qemu-doc.texi
... | ... | @@ -616,13 +616,15 @@ Use the user mode network stack which requires no administrator |
616 | 616 | privilege to run. @option{hostname=name} can be used to specify the client |
617 | 617 | hostname reported by the builtin DHCP server. |
618 | 618 | |
619 | -@item -net tap[,vlan=@var{n}][,fd=@var{h}][,ifname=@var{name}][,script=@var{file}] | |
619 | +@item -net tap[,vlan=@var{n}][,fd=@var{h}][,ifname=@var{name}][,script=@var{file}][,downscript=@var{dfile}] | |
620 | 620 | Connect the host TAP network interface @var{name} to VLAN @var{n} and |
621 | 621 | use the network script @var{file} to configure it. The default |
622 | 622 | network script is @file{/etc/qemu-ifup}. Use @option{script=no} to |
623 | -disable script execution. If @var{name} is not | |
624 | -provided, the OS automatically provides one. @option{fd}=@var{h} can be | |
625 | -used to specify the handle of an already opened host TAP interface. Example: | |
623 | +disable script execution. If @var{name} is not provided, the OS automatically | |
624 | +provides one. Use network script @var{dfile} to deconfigure the interface. Use | |
625 | +@option{downscript=no} to disable script execution. @option{fd}=@var{h} can be | |
626 | +used to specify the handle of an already opened host TAP interface. | |
627 | +Example: | |
626 | 628 | |
627 | 629 | @example |
628 | 630 | qemu linux.img -net nic -net tap | ... | ... |