xref: /openbmc/qemu/qemu-options.hx (revision 84351843)
15824d651Sblueswir1HXCOMM Use DEFHEADING() to define headings in both help text and texi
25824d651Sblueswir1HXCOMM Text between STEXI and ETEXI are copied to texi version and
35824d651Sblueswir1HXCOMM discarded from C version
4ad96090aSBlue SwirlHXCOMM DEF(option, HAS_ARG/0, opt_enum, opt_help, arch_mask) is used to
5ad96090aSBlue SwirlHXCOMM construct option structures, enums and help message for specified
6ad96090aSBlue SwirlHXCOMM architectures.
75824d651Sblueswir1HXCOMM HXCOMM can be used for comments, discarded from both texi and C
85824d651Sblueswir1
95824d651Sblueswir1DEFHEADING(Standard options:)
105824d651Sblueswir1STEXI
115824d651Sblueswir1@table @option
125824d651Sblueswir1ETEXI
135824d651Sblueswir1
145824d651Sblueswir1DEF("help", 0, QEMU_OPTION_h,
15ad96090aSBlue Swirl    "-h or -help     display this help and exit\n", QEMU_ARCH_ALL)
165824d651Sblueswir1STEXI
175824d651Sblueswir1@item -h
186616b2adSStefan Weil@findex -h
195824d651Sblueswir1Display help and exit
205824d651Sblueswir1ETEXI
215824d651Sblueswir1
229bd7e6d9SpbrookDEF("version", 0, QEMU_OPTION_version,
23ad96090aSBlue Swirl    "-version        display version information and exit\n", QEMU_ARCH_ALL)
249bd7e6d9SpbrookSTEXI
259bd7e6d9Spbrook@item -version
266616b2adSStefan Weil@findex -version
279bd7e6d9SpbrookDisplay version information and exit
289bd7e6d9SpbrookETEXI
299bd7e6d9Spbrook
3080f52a66SJan KiszkaDEF("machine", HAS_ARG, QEMU_OPTION_machine, \
3180f52a66SJan Kiszka    "-machine [type=]name[,prop[=value][,...]]\n"
32585f6036SPeter Maydell    "                selects emulated machine ('-machine help' for list)\n"
3380f52a66SJan Kiszka    "                property accel=accel1[:accel2[:...]] selects accelerator\n"
346a48ffaaSJan Kiszka    "                supported accelerators are kvm, xen, tcg (default: tcg)\n"
3539d6960aSJan Kiszka    "                kernel_irqchip=on|off controls accelerated irqchip support\n"
36ddb97f1dSJason Baron    "                kvm_shadow_mem=size of KVM shadow MMU\n"
378490fc78SLuiz Capitulino    "                dump-guest-core=on|off include guest memory in a core dump (default=on)\n"
388490fc78SLuiz Capitulino    "                mem-merge=on|off controls memory merge support (default: on)\n",
3980f52a66SJan Kiszka    QEMU_ARCH_ALL)
405824d651Sblueswir1STEXI
4180f52a66SJan Kiszka@item -machine [type=]@var{name}[,prop=@var{value}[,...]]
4280f52a66SJan Kiszka@findex -machine
43585f6036SPeter MaydellSelect the emulated machine by @var{name}. Use @code{-machine help} to list
4480f52a66SJan Kiszkaavailable machines. Supported machine properties are:
4580f52a66SJan Kiszka@table @option
4680f52a66SJan Kiszka@item accel=@var{accels1}[:@var{accels2}[:...]]
4780f52a66SJan KiszkaThis is used to enable an accelerator. Depending on the target architecture,
4880f52a66SJan Kiszkakvm, xen, or tcg can be available. By default, tcg is used. If there is more
4980f52a66SJan Kiszkathan one accelerator specified, the next one is used if the previous one fails
5080f52a66SJan Kiszkato initialize.
516a48ffaaSJan Kiszka@item kernel_irqchip=on|off
526a48ffaaSJan KiszkaEnables in-kernel irqchip support for the chosen accelerator when available.
5339d6960aSJan Kiszka@item kvm_shadow_mem=size
5439d6960aSJan KiszkaDefines the size of the KVM shadow MMU.
55ddb97f1dSJason Baron@item dump-guest-core=on|off
56ddb97f1dSJason BaronInclude guest memory in a core dump. The default is on.
578490fc78SLuiz Capitulino@item mem-merge=on|off
588490fc78SLuiz CapitulinoEnables or disables memory merge support. This feature, when supported by
598490fc78SLuiz Capitulinothe host, de-duplicates identical memory pages among VMs instances
608490fc78SLuiz Capitulino(enabled by default).
6180f52a66SJan Kiszka@end table
625824d651Sblueswir1ETEXI
635824d651Sblueswir1
6480f52a66SJan KiszkaHXCOMM Deprecated by -machine
6580f52a66SJan KiszkaDEF("M", HAS_ARG, QEMU_OPTION_M, "", QEMU_ARCH_ALL)
6680f52a66SJan Kiszka
675824d651Sblueswir1DEF("cpu", HAS_ARG, QEMU_OPTION_cpu,
68585f6036SPeter Maydell    "-cpu cpu        select CPU ('-cpu help' for list)\n", QEMU_ARCH_ALL)
695824d651Sblueswir1STEXI
705824d651Sblueswir1@item -cpu @var{model}
716616b2adSStefan Weil@findex -cpu
72585f6036SPeter MaydellSelect CPU model (@code{-cpu help} for list and additional feature selection)
735824d651Sblueswir1ETEXI
745824d651Sblueswir1
755824d651Sblueswir1DEF("smp", HAS_ARG, QEMU_OPTION_smp,
7612b7f57eSMichael Tokarev    "-smp [cpus=]n[,maxcpus=cpus][,cores=cores][,threads=threads][,sockets=sockets]\n"
776be68d7eSJes Sorensen    "                set the number of CPUs to 'n' [default=1]\n"
786be68d7eSJes Sorensen    "                maxcpus= maximum number of total cpus, including\n"
79ca1a8a06SBruce Rogers    "                offline CPUs for hotplug, etc\n"
8058a04db1SAndre Przywara    "                cores= number of CPU cores on one socket\n"
8158a04db1SAndre Przywara    "                threads= number of threads on one CPU core\n"
82ad96090aSBlue Swirl    "                sockets= number of discrete sockets in the system\n",
83ad96090aSBlue Swirl        QEMU_ARCH_ALL)
845824d651Sblueswir1STEXI
8512b7f57eSMichael Tokarev@item -smp [cpus=]@var{n}[,cores=@var{cores}][,threads=@var{threads}][,sockets=@var{sockets}][,maxcpus=@var{maxcpus}]
866616b2adSStefan Weil@findex -smp
875824d651Sblueswir1Simulate an SMP system with @var{n} CPUs. On the PC target, up to 255
885824d651Sblueswir1CPUs are supported. On Sparc32 target, Linux limits the number of usable CPUs
895824d651Sblueswir1to 4.
9058a04db1SAndre PrzywaraFor the PC target, the number of @var{cores} per socket, the number
9158a04db1SAndre Przywaraof @var{threads} per cores and the total number of @var{sockets} can be
9258a04db1SAndre Przywaraspecified. Missing values will be computed. If any on the three values is
9358a04db1SAndre Przywaragiven, the total number of CPUs @var{n} can be omitted. @var{maxcpus}
9458a04db1SAndre Przywaraspecifies the maximum number of hotpluggable CPUs.
955824d651Sblueswir1ETEXI
965824d651Sblueswir1
97268a362cSaliguoriDEF("numa", HAS_ARG, QEMU_OPTION_numa,
98ad96090aSBlue Swirl    "-numa node[,mem=size][,cpus=cpu[-cpu]][,nodeid=node]\n", QEMU_ARCH_ALL)
99268a362cSaliguoriSTEXI
100268a362cSaliguori@item -numa @var{opts}
1016616b2adSStefan Weil@findex -numa
102268a362cSaliguoriSimulate a multi node NUMA system. If mem and cpus are omitted, resources
103268a362cSaliguoriare split equally.
104268a362cSaliguoriETEXI
105268a362cSaliguori
10610adb8beSMarkus ArmbrusterDEF("add-fd", HAS_ARG, QEMU_OPTION_add_fd,
10710adb8beSMarkus Armbruster    "-add-fd fd=fd,set=set[,opaque=opaque]\n"
10810adb8beSMarkus Armbruster    "                Add 'fd' to fd 'set'\n", QEMU_ARCH_ALL)
10910adb8beSMarkus ArmbrusterSTEXI
11010adb8beSMarkus Armbruster@item -add-fd fd=@var{fd},set=@var{set}[,opaque=@var{opaque}]
11110adb8beSMarkus Armbruster@findex -add-fd
11210adb8beSMarkus Armbruster
11310adb8beSMarkus ArmbrusterAdd a file descriptor to an fd set.  Valid options are:
11410adb8beSMarkus Armbruster
11510adb8beSMarkus Armbruster@table @option
11610adb8beSMarkus Armbruster@item fd=@var{fd}
11710adb8beSMarkus ArmbrusterThis option defines the file descriptor of which a duplicate is added to fd set.
11810adb8beSMarkus ArmbrusterThe file descriptor cannot be stdin, stdout, or stderr.
11910adb8beSMarkus Armbruster@item set=@var{set}
12010adb8beSMarkus ArmbrusterThis option defines the ID of the fd set to add the file descriptor to.
12110adb8beSMarkus Armbruster@item opaque=@var{opaque}
12210adb8beSMarkus ArmbrusterThis option defines a free-form string that can be used to describe @var{fd}.
12310adb8beSMarkus Armbruster@end table
12410adb8beSMarkus Armbruster
12510adb8beSMarkus ArmbrusterYou can open an image using pre-opened file descriptors from an fd set:
12610adb8beSMarkus Armbruster@example
12710adb8beSMarkus Armbrusterqemu-system-i386
12810adb8beSMarkus Armbruster-add-fd fd=3,set=2,opaque="rdwr:/path/to/file"
12910adb8beSMarkus Armbruster-add-fd fd=4,set=2,opaque="rdonly:/path/to/file"
13010adb8beSMarkus Armbruster-drive file=/dev/fdset/2,index=0,media=disk
13110adb8beSMarkus Armbruster@end example
13210adb8beSMarkus ArmbrusterETEXI
13310adb8beSMarkus Armbruster
13410adb8beSMarkus ArmbrusterDEF("set", HAS_ARG, QEMU_OPTION_set,
13510adb8beSMarkus Armbruster    "-set group.id.arg=value\n"
13610adb8beSMarkus Armbruster    "                set <arg> parameter for item <id> of type <group>\n"
13710adb8beSMarkus Armbruster    "                i.e. -set drive.$id.file=/path/to/image\n", QEMU_ARCH_ALL)
13810adb8beSMarkus ArmbrusterSTEXI
13910adb8beSMarkus Armbruster@item -set @var{group}.@var{id}.@var{arg}=@var{value}
14010adb8beSMarkus Armbruster@findex -set
14110adb8beSMarkus ArmbrusterSet parameter @var{arg} for item @var{id} of type @var{group}\n"
14210adb8beSMarkus ArmbrusterETEXI
14310adb8beSMarkus Armbruster
14410adb8beSMarkus ArmbrusterDEF("global", HAS_ARG, QEMU_OPTION_global,
14510adb8beSMarkus Armbruster    "-global driver.prop=value\n"
14610adb8beSMarkus Armbruster    "                set a global default for a driver property\n",
14710adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
14810adb8beSMarkus ArmbrusterSTEXI
14910adb8beSMarkus Armbruster@item -global @var{driver}.@var{prop}=@var{value}
15010adb8beSMarkus Armbruster@findex -global
15110adb8beSMarkus ArmbrusterSet default value of @var{driver}'s property @var{prop} to @var{value}, e.g.:
15210adb8beSMarkus Armbruster
15310adb8beSMarkus Armbruster@example
15410adb8beSMarkus Armbrusterqemu-system-i386 -global ide-drive.physical_block_size=4096 -drive file=file,if=ide,index=0,media=disk
15510adb8beSMarkus Armbruster@end example
15610adb8beSMarkus Armbruster
15710adb8beSMarkus ArmbrusterIn particular, you can use this to set driver properties for devices which are
15810adb8beSMarkus Armbrustercreated automatically by the machine model. To create a device which is not
15910adb8beSMarkus Armbrustercreated automatically and set properties on it, use -@option{device}.
16010adb8beSMarkus ArmbrusterETEXI
16110adb8beSMarkus Armbruster
16210adb8beSMarkus ArmbrusterDEF("boot", HAS_ARG, QEMU_OPTION_boot,
16310adb8beSMarkus Armbruster    "-boot [order=drives][,once=drives][,menu=on|off]\n"
164c8a6ae8bSAmos Kong    "      [,splash=sp_name][,splash-time=sp_time][,reboot-timeout=rb_time][,strict=on|off]\n"
16510adb8beSMarkus Armbruster    "                'drives': floppy (a), hard disk (c), CD-ROM (d), network (n)\n"
16610adb8beSMarkus Armbruster    "                'sp_name': the file's name that would be passed to bios as logo picture, if menu=on\n"
16710adb8beSMarkus Armbruster    "                'sp_time': the period that splash picture last if menu=on, unit is ms\n"
16810adb8beSMarkus Armbruster    "                'rb_timeout': the timeout before guest reboot when boot failed, unit is ms\n",
16910adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
17010adb8beSMarkus ArmbrusterSTEXI
171c8a6ae8bSAmos Kong@item -boot [order=@var{drives}][,once=@var{drives}][,menu=on|off][,splash=@var{sp_name}][,splash-time=@var{sp_time}][,reboot-timeout=@var{rb_timeout}][,strict=on|off]
17210adb8beSMarkus Armbruster@findex -boot
17310adb8beSMarkus ArmbrusterSpecify boot order @var{drives} as a string of drive letters. Valid
17410adb8beSMarkus Armbrusterdrive letters depend on the target achitecture. The x86 PC uses: a, b
17510adb8beSMarkus Armbruster(floppy 1 and 2), c (first hard disk), d (first CD-ROM), n-p (Etherboot
17610adb8beSMarkus Armbrusterfrom network adapter 1-4), hard disk boot is the default. To apply a
17710adb8beSMarkus Armbrusterparticular boot order only on the first startup, specify it via
17810adb8beSMarkus Armbruster@option{once}.
17910adb8beSMarkus Armbruster
18010adb8beSMarkus ArmbrusterInteractive boot menus/prompts can be enabled via @option{menu=on} as far
18110adb8beSMarkus Armbrusteras firmware/BIOS supports them. The default is non-interactive boot.
18210adb8beSMarkus Armbruster
18310adb8beSMarkus ArmbrusterA splash picture could be passed to bios, enabling user to show it as logo,
18410adb8beSMarkus Armbrusterwhen option splash=@var{sp_name} is given and menu=on, If firmware/BIOS
18510adb8beSMarkus Armbrustersupports them. Currently Seabios for X86 system support it.
18610adb8beSMarkus Armbrusterlimitation: The splash file could be a jpeg file or a BMP file in 24 BPP
18710adb8beSMarkus Armbrusterformat(true color). The resolution should be supported by the SVGA mode, so
18810adb8beSMarkus Armbrusterthe recommended is 320x240, 640x480, 800x640.
18910adb8beSMarkus Armbruster
19010adb8beSMarkus ArmbrusterA timeout could be passed to bios, guest will pause for @var{rb_timeout} ms
19110adb8beSMarkus Armbrusterwhen boot failed, then reboot. If @var{rb_timeout} is '-1', guest will not
19210adb8beSMarkus Armbrusterreboot, qemu passes '-1' to bios by default. Currently Seabios for X86
19310adb8beSMarkus Armbrustersystem support it.
19410adb8beSMarkus Armbruster
195c8a6ae8bSAmos KongDo strict boot via @option{strict=on} as far as firmware/BIOS
196c8a6ae8bSAmos Kongsupports it. This only effects when boot priority is changed by
197c8a6ae8bSAmos Kongbootindex options. The default is non-strict boot.
198c8a6ae8bSAmos Kong
19910adb8beSMarkus Armbruster@example
20010adb8beSMarkus Armbruster# try to boot from network first, then from hard disk
20110adb8beSMarkus Armbrusterqemu-system-i386 -boot order=nc
20210adb8beSMarkus Armbruster# boot from CD-ROM first, switch back to default order after reboot
20310adb8beSMarkus Armbrusterqemu-system-i386 -boot once=d
20410adb8beSMarkus Armbruster# boot with a splash picture for 5 seconds.
20510adb8beSMarkus Armbrusterqemu-system-i386 -boot menu=on,splash=/root/boot.bmp,splash-time=5000
20610adb8beSMarkus Armbruster@end example
20710adb8beSMarkus Armbruster
20810adb8beSMarkus ArmbrusterNote: The legacy format '-boot @var{drives}' is still supported but its
20910adb8beSMarkus Armbrusteruse is discouraged as it may be removed from future versions.
21010adb8beSMarkus ArmbrusterETEXI
21110adb8beSMarkus Armbruster
21210adb8beSMarkus ArmbrusterDEF("m", HAS_ARG, QEMU_OPTION_m,
2136e1d3c1cSIgor Mammedov    "-m [size=]megs\n"
2146e1d3c1cSIgor Mammedov    "                configure guest RAM\n"
2156e1d3c1cSIgor Mammedov    "                size: initial amount of guest memory (default: "
2166e1d3c1cSIgor Mammedov    stringify(DEFAULT_RAM_SIZE) "MiB)\n",
2176e1d3c1cSIgor Mammedov    QEMU_ARCH_ALL)
21810adb8beSMarkus ArmbrusterSTEXI
2196e1d3c1cSIgor Mammedov@item -m [size=]@var{megs}
22010adb8beSMarkus Armbruster@findex -m
22110adb8beSMarkus ArmbrusterSet virtual RAM size to @var{megs} megabytes. Default is 128 MiB.  Optionally,
22210adb8beSMarkus Armbrustera suffix of ``M'' or ``G'' can be used to signify a value in megabytes or
22310adb8beSMarkus Armbrustergigabytes respectively.
22410adb8beSMarkus ArmbrusterETEXI
22510adb8beSMarkus Armbruster
22610adb8beSMarkus ArmbrusterDEF("mem-path", HAS_ARG, QEMU_OPTION_mempath,
22710adb8beSMarkus Armbruster    "-mem-path FILE  provide backing storage for guest RAM\n", QEMU_ARCH_ALL)
22810adb8beSMarkus ArmbrusterSTEXI
22910adb8beSMarkus Armbruster@item -mem-path @var{path}
23010adb8beSMarkus Armbruster@findex -mem-path
23110adb8beSMarkus ArmbrusterAllocate guest RAM from a temporarily created file in @var{path}.
23210adb8beSMarkus ArmbrusterETEXI
23310adb8beSMarkus Armbruster
23410adb8beSMarkus ArmbrusterDEF("mem-prealloc", 0, QEMU_OPTION_mem_prealloc,
23510adb8beSMarkus Armbruster    "-mem-prealloc   preallocate guest memory (use with -mem-path)\n",
23610adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
23710adb8beSMarkus ArmbrusterSTEXI
23810adb8beSMarkus Armbruster@item -mem-prealloc
23910adb8beSMarkus Armbruster@findex -mem-prealloc
24010adb8beSMarkus ArmbrusterPreallocate memory when using -mem-path.
24110adb8beSMarkus ArmbrusterETEXI
24210adb8beSMarkus Armbruster
24310adb8beSMarkus ArmbrusterDEF("k", HAS_ARG, QEMU_OPTION_k,
24410adb8beSMarkus Armbruster    "-k language     use keyboard layout (for example 'fr' for French)\n",
24510adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
24610adb8beSMarkus ArmbrusterSTEXI
24710adb8beSMarkus Armbruster@item -k @var{language}
24810adb8beSMarkus Armbruster@findex -k
24910adb8beSMarkus ArmbrusterUse keyboard layout @var{language} (for example @code{fr} for
25010adb8beSMarkus ArmbrusterFrench). This option is only needed where it is not easy to get raw PC
25110adb8beSMarkus Armbrusterkeycodes (e.g. on Macs, with some X11 servers or with a VNC
25210adb8beSMarkus Armbrusterdisplay). You don't normally need to use it on PC/Linux or PC/Windows
25310adb8beSMarkus Armbrusterhosts.
25410adb8beSMarkus Armbruster
25510adb8beSMarkus ArmbrusterThe available layouts are:
25610adb8beSMarkus Armbruster@example
25710adb8beSMarkus Armbrusterar  de-ch  es  fo     fr-ca  hu  ja  mk     no  pt-br  sv
25810adb8beSMarkus Armbrusterda  en-gb  et  fr     fr-ch  is  lt  nl     pl  ru     th
25910adb8beSMarkus Armbrusterde  en-us  fi  fr-be  hr     it  lv  nl-be  pt  sl     tr
26010adb8beSMarkus Armbruster@end example
26110adb8beSMarkus Armbruster
26210adb8beSMarkus ArmbrusterThe default is @code{en-us}.
26310adb8beSMarkus ArmbrusterETEXI
26410adb8beSMarkus Armbruster
26510adb8beSMarkus Armbruster
26610adb8beSMarkus ArmbrusterDEF("audio-help", 0, QEMU_OPTION_audio_help,
26710adb8beSMarkus Armbruster    "-audio-help     print list of audio drivers and their options\n",
26810adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
26910adb8beSMarkus ArmbrusterSTEXI
27010adb8beSMarkus Armbruster@item -audio-help
27110adb8beSMarkus Armbruster@findex -audio-help
27210adb8beSMarkus ArmbrusterWill show the audio subsystem help: list of drivers, tunable
27310adb8beSMarkus Armbrusterparameters.
27410adb8beSMarkus ArmbrusterETEXI
27510adb8beSMarkus Armbruster
27610adb8beSMarkus ArmbrusterDEF("soundhw", HAS_ARG, QEMU_OPTION_soundhw,
27710adb8beSMarkus Armbruster    "-soundhw c1,... enable audio support\n"
27810adb8beSMarkus Armbruster    "                and only specified sound cards (comma separated list)\n"
27910adb8beSMarkus Armbruster    "                use '-soundhw help' to get the list of supported cards\n"
28010adb8beSMarkus Armbruster    "                use '-soundhw all' to enable all of them\n", QEMU_ARCH_ALL)
28110adb8beSMarkus ArmbrusterSTEXI
28210adb8beSMarkus Armbruster@item -soundhw @var{card1}[,@var{card2},...] or -soundhw all
28310adb8beSMarkus Armbruster@findex -soundhw
28410adb8beSMarkus ArmbrusterEnable audio and selected sound hardware. Use 'help' to print all
28510adb8beSMarkus Armbrusteravailable sound hardware.
28610adb8beSMarkus Armbruster
28710adb8beSMarkus Armbruster@example
28810adb8beSMarkus Armbrusterqemu-system-i386 -soundhw sb16,adlib disk.img
28910adb8beSMarkus Armbrusterqemu-system-i386 -soundhw es1370 disk.img
29010adb8beSMarkus Armbrusterqemu-system-i386 -soundhw ac97 disk.img
29110adb8beSMarkus Armbrusterqemu-system-i386 -soundhw hda disk.img
29210adb8beSMarkus Armbrusterqemu-system-i386 -soundhw all disk.img
29310adb8beSMarkus Armbrusterqemu-system-i386 -soundhw help
29410adb8beSMarkus Armbruster@end example
29510adb8beSMarkus Armbruster
29610adb8beSMarkus ArmbrusterNote that Linux's i810_audio OSS kernel (for AC97) module might
29710adb8beSMarkus Armbrusterrequire manually specifying clocking.
29810adb8beSMarkus Armbruster
29910adb8beSMarkus Armbruster@example
30010adb8beSMarkus Armbrustermodprobe i810_audio clocking=48000
30110adb8beSMarkus Armbruster@end example
30210adb8beSMarkus ArmbrusterETEXI
30310adb8beSMarkus Armbruster
30410adb8beSMarkus ArmbrusterDEF("balloon", HAS_ARG, QEMU_OPTION_balloon,
30510adb8beSMarkus Armbruster    "-balloon none   disable balloon device\n"
30610adb8beSMarkus Armbruster    "-balloon virtio[,addr=str]\n"
30710adb8beSMarkus Armbruster    "                enable virtio balloon device (default)\n", QEMU_ARCH_ALL)
30810adb8beSMarkus ArmbrusterSTEXI
30910adb8beSMarkus Armbruster@item -balloon none
31010adb8beSMarkus Armbruster@findex -balloon
31110adb8beSMarkus ArmbrusterDisable balloon device.
31210adb8beSMarkus Armbruster@item -balloon virtio[,addr=@var{addr}]
31310adb8beSMarkus ArmbrusterEnable virtio balloon device (default), optionally with PCI address
31410adb8beSMarkus Armbruster@var{addr}.
31510adb8beSMarkus ArmbrusterETEXI
31610adb8beSMarkus Armbruster
31710adb8beSMarkus ArmbrusterDEF("device", HAS_ARG, QEMU_OPTION_device,
31810adb8beSMarkus Armbruster    "-device driver[,prop[=value][,...]]\n"
31910adb8beSMarkus Armbruster    "                add device (based on driver)\n"
32010adb8beSMarkus Armbruster    "                prop=value,... sets driver properties\n"
32110adb8beSMarkus Armbruster    "                use '-device help' to print all possible drivers\n"
32210adb8beSMarkus Armbruster    "                use '-device driver,help' to print all possible properties\n",
32310adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
32410adb8beSMarkus ArmbrusterSTEXI
32510adb8beSMarkus Armbruster@item -device @var{driver}[,@var{prop}[=@var{value}][,...]]
32610adb8beSMarkus Armbruster@findex -device
32710adb8beSMarkus ArmbrusterAdd device @var{driver}.  @var{prop}=@var{value} sets driver
32810adb8beSMarkus Armbrusterproperties.  Valid properties depend on the driver.  To get help on
32910adb8beSMarkus Armbrusterpossible drivers and properties, use @code{-device help} and
33010adb8beSMarkus Armbruster@code{-device @var{driver},help}.
33110adb8beSMarkus ArmbrusterETEXI
33210adb8beSMarkus Armbruster
33310adb8beSMarkus ArmbrusterDEF("name", HAS_ARG, QEMU_OPTION_name,
3348f480de0SDr. David Alan Gilbert    "-name string1[,process=string2][,debug-threads=on|off]\n"
33510adb8beSMarkus Armbruster    "                set the name of the guest\n"
3368f480de0SDr. David Alan Gilbert    "                string1 sets the window title and string2 the process name (on Linux)\n"
3378f480de0SDr. David Alan Gilbert    "                When debug-threads is enabled, individual threads are given a separate name (on Linux)\n"
3388f480de0SDr. David Alan Gilbert    "                NOTE: The thread names are for debugging and not a stable API.\n",
33910adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
34010adb8beSMarkus ArmbrusterSTEXI
34110adb8beSMarkus Armbruster@item -name @var{name}
34210adb8beSMarkus Armbruster@findex -name
34310adb8beSMarkus ArmbrusterSets the @var{name} of the guest.
34410adb8beSMarkus ArmbrusterThis name will be displayed in the SDL window caption.
34510adb8beSMarkus ArmbrusterThe @var{name} will also be used for the VNC server.
34610adb8beSMarkus ArmbrusterAlso optionally set the top visible process name in Linux.
3478f480de0SDr. David Alan GilbertNaming of individual threads can also be enabled on Linux to aid debugging.
34810adb8beSMarkus ArmbrusterETEXI
34910adb8beSMarkus Armbruster
35010adb8beSMarkus ArmbrusterDEF("uuid", HAS_ARG, QEMU_OPTION_uuid,
35110adb8beSMarkus Armbruster    "-uuid %08x-%04x-%04x-%04x-%012x\n"
35210adb8beSMarkus Armbruster    "                specify machine UUID\n", QEMU_ARCH_ALL)
35310adb8beSMarkus ArmbrusterSTEXI
35410adb8beSMarkus Armbruster@item -uuid @var{uuid}
35510adb8beSMarkus Armbruster@findex -uuid
35610adb8beSMarkus ArmbrusterSet system UUID.
35710adb8beSMarkus ArmbrusterETEXI
35810adb8beSMarkus Armbruster
35910adb8beSMarkus ArmbrusterSTEXI
36010adb8beSMarkus Armbruster@end table
36110adb8beSMarkus ArmbrusterETEXI
36210adb8beSMarkus ArmbrusterDEFHEADING()
36310adb8beSMarkus Armbruster
36410adb8beSMarkus ArmbrusterDEFHEADING(Block device options:)
36510adb8beSMarkus ArmbrusterSTEXI
36610adb8beSMarkus Armbruster@table @option
36710adb8beSMarkus ArmbrusterETEXI
36810adb8beSMarkus Armbruster
3695824d651Sblueswir1DEF("fda", HAS_ARG, QEMU_OPTION_fda,
370ad96090aSBlue Swirl    "-fda/-fdb file  use 'file' as floppy disk 0/1 image\n", QEMU_ARCH_ALL)
371ad96090aSBlue SwirlDEF("fdb", HAS_ARG, QEMU_OPTION_fdb, "", QEMU_ARCH_ALL)
3725824d651Sblueswir1STEXI
3735824d651Sblueswir1@item -fda @var{file}
3745824d651Sblueswir1@item -fdb @var{file}
3756616b2adSStefan Weil@findex -fda
3766616b2adSStefan Weil@findex -fdb
3775824d651Sblueswir1Use @var{file} as floppy disk 0/1 image (@pxref{disk_images}). You can
3785824d651Sblueswir1use the host floppy by using @file{/dev/fd0} as filename (@pxref{host_drives}).
3795824d651Sblueswir1ETEXI
3805824d651Sblueswir1
3815824d651Sblueswir1DEF("hda", HAS_ARG, QEMU_OPTION_hda,
382ad96090aSBlue Swirl    "-hda/-hdb file  use 'file' as IDE hard disk 0/1 image\n", QEMU_ARCH_ALL)
383ad96090aSBlue SwirlDEF("hdb", HAS_ARG, QEMU_OPTION_hdb, "", QEMU_ARCH_ALL)
3845824d651Sblueswir1DEF("hdc", HAS_ARG, QEMU_OPTION_hdc,
385ad96090aSBlue Swirl    "-hdc/-hdd file  use 'file' as IDE hard disk 2/3 image\n", QEMU_ARCH_ALL)
386ad96090aSBlue SwirlDEF("hdd", HAS_ARG, QEMU_OPTION_hdd, "", QEMU_ARCH_ALL)
3875824d651Sblueswir1STEXI
3885824d651Sblueswir1@item -hda @var{file}
3895824d651Sblueswir1@item -hdb @var{file}
3905824d651Sblueswir1@item -hdc @var{file}
3915824d651Sblueswir1@item -hdd @var{file}
3926616b2adSStefan Weil@findex -hda
3936616b2adSStefan Weil@findex -hdb
3946616b2adSStefan Weil@findex -hdc
3956616b2adSStefan Weil@findex -hdd
3965824d651Sblueswir1Use @var{file} as hard disk 0, 1, 2 or 3 image (@pxref{disk_images}).
3975824d651Sblueswir1ETEXI
3985824d651Sblueswir1
3995824d651Sblueswir1DEF("cdrom", HAS_ARG, QEMU_OPTION_cdrom,
400ad96090aSBlue Swirl    "-cdrom file     use 'file' as IDE cdrom image (cdrom is ide1 master)\n",
401ad96090aSBlue Swirl    QEMU_ARCH_ALL)
4025824d651Sblueswir1STEXI
4035824d651Sblueswir1@item -cdrom @var{file}
4046616b2adSStefan Weil@findex -cdrom
4055824d651Sblueswir1Use @var{file} as CD-ROM image (you cannot use @option{-hdc} and
4065824d651Sblueswir1@option{-cdrom} at the same time). You can use the host CD-ROM by
4075824d651Sblueswir1using @file{/dev/cdrom} as filename (@pxref{host_drives}).
4085824d651Sblueswir1ETEXI
4095824d651Sblueswir1
4105824d651Sblueswir1DEF("drive", HAS_ARG, QEMU_OPTION_drive,
4115824d651Sblueswir1    "-drive [file=file][,if=type][,bus=n][,unit=m][,media=d][,index=i]\n"
4125824d651Sblueswir1    "       [,cyls=c,heads=h,secs=s[,trans=t]][,snapshot=on|off]\n"
41392196b2fSStefan Hajnoczi    "       [,cache=writethrough|writeback|none|directsync|unsafe][,format=f]\n"
414d1db760dSStefan Hajnoczi    "       [,serial=s][,addr=A][,rerror=ignore|stop|report]\n"
415d1db760dSStefan Hajnoczi    "       [,werror=ignore|stop|report|enospc][,id=name][,aio=threads|native]\n"
416fb0490f6SStefan Hajnoczi    "       [,readonly=on|off][,copy-on-read=on|off]\n"
4173e9fab69SBenoît Canet    "       [[,bps=b]|[[,bps_rd=r][,bps_wr=w]]]\n"
4183e9fab69SBenoît Canet    "       [[,iops=i]|[[,iops_rd=r][,iops_wr=w]]]\n"
4193e9fab69SBenoît Canet    "       [[,bps_max=bm]|[[,bps_rd_max=rm][,bps_wr_max=wm]]]\n"
4203e9fab69SBenoît Canet    "       [[,iops_max=im]|[[,iops_rd_max=irm][,iops_wr_max=iwm]]]\n"
4212024c1dfSBenoît Canet    "       [[,iops_size=is]]\n"
422ad96090aSBlue Swirl    "                use 'file' as a drive image\n", QEMU_ARCH_ALL)
4235824d651Sblueswir1STEXI
4245824d651Sblueswir1@item -drive @var{option}[,@var{option}[,@var{option}[,...]]]
4256616b2adSStefan Weil@findex -drive
4265824d651Sblueswir1
4275824d651Sblueswir1Define a new drive. Valid options are:
4285824d651Sblueswir1
429b3f046c2SKevin Wolf@table @option
4305824d651Sblueswir1@item file=@var{file}
4315824d651Sblueswir1This option defines which disk image (@pxref{disk_images}) to use with
4325824d651Sblueswir1this drive. If the filename contains comma, you must double it
4335824d651Sblueswir1(for instance, "file=my,,file" to use file "my,file").
4340f5314a2SRonnie Sahlberg
4350f5314a2SRonnie SahlbergSpecial files such as iSCSI devices can be specified using protocol
4360f5314a2SRonnie Sahlbergspecific URLs. See the section for "Device URL Syntax" for more information.
4375824d651Sblueswir1@item if=@var{interface}
4385824d651Sblueswir1This option defines on which type on interface the drive is connected.
4395824d651Sblueswir1Available types are: ide, scsi, sd, mtd, floppy, pflash, virtio.
4405824d651Sblueswir1@item bus=@var{bus},unit=@var{unit}
4415824d651Sblueswir1These options define where is connected the drive by defining the bus number and
4425824d651Sblueswir1the unit id.
4435824d651Sblueswir1@item index=@var{index}
4445824d651Sblueswir1This option defines where is connected the drive by using an index in the list
4455824d651Sblueswir1of available connectors of a given interface type.
4465824d651Sblueswir1@item media=@var{media}
4475824d651Sblueswir1This option defines the type of the media: disk or cdrom.
4485824d651Sblueswir1@item cyls=@var{c},heads=@var{h},secs=@var{s}[,trans=@var{t}]
4495824d651Sblueswir1These options have the same definition as they have in @option{-hdachs}.
4505824d651Sblueswir1@item snapshot=@var{snapshot}
4519d85d557SMichael Tokarev@var{snapshot} is "on" or "off" and controls snapshot mode for the given drive
4529d85d557SMichael Tokarev(see @option{-snapshot}).
4535824d651Sblueswir1@item cache=@var{cache}
45492196b2fSStefan Hajnoczi@var{cache} is "none", "writeback", "unsafe", "directsync" or "writethrough" and controls how the host cache is used to access block data.
4555c6c3a6cSChristoph Hellwig@item aio=@var{aio}
4565c6c3a6cSChristoph Hellwig@var{aio} is "threads", or "native" and selects between pthread based disk I/O and native Linux AIO.
457a9384affSPaolo Bonzini@item discard=@var{discard}
458a9384affSPaolo Bonzini@var{discard} is one of "ignore" (or "off") or "unmap" (or "on") and controls whether @dfn{discard} (also known as @dfn{trim} or @dfn{unmap}) requests are ignored or passed to the filesystem.  Some machine types may not support discard requests.
4595824d651Sblueswir1@item format=@var{format}
4605824d651Sblueswir1Specify which disk @var{format} will be used rather than detecting
4615824d651Sblueswir1the format.  Can be used to specifiy format=raw to avoid interpreting
4625824d651Sblueswir1an untrusted format header.
4635824d651Sblueswir1@item serial=@var{serial}
4645824d651Sblueswir1This option specifies the serial number to assign to the device.
465c2cc47a4SMarkus Armbruster@item addr=@var{addr}
466c2cc47a4SMarkus ArmbrusterSpecify the controller's PCI address (if=virtio only).
467ae73e591SLuiz Capitulino@item werror=@var{action},rerror=@var{action}
468ae73e591SLuiz CapitulinoSpecify which @var{action} to take on write and read errors. Valid actions are:
469ae73e591SLuiz Capitulino"ignore" (ignore the error and try to continue), "stop" (pause QEMU),
470ae73e591SLuiz Capitulino"report" (report the error to the guest), "enospc" (pause QEMU only if the
471ae73e591SLuiz Capitulinohost disk is full; report the error to the guest otherwise).
472ae73e591SLuiz CapitulinoThe default setting is @option{werror=enospc} and @option{rerror=report}.
473ae73e591SLuiz Capitulino@item readonly
474ae73e591SLuiz CapitulinoOpen drive @option{file} as read-only. Guest write attempts will fail.
475fb0490f6SStefan Hajnoczi@item copy-on-read=@var{copy-on-read}
476fb0490f6SStefan Hajnoczi@var{copy-on-read} is "on" or "off" and enables whether to copy read backing
477fb0490f6SStefan Hajnoczifile sectors into the image file.
4785824d651Sblueswir1@end table
4795824d651Sblueswir1
480a13e5e05SKevin WolfBy default, the @option{cache=writeback} mode is used. It will report data
481a13e5e05SKevin Wolfwrites as completed as soon as the data is present in the host page cache.
482a13e5e05SKevin WolfThis is safe as long as your guest OS makes sure to correctly flush disk caches
483a13e5e05SKevin Wolfwhere needed. If your guest OS does not handle volatile disk write caches
484a13e5e05SKevin Wolfcorrectly and your host crashes or loses power, then the guest may experience
485a13e5e05SKevin Wolfdata corruption.
4865824d651Sblueswir1
487a13e5e05SKevin WolfFor such guests, you should consider using @option{cache=writethrough}. This
488a13e5e05SKevin Wolfmeans that the host page cache will be used to read and write data, but write
489a13e5e05SKevin Wolfnotification will be sent to the guest only after QEMU has made sure to flush
490a13e5e05SKevin Wolfeach write to the disk. Be aware that this has a major impact on performance.
4915824d651Sblueswir1
492c304d317SAurelien JarnoThe host page cache can be avoided entirely with @option{cache=none}.  This will
493a13e5e05SKevin Wolfattempt to do disk IO directly to the guest's memory.  QEMU may still perform
494a13e5e05SKevin Wolfan internal copy of the data. Note that this is considered a writeback mode and
495a13e5e05SKevin Wolfthe guest OS must handle the disk write cache correctly in order to avoid data
496a13e5e05SKevin Wolfcorruption on host crashes.
4975824d651Sblueswir1
49892196b2fSStefan HajnocziThe host page cache can be avoided while only sending write notifications to
499a13e5e05SKevin Wolfthe guest when the data has been flushed to the disk using
500a13e5e05SKevin Wolf@option{cache=directsync}.
5015824d651Sblueswir1
502016f5cf6SAlexander GrafIn case you don't care about data integrity over host failures, use
503a13e5e05SKevin Wolf@option{cache=unsafe}. This option tells QEMU that it never needs to write any
504a13e5e05SKevin Wolfdata to the disk but can instead keep things in cache. If anything goes wrong,
505e7d81004SStefan Weillike your host losing power, the disk storage getting disconnected accidentally,
506a13e5e05SKevin Wolfetc. your image will most probably be rendered unusable.   When using
507c3177288SAlexander Grafthe @option{-snapshot} option, unsafe caching is always used.
508016f5cf6SAlexander Graf
509fb0490f6SStefan HajnocziCopy-on-read avoids accessing the same backing file sectors repeatedly and is
510fb0490f6SStefan Hajnocziuseful when the backing file is over a slow network.  By default copy-on-read
511fb0490f6SStefan Hajnocziis off.
512fb0490f6SStefan Hajnoczi
5135824d651Sblueswir1Instead of @option{-cdrom} you can use:
5145824d651Sblueswir1@example
5153804da9dSStefan Weilqemu-system-i386 -drive file=file,index=2,media=cdrom
5165824d651Sblueswir1@end example
5175824d651Sblueswir1
5185824d651Sblueswir1Instead of @option{-hda}, @option{-hdb}, @option{-hdc}, @option{-hdd}, you can
5195824d651Sblueswir1use:
5205824d651Sblueswir1@example
5213804da9dSStefan Weilqemu-system-i386 -drive file=file,index=0,media=disk
5223804da9dSStefan Weilqemu-system-i386 -drive file=file,index=1,media=disk
5233804da9dSStefan Weilqemu-system-i386 -drive file=file,index=2,media=disk
5243804da9dSStefan Weilqemu-system-i386 -drive file=file,index=3,media=disk
5255824d651Sblueswir1@end example
5265824d651Sblueswir1
527587ed6beSCorey BryantYou can open an image using pre-opened file descriptors from an fd set:
528587ed6beSCorey Bryant@example
529587ed6beSCorey Bryantqemu-system-i386
530587ed6beSCorey Bryant-add-fd fd=3,set=2,opaque="rdwr:/path/to/file"
531587ed6beSCorey Bryant-add-fd fd=4,set=2,opaque="rdonly:/path/to/file"
532587ed6beSCorey Bryant-drive file=/dev/fdset/2,index=0,media=disk
533587ed6beSCorey Bryant@end example
534587ed6beSCorey Bryant
5355824d651Sblueswir1You can connect a CDROM to the slave of ide0:
5365824d651Sblueswir1@example
5373804da9dSStefan Weilqemu-system-i386 -drive file=file,if=ide,index=1,media=cdrom
5385824d651Sblueswir1@end example
5395824d651Sblueswir1
5405824d651Sblueswir1If you don't specify the "file=" argument, you define an empty drive:
5415824d651Sblueswir1@example
5423804da9dSStefan Weilqemu-system-i386 -drive if=ide,index=1,media=cdrom
5435824d651Sblueswir1@end example
5445824d651Sblueswir1
5455824d651Sblueswir1You can connect a SCSI disk with unit ID 6 on the bus #0:
5465824d651Sblueswir1@example
5473804da9dSStefan Weilqemu-system-i386 -drive file=file,if=scsi,bus=0,unit=6
5485824d651Sblueswir1@end example
5495824d651Sblueswir1
5505824d651Sblueswir1Instead of @option{-fda}, @option{-fdb}, you can use:
5515824d651Sblueswir1@example
5523804da9dSStefan Weilqemu-system-i386 -drive file=file,index=0,if=floppy
5533804da9dSStefan Weilqemu-system-i386 -drive file=file,index=1,if=floppy
5545824d651Sblueswir1@end example
5555824d651Sblueswir1
5565824d651Sblueswir1By default, @var{interface} is "ide" and @var{index} is automatically
5575824d651Sblueswir1incremented:
5585824d651Sblueswir1@example
5593804da9dSStefan Weilqemu-system-i386 -drive file=a -drive file=b"
5605824d651Sblueswir1@end example
5615824d651Sblueswir1is interpreted like:
5625824d651Sblueswir1@example
5633804da9dSStefan Weilqemu-system-i386 -hda a -hdb b
5645824d651Sblueswir1@end example
5655824d651Sblueswir1ETEXI
5665824d651Sblueswir1
5675824d651Sblueswir1DEF("mtdblock", HAS_ARG, QEMU_OPTION_mtdblock,
568ad96090aSBlue Swirl    "-mtdblock file  use 'file' as on-board Flash memory image\n",
569ad96090aSBlue Swirl    QEMU_ARCH_ALL)
5705824d651Sblueswir1STEXI
5714e257e5eSKevin Wolf@item -mtdblock @var{file}
5726616b2adSStefan Weil@findex -mtdblock
5734e257e5eSKevin WolfUse @var{file} as on-board Flash memory image.
5745824d651Sblueswir1ETEXI
5755824d651Sblueswir1
5765824d651Sblueswir1DEF("sd", HAS_ARG, QEMU_OPTION_sd,
577ad96090aSBlue Swirl    "-sd file        use 'file' as SecureDigital card image\n", QEMU_ARCH_ALL)
5785824d651Sblueswir1STEXI
5794e257e5eSKevin Wolf@item -sd @var{file}
5806616b2adSStefan Weil@findex -sd
5814e257e5eSKevin WolfUse @var{file} as SecureDigital card image.
5825824d651Sblueswir1ETEXI
5835824d651Sblueswir1
5845824d651Sblueswir1DEF("pflash", HAS_ARG, QEMU_OPTION_pflash,
585ad96090aSBlue Swirl    "-pflash file    use 'file' as a parallel flash image\n", QEMU_ARCH_ALL)
5865824d651Sblueswir1STEXI
5874e257e5eSKevin Wolf@item -pflash @var{file}
5886616b2adSStefan Weil@findex -pflash
5894e257e5eSKevin WolfUse @var{file} as a parallel flash image.
5905824d651Sblueswir1ETEXI
5915824d651Sblueswir1
5925824d651Sblueswir1DEF("snapshot", 0, QEMU_OPTION_snapshot,
593ad96090aSBlue Swirl    "-snapshot       write to temporary files instead of disk image files\n",
594ad96090aSBlue Swirl    QEMU_ARCH_ALL)
5955824d651Sblueswir1STEXI
5965824d651Sblueswir1@item -snapshot
5976616b2adSStefan Weil@findex -snapshot
5985824d651Sblueswir1Write to temporary files instead of disk image files. In this case,
5995824d651Sblueswir1the raw disk image you use is not written back. You can however force
6005824d651Sblueswir1the write back by pressing @key{C-a s} (@pxref{disk_images}).
6015824d651Sblueswir1ETEXI
6025824d651Sblueswir1
60310adb8beSMarkus ArmbrusterDEF("hdachs", HAS_ARG, QEMU_OPTION_hdachs, \
60410adb8beSMarkus Armbruster    "-hdachs c,h,s[,t]\n" \
60510adb8beSMarkus Armbruster    "                force hard disk 0 physical geometry and the optional BIOS\n" \
60610adb8beSMarkus Armbruster    "                translation (t=none or lba) (usually QEMU can guess them)\n",
607ad96090aSBlue Swirl    QEMU_ARCH_ALL)
608c902760fSMarcelo TosattiSTEXI
60910adb8beSMarkus Armbruster@item -hdachs @var{c},@var{h},@var{s},[,@var{t}]
61010adb8beSMarkus Armbruster@findex -hdachs
61110adb8beSMarkus ArmbrusterForce hard disk 0 physical geometry (1 <= @var{c} <= 16383, 1 <=
61210adb8beSMarkus Armbruster@var{h} <= 16, 1 <= @var{s} <= 63) and optionally force the BIOS
61310adb8beSMarkus Armbrustertranslation mode (@var{t}=none, lba or auto). Usually QEMU can guess
61410adb8beSMarkus Armbrusterall those parameters. This option is useful for old MS-DOS disk
61510adb8beSMarkus Armbrusterimages.
616c70a01e4SMarkus ArmbrusterETEXI
61774db920cSGautham R Shenoy
61874db920cSGautham R ShenoyDEF("fsdev", HAS_ARG, QEMU_OPTION_fsdev,
6192c30dd74SAneesh Kumar K.V    "-fsdev fsdriver,id=id[,path=path,][security_model={mapped-xattr|mapped-file|passthrough|none}]\n"
62084a87cc4SM. Mohan Kumar    " [,writeout=immediate][,readonly][,socket=socket|sock_fd=sock_fd]\n",
62174db920cSGautham R Shenoy    QEMU_ARCH_ALL)
62274db920cSGautham R Shenoy
62374db920cSGautham R ShenoySTEXI
62474db920cSGautham R Shenoy
62584a87cc4SM. Mohan Kumar@item -fsdev @var{fsdriver},id=@var{id},path=@var{path},[security_model=@var{security_model}][,writeout=@var{writeout}][,readonly][,socket=@var{socket}|sock_fd=@var{sock_fd}]
62674db920cSGautham R Shenoy@findex -fsdev
6277c92a3d2SAneesh Kumar K.VDefine a new file system device. Valid options are:
6287c92a3d2SAneesh Kumar K.V@table @option
6297c92a3d2SAneesh Kumar K.V@item @var{fsdriver}
6307c92a3d2SAneesh Kumar K.VThis option specifies the fs driver backend to use.
631f67e3ffdSM. Mohan KumarCurrently "local", "handle" and "proxy" file system drivers are supported.
6327c92a3d2SAneesh Kumar K.V@item id=@var{id}
6337c92a3d2SAneesh Kumar K.VSpecifies identifier for this device
6347c92a3d2SAneesh Kumar K.V@item path=@var{path}
6357c92a3d2SAneesh Kumar K.VSpecifies the export path for the file system device. Files under
6367c92a3d2SAneesh Kumar K.Vthis path will be available to the 9p client on the guest.
6377c92a3d2SAneesh Kumar K.V@item security_model=@var{security_model}
6387c92a3d2SAneesh Kumar K.VSpecifies the security model to be used for this export path.
6392c30dd74SAneesh Kumar K.VSupported security models are "passthrough", "mapped-xattr", "mapped-file" and "none".
6407c92a3d2SAneesh Kumar K.VIn "passthrough" security model, files are stored using the same
641b65ee4faSStefan Weilcredentials as they are created on the guest. This requires QEMU
6422c30dd74SAneesh Kumar K.Vto run as root. In "mapped-xattr" security model, some of the file
6437c92a3d2SAneesh Kumar K.Vattributes like uid, gid, mode bits and link target are stored as
6442c30dd74SAneesh Kumar K.Vfile attributes. For "mapped-file" these attributes are stored in the
6452c30dd74SAneesh Kumar K.Vhidden .virtfs_metadata directory. Directories exported by this security model cannot
6467c92a3d2SAneesh Kumar K.Vinteract with other unix tools. "none" security model is same as
6477c92a3d2SAneesh Kumar K.Vpassthrough except the sever won't report failures if it fails to
648d9b36a6eSM. Mohan Kumarset file attributes like ownership. Security model is mandatory
649f67e3ffdSM. Mohan Kumaronly for local fsdriver. Other fsdrivers (like handle, proxy) don't take
650d9b36a6eSM. Mohan Kumarsecurity model as a parameter.
6517c92a3d2SAneesh Kumar K.V@item writeout=@var{writeout}
6527c92a3d2SAneesh Kumar K.VThis is an optional argument. The only supported value is "immediate".
6537c92a3d2SAneesh Kumar K.VThis means that host page cache will be used to read and write data but
6547c92a3d2SAneesh Kumar K.Vwrite notification will be sent to the guest only when the data has been
6557c92a3d2SAneesh Kumar K.Vreported as written by the storage subsystem.
6562c74c2cbSM. Mohan Kumar@item readonly
6572c74c2cbSM. Mohan KumarEnables exporting 9p share as a readonly mount for guests. By default
6582c74c2cbSM. Mohan Kumarread-write access is given.
65984a87cc4SM. Mohan Kumar@item socket=@var{socket}
66084a87cc4SM. Mohan KumarEnables proxy filesystem driver to use passed socket file for communicating
66184a87cc4SM. Mohan Kumarwith virtfs-proxy-helper
662f67e3ffdSM. Mohan Kumar@item sock_fd=@var{sock_fd}
663f67e3ffdSM. Mohan KumarEnables proxy filesystem driver to use passed socket descriptor for
664f67e3ffdSM. Mohan Kumarcommunicating with virtfs-proxy-helper. Usually a helper like libvirt
665f67e3ffdSM. Mohan Kumarwill create socketpair and pass one of the fds as sock_fd
66674db920cSGautham R Shenoy@end table
6677c92a3d2SAneesh Kumar K.V
6687c92a3d2SAneesh Kumar K.V-fsdev option is used along with -device driver "virtio-9p-pci".
6697c92a3d2SAneesh Kumar K.V@item -device virtio-9p-pci,fsdev=@var{id},mount_tag=@var{mount_tag}
6707c92a3d2SAneesh Kumar K.VOptions for virtio-9p-pci driver are:
6717c92a3d2SAneesh Kumar K.V@table @option
6727c92a3d2SAneesh Kumar K.V@item fsdev=@var{id}
6737c92a3d2SAneesh Kumar K.VSpecifies the id value specified along with -fsdev option
6747c92a3d2SAneesh Kumar K.V@item mount_tag=@var{mount_tag}
6757c92a3d2SAneesh Kumar K.VSpecifies the tag name to be used by the guest to mount this export point
6767c92a3d2SAneesh Kumar K.V@end table
6777c92a3d2SAneesh Kumar K.V
67874db920cSGautham R ShenoyETEXI
67974db920cSGautham R Shenoy
6803d54abc7SGautham R ShenoyDEF("virtfs", HAS_ARG, QEMU_OPTION_virtfs,
6812c30dd74SAneesh Kumar K.V    "-virtfs local,path=path,mount_tag=tag,security_model=[mapped-xattr|mapped-file|passthrough|none]\n"
68284a87cc4SM. Mohan Kumar    "        [,writeout=immediate][,readonly][,socket=socket|sock_fd=sock_fd]\n",
6833d54abc7SGautham R Shenoy    QEMU_ARCH_ALL)
6843d54abc7SGautham R Shenoy
6853d54abc7SGautham R ShenoySTEXI
6863d54abc7SGautham R Shenoy
68784a87cc4SM. Mohan Kumar@item -virtfs @var{fsdriver}[,path=@var{path}],mount_tag=@var{mount_tag}[,security_model=@var{security_model}][,writeout=@var{writeout}][,readonly][,socket=@var{socket}|sock_fd=@var{sock_fd}]
6883d54abc7SGautham R Shenoy@findex -virtfs
6893d54abc7SGautham R Shenoy
6907c92a3d2SAneesh Kumar K.VThe general form of a Virtual File system pass-through options are:
6917c92a3d2SAneesh Kumar K.V@table @option
6927c92a3d2SAneesh Kumar K.V@item @var{fsdriver}
6937c92a3d2SAneesh Kumar K.VThis option specifies the fs driver backend to use.
694f67e3ffdSM. Mohan KumarCurrently "local", "handle" and "proxy" file system drivers are supported.
6957c92a3d2SAneesh Kumar K.V@item id=@var{id}
6967c92a3d2SAneesh Kumar K.VSpecifies identifier for this device
6977c92a3d2SAneesh Kumar K.V@item path=@var{path}
6987c92a3d2SAneesh Kumar K.VSpecifies the export path for the file system device. Files under
6997c92a3d2SAneesh Kumar K.Vthis path will be available to the 9p client on the guest.
7007c92a3d2SAneesh Kumar K.V@item security_model=@var{security_model}
7017c92a3d2SAneesh Kumar K.VSpecifies the security model to be used for this export path.
7022c30dd74SAneesh Kumar K.VSupported security models are "passthrough", "mapped-xattr", "mapped-file" and "none".
7037c92a3d2SAneesh Kumar K.VIn "passthrough" security model, files are stored using the same
704b65ee4faSStefan Weilcredentials as they are created on the guest. This requires QEMU
7052c30dd74SAneesh Kumar K.Vto run as root. In "mapped-xattr" security model, some of the file
7067c92a3d2SAneesh Kumar K.Vattributes like uid, gid, mode bits and link target are stored as
7072c30dd74SAneesh Kumar K.Vfile attributes. For "mapped-file" these attributes are stored in the
7082c30dd74SAneesh Kumar K.Vhidden .virtfs_metadata directory. Directories exported by this security model cannot
7097c92a3d2SAneesh Kumar K.Vinteract with other unix tools. "none" security model is same as
7107c92a3d2SAneesh Kumar K.Vpassthrough except the sever won't report failures if it fails to
711d9b36a6eSM. Mohan Kumarset file attributes like ownership. Security model is mandatory only
712f67e3ffdSM. Mohan Kumarfor local fsdriver. Other fsdrivers (like handle, proxy) don't take security
713d9b36a6eSM. Mohan Kumarmodel as a parameter.
7147c92a3d2SAneesh Kumar K.V@item writeout=@var{writeout}
7157c92a3d2SAneesh Kumar K.VThis is an optional argument. The only supported value is "immediate".
7167c92a3d2SAneesh Kumar K.VThis means that host page cache will be used to read and write data but
7177c92a3d2SAneesh Kumar K.Vwrite notification will be sent to the guest only when the data has been
7187c92a3d2SAneesh Kumar K.Vreported as written by the storage subsystem.
7192c74c2cbSM. Mohan Kumar@item readonly
7202c74c2cbSM. Mohan KumarEnables exporting 9p share as a readonly mount for guests. By default
7212c74c2cbSM. Mohan Kumarread-write access is given.
72284a87cc4SM. Mohan Kumar@item socket=@var{socket}
72384a87cc4SM. Mohan KumarEnables proxy filesystem driver to use passed socket file for
72484a87cc4SM. Mohan Kumarcommunicating with virtfs-proxy-helper. Usually a helper like libvirt
72584a87cc4SM. Mohan Kumarwill create socketpair and pass one of the fds as sock_fd
726f67e3ffdSM. Mohan Kumar@item sock_fd
727f67e3ffdSM. Mohan KumarEnables proxy filesystem driver to use passed 'sock_fd' as the socket
728f67e3ffdSM. Mohan Kumardescriptor for interfacing with virtfs-proxy-helper
7293d54abc7SGautham R Shenoy@end table
7303d54abc7SGautham R ShenoyETEXI
7313d54abc7SGautham R Shenoy
7329db221aeSAneesh Kumar K.VDEF("virtfs_synth", 0, QEMU_OPTION_virtfs_synth,
7339db221aeSAneesh Kumar K.V    "-virtfs_synth Create synthetic file system image\n",
7349db221aeSAneesh Kumar K.V    QEMU_ARCH_ALL)
7359db221aeSAneesh Kumar K.VSTEXI
7369db221aeSAneesh Kumar K.V@item -virtfs_synth
7379db221aeSAneesh Kumar K.V@findex -virtfs_synth
7389db221aeSAneesh Kumar K.VCreate synthetic file system image
7399db221aeSAneesh Kumar K.VETEXI
7409db221aeSAneesh Kumar K.V
7415824d651Sblueswir1STEXI
7425824d651Sblueswir1@end table
7435824d651Sblueswir1ETEXI
7445824d651Sblueswir1DEFHEADING()
7455824d651Sblueswir1
74610adb8beSMarkus ArmbrusterDEFHEADING(USB options:)
74710adb8beSMarkus ArmbrusterSTEXI
74810adb8beSMarkus Armbruster@table @option
74910adb8beSMarkus ArmbrusterETEXI
75010adb8beSMarkus Armbruster
75110adb8beSMarkus ArmbrusterDEF("usb", 0, QEMU_OPTION_usb,
75210adb8beSMarkus Armbruster    "-usb            enable the USB driver (will be the default soon)\n",
75310adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
75410adb8beSMarkus ArmbrusterSTEXI
75510adb8beSMarkus Armbruster@item -usb
75610adb8beSMarkus Armbruster@findex -usb
75710adb8beSMarkus ArmbrusterEnable the USB driver (will be the default soon)
75810adb8beSMarkus ArmbrusterETEXI
75910adb8beSMarkus Armbruster
76010adb8beSMarkus ArmbrusterDEF("usbdevice", HAS_ARG, QEMU_OPTION_usbdevice,
76110adb8beSMarkus Armbruster    "-usbdevice name add the host or guest USB device 'name'\n",
76210adb8beSMarkus Armbruster    QEMU_ARCH_ALL)
76310adb8beSMarkus ArmbrusterSTEXI
76410adb8beSMarkus Armbruster
76510adb8beSMarkus Armbruster@item -usbdevice @var{devname}
76610adb8beSMarkus Armbruster@findex -usbdevice
76710adb8beSMarkus ArmbrusterAdd the USB device @var{devname}. @xref{usb_devices}.
76810adb8beSMarkus Armbruster
76910adb8beSMarkus Armbruster@table @option
77010adb8beSMarkus Armbruster
77110adb8beSMarkus Armbruster@item mouse
77210adb8beSMarkus ArmbrusterVirtual Mouse. This will override the PS/2 mouse emulation when activated.
77310adb8beSMarkus Armbruster
77410adb8beSMarkus Armbruster@item tablet
77510adb8beSMarkus ArmbrusterPointer device that uses absolute coordinates (like a touchscreen). This
77610adb8beSMarkus Armbrustermeans QEMU is able to report the mouse position without having to grab the
77710adb8beSMarkus Armbrustermouse. Also overrides the PS/2 mouse emulation when activated.
77810adb8beSMarkus Armbruster
77910adb8beSMarkus Armbruster@item disk:[format=@var{format}]:@var{file}
78010adb8beSMarkus ArmbrusterMass storage device based on file. The optional @var{format} argument
78110adb8beSMarkus Armbrusterwill be used rather than detecting the format. Can be used to specifiy
78210adb8beSMarkus Armbruster@code{format=raw} to avoid interpreting an untrusted format header.
78310adb8beSMarkus Armbruster
78410adb8beSMarkus Armbruster@item host:@var{bus}.@var{addr}
78510adb8beSMarkus ArmbrusterPass through the host device identified by @var{bus}.@var{addr} (Linux only).
78610adb8beSMarkus Armbruster
78710adb8beSMarkus Armbruster@item host:@var{vendor_id}:@var{product_id}
78810adb8beSMarkus ArmbrusterPass through the host device identified by @var{vendor_id}:@var{product_id}
78910adb8beSMarkus Armbruster(Linux only).
79010adb8beSMarkus Armbruster
79110adb8beSMarkus Armbruster@item serial:[vendorid=@var{vendor_id}][,productid=@var{product_id}]:@var{dev}
79210adb8beSMarkus ArmbrusterSerial converter to host character device @var{dev}, see @code{-serial} for the
79310adb8beSMarkus Armbrusteravailable devices.
79410adb8beSMarkus Armbruster
79510adb8beSMarkus Armbruster@item braille
79610adb8beSMarkus ArmbrusterBraille device.  This will use BrlAPI to display the braille output on a real
79710adb8beSMarkus Armbrusteror fake device.
79810adb8beSMarkus Armbruster
79910adb8beSMarkus Armbruster@item net:@var{options}
80010adb8beSMarkus ArmbrusterNetwork adapter that supports CDC ethernet and RNDIS protocols.
80110adb8beSMarkus Armbruster
80210adb8beSMarkus Armbruster@end table
80310adb8beSMarkus ArmbrusterETEXI
80410adb8beSMarkus Armbruster
80510adb8beSMarkus ArmbrusterSTEXI
80610adb8beSMarkus Armbruster@end table
80710adb8beSMarkus ArmbrusterETEXI
80810adb8beSMarkus ArmbrusterDEFHEADING()
80910adb8beSMarkus Armbruster
8105824d651Sblueswir1DEFHEADING(Display options:)
8115824d651Sblueswir1STEXI
8125824d651Sblueswir1@table @option
8135824d651Sblueswir1ETEXI
8145824d651Sblueswir1
8151472a95bSJes SorensenDEF("display", HAS_ARG, QEMU_OPTION_display,
8161472a95bSJes Sorensen    "-display sdl[,frame=on|off][,alt_grab=on|off][,ctrl_grab=on|off]\n"
8173264ff12SJes Sorensen    "            [,window_close=on|off]|curses|none|\n"
818881249c7SJan Kiszka    "            gtk[,grab_on_hover=on|off]|\n"
8193264ff12SJes Sorensen    "            vnc=<display>[,<optargs>]\n"
8201472a95bSJes Sorensen    "                select display type\n", QEMU_ARCH_ALL)
8211472a95bSJes SorensenSTEXI
8221472a95bSJes Sorensen@item -display @var{type}
8231472a95bSJes Sorensen@findex -display
8241472a95bSJes SorensenSelect type of display to use. This option is a replacement for the
8251472a95bSJes Sorensenold style -sdl/-curses/... options. Valid values for @var{type} are
8261472a95bSJes Sorensen@table @option
8271472a95bSJes Sorensen@item sdl
8281472a95bSJes SorensenDisplay video output via SDL (usually in a separate graphics
8291472a95bSJes Sorensenwindow; see the SDL documentation for other possibilities).
8301472a95bSJes Sorensen@item curses
8311472a95bSJes SorensenDisplay video output via curses. For graphics device models which
8321472a95bSJes Sorensensupport a text mode, QEMU can display this output using a
8331472a95bSJes Sorensencurses/ncurses interface. Nothing is displayed when the graphics
8341472a95bSJes Sorensendevice is in graphical mode or if the graphics device does not support
8351472a95bSJes Sorensena text mode. Generally only the VGA device models support text mode.
8364171d32eSJes Sorensen@item none
8374171d32eSJes SorensenDo not display video output. The guest will still see an emulated
8384171d32eSJes Sorensengraphics card, but its output will not be displayed to the QEMU
8394171d32eSJes Sorensenuser. This option differs from the -nographic option in that it
8404171d32eSJes Sorensenonly affects what is done with video output; -nographic also changes
8414171d32eSJes Sorensenthe destination of the serial and parallel port data.
842881249c7SJan Kiszka@item gtk
843881249c7SJan KiszkaDisplay video output in a GTK window. This interface provides drop-down
844881249c7SJan Kiszkamenus and other UI elements to configure and control the VM during
845881249c7SJan Kiszkaruntime.
8463264ff12SJes Sorensen@item vnc
8473264ff12SJes SorensenStart a VNC server on display <arg>
8481472a95bSJes Sorensen@end table
8491472a95bSJes SorensenETEXI
8501472a95bSJes Sorensen
8515824d651Sblueswir1DEF("nographic", 0, QEMU_OPTION_nographic,
852ad96090aSBlue Swirl    "-nographic      disable graphical output and redirect serial I/Os to console\n",
853ad96090aSBlue Swirl    QEMU_ARCH_ALL)
8545824d651Sblueswir1STEXI
8555824d651Sblueswir1@item -nographic
8566616b2adSStefan Weil@findex -nographic
8575824d651Sblueswir1Normally, QEMU uses SDL to display the VGA output. With this option,
8585824d651Sblueswir1you can totally disable graphical output so that QEMU is a simple
8595824d651Sblueswir1command line application. The emulated serial port is redirected on
86002c4bdf1SPaolo Bonzinithe console and muxed with the monitor (unless redirected elsewhere
86102c4bdf1SPaolo Bonziniexplicitly). Therefore, you can still use QEMU to debug a Linux kernel
862b031f413SRamkumar Ramachandrawith a serial console.  Use @key{C-a h} for help on switching between
863b031f413SRamkumar Ramachandrathe console and monitor.
8645824d651Sblueswir1ETEXI
8655824d651Sblueswir1
8665824d651Sblueswir1DEF("curses", 0, QEMU_OPTION_curses,
867ad96090aSBlue Swirl    "-curses         use a curses/ncurses interface instead of SDL\n",
868ad96090aSBlue Swirl    QEMU_ARCH_ALL)
8695824d651Sblueswir1STEXI
8705824d651Sblueswir1@item -curses
871b8f490ebSMarkus Armbruster@findex -curses
8725824d651Sblueswir1Normally, QEMU uses SDL to display the VGA output.  With this option,
8735824d651Sblueswir1QEMU can display the VGA output when in text mode using a
8745824d651Sblueswir1curses/ncurses interface.  Nothing is displayed in graphical mode.
8755824d651Sblueswir1ETEXI
8765824d651Sblueswir1
8775824d651Sblueswir1DEF("no-frame", 0, QEMU_OPTION_no_frame,
878ad96090aSBlue Swirl    "-no-frame       open SDL window without a frame and window decorations\n",
879ad96090aSBlue Swirl    QEMU_ARCH_ALL)
8805824d651Sblueswir1STEXI
8815824d651Sblueswir1@item -no-frame
8826616b2adSStefan Weil@findex -no-frame
8835824d651Sblueswir1Do not use decorations for SDL windows and start them using the whole
8845824d651Sblueswir1available screen space. This makes the using QEMU in a dedicated desktop
8855824d651Sblueswir1workspace more convenient.
8865824d651Sblueswir1ETEXI
8875824d651Sblueswir1
8885824d651Sblueswir1DEF("alt-grab", 0, QEMU_OPTION_alt_grab,
889ad96090aSBlue Swirl    "-alt-grab       use Ctrl-Alt-Shift to grab mouse (instead of Ctrl-Alt)\n",
890ad96090aSBlue Swirl    QEMU_ARCH_ALL)
8915824d651Sblueswir1STEXI
8925824d651Sblueswir1@item -alt-grab
8936616b2adSStefan Weil@findex -alt-grab
894de1db2a1SBrad HardsUse Ctrl-Alt-Shift to grab mouse (instead of Ctrl-Alt). Note that this also
895de1db2a1SBrad Hardsaffects the special keys (for fullscreen, monitor-mode switching, etc).
8965824d651Sblueswir1ETEXI
8975824d651Sblueswir1
8980ca9f8a4SDustin KirklandDEF("ctrl-grab", 0, QEMU_OPTION_ctrl_grab,
899ad96090aSBlue Swirl    "-ctrl-grab      use Right-Ctrl to grab mouse (instead of Ctrl-Alt)\n",
900ad96090aSBlue Swirl    QEMU_ARCH_ALL)
9010ca9f8a4SDustin KirklandSTEXI
9020ca9f8a4SDustin Kirkland@item -ctrl-grab
9036616b2adSStefan Weil@findex -ctrl-grab
904de1db2a1SBrad HardsUse Right-Ctrl to grab mouse (instead of Ctrl-Alt). Note that this also
905de1db2a1SBrad Hardsaffects the special keys (for fullscreen, monitor-mode switching, etc).
9060ca9f8a4SDustin KirklandETEXI
9070ca9f8a4SDustin Kirkland
9085824d651Sblueswir1DEF("no-quit", 0, QEMU_OPTION_no_quit,
909ad96090aSBlue Swirl    "-no-quit        disable SDL window close capability\n", QEMU_ARCH_ALL)
9105824d651Sblueswir1STEXI
9115824d651Sblueswir1@item -no-quit
9126616b2adSStefan Weil@findex -no-quit
9135824d651Sblueswir1Disable SDL window close capability.
9145824d651Sblueswir1ETEXI
9155824d651Sblueswir1
9165824d651Sblueswir1DEF("sdl", 0, QEMU_OPTION_sdl,
917ad96090aSBlue Swirl    "-sdl            enable SDL\n", QEMU_ARCH_ALL)
9185824d651Sblueswir1STEXI
9195824d651Sblueswir1@item -sdl
9206616b2adSStefan Weil@findex -sdl
9215824d651Sblueswir1Enable SDL.
9225824d651Sblueswir1ETEXI
9235824d651Sblueswir1
92429b0040bSGerd HoffmannDEF("spice", HAS_ARG, QEMU_OPTION_spice,
92527af7788SYonit Halperin    "-spice [port=port][,tls-port=secured-port][,x509-dir=<dir>]\n"
92627af7788SYonit Halperin    "       [,x509-key-file=<file>][,x509-key-password=<file>]\n"
92727af7788SYonit Halperin    "       [,x509-cert-file=<file>][,x509-cacert-file=<file>]\n"
92827af7788SYonit Halperin    "       [,x509-dh-key-file=<file>][,addr=addr][,ipv4|ipv6]\n"
92927af7788SYonit Halperin    "       [,tls-ciphers=<list>]\n"
93027af7788SYonit Halperin    "       [,tls-channel=[main|display|cursor|inputs|record|playback]]\n"
93127af7788SYonit Halperin    "       [,plaintext-channel=[main|display|cursor|inputs|record|playback]]\n"
93227af7788SYonit Halperin    "       [,sasl][,password=<secret>][,disable-ticketing]\n"
93327af7788SYonit Halperin    "       [,image-compression=[auto_glz|auto_lz|quic|glz|lz|off]]\n"
93427af7788SYonit Halperin    "       [,jpeg-wan-compression=[auto|never|always]]\n"
93527af7788SYonit Halperin    "       [,zlib-glz-wan-compression=[auto|never|always]]\n"
93627af7788SYonit Halperin    "       [,streaming-video=[off|all|filter]][,disable-copy-paste]\n"
9375ad24e5fSHans de Goede    "       [,disable-agent-file-xfer][,agent-mouse=[on|off]]\n"
9385ad24e5fSHans de Goede    "       [,playback-compression=[on|off]][,seamless-migration=[on|off]]\n"
93927af7788SYonit Halperin    "   enable spice\n"
94027af7788SYonit Halperin    "   at least one of {port, tls-port} is mandatory\n",
94127af7788SYonit Halperin    QEMU_ARCH_ALL)
94229b0040bSGerd HoffmannSTEXI
94329b0040bSGerd Hoffmann@item -spice @var{option}[,@var{option}[,...]]
94429b0040bSGerd Hoffmann@findex -spice
94529b0040bSGerd HoffmannEnable the spice remote desktop protocol. Valid options are
94629b0040bSGerd Hoffmann
94729b0040bSGerd Hoffmann@table @option
94829b0040bSGerd Hoffmann
94929b0040bSGerd Hoffmann@item port=<nr>
950c448e855SGerd HoffmannSet the TCP port spice is listening on for plaintext channels.
95129b0040bSGerd Hoffmann
952333b0eebSGerd Hoffmann@item addr=<addr>
953333b0eebSGerd HoffmannSet the IP address spice is listening on.  Default is any address.
954333b0eebSGerd Hoffmann
955333b0eebSGerd Hoffmann@item ipv4
956333b0eebSGerd Hoffmann@item ipv6
957333b0eebSGerd HoffmannForce using the specified IP version.
958333b0eebSGerd Hoffmann
95929b0040bSGerd Hoffmann@item password=<secret>
96029b0040bSGerd HoffmannSet the password you need to authenticate.
96129b0040bSGerd Hoffmann
96248b3ed0aSMarc-André Lureau@item sasl
96348b3ed0aSMarc-André LureauRequire that the client use SASL to authenticate with the spice.
96448b3ed0aSMarc-André LureauThe exact choice of authentication method used is controlled from the
96548b3ed0aSMarc-André Lureausystem / user's SASL configuration file for the 'qemu' service. This
96648b3ed0aSMarc-André Lureauis typically found in /etc/sasl2/qemu.conf. If running QEMU as an
96748b3ed0aSMarc-André Lureauunprivileged user, an environment variable SASL_CONF_PATH can be used
96848b3ed0aSMarc-André Lureauto make it search alternate locations for the service config.
96948b3ed0aSMarc-André LureauWhile some SASL auth methods can also provide data encryption (eg GSSAPI),
97048b3ed0aSMarc-André Lureauit is recommended that SASL always be combined with the 'tls' and
97148b3ed0aSMarc-André Lureau'x509' settings to enable use of SSL and server certificates. This
97248b3ed0aSMarc-André Lureauensures a data encryption preventing compromise of authentication
97348b3ed0aSMarc-André Lureaucredentials.
97448b3ed0aSMarc-André Lureau
97529b0040bSGerd Hoffmann@item disable-ticketing
97629b0040bSGerd HoffmannAllow client connects without authentication.
97729b0040bSGerd Hoffmann
978d4970b07SHans de Goede@item disable-copy-paste
979d4970b07SHans de GoedeDisable copy paste between the client and the guest.
980d4970b07SHans de Goede
9815ad24e5fSHans de Goede@item disable-agent-file-xfer
9825ad24e5fSHans de GoedeDisable spice-vdagent based file-xfer between the client and the guest.
9835ad24e5fSHans de Goede
984c448e855SGerd Hoffmann@item tls-port=<nr>
985c448e855SGerd HoffmannSet the TCP port spice is listening on for encrypted channels.
986c448e855SGerd Hoffmann
987c448e855SGerd Hoffmann@item x509-dir=<dir>
988c448e855SGerd HoffmannSet the x509 file directory. Expects same filenames as -vnc $display,x509=$dir
989c448e855SGerd Hoffmann
990c448e855SGerd Hoffmann@item x509-key-file=<file>
991c448e855SGerd Hoffmann@item x509-key-password=<file>
992c448e855SGerd Hoffmann@item x509-cert-file=<file>
993c448e855SGerd Hoffmann@item x509-cacert-file=<file>
994c448e855SGerd Hoffmann@item x509-dh-key-file=<file>
995c448e855SGerd HoffmannThe x509 file names can also be configured individually.
996c448e855SGerd Hoffmann
997c448e855SGerd Hoffmann@item tls-ciphers=<list>
998c448e855SGerd HoffmannSpecify which ciphers to use.
999c448e855SGerd Hoffmann
1000d70d6b31SAlon Levy@item tls-channel=[main|display|cursor|inputs|record|playback]
1001d70d6b31SAlon Levy@item plaintext-channel=[main|display|cursor|inputs|record|playback]
100217b6dea0SGerd HoffmannForce specific channel to be used with or without TLS encryption.  The
100317b6dea0SGerd Hoffmannoptions can be specified multiple times to configure multiple
100417b6dea0SGerd Hoffmannchannels.  The special name "default" can be used to set the default
100517b6dea0SGerd Hoffmannmode.  For channels which are not explicitly forced into one mode the
100617b6dea0SGerd Hoffmannspice client is allowed to pick tls/plaintext as he pleases.
100717b6dea0SGerd Hoffmann
10089f04e09eSYonit Halperin@item image-compression=[auto_glz|auto_lz|quic|glz|lz|off]
10099f04e09eSYonit HalperinConfigure image compression (lossless).
10109f04e09eSYonit HalperinDefault is auto_glz.
10119f04e09eSYonit Halperin
10129f04e09eSYonit Halperin@item jpeg-wan-compression=[auto|never|always]
10139f04e09eSYonit Halperin@item zlib-glz-wan-compression=[auto|never|always]
10149f04e09eSYonit HalperinConfigure wan image compression (lossy for slow links).
10159f04e09eSYonit HalperinDefault is auto.
10169f04e09eSYonit Halperin
101784a23f25SGerd Hoffmann@item streaming-video=[off|all|filter]
101884a23f25SGerd HoffmannConfigure video stream detection.  Default is filter.
101984a23f25SGerd Hoffmann
102084a23f25SGerd Hoffmann@item agent-mouse=[on|off]
102184a23f25SGerd HoffmannEnable/disable passing mouse events via vdagent.  Default is on.
102284a23f25SGerd Hoffmann
102384a23f25SGerd Hoffmann@item playback-compression=[on|off]
102484a23f25SGerd HoffmannEnable/disable audio stream compression (using celt 0.5.1).  Default is on.
102584a23f25SGerd Hoffmann
10268c957053SYonit Halperin@item seamless-migration=[on|off]
10278c957053SYonit HalperinEnable/disable spice seamless migration. Default is off.
10288c957053SYonit Halperin
102929b0040bSGerd Hoffmann@end table
103029b0040bSGerd HoffmannETEXI
103129b0040bSGerd Hoffmann
10325824d651Sblueswir1DEF("portrait", 0, QEMU_OPTION_portrait,
1033ad96090aSBlue Swirl    "-portrait       rotate graphical output 90 deg left (only PXA LCD)\n",
1034ad96090aSBlue Swirl    QEMU_ARCH_ALL)
10355824d651Sblueswir1STEXI
10365824d651Sblueswir1@item -portrait
10376616b2adSStefan Weil@findex -portrait
10385824d651Sblueswir1Rotate graphical output 90 deg left (only PXA LCD).
10395824d651Sblueswir1ETEXI
10405824d651Sblueswir1
10419312805dSVasily KhoruzhickDEF("rotate", HAS_ARG, QEMU_OPTION_rotate,
10429312805dSVasily Khoruzhick    "-rotate <deg>   rotate graphical output some deg left (only PXA LCD)\n",
10439312805dSVasily Khoruzhick    QEMU_ARCH_ALL)
10449312805dSVasily KhoruzhickSTEXI
10456265c43bSMarkus Armbruster@item -rotate @var{deg}
10469312805dSVasily Khoruzhick@findex -rotate
10479312805dSVasily KhoruzhickRotate graphical output some deg left (only PXA LCD).
10489312805dSVasily KhoruzhickETEXI
10499312805dSVasily Khoruzhick
10505824d651Sblueswir1DEF("vga", HAS_ARG, QEMU_OPTION_vga,
105133632788SMark Cave-Ayland    "-vga [std|cirrus|vmware|qxl|xenfb|tcx|cg3|none]\n"
1052ad96090aSBlue Swirl    "                select video card type\n", QEMU_ARCH_ALL)
10535824d651Sblueswir1STEXI
1054e4558dcaSmalc@item -vga @var{type}
10556616b2adSStefan Weil@findex -vga
10565824d651Sblueswir1Select type of VGA card to emulate. Valid values for @var{type} are
1057b3f046c2SKevin Wolf@table @option
10585824d651Sblueswir1@item cirrus
10595824d651Sblueswir1Cirrus Logic GD5446 Video card. All Windows versions starting from
10605824d651Sblueswir1Windows 95 should recognize and use this graphic card. For optimal
10615824d651Sblueswir1performances, use 16 bit color depth in the guest and the host OS.
10625824d651Sblueswir1(This one is the default)
10635824d651Sblueswir1@item std
10645824d651Sblueswir1Standard VGA card with Bochs VBE extensions.  If your guest OS
10655824d651Sblueswir1supports the VESA 2.0 VBE extensions (e.g. Windows XP) and if you want
10665824d651Sblueswir1to use high resolution modes (>= 1280x1024x16) then you should use
10675824d651Sblueswir1this option.
10685824d651Sblueswir1@item vmware
10695824d651Sblueswir1VMWare SVGA-II compatible adapter. Use it if you have sufficiently
10705824d651Sblueswir1recent XFree86/XOrg server or Windows guest with a driver for this
10715824d651Sblueswir1card.
1072a19cbfb3SGerd Hoffmann@item qxl
1073a19cbfb3SGerd HoffmannQXL paravirtual graphic card.  It is VGA compatible (including VESA
1074a19cbfb3SGerd Hoffmann2.0 VBE support).  Works best with qxl guest drivers installed though.
1075a19cbfb3SGerd HoffmannRecommended choice when using the spice protocol.
107633632788SMark Cave-Ayland@item tcx
107733632788SMark Cave-Ayland(sun4m only) Sun TCX framebuffer. This is the default framebuffer for
107833632788SMark Cave-Aylandsun4m machines and offers both 8-bit and 24-bit colour depths at a
107933632788SMark Cave-Aylandfixed resolution of 1024x768.
108033632788SMark Cave-Ayland@item cg3
108133632788SMark Cave-Ayland(sun4m only) Sun cgthree framebuffer. This is a simple 8-bit framebuffer
108233632788SMark Cave-Aylandfor sun4m machines available in both 1024x768 (OpenBIOS) and 1152x900 (OBP)
108333632788SMark Cave-Aylandresolutions aimed at people wishing to run older Solaris versions.
10845824d651Sblueswir1@item none
10855824d651Sblueswir1Disable VGA card.
10865824d651Sblueswir1@end table
10875824d651Sblueswir1ETEXI
10885824d651Sblueswir1
10895824d651Sblueswir1DEF("full-screen", 0, QEMU_OPTION_full_screen,
1090ad96090aSBlue Swirl    "-full-screen    start in full screen\n", QEMU_ARCH_ALL)
10915824d651Sblueswir1STEXI
10925824d651Sblueswir1@item -full-screen
10936616b2adSStefan Weil@findex -full-screen
10945824d651Sblueswir1Start in full screen.
10955824d651Sblueswir1ETEXI
10965824d651Sblueswir1
10975824d651Sblueswir1DEF("g", 1, QEMU_OPTION_g ,
1098ad96090aSBlue Swirl    "-g WxH[xDEPTH]  Set the initial graphical resolution and depth\n",
1099ad96090aSBlue Swirl    QEMU_ARCH_PPC | QEMU_ARCH_SPARC)
11005824d651Sblueswir1STEXI
110195d5f08bSStefan Weil@item -g @var{width}x@var{height}[x@var{depth}]
11026616b2adSStefan Weil@findex -g
110395d5f08bSStefan WeilSet the initial graphical resolution and depth (PPC, SPARC only).
11045824d651Sblueswir1ETEXI
11055824d651Sblueswir1
11065824d651Sblueswir1DEF("vnc", HAS_ARG, QEMU_OPTION_vnc ,
1107ad96090aSBlue Swirl    "-vnc display    start a VNC server on display\n", QEMU_ARCH_ALL)
11085824d651Sblueswir1STEXI
11095824d651Sblueswir1@item -vnc @var{display}[,@var{option}[,@var{option}[,...]]]
11106616b2adSStefan Weil@findex -vnc
11115824d651Sblueswir1Normally, QEMU uses SDL to display the VGA output.  With this option,
11125824d651Sblueswir1you can have QEMU listen on VNC display @var{display} and redirect the VGA
11135824d651Sblueswir1display over the VNC session.  It is very useful to enable the usb
11145824d651Sblueswir1tablet device when using this option (option @option{-usbdevice
11155824d651Sblueswir1tablet}). When using the VNC display, you must use the @option{-k}
11165824d651Sblueswir1parameter to set the keyboard layout if you are not using en-us. Valid
11175824d651Sblueswir1syntax for the @var{display} is
11185824d651Sblueswir1
1119b3f046c2SKevin Wolf@table @option
11205824d651Sblueswir1
11215824d651Sblueswir1@item @var{host}:@var{d}
11225824d651Sblueswir1
11235824d651Sblueswir1TCP connections will only be allowed from @var{host} on display @var{d}.
11245824d651Sblueswir1By convention the TCP port is 5900+@var{d}. Optionally, @var{host} can
11255824d651Sblueswir1be omitted in which case the server will accept connections from any host.
11265824d651Sblueswir1
11274e257e5eSKevin Wolf@item unix:@var{path}
11285824d651Sblueswir1
11295824d651Sblueswir1Connections will be allowed over UNIX domain sockets where @var{path} is the
11305824d651Sblueswir1location of a unix socket to listen for connections on.
11315824d651Sblueswir1
11325824d651Sblueswir1@item none
11335824d651Sblueswir1
11345824d651Sblueswir1VNC is initialized but not started. The monitor @code{change} command
11355824d651Sblueswir1can be used to later start the VNC server.
11365824d651Sblueswir1
11375824d651Sblueswir1@end table
11385824d651Sblueswir1
11395824d651Sblueswir1Following the @var{display} value there may be one or more @var{option} flags
11405824d651Sblueswir1separated by commas. Valid options are
11415824d651Sblueswir1
1142b3f046c2SKevin Wolf@table @option
11435824d651Sblueswir1
11445824d651Sblueswir1@item reverse
11455824d651Sblueswir1
11465824d651Sblueswir1Connect to a listening VNC client via a ``reverse'' connection. The
11475824d651Sblueswir1client is specified by the @var{display}. For reverse network
11485824d651Sblueswir1connections (@var{host}:@var{d},@code{reverse}), the @var{d} argument
11495824d651Sblueswir1is a TCP port number, not a display number.
11505824d651Sblueswir1
11517536ee4bSTim Hardeck@item websocket
11527536ee4bSTim Hardeck
11537536ee4bSTim HardeckOpens an additional TCP listening port dedicated to VNC Websocket connections.
1154085d8134SPeter MaydellBy definition the Websocket port is 5700+@var{display}. If @var{host} is
11557536ee4bSTim Hardeckspecified connections will only be allowed from this host.
11567536ee4bSTim HardeckAs an alternative the Websocket port could be specified by using
11577536ee4bSTim Hardeck@code{websocket}=@var{port}.
11580057a0d5STim HardeckTLS encryption for the Websocket connection is supported if the required
11590057a0d5STim Hardeckcertificates are specified with the VNC option @option{x509}.
11607536ee4bSTim Hardeck
11615824d651Sblueswir1@item password
11625824d651Sblueswir1
11635824d651Sblueswir1Require that password based authentication is used for client connections.
116486ee5bc3SMichal Novotny
116586ee5bc3SMichal NovotnyThe password must be set separately using the @code{set_password} command in
116686ee5bc3SMichal Novotnythe @ref{pcsys_monitor}. The syntax to change your password is:
116786ee5bc3SMichal Novotny@code{set_password <protocol> <password>} where <protocol> could be either
116886ee5bc3SMichal Novotny"vnc" or "spice".
116986ee5bc3SMichal Novotny
117086ee5bc3SMichal NovotnyIf you would like to change <protocol> password expiration, you should use
117186ee5bc3SMichal Novotny@code{expire_password <protocol> <expiration-time>} where expiration time could
117286ee5bc3SMichal Novotnybe one of the following options: now, never, +seconds or UNIX time of
117386ee5bc3SMichal Novotnyexpiration, e.g. +60 to make password expire in 60 seconds, or 1335196800
117486ee5bc3SMichal Novotnyto make password expire on "Mon Apr 23 12:00:00 EDT 2012" (UNIX time for this
117586ee5bc3SMichal Novotnydate and time).
117686ee5bc3SMichal Novotny
117786ee5bc3SMichal NovotnyYou can also use keywords "now" or "never" for the expiration time to
117886ee5bc3SMichal Novotnyallow <protocol> password to expire immediately or never expire.
11795824d651Sblueswir1
11805824d651Sblueswir1@item tls
11815824d651Sblueswir1
11825824d651Sblueswir1Require that client use TLS when communicating with the VNC server. This
11835824d651Sblueswir1uses anonymous TLS credentials so is susceptible to a man-in-the-middle
11845824d651Sblueswir1attack. It is recommended that this option be combined with either the
11854e257e5eSKevin Wolf@option{x509} or @option{x509verify} options.
11865824d651Sblueswir1
11875824d651Sblueswir1@item x509=@var{/path/to/certificate/dir}
11885824d651Sblueswir1
11895824d651Sblueswir1Valid if @option{tls} is specified. Require that x509 credentials are used
11905824d651Sblueswir1for negotiating the TLS session. The server will send its x509 certificate
11915824d651Sblueswir1to the client. It is recommended that a password be set on the VNC server
11925824d651Sblueswir1to provide authentication of the client when this is used. The path following
11935824d651Sblueswir1this option specifies where the x509 certificates are to be loaded from.
11945824d651Sblueswir1See the @ref{vnc_security} section for details on generating certificates.
11955824d651Sblueswir1
11965824d651Sblueswir1@item x509verify=@var{/path/to/certificate/dir}
11975824d651Sblueswir1
11985824d651Sblueswir1Valid if @option{tls} is specified. Require that x509 credentials are used
11995824d651Sblueswir1for negotiating the TLS session. The server will send its x509 certificate
12005824d651Sblueswir1to the client, and request that the client send its own x509 certificate.
12015824d651Sblueswir1The server will validate the client's certificate against the CA certificate,
12025824d651Sblueswir1and reject clients when validation fails. If the certificate authority is
12035824d651Sblueswir1trusted, this is a sufficient authentication mechanism. You may still wish
12045824d651Sblueswir1to set a password on the VNC server as a second authentication layer. The
12055824d651Sblueswir1path following this option specifies where the x509 certificates are to
12065824d651Sblueswir1be loaded from. See the @ref{vnc_security} section for details on generating
12075824d651Sblueswir1certificates.
12085824d651Sblueswir1
12095824d651Sblueswir1@item sasl
12105824d651Sblueswir1
12115824d651Sblueswir1Require that the client use SASL to authenticate with the VNC server.
12125824d651Sblueswir1The exact choice of authentication method used is controlled from the
12135824d651Sblueswir1system / user's SASL configuration file for the 'qemu' service. This
12145824d651Sblueswir1is typically found in /etc/sasl2/qemu.conf. If running QEMU as an
12155824d651Sblueswir1unprivileged user, an environment variable SASL_CONF_PATH can be used
12165824d651Sblueswir1to make it search alternate locations for the service config.
12175824d651Sblueswir1While some SASL auth methods can also provide data encryption (eg GSSAPI),
12185824d651Sblueswir1it is recommended that SASL always be combined with the 'tls' and
12195824d651Sblueswir1'x509' settings to enable use of SSL and server certificates. This
12205824d651Sblueswir1ensures a data encryption preventing compromise of authentication
12215824d651Sblueswir1credentials. See the @ref{vnc_security} section for details on using
12225824d651Sblueswir1SASL authentication.
12235824d651Sblueswir1
12245824d651Sblueswir1@item acl
12255824d651Sblueswir1
12265824d651Sblueswir1Turn on access control lists for checking of the x509 client certificate
12275824d651Sblueswir1and SASL party. For x509 certs, the ACL check is made against the
12285824d651Sblueswir1certificate's distinguished name. This is something that looks like
12295824d651Sblueswir1@code{C=GB,O=ACME,L=Boston,CN=bob}. For SASL party, the ACL check is
12305824d651Sblueswir1made against the username, which depending on the SASL plugin, may
12315824d651Sblueswir1include a realm component, eg @code{bob} or @code{bob@@EXAMPLE.COM}.
12325824d651Sblueswir1When the @option{acl} flag is set, the initial access list will be
12335824d651Sblueswir1empty, with a @code{deny} policy. Thus no one will be allowed to
12345824d651Sblueswir1use the VNC server until the ACLs have been loaded. This can be
12355824d651Sblueswir1achieved using the @code{acl} monitor command.
12365824d651Sblueswir1
12376f9c78c1SCorentin Chary@item lossy
12386f9c78c1SCorentin Chary
12396f9c78c1SCorentin CharyEnable lossy compression methods (gradient, JPEG, ...). If this
12406f9c78c1SCorentin Charyoption is set, VNC client may receive lossy framebuffer updates
12416f9c78c1SCorentin Charydepending on its encoding settings. Enabling this option can save
12426f9c78c1SCorentin Charya lot of bandwidth at the expense of quality.
12436f9c78c1SCorentin Chary
124480e0c8c3SCorentin Chary@item non-adaptive
124580e0c8c3SCorentin Chary
124680e0c8c3SCorentin CharyDisable adaptive encodings. Adaptive encodings are enabled by default.
124780e0c8c3SCorentin CharyAn adaptive encoding will try to detect frequently updated screen regions,
124880e0c8c3SCorentin Charyand send updates in these regions using a lossy encoding (like JPEG).
124961cc8701SStefan WeilThis can be really helpful to save bandwidth when playing videos. Disabling
12509d85d557SMichael Tokarevadaptive encodings restores the original static behavior of encodings
125180e0c8c3SCorentin Charylike Tight.
125280e0c8c3SCorentin Chary
12538cf36489SGerd Hoffmann@item share=[allow-exclusive|force-shared|ignore]
12548cf36489SGerd Hoffmann
12558cf36489SGerd HoffmannSet display sharing policy.  'allow-exclusive' allows clients to ask
12568cf36489SGerd Hoffmannfor exclusive access.  As suggested by the rfb spec this is
12578cf36489SGerd Hoffmannimplemented by dropping other connections.  Connecting multiple
12588cf36489SGerd Hoffmannclients in parallel requires all clients asking for a shared session
12598cf36489SGerd Hoffmann(vncviewer: -shared switch).  This is the default.  'force-shared'
12608cf36489SGerd Hoffmanndisables exclusive client access.  Useful for shared desktop sessions,
12618cf36489SGerd Hoffmannwhere you don't want someone forgetting specify -shared disconnect
12628cf36489SGerd Hoffmanneverybody else.  'ignore' completely ignores the shared flag and
12638cf36489SGerd Hoffmannallows everybody connect unconditionally.  Doesn't conform to the rfb
1264b65ee4faSStefan Weilspec but is traditional QEMU behavior.
12658cf36489SGerd Hoffmann
12665824d651Sblueswir1@end table
12675824d651Sblueswir1ETEXI
12685824d651Sblueswir1
12695824d651Sblueswir1STEXI
12705824d651Sblueswir1@end table
12715824d651Sblueswir1ETEXI
1272a3adb7adSMichael EllermanARCHHEADING(, QEMU_ARCH_I386)
12735824d651Sblueswir1
1274a3adb7adSMichael EllermanARCHHEADING(i386 target only:, QEMU_ARCH_I386)
12755824d651Sblueswir1STEXI
12765824d651Sblueswir1@table @option
12775824d651Sblueswir1ETEXI
12785824d651Sblueswir1
12795824d651Sblueswir1DEF("win2k-hack", 0, QEMU_OPTION_win2k_hack,
1280ad96090aSBlue Swirl    "-win2k-hack     use it when installing Windows 2000 to avoid a disk full bug\n",
1281ad96090aSBlue Swirl    QEMU_ARCH_I386)
12825824d651Sblueswir1STEXI
12835824d651Sblueswir1@item -win2k-hack
12846616b2adSStefan Weil@findex -win2k-hack
12855824d651Sblueswir1Use it when installing Windows 2000 to avoid a disk full bug. After
12865824d651Sblueswir1Windows 2000 is installed, you no longer need this option (this option
12875824d651Sblueswir1slows down the IDE transfers).
12885824d651Sblueswir1ETEXI
12895824d651Sblueswir1
12901ed2fc1fSJan KiszkaHXCOMM Deprecated by -rtc
1291ad96090aSBlue SwirlDEF("rtc-td-hack", 0, QEMU_OPTION_rtc_td_hack, "", QEMU_ARCH_I386)
12925824d651Sblueswir1
12935824d651Sblueswir1DEF("no-fd-bootchk", 0, QEMU_OPTION_no_fd_bootchk,
1294ad96090aSBlue Swirl    "-no-fd-bootchk  disable boot signature checking for floppy disks\n",
1295ad96090aSBlue Swirl    QEMU_ARCH_I386)
12965824d651Sblueswir1STEXI
12975824d651Sblueswir1@item -no-fd-bootchk
12986616b2adSStefan Weil@findex -no-fd-bootchk
12994eda32f5SMarkus ArmbrusterDisable boot signature checking for floppy disks in BIOS. May
13005824d651Sblueswir1be needed to boot from old floppy disks.
13015824d651Sblueswir1ETEXI
13025824d651Sblueswir1
13035824d651Sblueswir1DEF("no-acpi", 0, QEMU_OPTION_no_acpi,
1304ad96090aSBlue Swirl           "-no-acpi        disable ACPI\n", QEMU_ARCH_I386)
13055824d651Sblueswir1STEXI
13065824d651Sblueswir1@item -no-acpi
13076616b2adSStefan Weil@findex -no-acpi
13085824d651Sblueswir1Disable ACPI (Advanced Configuration and Power Interface) support. Use
13095824d651Sblueswir1it if your guest OS complains about ACPI problems (PC target machine
13105824d651Sblueswir1only).
13115824d651Sblueswir1ETEXI
13125824d651Sblueswir1
13135824d651Sblueswir1DEF("no-hpet", 0, QEMU_OPTION_no_hpet,
1314ad96090aSBlue Swirl    "-no-hpet        disable HPET\n", QEMU_ARCH_I386)
13155824d651Sblueswir1STEXI
13165824d651Sblueswir1@item -no-hpet
13176616b2adSStefan Weil@findex -no-hpet
13185824d651Sblueswir1Disable HPET support.
13195824d651Sblueswir1ETEXI
13205824d651Sblueswir1
13215824d651Sblueswir1DEF("acpitable", HAS_ARG, QEMU_OPTION_acpitable,
1322104bf02eSMichael Tokarev    "-acpitable [sig=str][,rev=n][,oem_id=str][,oem_table_id=str][,oem_rev=n][,asl_compiler_id=str][,asl_compiler_rev=n][,{data|file}=file1[:file2]...]\n"
1323ad96090aSBlue Swirl    "                ACPI table description\n", QEMU_ARCH_I386)
13245824d651Sblueswir1STEXI
13255824d651Sblueswir1@item -acpitable [sig=@var{str}][,rev=@var{n}][,oem_id=@var{str}][,oem_table_id=@var{str}][,oem_rev=@var{n}] [,asl_compiler_id=@var{str}][,asl_compiler_rev=@var{n}][,data=@var{file1}[:@var{file2}]...]
13266616b2adSStefan Weil@findex -acpitable
13275824d651Sblueswir1Add ACPI table with specified header fields and context from specified files.
1328104bf02eSMichael TokarevFor file=, take whole ACPI table from the specified files, including all
1329104bf02eSMichael TokarevACPI headers (possible overridden by other options).
1330104bf02eSMichael TokarevFor data=, only data
1331104bf02eSMichael Tokarevportion of the table is used, all header information is specified in the
1332104bf02eSMichael Tokarevcommand line.
13335824d651Sblueswir1ETEXI
13345824d651Sblueswir1
1335b6f6e3d3SaliguoriDEF("smbios", HAS_ARG, QEMU_OPTION_smbios,
1336b6f6e3d3Saliguori    "-smbios file=binary\n"
1337ca1a8a06SBruce Rogers    "                load SMBIOS entry from binary file\n"
1338*84351843SGabriel L. Somlo    "-smbios type=0[,vendor=str][,version=str][,date=str][,release=%d.%d][,uefi=on|off]\n"
1339ca1a8a06SBruce Rogers    "                specify SMBIOS type 0 fields\n"
1340b6f6e3d3Saliguori    "-smbios type=1[,manufacturer=str][,product=str][,version=str][,serial=str]\n"
1341b6f6e3d3Saliguori    "              [,uuid=uuid][,sku=str][,family=str]\n"
1342ad96090aSBlue Swirl    "                specify SMBIOS type 1 fields\n", QEMU_ARCH_I386)
1343b6f6e3d3SaliguoriSTEXI
1344b6f6e3d3Saliguori@item -smbios file=@var{binary}
13456616b2adSStefan Weil@findex -smbios
1346b6f6e3d3SaliguoriLoad SMBIOS entry from binary file.
1347b6f6e3d3Saliguori
1348*84351843SGabriel L. Somlo@item -smbios type=0[,vendor=@var{str}][,version=@var{str}][,date=@var{str}][,release=@var{%d.%d}][,uefi=on|off]
1349b6f6e3d3SaliguoriSpecify SMBIOS type 0 fields
1350b6f6e3d3Saliguori
1351b6f6e3d3Saliguori@item -smbios type=1[,manufacturer=@var{str}][,product=@var{str}] [,version=@var{str}][,serial=@var{str}][,uuid=@var{uuid}][,sku=@var{str}] [,family=@var{str}]
1352b6f6e3d3SaliguoriSpecify SMBIOS type 1 fields
1353b6f6e3d3SaliguoriETEXI
1354b6f6e3d3Saliguori
13555824d651Sblueswir1STEXI
13565824d651Sblueswir1@end table
13575824d651Sblueswir1ETEXI
1358c70a01e4SMarkus ArmbrusterDEFHEADING()
13595824d651Sblueswir1
13605824d651Sblueswir1DEFHEADING(Network options:)
13615824d651Sblueswir1STEXI
13625824d651Sblueswir1@table @option
13635824d651Sblueswir1ETEXI
13645824d651Sblueswir1
1365ad196a9dSJan KiszkaHXCOMM Legacy slirp options (now moved to -net user):
1366ad196a9dSJan Kiszka#ifdef CONFIG_SLIRP
1367ad96090aSBlue SwirlDEF("tftp", HAS_ARG, QEMU_OPTION_tftp, "", QEMU_ARCH_ALL)
1368ad96090aSBlue SwirlDEF("bootp", HAS_ARG, QEMU_OPTION_bootp, "", QEMU_ARCH_ALL)
1369ad96090aSBlue SwirlDEF("redir", HAS_ARG, QEMU_OPTION_redir, "", QEMU_ARCH_ALL)
1370ad196a9dSJan Kiszka#ifndef _WIN32
1371ad96090aSBlue SwirlDEF("smb", HAS_ARG, QEMU_OPTION_smb, "", QEMU_ARCH_ALL)
1372ad196a9dSJan Kiszka#endif
1373ad196a9dSJan Kiszka#endif
1374ad196a9dSJan Kiszka
1375bab7944cSBlue SwirlDEF("net", HAS_ARG, QEMU_OPTION_net,
1376ffe6370cSMichael S. Tsirkin    "-net nic[,vlan=n][,macaddr=mac][,model=type][,name=str][,addr=str][,vectors=v]\n"
13775824d651Sblueswir1    "                create a new Network Interface Card and connect it to VLAN 'n'\n"
13785824d651Sblueswir1#ifdef CONFIG_SLIRP
1379c54ed5bcSJan Kiszka    "-net user[,vlan=n][,name=str][,net=addr[/mask]][,host=addr][,restrict=on|off]\n"
138063d2960bSKlaus Stengel    "         [,hostname=host][,dhcpstart=addr][,dns=addr][,dnssearch=domain][,tftp=dir]\n"
138163d2960bSKlaus Stengel    "         [,bootfile=f][,hostfwd=rule][,guestfwd=rule]"
1382ad196a9dSJan Kiszka#ifndef _WIN32
1383c92ef6a2SJan Kiszka                                             "[,smb=dir[,smbserver=addr]]\n"
1384ad196a9dSJan Kiszka#endif
1385ad196a9dSJan Kiszka    "                connect the user mode network stack to VLAN 'n', configure its\n"
1386ad196a9dSJan Kiszka    "                DHCP server and enabled optional services\n"
13875824d651Sblueswir1#endif
13885824d651Sblueswir1#ifdef _WIN32
13895824d651Sblueswir1    "-net tap[,vlan=n][,name=str],ifname=name\n"
13905824d651Sblueswir1    "                connect the host TAP network interface to VLAN 'n'\n"
13915824d651Sblueswir1#else
1392ec396014SJason Wang    "-net tap[,vlan=n][,name=str][,fd=h][,fds=x:y:...:z][,ifname=name][,script=file][,downscript=dfile][,helper=helper][,sndbuf=nbytes][,vnet_hdr=on|off][,vhost=on|off][,vhostfd=h][,vhostfds=x:y:...:z][,vhostforce=on|off][,queues=n]\n"
1393a7c36ee4SCorey Bryant    "                connect the host TAP network interface to VLAN 'n'\n"
1394a7c36ee4SCorey Bryant    "                use network scripts 'file' (default=" DEFAULT_NETWORK_SCRIPT ")\n"
1395a7c36ee4SCorey Bryant    "                to configure it and 'dfile' (default=" DEFAULT_NETWORK_DOWN_SCRIPT ")\n"
1396a7c36ee4SCorey Bryant    "                to deconfigure it\n"
1397ca1a8a06SBruce Rogers    "                use '[down]script=no' to disable script execution\n"
1398a7c36ee4SCorey Bryant    "                use network helper 'helper' (default=" DEFAULT_BRIDGE_HELPER ") to\n"
1399a7c36ee4SCorey Bryant    "                configure it\n"
14005824d651Sblueswir1    "                use 'fd=h' to connect to an already opened TAP interface\n"
14012ca81baaSJason Wang    "                use 'fds=x:y:...:z' to connect to already opened multiqueue capable TAP interfaces\n"
1402ca1a8a06SBruce Rogers    "                use 'sndbuf=nbytes' to limit the size of the send buffer (the\n"
1403f157ed20SMichael S. Tsirkin    "                default is disabled 'sndbuf=0' to enable flow control set 'sndbuf=1048576')\n"
1404ca1a8a06SBruce Rogers    "                use vnet_hdr=off to avoid enabling the IFF_VNET_HDR tap flag\n"
1405ca1a8a06SBruce Rogers    "                use vnet_hdr=on to make the lack of IFF_VNET_HDR support an error condition\n"
140682b0d80eSMichael S. Tsirkin    "                use vhost=on to enable experimental in kernel accelerator\n"
14075430a28fSmst@redhat.com    "                    (only has effect for virtio guests which use MSIX)\n"
14085430a28fSmst@redhat.com    "                use vhostforce=on to force vhost on for non-MSIX virtio guests\n"
140982b0d80eSMichael S. Tsirkin    "                use 'vhostfd=h' to connect to an already opened vhost net device\n"
14102ca81baaSJason Wang    "                use 'vhostfds=x:y:...:z to connect to multiple already opened vhost net devices\n"
1411ec396014SJason Wang    "                use 'queues=n' to specify the number of queues to be created for multiqueue TAP\n"
1412a7c36ee4SCorey Bryant    "-net bridge[,vlan=n][,name=str][,br=bridge][,helper=helper]\n"
1413a7c36ee4SCorey Bryant    "                connects a host TAP network interface to a host bridge device 'br'\n"
1414a7c36ee4SCorey Bryant    "                (default=" DEFAULT_BRIDGE_INTERFACE ") using the program 'helper'\n"
1415a7c36ee4SCorey Bryant    "                (default=" DEFAULT_BRIDGE_HELPER ")\n"
14160df0ff6dSMark McLoughlin#endif
14175824d651Sblueswir1    "-net socket[,vlan=n][,name=str][,fd=h][,listen=[host]:port][,connect=host:port]\n"
14185824d651Sblueswir1    "                connect the vlan 'n' to another VLAN using a socket connection\n"
14193a75e74cSMike Ryan    "-net socket[,vlan=n][,name=str][,fd=h][,mcast=maddr:port[,localaddr=addr]]\n"
14205824d651Sblueswir1    "                connect the vlan 'n' to multicast maddr and port\n"
14213a75e74cSMike Ryan    "                use 'localaddr=addr' to specify the host address to send packets from\n"
14220e0e7facSBenjamin    "-net socket[,vlan=n][,name=str][,fd=h][,udp=host:port][,localaddr=host:port]\n"
14230e0e7facSBenjamin    "                connect the vlan 'n' to another VLAN using an UDP tunnel\n"
14245824d651Sblueswir1#ifdef CONFIG_VDE
14255824d651Sblueswir1    "-net vde[,vlan=n][,name=str][,sock=socketpath][,port=n][,group=groupname][,mode=octalmode]\n"
14265824d651Sblueswir1    "                connect the vlan 'n' to port 'n' of a vde switch running\n"
14275824d651Sblueswir1    "                on host and listening for incoming connections on 'socketpath'.\n"
14285824d651Sblueswir1    "                Use group 'groupname' and mode 'octalmode' to change default\n"
14295824d651Sblueswir1    "                ownership and permissions for communication port.\n"
14305824d651Sblueswir1#endif
143158952137SVincenzo Maffione#ifdef CONFIG_NETMAP
143258952137SVincenzo Maffione    "-net netmap,ifname=name[,devname=nmname]\n"
143358952137SVincenzo Maffione    "                attach to the existing netmap-enabled network interface 'name', or to a\n"
143458952137SVincenzo Maffione    "                VALE port (created on the fly) called 'name' ('nmname' is name of the \n"
143558952137SVincenzo Maffione    "                netmap device, defaults to '/dev/netmap')\n"
143658952137SVincenzo Maffione#endif
1437bb9ea79eSaliguori    "-net dump[,vlan=n][,file=f][,len=n]\n"
1438bb9ea79eSaliguori    "                dump traffic on vlan 'n' to file 'f' (max n bytes per packet)\n"
1439ca1a8a06SBruce Rogers    "-net none       use it alone to have zero network devices. If no -net option\n"
1440ad96090aSBlue Swirl    "                is provided, the default is '-net nic -net user'\n", QEMU_ARCH_ALL)
1441a1ea458fSMark McLoughlinDEF("netdev", HAS_ARG, QEMU_OPTION_netdev,
1442a1ea458fSMark McLoughlin    "-netdev ["
1443a1ea458fSMark McLoughlin#ifdef CONFIG_SLIRP
1444a1ea458fSMark McLoughlin    "user|"
1445a1ea458fSMark McLoughlin#endif
1446a1ea458fSMark McLoughlin    "tap|"
1447a7c36ee4SCorey Bryant    "bridge|"
1448a1ea458fSMark McLoughlin#ifdef CONFIG_VDE
1449a1ea458fSMark McLoughlin    "vde|"
1450a1ea458fSMark McLoughlin#endif
145158952137SVincenzo Maffione#ifdef CONFIG_NETMAP
145258952137SVincenzo Maffione    "netmap|"
145358952137SVincenzo Maffione#endif
145440e8c26dSStefan Hajnoczi    "socket|"
145540e8c26dSStefan Hajnoczi    "hubport],id=str[,option][,option][,...]\n", QEMU_ARCH_ALL)
14565824d651Sblueswir1STEXI
1457ffe6370cSMichael S. Tsirkin@item -net nic[,vlan=@var{n}][,macaddr=@var{mac}][,model=@var{type}] [,name=@var{name}][,addr=@var{addr}][,vectors=@var{v}]
14586616b2adSStefan Weil@findex -net
14595824d651Sblueswir1Create a new Network Interface Card and connect it to VLAN @var{n} (@var{n}
14600d6b0b1dSAnthony Liguori= 0 is the default). The NIC is an e1000 by default on the PC
14615607c388SMarkus Armbrustertarget. Optionally, the MAC address can be changed to @var{mac}, the
14625607c388SMarkus Armbrusterdevice address set to @var{addr} (PCI cards only),
1463ffe6370cSMichael S. Tsirkinand a @var{name} can be assigned for use in monitor commands.
1464ffe6370cSMichael S. TsirkinOptionally, for PCI cards, you can specify the number @var{v} of MSI-X vectors
1465ffe6370cSMichael S. Tsirkinthat the card should have; this option currently only affects virtio cards; set
1466ffe6370cSMichael S. Tsirkin@var{v} = 0 to disable MSI-X. If no @option{-net} option is specified, a single
1467071c9394SStefan WeilNIC is created.  QEMU can emulate several different models of network card.
14685824d651Sblueswir1Valid values for @var{type} are
1469ffe6370cSMichael S. Tsirkin@code{virtio}, @code{i82551}, @code{i82557b}, @code{i82559er},
14705824d651Sblueswir1@code{ne2k_pci}, @code{ne2k_isa}, @code{pcnet}, @code{rtl8139},
14715824d651Sblueswir1@code{e1000}, @code{smc91c111}, @code{lance} and @code{mcf_fec}.
1472585f6036SPeter MaydellNot all devices are supported on all targets.  Use @code{-net nic,model=help}
14735824d651Sblueswir1for a list of available devices for your target.
14745824d651Sblueswir1
147508d12022SStefan Hajnoczi@item -netdev user,id=@var{id}[,@var{option}][,@var{option}][,...]
1476b8f490ebSMarkus Armbruster@findex -netdev
1477ad196a9dSJan Kiszka@item -net user[,@var{option}][,@var{option}][,...]
14785824d651Sblueswir1Use the user mode network stack which requires no administrator
1479ad196a9dSJan Kiszkaprivilege to run. Valid options are:
14805824d651Sblueswir1
1481b3f046c2SKevin Wolf@table @option
1482ad196a9dSJan Kiszka@item vlan=@var{n}
1483ad196a9dSJan KiszkaConnect user mode stack to VLAN @var{n} (@var{n} = 0 is the default).
1484ad196a9dSJan Kiszka
148508d12022SStefan Hajnoczi@item id=@var{id}
1486ad196a9dSJan Kiszka@item name=@var{name}
1487ad196a9dSJan KiszkaAssign symbolic name for use in monitor commands.
1488ad196a9dSJan Kiszka
1489c92ef6a2SJan Kiszka@item net=@var{addr}[/@var{mask}]
1490c92ef6a2SJan KiszkaSet IP network address the guest will see. Optionally specify the netmask,
1491c92ef6a2SJan Kiszkaeither in the form a.b.c.d or as number of valid top-most bits. Default is
1492b0b36e5dSBrad Hards10.0.2.0/24.
1493c92ef6a2SJan Kiszka
1494c92ef6a2SJan Kiszka@item host=@var{addr}
1495c92ef6a2SJan KiszkaSpecify the guest-visible address of the host. Default is the 2nd IP in the
1496c92ef6a2SJan Kiszkaguest network, i.e. x.x.x.2.
1497ad196a9dSJan Kiszka
1498c54ed5bcSJan Kiszka@item restrict=on|off
1499caef55edSBrad HardsIf this option is enabled, the guest will be isolated, i.e. it will not be
1500ad196a9dSJan Kiszkaable to contact the host and no guest IP packets will be routed over the host
1501caef55edSBrad Hardsto the outside. This option does not affect any explicitly set forwarding rules.
1502ad196a9dSJan Kiszka
1503ad196a9dSJan Kiszka@item hostname=@var{name}
150463d2960bSKlaus StengelSpecifies the client hostname reported by the built-in DHCP server.
1505ad196a9dSJan Kiszka
1506c92ef6a2SJan Kiszka@item dhcpstart=@var{addr}
1507c92ef6a2SJan KiszkaSpecify the first of the 16 IPs the built-in DHCP server can assign. Default
1508b0b36e5dSBrad Hardsis the 15th to 31st IP in the guest network, i.e. x.x.x.15 to x.x.x.31.
1509c92ef6a2SJan Kiszka
1510c92ef6a2SJan Kiszka@item dns=@var{addr}
1511c92ef6a2SJan KiszkaSpecify the guest-visible address of the virtual nameserver. The address must
1512c92ef6a2SJan Kiszkabe different from the host address. Default is the 3rd IP in the guest network,
1513c92ef6a2SJan Kiszkai.e. x.x.x.3.
1514c92ef6a2SJan Kiszka
151563d2960bSKlaus Stengel@item dnssearch=@var{domain}
151663d2960bSKlaus StengelProvides an entry for the domain-search list sent by the built-in
151763d2960bSKlaus StengelDHCP server. More than one domain suffix can be transmitted by specifying
151863d2960bSKlaus Stengelthis option multiple times. If supported, this will cause the guest to
151963d2960bSKlaus Stengelautomatically try to append the given domain suffix(es) in case a domain name
152063d2960bSKlaus Stengelcan not be resolved.
152163d2960bSKlaus Stengel
152263d2960bSKlaus StengelExample:
152363d2960bSKlaus Stengel@example
152463d2960bSKlaus Stengelqemu -net user,dnssearch=mgmt.example.org,dnssearch=example.org [...]
152563d2960bSKlaus Stengel@end example
152663d2960bSKlaus Stengel
1527ad196a9dSJan Kiszka@item tftp=@var{dir}
1528ad196a9dSJan KiszkaWhen using the user mode network stack, activate a built-in TFTP
1529ad196a9dSJan Kiszkaserver. The files in @var{dir} will be exposed as the root of a TFTP server.
1530ad196a9dSJan KiszkaThe TFTP client on the guest must be configured in binary mode (use the command
1531c92ef6a2SJan Kiszka@code{bin} of the Unix TFTP client).
1532ad196a9dSJan Kiszka
1533ad196a9dSJan Kiszka@item bootfile=@var{file}
1534ad196a9dSJan KiszkaWhen using the user mode network stack, broadcast @var{file} as the BOOTP
1535ad196a9dSJan Kiszkafilename. In conjunction with @option{tftp}, this can be used to network boot
1536ad196a9dSJan Kiszkaa guest from a local directory.
1537ad196a9dSJan Kiszka
1538ad196a9dSJan KiszkaExample (using pxelinux):
1539ad196a9dSJan Kiszka@example
15403804da9dSStefan Weilqemu-system-i386 -hda linux.img -boot n -net user,tftp=/path/to/tftp/files,bootfile=/pxelinux.0
1541ad196a9dSJan Kiszka@end example
1542ad196a9dSJan Kiszka
1543c92ef6a2SJan Kiszka@item smb=@var{dir}[,smbserver=@var{addr}]
1544ad196a9dSJan KiszkaWhen using the user mode network stack, activate a built-in SMB
1545ad196a9dSJan Kiszkaserver so that Windows OSes can access to the host files in @file{@var{dir}}
1546c92ef6a2SJan Kiszkatransparently. The IP address of the SMB server can be set to @var{addr}. By
1547c92ef6a2SJan Kiszkadefault the 4th IP in the guest network is used, i.e. x.x.x.4.
1548ad196a9dSJan Kiszka
1549ad196a9dSJan KiszkaIn the guest Windows OS, the line:
1550ad196a9dSJan Kiszka@example
1551ad196a9dSJan Kiszka10.0.2.4 smbserver
1552ad196a9dSJan Kiszka@end example
1553ad196a9dSJan Kiszkamust be added in the file @file{C:\WINDOWS\LMHOSTS} (for windows 9x/Me)
1554ad196a9dSJan Kiszkaor @file{C:\WINNT\SYSTEM32\DRIVERS\ETC\LMHOSTS} (Windows NT/2000).
1555ad196a9dSJan Kiszka
1556ad196a9dSJan KiszkaThen @file{@var{dir}} can be accessed in @file{\\smbserver\qemu}.
1557ad196a9dSJan Kiszka
1558e2d8830eSBradNote that a SAMBA server must be installed on the host OS.
1559e2d8830eSBradQEMU was tested successfully with smbd versions from Red Hat 9,
1560e2d8830eSBradFedora Core 3 and OpenSUSE 11.x.
1561ad196a9dSJan Kiszka
15623c6a0580SJan Kiszka@item hostfwd=[tcp|udp]:[@var{hostaddr}]:@var{hostport}-[@var{guestaddr}]:@var{guestport}
1563c92ef6a2SJan KiszkaRedirect incoming TCP or UDP connections to the host port @var{hostport} to
1564c92ef6a2SJan Kiszkathe guest IP address @var{guestaddr} on guest port @var{guestport}. If
1565c92ef6a2SJan Kiszka@var{guestaddr} is not specified, its value is x.x.x.15 (default first address
15663c6a0580SJan Kiszkagiven by the built-in DHCP server). By specifying @var{hostaddr}, the rule can
15673c6a0580SJan Kiszkabe bound to a specific host interface. If no connection type is set, TCP is
1568c92ef6a2SJan Kiszkaused. This option can be given multiple times.
1569ad196a9dSJan Kiszka
1570ad196a9dSJan KiszkaFor example, to redirect host X11 connection from screen 1 to guest
1571ad196a9dSJan Kiszkascreen 0, use the following:
1572ad196a9dSJan Kiszka
1573ad196a9dSJan Kiszka@example
1574ad196a9dSJan Kiszka# on the host
15753804da9dSStefan Weilqemu-system-i386 -net user,hostfwd=tcp:127.0.0.1:6001-:6000 [...]
1576ad196a9dSJan Kiszka# this host xterm should open in the guest X11 server
1577ad196a9dSJan Kiszkaxterm -display :1
1578ad196a9dSJan Kiszka@end example
1579ad196a9dSJan Kiszka
1580ad196a9dSJan KiszkaTo redirect telnet connections from host port 5555 to telnet port on
1581ad196a9dSJan Kiszkathe guest, use the following:
1582ad196a9dSJan Kiszka
1583ad196a9dSJan Kiszka@example
1584ad196a9dSJan Kiszka# on the host
15853804da9dSStefan Weilqemu-system-i386 -net user,hostfwd=tcp::5555-:23 [...]
1586ad196a9dSJan Kiszkatelnet localhost 5555
1587ad196a9dSJan Kiszka@end example
1588ad196a9dSJan Kiszka
1589ad196a9dSJan KiszkaThen when you use on the host @code{telnet localhost 5555}, you
1590ad196a9dSJan Kiszkaconnect to the guest telnet server.
1591ad196a9dSJan Kiszka
1592c92ef6a2SJan Kiszka@item guestfwd=[tcp]:@var{server}:@var{port}-@var{dev}
1593b412eb61SAlexander Graf@item guestfwd=[tcp]:@var{server}:@var{port}-@var{cmd:command}
15943c6a0580SJan KiszkaForward guest TCP connections to the IP address @var{server} on port @var{port}
1595b412eb61SAlexander Grafto the character device @var{dev} or to a program executed by @var{cmd:command}
1596b412eb61SAlexander Grafwhich gets spawned for each connection. This option can be given multiple times.
1597b412eb61SAlexander Graf
159843ffe61fSStefan WeilYou can either use a chardev directly and have that one used throughout QEMU's
1599b412eb61SAlexander Graflifetime, like in the following example:
1600b412eb61SAlexander Graf
1601b412eb61SAlexander Graf@example
1602b412eb61SAlexander Graf# open 10.10.1.1:4321 on bootup, connect 10.0.2.100:1234 to it whenever
1603b412eb61SAlexander Graf# the guest accesses it
1604b412eb61SAlexander Grafqemu -net user,guestfwd=tcp:10.0.2.100:1234-tcp:10.10.1.1:4321 [...]
1605b412eb61SAlexander Graf@end example
1606b412eb61SAlexander Graf
1607b412eb61SAlexander GrafOr you can execute a command on every TCP connection established by the guest,
160843ffe61fSStefan Weilso that QEMU behaves similar to an inetd process for that virtual server:
1609b412eb61SAlexander Graf
1610b412eb61SAlexander Graf@example
1611b412eb61SAlexander Graf# call "netcat 10.10.1.1 4321" on every TCP connection to 10.0.2.100:1234
1612b412eb61SAlexander Graf# and connect the TCP stream to its stdin/stdout
1613b412eb61SAlexander Grafqemu -net 'user,guestfwd=tcp:10.0.2.100:1234-cmd:netcat 10.10.1.1 4321'
1614b412eb61SAlexander Graf@end example
1615ad196a9dSJan Kiszka
1616ad196a9dSJan Kiszka@end table
1617ad196a9dSJan Kiszka
1618ad196a9dSJan KiszkaNote: Legacy stand-alone options -tftp, -bootp, -smb and -redir are still
1619ad196a9dSJan Kiszkaprocessed and applied to -net user. Mixing them with the new configuration
1620ad196a9dSJan Kiszkasyntax gives undefined results. Their use for new applications is discouraged
1621ad196a9dSJan Kiszkaas they will be removed from future versions.
16225824d651Sblueswir1
162308d12022SStefan Hajnoczi@item -netdev tap,id=@var{id}[,fd=@var{h}][,ifname=@var{name}][,script=@var{file}][,downscript=@var{dfile}][,helper=@var{helper}]
1624a7c36ee4SCorey Bryant@item -net tap[,vlan=@var{n}][,name=@var{name}][,fd=@var{h}][,ifname=@var{name}][,script=@var{file}][,downscript=@var{dfile}][,helper=@var{helper}]
1625a7c36ee4SCorey BryantConnect the host TAP network interface @var{name} to VLAN @var{n}.
1626a7c36ee4SCorey Bryant
1627a7c36ee4SCorey BryantUse the network script @var{file} to configure it and the network script
16285824d651Sblueswir1@var{dfile} to deconfigure it. If @var{name} is not provided, the OS
1629a7c36ee4SCorey Bryantautomatically provides one. The default network configure script is
1630a7c36ee4SCorey Bryant@file{/etc/qemu-ifup} and the default network deconfigure script is
1631a7c36ee4SCorey Bryant@file{/etc/qemu-ifdown}. Use @option{script=no} or @option{downscript=no}
1632a7c36ee4SCorey Bryantto disable script execution.
1633a7c36ee4SCorey Bryant
1634a7c36ee4SCorey BryantIf running QEMU as an unprivileged user, use the network helper
1635a7c36ee4SCorey Bryant@var{helper} to configure the TAP interface. The default network
1636420508fbSAmos Konghelper executable is @file{/path/to/qemu-bridge-helper}.
1637a7c36ee4SCorey Bryant
1638a7c36ee4SCorey Bryant@option{fd}=@var{h} can be used to specify the handle of an already
1639a7c36ee4SCorey Bryantopened host TAP interface.
1640a7c36ee4SCorey Bryant
1641a7c36ee4SCorey BryantExamples:
16425824d651Sblueswir1
16435824d651Sblueswir1@example
1644a7c36ee4SCorey Bryant#launch a QEMU instance with the default network script
16453804da9dSStefan Weilqemu-system-i386 linux.img -net nic -net tap
16465824d651Sblueswir1@end example
16475824d651Sblueswir1
16485824d651Sblueswir1@example
1649a7c36ee4SCorey Bryant#launch a QEMU instance with two NICs, each one connected
1650a7c36ee4SCorey Bryant#to a TAP device
16513804da9dSStefan Weilqemu-system-i386 linux.img \
16523804da9dSStefan Weil                 -net nic,vlan=0 -net tap,vlan=0,ifname=tap0 \
16535824d651Sblueswir1                 -net nic,vlan=1 -net tap,vlan=1,ifname=tap1
16545824d651Sblueswir1@end example
16555824d651Sblueswir1
1656a7c36ee4SCorey Bryant@example
1657a7c36ee4SCorey Bryant#launch a QEMU instance with the default network helper to
1658a7c36ee4SCorey Bryant#connect a TAP device to bridge br0
16593804da9dSStefan Weilqemu-system-i386 linux.img \
1660420508fbSAmos Kong                 -net nic -net tap,"helper=/path/to/qemu-bridge-helper"
1661a7c36ee4SCorey Bryant@end example
1662a7c36ee4SCorey Bryant
166308d12022SStefan Hajnoczi@item -netdev bridge,id=@var{id}[,br=@var{bridge}][,helper=@var{helper}]
1664a7c36ee4SCorey Bryant@item -net bridge[,vlan=@var{n}][,name=@var{name}][,br=@var{bridge}][,helper=@var{helper}]
1665a7c36ee4SCorey BryantConnect a host TAP network interface to a host bridge device.
1666a7c36ee4SCorey Bryant
1667a7c36ee4SCorey BryantUse the network helper @var{helper} to configure the TAP interface and
1668a7c36ee4SCorey Bryantattach it to the bridge. The default network helper executable is
1669420508fbSAmos Kong@file{/path/to/qemu-bridge-helper} and the default bridge
1670a7c36ee4SCorey Bryantdevice is @file{br0}.
1671a7c36ee4SCorey Bryant
1672a7c36ee4SCorey BryantExamples:
1673a7c36ee4SCorey Bryant
1674a7c36ee4SCorey Bryant@example
1675a7c36ee4SCorey Bryant#launch a QEMU instance with the default network helper to
1676a7c36ee4SCorey Bryant#connect a TAP device to bridge br0
16773804da9dSStefan Weilqemu-system-i386 linux.img -net bridge -net nic,model=virtio
1678a7c36ee4SCorey Bryant@end example
1679a7c36ee4SCorey Bryant
1680a7c36ee4SCorey Bryant@example
1681a7c36ee4SCorey Bryant#launch a QEMU instance with the default network helper to
1682a7c36ee4SCorey Bryant#connect a TAP device to bridge qemubr0
16833804da9dSStefan Weilqemu-system-i386 linux.img -net bridge,br=qemubr0 -net nic,model=virtio
1684a7c36ee4SCorey Bryant@end example
1685a7c36ee4SCorey Bryant
168608d12022SStefan Hajnoczi@item -netdev socket,id=@var{id}[,fd=@var{h}][,listen=[@var{host}]:@var{port}][,connect=@var{host}:@var{port}]
16875824d651Sblueswir1@item -net socket[,vlan=@var{n}][,name=@var{name}][,fd=@var{h}] [,listen=[@var{host}]:@var{port}][,connect=@var{host}:@var{port}]
16885824d651Sblueswir1
16895824d651Sblueswir1Connect the VLAN @var{n} to a remote VLAN in another QEMU virtual
16905824d651Sblueswir1machine using a TCP socket connection. If @option{listen} is
16915824d651Sblueswir1specified, QEMU waits for incoming connections on @var{port}
16925824d651Sblueswir1(@var{host} is optional). @option{connect} is used to connect to
16935824d651Sblueswir1another QEMU instance using the @option{listen} option. @option{fd}=@var{h}
16945824d651Sblueswir1specifies an already opened TCP socket.
16955824d651Sblueswir1
16965824d651Sblueswir1Example:
16975824d651Sblueswir1@example
16985824d651Sblueswir1# launch a first QEMU instance
16993804da9dSStefan Weilqemu-system-i386 linux.img \
17003804da9dSStefan Weil                 -net nic,macaddr=52:54:00:12:34:56 \
17015824d651Sblueswir1                 -net socket,listen=:1234
17025824d651Sblueswir1# connect the VLAN 0 of this instance to the VLAN 0
17035824d651Sblueswir1# of the first instance
17043804da9dSStefan Weilqemu-system-i386 linux.img \
17053804da9dSStefan Weil                 -net nic,macaddr=52:54:00:12:34:57 \
17065824d651Sblueswir1                 -net socket,connect=127.0.0.1:1234
17075824d651Sblueswir1@end example
17085824d651Sblueswir1
170908d12022SStefan Hajnoczi@item -netdev socket,id=@var{id}[,fd=@var{h}][,mcast=@var{maddr}:@var{port}[,localaddr=@var{addr}]]
17103a75e74cSMike Ryan@item -net socket[,vlan=@var{n}][,name=@var{name}][,fd=@var{h}][,mcast=@var{maddr}:@var{port}[,localaddr=@var{addr}]]
17115824d651Sblueswir1
17125824d651Sblueswir1Create a VLAN @var{n} shared with another QEMU virtual
17135824d651Sblueswir1machines using a UDP multicast socket, effectively making a bus for
17145824d651Sblueswir1every QEMU with same multicast address @var{maddr} and @var{port}.
17155824d651Sblueswir1NOTES:
17165824d651Sblueswir1@enumerate
17175824d651Sblueswir1@item
17185824d651Sblueswir1Several QEMU can be running on different hosts and share same bus (assuming
17195824d651Sblueswir1correct multicast setup for these hosts).
17205824d651Sblueswir1@item
17215824d651Sblueswir1mcast support is compatible with User Mode Linux (argument @option{eth@var{N}=mcast}), see
17225824d651Sblueswir1@url{http://user-mode-linux.sf.net}.
17235824d651Sblueswir1@item
17245824d651Sblueswir1Use @option{fd=h} to specify an already opened UDP multicast socket.
17255824d651Sblueswir1@end enumerate
17265824d651Sblueswir1
17275824d651Sblueswir1Example:
17285824d651Sblueswir1@example
17295824d651Sblueswir1# launch one QEMU instance
17303804da9dSStefan Weilqemu-system-i386 linux.img \
17313804da9dSStefan Weil                 -net nic,macaddr=52:54:00:12:34:56 \
17325824d651Sblueswir1                 -net socket,mcast=230.0.0.1:1234
17335824d651Sblueswir1# launch another QEMU instance on same "bus"
17343804da9dSStefan Weilqemu-system-i386 linux.img \
17353804da9dSStefan Weil                 -net nic,macaddr=52:54:00:12:34:57 \
17365824d651Sblueswir1                 -net socket,mcast=230.0.0.1:1234
17375824d651Sblueswir1# launch yet another QEMU instance on same "bus"
17383804da9dSStefan Weilqemu-system-i386 linux.img \
17393804da9dSStefan Weil                 -net nic,macaddr=52:54:00:12:34:58 \
17405824d651Sblueswir1                 -net socket,mcast=230.0.0.1:1234
17415824d651Sblueswir1@end example
17425824d651Sblueswir1
17435824d651Sblueswir1Example (User Mode Linux compat.):
17445824d651Sblueswir1@example
17455824d651Sblueswir1# launch QEMU instance (note mcast address selected
17465824d651Sblueswir1# is UML's default)
17473804da9dSStefan Weilqemu-system-i386 linux.img \
17483804da9dSStefan Weil                 -net nic,macaddr=52:54:00:12:34:56 \
17495824d651Sblueswir1                 -net socket,mcast=239.192.168.1:1102
17505824d651Sblueswir1# launch UML
17515824d651Sblueswir1/path/to/linux ubd0=/path/to/root_fs eth0=mcast
17525824d651Sblueswir1@end example
17535824d651Sblueswir1
17543a75e74cSMike RyanExample (send packets from host's 1.2.3.4):
17553a75e74cSMike Ryan@example
17563804da9dSStefan Weilqemu-system-i386 linux.img \
17573804da9dSStefan Weil                 -net nic,macaddr=52:54:00:12:34:56 \
17583a75e74cSMike Ryan                 -net socket,mcast=239.192.168.1:1102,localaddr=1.2.3.4
17593a75e74cSMike Ryan@end example
17603a75e74cSMike Ryan
176108d12022SStefan Hajnoczi@item -netdev vde,id=@var{id}[,sock=@var{socketpath}][,port=@var{n}][,group=@var{groupname}][,mode=@var{octalmode}]
17625824d651Sblueswir1@item -net vde[,vlan=@var{n}][,name=@var{name}][,sock=@var{socketpath}] [,port=@var{n}][,group=@var{groupname}][,mode=@var{octalmode}]
17635824d651Sblueswir1Connect VLAN @var{n} to PORT @var{n} of a vde switch running on host and
17645824d651Sblueswir1listening for incoming connections on @var{socketpath}. Use GROUP @var{groupname}
17655824d651Sblueswir1and MODE @var{octalmode} to change default ownership and permissions for
1766c1ba4e0bSStefan Weilcommunication port. This option is only available if QEMU has been compiled
17675824d651Sblueswir1with vde support enabled.
17685824d651Sblueswir1
17695824d651Sblueswir1Example:
17705824d651Sblueswir1@example
17715824d651Sblueswir1# launch vde switch
17725824d651Sblueswir1vde_switch -F -sock /tmp/myswitch
17735824d651Sblueswir1# launch QEMU instance
17743804da9dSStefan Weilqemu-system-i386 linux.img -net nic -net vde,sock=/tmp/myswitch
17755824d651Sblueswir1@end example
17765824d651Sblueswir1
177740e8c26dSStefan Hajnoczi@item -netdev hubport,id=@var{id},hubid=@var{hubid}
177840e8c26dSStefan Hajnoczi
177940e8c26dSStefan HajnocziCreate a hub port on QEMU "vlan" @var{hubid}.
178040e8c26dSStefan Hajnoczi
178140e8c26dSStefan HajnocziThe hubport netdev lets you connect a NIC to a QEMU "vlan" instead of a single
178240e8c26dSStefan Hajnoczinetdev.  @code{-net} and @code{-device} with parameter @option{vlan} create the
178340e8c26dSStefan Hajnoczirequired hub automatically.
178440e8c26dSStefan Hajnoczi
1785bb9ea79eSaliguori@item -net dump[,vlan=@var{n}][,file=@var{file}][,len=@var{len}]
1786bb9ea79eSaliguoriDump network traffic on VLAN @var{n} to file @var{file} (@file{qemu-vlan0.pcap} by default).
1787bb9ea79eSaliguoriAt most @var{len} bytes (64k by default) per packet are stored. The file format is
1788bb9ea79eSaliguorilibpcap, so it can be analyzed with tools such as tcpdump or Wireshark.
1789bb9ea79eSaliguori
17905824d651Sblueswir1@item -net none
17915824d651Sblueswir1Indicate that no network devices should be configured. It is used to
17925824d651Sblueswir1override the default configuration (@option{-net nic -net user}) which
17935824d651Sblueswir1is activated if no @option{-net} options are provided.
17945824d651Sblueswir1ETEXI
17955824d651Sblueswir1
1796c70a01e4SMarkus ArmbrusterSTEXI
1797c70a01e4SMarkus Armbruster@end table
1798c70a01e4SMarkus ArmbrusterETEXI
17997273a2dbSMatthew BoothDEFHEADING()
18007273a2dbSMatthew Booth
18017273a2dbSMatthew BoothDEFHEADING(Character device options:)
1802c70a01e4SMarkus ArmbrusterSTEXI
1803c70a01e4SMarkus Armbruster
1804c70a01e4SMarkus ArmbrusterThe general form of a character device option is:
1805c70a01e4SMarkus Armbruster@table @option
1806c70a01e4SMarkus ArmbrusterETEXI
18077273a2dbSMatthew Booth
18087273a2dbSMatthew BoothDEF("chardev", HAS_ARG, QEMU_OPTION_chardev,
180997331287SJan Kiszka    "-chardev null,id=id[,mux=on|off]\n"
18107273a2dbSMatthew Booth    "-chardev socket,id=id[,host=host],port=host[,to=to][,ipv4][,ipv6][,nodelay]\n"
181197331287SJan Kiszka    "         [,server][,nowait][,telnet][,mux=on|off] (tcp)\n"
181297331287SJan Kiszka    "-chardev socket,id=id,path=path[,server][,nowait][,telnet],[mux=on|off] (unix)\n"
18137273a2dbSMatthew Booth    "-chardev udp,id=id[,host=host],port=port[,localaddr=localaddr]\n"
181497331287SJan Kiszka    "         [,localport=localport][,ipv4][,ipv6][,mux=on|off]\n"
181597331287SJan Kiszka    "-chardev msmouse,id=id[,mux=on|off]\n"
18167273a2dbSMatthew Booth    "-chardev vc,id=id[[,width=width][,height=height]][[,cols=cols][,rows=rows]]\n"
181797331287SJan Kiszka    "         [,mux=on|off]\n"
18184f57378fSMarkus Armbruster    "-chardev ringbuf,id=id[,size=size]\n"
181997331287SJan Kiszka    "-chardev file,id=id,path=path[,mux=on|off]\n"
182097331287SJan Kiszka    "-chardev pipe,id=id,path=path[,mux=on|off]\n"
18217273a2dbSMatthew Booth#ifdef _WIN32
182297331287SJan Kiszka    "-chardev console,id=id[,mux=on|off]\n"
182397331287SJan Kiszka    "-chardev serial,id=id,path=path[,mux=on|off]\n"
18247273a2dbSMatthew Booth#else
182597331287SJan Kiszka    "-chardev pty,id=id[,mux=on|off]\n"
1826b7fdb3abSAurelien Jarno    "-chardev stdio,id=id[,mux=on|off][,signal=on|off]\n"
18277273a2dbSMatthew Booth#endif
18287273a2dbSMatthew Booth#ifdef CONFIG_BRLAPI
182997331287SJan Kiszka    "-chardev braille,id=id[,mux=on|off]\n"
18307273a2dbSMatthew Booth#endif
18317273a2dbSMatthew Booth#if defined(__linux__) || defined(__sun__) || defined(__FreeBSD__) \
18327273a2dbSMatthew Booth        || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__DragonFly__)
1833d59044efSGerd Hoffmann    "-chardev serial,id=id,path=path[,mux=on|off]\n"
183497331287SJan Kiszka    "-chardev tty,id=id,path=path[,mux=on|off]\n"
18357273a2dbSMatthew Booth#endif
18367273a2dbSMatthew Booth#if defined(__linux__) || defined(__FreeBSD__) || defined(__DragonFly__)
183788a946d3SGerd Hoffmann    "-chardev parallel,id=id,path=path[,mux=on|off]\n"
183897331287SJan Kiszka    "-chardev parport,id=id,path=path[,mux=on|off]\n"
18397273a2dbSMatthew Booth#endif
1840cbcc6336SAlon Levy#if defined(CONFIG_SPICE)
1841cbcc6336SAlon Levy    "-chardev spicevmc,id=id,name=name[,debug=debug]\n"
18425a49d3e9SMarc-André Lureau    "-chardev spiceport,id=id,name=name[,debug=debug]\n"
1843cbcc6336SAlon Levy#endif
1844ad96090aSBlue Swirl    , QEMU_ARCH_ALL
18457273a2dbSMatthew Booth)
18467273a2dbSMatthew Booth
18477273a2dbSMatthew BoothSTEXI
184897331287SJan Kiszka@item -chardev @var{backend} ,id=@var{id} [,mux=on|off] [,@var{options}]
18496616b2adSStefan Weil@findex -chardev
18507273a2dbSMatthew BoothBackend is one of:
18517273a2dbSMatthew Booth@option{null},
18527273a2dbSMatthew Booth@option{socket},
18537273a2dbSMatthew Booth@option{udp},
18547273a2dbSMatthew Booth@option{msmouse},
18557273a2dbSMatthew Booth@option{vc},
18564f57378fSMarkus Armbruster@option{ringbuf},
18577273a2dbSMatthew Booth@option{file},
18587273a2dbSMatthew Booth@option{pipe},
18597273a2dbSMatthew Booth@option{console},
18607273a2dbSMatthew Booth@option{serial},
18617273a2dbSMatthew Booth@option{pty},
18627273a2dbSMatthew Booth@option{stdio},
18637273a2dbSMatthew Booth@option{braille},
18647273a2dbSMatthew Booth@option{tty},
186588a946d3SGerd Hoffmann@option{parallel},
1866cbcc6336SAlon Levy@option{parport},
1867cbcc6336SAlon Levy@option{spicevmc}.
18685a49d3e9SMarc-André Lureau@option{spiceport}.
18697273a2dbSMatthew BoothThe specific backend will determine the applicable options.
18707273a2dbSMatthew Booth
18717273a2dbSMatthew BoothAll devices must have an id, which can be any string up to 127 characters long.
18727273a2dbSMatthew BoothIt is used to uniquely identify this device in other command line directives.
18737273a2dbSMatthew Booth
187497331287SJan KiszkaA character device may be used in multiplexing mode by multiple front-ends.
187597331287SJan KiszkaThe key sequence of @key{Control-a} and @key{c} will rotate the input focus
187697331287SJan Kiszkabetween attached front-ends. Specify @option{mux=on} to enable this mode.
187797331287SJan Kiszka
18787273a2dbSMatthew BoothOptions to each backend are described below.
18797273a2dbSMatthew Booth
18807273a2dbSMatthew Booth@item -chardev null ,id=@var{id}
18817273a2dbSMatthew BoothA void device. This device will not emit any data, and will drop any data it
18827273a2dbSMatthew Boothreceives. The null backend does not take any options.
18837273a2dbSMatthew Booth
18847273a2dbSMatthew Booth@item -chardev socket ,id=@var{id} [@var{TCP options} or @var{unix options}] [,server] [,nowait] [,telnet]
18857273a2dbSMatthew Booth
18867273a2dbSMatthew BoothCreate a two-way stream socket, which can be either a TCP or a unix socket. A
18877273a2dbSMatthew Boothunix socket will be created if @option{path} is specified. Behaviour is
18887273a2dbSMatthew Boothundefined if TCP options are specified for a unix socket.
18897273a2dbSMatthew Booth
18907273a2dbSMatthew Booth@option{server} specifies that the socket shall be a listening socket.
18917273a2dbSMatthew Booth
18927273a2dbSMatthew Booth@option{nowait} specifies that QEMU should not block waiting for a client to
18937273a2dbSMatthew Boothconnect to a listening socket.
18947273a2dbSMatthew Booth
18957273a2dbSMatthew Booth@option{telnet} specifies that traffic on the socket should interpret telnet
18967273a2dbSMatthew Boothescape sequences.
18977273a2dbSMatthew Booth
18987273a2dbSMatthew BoothTCP and unix socket options are given below:
18997273a2dbSMatthew Booth
19007273a2dbSMatthew Booth@table @option
19017273a2dbSMatthew Booth
19028d533561SAurelien Jarno@item TCP options: port=@var{port} [,host=@var{host}] [,to=@var{to}] [,ipv4] [,ipv6] [,nodelay]
19037273a2dbSMatthew Booth
19047273a2dbSMatthew Booth@option{host} for a listening socket specifies the local address to be bound.
19057273a2dbSMatthew BoothFor a connecting socket species the remote host to connect to. @option{host} is
19067273a2dbSMatthew Boothoptional for listening sockets. If not specified it defaults to @code{0.0.0.0}.
19077273a2dbSMatthew Booth
19087273a2dbSMatthew Booth@option{port} for a listening socket specifies the local port to be bound. For a
19097273a2dbSMatthew Boothconnecting socket specifies the port on the remote host to connect to.
19107273a2dbSMatthew Booth@option{port} can be given as either a port number or a service name.
19117273a2dbSMatthew Booth@option{port} is required.
19127273a2dbSMatthew Booth
19137273a2dbSMatthew Booth@option{to} is only relevant to listening sockets. If it is specified, and
19147273a2dbSMatthew Booth@option{port} cannot be bound, QEMU will attempt to bind to subsequent ports up
19157273a2dbSMatthew Boothto and including @option{to} until it succeeds. @option{to} must be specified
19167273a2dbSMatthew Boothas a port number.
19177273a2dbSMatthew Booth
19187273a2dbSMatthew Booth@option{ipv4} and @option{ipv6} specify that either IPv4 or IPv6 must be used.
19197273a2dbSMatthew BoothIf neither is specified the socket may use either protocol.
19207273a2dbSMatthew Booth
19217273a2dbSMatthew Booth@option{nodelay} disables the Nagle algorithm.
19227273a2dbSMatthew Booth
19237273a2dbSMatthew Booth@item unix options: path=@var{path}
19247273a2dbSMatthew Booth
19257273a2dbSMatthew Booth@option{path} specifies the local path of the unix socket. @option{path} is
19267273a2dbSMatthew Boothrequired.
19277273a2dbSMatthew Booth
19287273a2dbSMatthew Booth@end table
19297273a2dbSMatthew Booth
19307273a2dbSMatthew Booth@item -chardev udp ,id=@var{id} [,host=@var{host}] ,port=@var{port} [,localaddr=@var{localaddr}] [,localport=@var{localport}] [,ipv4] [,ipv6]
19317273a2dbSMatthew Booth
19327273a2dbSMatthew BoothSends all traffic from the guest to a remote host over UDP.
19337273a2dbSMatthew Booth
19347273a2dbSMatthew Booth@option{host} specifies the remote host to connect to. If not specified it
19357273a2dbSMatthew Boothdefaults to @code{localhost}.
19367273a2dbSMatthew Booth
19377273a2dbSMatthew Booth@option{port} specifies the port on the remote host to connect to. @option{port}
19387273a2dbSMatthew Boothis required.
19397273a2dbSMatthew Booth
19407273a2dbSMatthew Booth@option{localaddr} specifies the local address to bind to. If not specified it
19417273a2dbSMatthew Boothdefaults to @code{0.0.0.0}.
19427273a2dbSMatthew Booth
19437273a2dbSMatthew Booth@option{localport} specifies the local port to bind to. If not specified any
19447273a2dbSMatthew Boothavailable local port will be used.
19457273a2dbSMatthew Booth
19467273a2dbSMatthew Booth@option{ipv4} and @option{ipv6} specify that either IPv4 or IPv6 must be used.
19477273a2dbSMatthew BoothIf neither is specified the device may use either protocol.
19487273a2dbSMatthew Booth
19497273a2dbSMatthew Booth@item -chardev msmouse ,id=@var{id}
19507273a2dbSMatthew Booth
19517273a2dbSMatthew BoothForward QEMU's emulated msmouse events to the guest. @option{msmouse} does not
19527273a2dbSMatthew Boothtake any options.
19537273a2dbSMatthew Booth
19547273a2dbSMatthew Booth@item -chardev vc ,id=@var{id} [[,width=@var{width}] [,height=@var{height}]] [[,cols=@var{cols}] [,rows=@var{rows}]]
19557273a2dbSMatthew Booth
19567273a2dbSMatthew BoothConnect to a QEMU text console. @option{vc} may optionally be given a specific
19577273a2dbSMatthew Boothsize.
19587273a2dbSMatthew Booth
19597273a2dbSMatthew Booth@option{width} and @option{height} specify the width and height respectively of
19607273a2dbSMatthew Booththe console, in pixels.
19617273a2dbSMatthew Booth
19627273a2dbSMatthew Booth@option{cols} and @option{rows} specify that the console be sized to fit a text
19637273a2dbSMatthew Boothconsole with the given dimensions.
19647273a2dbSMatthew Booth
19654f57378fSMarkus Armbruster@item -chardev ringbuf ,id=@var{id} [,size=@var{size}]
196651767e7cSLei Li
19673949e594SMarkus ArmbrusterCreate a ring buffer with fixed size @option{size}.
19683949e594SMarkus Armbruster@var{size} must be a power of two, and defaults to @code{64K}).
196951767e7cSLei Li
19707273a2dbSMatthew Booth@item -chardev file ,id=@var{id} ,path=@var{path}
19717273a2dbSMatthew Booth
19727273a2dbSMatthew BoothLog all traffic received from the guest to a file.
19737273a2dbSMatthew Booth
19747273a2dbSMatthew Booth@option{path} specifies the path of the file to be opened. This file will be
19757273a2dbSMatthew Boothcreated if it does not already exist, and overwritten if it does. @option{path}
19767273a2dbSMatthew Boothis required.
19777273a2dbSMatthew Booth
19787273a2dbSMatthew Booth@item -chardev pipe ,id=@var{id} ,path=@var{path}
19797273a2dbSMatthew Booth
19807273a2dbSMatthew BoothCreate a two-way connection to the guest. The behaviour differs slightly between
19817273a2dbSMatthew BoothWindows hosts and other hosts:
19827273a2dbSMatthew Booth
19837273a2dbSMatthew BoothOn Windows, a single duplex pipe will be created at
19847273a2dbSMatthew Booth@file{\\.pipe\@option{path}}.
19857273a2dbSMatthew Booth
19867273a2dbSMatthew BoothOn other hosts, 2 pipes will be created called @file{@option{path}.in} and
19877273a2dbSMatthew Booth@file{@option{path}.out}. Data written to @file{@option{path}.in} will be
19887273a2dbSMatthew Boothreceived by the guest. Data written by the guest can be read from
19897273a2dbSMatthew Booth@file{@option{path}.out}. QEMU will not create these fifos, and requires them to
19907273a2dbSMatthew Boothbe present.
19917273a2dbSMatthew Booth
19927273a2dbSMatthew Booth@option{path} forms part of the pipe path as described above. @option{path} is
19937273a2dbSMatthew Boothrequired.
19947273a2dbSMatthew Booth
19957273a2dbSMatthew Booth@item -chardev console ,id=@var{id}
19967273a2dbSMatthew Booth
19977273a2dbSMatthew BoothSend traffic from the guest to QEMU's standard output. @option{console} does not
19987273a2dbSMatthew Boothtake any options.
19997273a2dbSMatthew Booth
20007273a2dbSMatthew Booth@option{console} is only available on Windows hosts.
20017273a2dbSMatthew Booth
20027273a2dbSMatthew Booth@item -chardev serial ,id=@var{id} ,path=@option{path}
20037273a2dbSMatthew Booth
20047273a2dbSMatthew BoothSend traffic from the guest to a serial device on the host.
20057273a2dbSMatthew Booth
2006d59044efSGerd HoffmannOn Unix hosts serial will actually accept any tty device,
2007d59044efSGerd Hoffmannnot only serial lines.
20087273a2dbSMatthew Booth
20097273a2dbSMatthew Booth@option{path} specifies the name of the serial device to open.
20107273a2dbSMatthew Booth
20117273a2dbSMatthew Booth@item -chardev pty ,id=@var{id}
20127273a2dbSMatthew Booth
20137273a2dbSMatthew BoothCreate a new pseudo-terminal on the host and connect to it. @option{pty} does
20147273a2dbSMatthew Boothnot take any options.
20157273a2dbSMatthew Booth
20167273a2dbSMatthew Booth@option{pty} is not available on Windows hosts.
20177273a2dbSMatthew Booth
2018b7fdb3abSAurelien Jarno@item -chardev stdio ,id=@var{id} [,signal=on|off]
2019b65ee4faSStefan WeilConnect to standard input and standard output of the QEMU process.
2020b7fdb3abSAurelien Jarno
2021b7fdb3abSAurelien Jarno@option{signal} controls if signals are enabled on the terminal, that includes
2022b7fdb3abSAurelien Jarnoexiting QEMU with the key sequence @key{Control-c}. This option is enabled by
2023b7fdb3abSAurelien Jarnodefault, use @option{signal=off} to disable it.
2024b7fdb3abSAurelien Jarno
2025b7fdb3abSAurelien Jarno@option{stdio} is not available on Windows hosts.
20267273a2dbSMatthew Booth
20277273a2dbSMatthew Booth@item -chardev braille ,id=@var{id}
20287273a2dbSMatthew Booth
20297273a2dbSMatthew BoothConnect to a local BrlAPI server. @option{braille} does not take any options.
20307273a2dbSMatthew Booth
20317273a2dbSMatthew Booth@item -chardev tty ,id=@var{id} ,path=@var{path}
20327273a2dbSMatthew Booth
20337273a2dbSMatthew Booth@option{tty} is only available on Linux, Sun, FreeBSD, NetBSD, OpenBSD and
2034d037d6bbSMarkus ArmbrusterDragonFlyBSD hosts.  It is an alias for @option{serial}.
20357273a2dbSMatthew Booth
20367273a2dbSMatthew Booth@option{path} specifies the path to the tty. @option{path} is required.
20377273a2dbSMatthew Booth
203888a946d3SGerd Hoffmann@item -chardev parallel ,id=@var{id} ,path=@var{path}
20397273a2dbSMatthew Booth@item -chardev parport ,id=@var{id} ,path=@var{path}
20407273a2dbSMatthew Booth
204188a946d3SGerd Hoffmann@option{parallel} is only available on Linux, FreeBSD and DragonFlyBSD hosts.
20427273a2dbSMatthew Booth
20437273a2dbSMatthew BoothConnect to a local parallel port.
20447273a2dbSMatthew Booth
20457273a2dbSMatthew Booth@option{path} specifies the path to the parallel port device. @option{path} is
20467273a2dbSMatthew Boothrequired.
20477273a2dbSMatthew Booth
2048cbcc6336SAlon Levy@item -chardev spicevmc ,id=@var{id} ,debug=@var{debug}, name=@var{name}
2049cbcc6336SAlon Levy
20503a846906SStefan Hajnoczi@option{spicevmc} is only available when spice support is built in.
20513a846906SStefan Hajnoczi
2052cbcc6336SAlon Levy@option{debug} debug level for spicevmc
2053cbcc6336SAlon Levy
2054cbcc6336SAlon Levy@option{name} name of spice channel to connect to
2055cbcc6336SAlon Levy
2056cbcc6336SAlon LevyConnect to a spice virtual machine channel, such as vdiport.
2057cbcc6336SAlon Levy
20585a49d3e9SMarc-André Lureau@item -chardev spiceport ,id=@var{id} ,debug=@var{debug}, name=@var{name}
20595a49d3e9SMarc-André Lureau
20605a49d3e9SMarc-André Lureau@option{spiceport} is only available when spice support is built in.
20615a49d3e9SMarc-André Lureau
20625a49d3e9SMarc-André Lureau@option{debug} debug level for spicevmc
20635a49d3e9SMarc-André Lureau
20645a49d3e9SMarc-André Lureau@option{name} name of spice port to connect to
20655a49d3e9SMarc-André Lureau
20665a49d3e9SMarc-André LureauConnect to a spice port, allowing a Spice client to handle the traffic
20675a49d3e9SMarc-André Lureauidentified by a name (preferably a fqdn).
20687273a2dbSMatthew BoothETEXI
20697273a2dbSMatthew Booth
2070c70a01e4SMarkus ArmbrusterSTEXI
2071c70a01e4SMarkus Armbruster@end table
2072c70a01e4SMarkus ArmbrusterETEXI
20737273a2dbSMatthew BoothDEFHEADING()
20747273a2dbSMatthew Booth
20750f5314a2SRonnie SahlbergDEFHEADING(Device URL Syntax:)
2076c70a01e4SMarkus ArmbrusterSTEXI
20770f5314a2SRonnie Sahlberg
20780f5314a2SRonnie SahlbergIn addition to using normal file images for the emulated storage devices,
20790f5314a2SRonnie SahlbergQEMU can also use networked resources such as iSCSI devices. These are
20800f5314a2SRonnie Sahlbergspecified using a special URL syntax.
20810f5314a2SRonnie Sahlberg
20820f5314a2SRonnie Sahlberg@table @option
20830f5314a2SRonnie Sahlberg@item iSCSI
20840f5314a2SRonnie SahlbergiSCSI support allows QEMU to access iSCSI resources directly and use as
20850f5314a2SRonnie Sahlbergimages for the guest storage. Both disk and cdrom images are supported.
20860f5314a2SRonnie Sahlberg
20870f5314a2SRonnie SahlbergSyntax for specifying iSCSI LUNs is
20880f5314a2SRonnie Sahlberg``iscsi://<target-ip>[:<port>]/<target-iqn>/<lun>''
20890f5314a2SRonnie Sahlberg
209031459f46SRonnie SahlbergBy default qemu will use the iSCSI initiator-name
209131459f46SRonnie Sahlberg'iqn.2008-11.org.linux-kvm[:<name>]' but this can also be set from the command
209231459f46SRonnie Sahlbergline or a configuration file.
209331459f46SRonnie Sahlberg
209431459f46SRonnie Sahlberg
20950f5314a2SRonnie SahlbergExample (without authentication):
20960f5314a2SRonnie Sahlberg@example
20973804da9dSStefan Weilqemu-system-i386 -iscsi initiator-name=iqn.2001-04.com.example:my-initiator \
2098f9dadc98SRonnie Sahlberg                 -cdrom iscsi://192.0.2.1/iqn.2001-04.com.example/2 \
2099f9dadc98SRonnie Sahlberg                 -drive file=iscsi://192.0.2.1/iqn.2001-04.com.example/1
21000f5314a2SRonnie Sahlberg@end example
21010f5314a2SRonnie Sahlberg
21020f5314a2SRonnie SahlbergExample (CHAP username/password via URL):
21030f5314a2SRonnie Sahlberg@example
21043804da9dSStefan Weilqemu-system-i386 -drive file=iscsi://user%password@@192.0.2.1/iqn.2001-04.com.example/1
21050f5314a2SRonnie Sahlberg@end example
21060f5314a2SRonnie Sahlberg
21070f5314a2SRonnie SahlbergExample (CHAP username/password via environment variables):
21080f5314a2SRonnie Sahlberg@example
21090f5314a2SRonnie SahlbergLIBISCSI_CHAP_USERNAME="user" \
21100f5314a2SRonnie SahlbergLIBISCSI_CHAP_PASSWORD="password" \
21113804da9dSStefan Weilqemu-system-i386 -drive file=iscsi://192.0.2.1/iqn.2001-04.com.example/1
21120f5314a2SRonnie Sahlberg@end example
21130f5314a2SRonnie Sahlberg
21140f5314a2SRonnie SahlbergiSCSI support is an optional feature of QEMU and only available when
21150f5314a2SRonnie Sahlbergcompiled and linked against libiscsi.
2116f9dadc98SRonnie SahlbergETEXI
2117f9dadc98SRonnie SahlbergDEF("iscsi", HAS_ARG, QEMU_OPTION_iscsi,
2118f9dadc98SRonnie Sahlberg    "-iscsi [user=user][,password=password]\n"
2119f9dadc98SRonnie Sahlberg    "       [,header-digest=CRC32C|CR32C-NONE|NONE-CRC32C|NONE\n"
21202fe3798cSPaolo Bonzini    "       [,initiator-name=initiator-iqn][,id=target-iqn]\n"
2121f9dadc98SRonnie Sahlberg    "                iSCSI session parameters\n", QEMU_ARCH_ALL)
2122f9dadc98SRonnie SahlbergSTEXI
21230f5314a2SRonnie Sahlberg
212431459f46SRonnie SahlbergiSCSI parameters such as username and password can also be specified via
212531459f46SRonnie Sahlberga configuration file. See qemu-doc for more information and examples.
212631459f46SRonnie Sahlberg
212708ae330eSRonnie Sahlberg@item NBD
212808ae330eSRonnie SahlbergQEMU supports NBD (Network Block Devices) both using TCP protocol as well
212908ae330eSRonnie Sahlbergas Unix Domain Sockets.
213008ae330eSRonnie Sahlberg
213108ae330eSRonnie SahlbergSyntax for specifying a NBD device using TCP
213208ae330eSRonnie Sahlberg``nbd:<server-ip>:<port>[:exportname=<export>]''
213308ae330eSRonnie Sahlberg
213408ae330eSRonnie SahlbergSyntax for specifying a NBD device using Unix Domain Sockets
213508ae330eSRonnie Sahlberg``nbd:unix:<domain-socket>[:exportname=<export>]''
213608ae330eSRonnie Sahlberg
213708ae330eSRonnie Sahlberg
213808ae330eSRonnie SahlbergExample for TCP
213908ae330eSRonnie Sahlberg@example
21403804da9dSStefan Weilqemu-system-i386 --drive file=nbd:192.0.2.1:30000
214108ae330eSRonnie Sahlberg@end example
214208ae330eSRonnie Sahlberg
214308ae330eSRonnie SahlbergExample for Unix Domain Sockets
214408ae330eSRonnie Sahlberg@example
21453804da9dSStefan Weilqemu-system-i386 --drive file=nbd:unix:/tmp/nbd-socket
214608ae330eSRonnie Sahlberg@end example
214708ae330eSRonnie Sahlberg
21480a12ec87SRichard W.M. Jones@item SSH
21490a12ec87SRichard W.M. JonesQEMU supports SSH (Secure Shell) access to remote disks.
21500a12ec87SRichard W.M. Jones
21510a12ec87SRichard W.M. JonesExamples:
21520a12ec87SRichard W.M. Jones@example
21530a12ec87SRichard W.M. Jonesqemu-system-i386 -drive file=ssh://user@@host/path/to/disk.img
21540a12ec87SRichard W.M. Jonesqemu-system-i386 -drive file.driver=ssh,file.user=user,file.host=host,file.port=22,file.path=/path/to/disk.img
21550a12ec87SRichard W.M. Jones@end example
21560a12ec87SRichard W.M. Jones
21570a12ec87SRichard W.M. JonesCurrently authentication must be done using ssh-agent.  Other
21580a12ec87SRichard W.M. Jonesauthentication methods may be supported in future.
21590a12ec87SRichard W.M. Jones
2160d9990228SRonnie Sahlberg@item Sheepdog
2161d9990228SRonnie SahlbergSheepdog is a distributed storage system for QEMU.
2162d9990228SRonnie SahlbergQEMU supports using either local sheepdog devices or remote networked
2163d9990228SRonnie Sahlbergdevices.
2164d9990228SRonnie Sahlberg
2165d9990228SRonnie SahlbergSyntax for specifying a sheepdog device
21665d6768e3SMORITA Kazutaka@example
21671b8bbb46SMORITA Kazutakasheepdog[+tcp|+unix]://[host:port]/vdiname[?socket=path][#snapid|#tag]
21685d6768e3SMORITA Kazutaka@end example
2169d9990228SRonnie Sahlberg
2170d9990228SRonnie SahlbergExample
2171d9990228SRonnie Sahlberg@example
21725d6768e3SMORITA Kazutakaqemu-system-i386 --drive file=sheepdog://192.0.2.1:30000/MyVirtualMachine
2173d9990228SRonnie Sahlberg@end example
2174d9990228SRonnie Sahlberg
2175d9990228SRonnie SahlbergSee also @url{http://http://www.osrg.net/sheepdog/}.
2176d9990228SRonnie Sahlberg
21778809e289SBharata B Rao@item GlusterFS
21788809e289SBharata B RaoGlusterFS is an user space distributed file system.
21798809e289SBharata B RaoQEMU supports the use of GlusterFS volumes for hosting VM disk images using
21808809e289SBharata B RaoTCP, Unix Domain Sockets and RDMA transport protocols.
21818809e289SBharata B Rao
21828809e289SBharata B RaoSyntax for specifying a VM disk image on GlusterFS volume is
21838809e289SBharata B Rao@example
21848809e289SBharata B Raogluster[+transport]://[server[:port]]/volname/image[?socket=...]
21858809e289SBharata B Rao@end example
21868809e289SBharata B Rao
21878809e289SBharata B Rao
21888809e289SBharata B RaoExample
21898809e289SBharata B Rao@example
2190db2d5ebaSLei Liqemu-system-x86_64 --drive file=gluster://192.0.2.1/testvol/a.img
21918809e289SBharata B Rao@end example
21928809e289SBharata B Rao
21938809e289SBharata B RaoSee also @url{http://www.gluster.org}.
2194c70a01e4SMarkus ArmbrusterETEXI
2195c70a01e4SMarkus Armbruster
2196c70a01e4SMarkus ArmbrusterSTEXI
21970f5314a2SRonnie Sahlberg@end table
21980f5314a2SRonnie SahlbergETEXI
21990f5314a2SRonnie Sahlberg
22007273a2dbSMatthew BoothDEFHEADING(Bluetooth(R) options:)
2201c70a01e4SMarkus ArmbrusterSTEXI
2202c70a01e4SMarkus Armbruster@table @option
2203c70a01e4SMarkus ArmbrusterETEXI
22047273a2dbSMatthew Booth
22055824d651Sblueswir1DEF("bt", HAS_ARG, QEMU_OPTION_bt, \
22065824d651Sblueswir1    "-bt hci,null    dumb bluetooth HCI - doesn't respond to commands\n" \
22075824d651Sblueswir1    "-bt hci,host[:id]\n" \
22085824d651Sblueswir1    "                use host's HCI with the given name\n" \
22095824d651Sblueswir1    "-bt hci[,vlan=n]\n" \
22105824d651Sblueswir1    "                emulate a standard HCI in virtual scatternet 'n'\n" \
22115824d651Sblueswir1    "-bt vhci[,vlan=n]\n" \
22125824d651Sblueswir1    "                add host computer to virtual scatternet 'n' using VHCI\n" \
22135824d651Sblueswir1    "-bt device:dev[,vlan=n]\n" \
2214ad96090aSBlue Swirl    "                emulate a bluetooth device 'dev' in scatternet 'n'\n",
2215ad96090aSBlue Swirl    QEMU_ARCH_ALL)
22165824d651Sblueswir1STEXI
22175824d651Sblueswir1@item -bt hci[...]
22186616b2adSStefan Weil@findex -bt
22195824d651Sblueswir1Defines the function of the corresponding Bluetooth HCI.  -bt options
22205824d651Sblueswir1are matched with the HCIs present in the chosen machine type.  For
22215824d651Sblueswir1example when emulating a machine with only one HCI built into it, only
22225824d651Sblueswir1the first @code{-bt hci[...]} option is valid and defines the HCI's
22235824d651Sblueswir1logic.  The Transport Layer is decided by the machine type.  Currently
22245824d651Sblueswir1the machines @code{n800} and @code{n810} have one HCI and all other
22255824d651Sblueswir1machines have none.
22265824d651Sblueswir1
22275824d651Sblueswir1@anchor{bt-hcis}
22285824d651Sblueswir1The following three types are recognized:
22295824d651Sblueswir1
2230b3f046c2SKevin Wolf@table @option
22315824d651Sblueswir1@item -bt hci,null
22325824d651Sblueswir1(default) The corresponding Bluetooth HCI assumes no internal logic
22335824d651Sblueswir1and will not respond to any HCI commands or emit events.
22345824d651Sblueswir1
22355824d651Sblueswir1@item -bt hci,host[:@var{id}]
22365824d651Sblueswir1(@code{bluez} only) The corresponding HCI passes commands / events
22375824d651Sblueswir1to / from the physical HCI identified by the name @var{id} (default:
22385824d651Sblueswir1@code{hci0}) on the computer running QEMU.  Only available on @code{bluez}
22395824d651Sblueswir1capable systems like Linux.
22405824d651Sblueswir1
22415824d651Sblueswir1@item -bt hci[,vlan=@var{n}]
22425824d651Sblueswir1Add a virtual, standard HCI that will participate in the Bluetooth
22435824d651Sblueswir1scatternet @var{n} (default @code{0}).  Similarly to @option{-net}
22445824d651Sblueswir1VLANs, devices inside a bluetooth network @var{n} can only communicate
22455824d651Sblueswir1with other devices in the same network (scatternet).
22465824d651Sblueswir1@end table
22475824d651Sblueswir1
22485824d651Sblueswir1@item -bt vhci[,vlan=@var{n}]
22495824d651Sblueswir1(Linux-host only) Create a HCI in scatternet @var{n} (default 0) attached
22505824d651Sblueswir1to the host bluetooth stack instead of to the emulated target.  This
22515824d651Sblueswir1allows the host and target machines to participate in a common scatternet
22525824d651Sblueswir1and communicate.  Requires the Linux @code{vhci} driver installed.  Can
22535824d651Sblueswir1be used as following:
22545824d651Sblueswir1
22555824d651Sblueswir1@example
22563804da9dSStefan Weilqemu-system-i386 [...OPTIONS...] -bt hci,vlan=5 -bt vhci,vlan=5
22575824d651Sblueswir1@end example
22585824d651Sblueswir1
22595824d651Sblueswir1@item -bt device:@var{dev}[,vlan=@var{n}]
22605824d651Sblueswir1Emulate a bluetooth device @var{dev} and place it in network @var{n}
22615824d651Sblueswir1(default @code{0}).  QEMU can only emulate one type of bluetooth devices
22625824d651Sblueswir1currently:
22635824d651Sblueswir1
2264b3f046c2SKevin Wolf@table @option
22655824d651Sblueswir1@item keyboard
22665824d651Sblueswir1Virtual wireless keyboard implementing the HIDP bluetooth profile.
22675824d651Sblueswir1@end table
22685824d651Sblueswir1ETEXI
22695824d651Sblueswir1
2270c70a01e4SMarkus ArmbrusterSTEXI
2271c70a01e4SMarkus Armbruster@end table
2272c70a01e4SMarkus ArmbrusterETEXI
22735824d651Sblueswir1DEFHEADING()
22745824d651Sblueswir1
2275d1a0cf73SStefan Berger#ifdef CONFIG_TPM
2276d1a0cf73SStefan BergerDEFHEADING(TPM device options:)
2277d1a0cf73SStefan Berger
2278d1a0cf73SStefan BergerDEF("tpmdev", HAS_ARG, QEMU_OPTION_tpmdev, \
227992dcc234SStefan Berger    "-tpmdev passthrough,id=id[,path=path][,cancel-path=path]\n"
228092dcc234SStefan Berger    "                use path to provide path to a character device; default is /dev/tpm0\n"
228192dcc234SStefan Berger    "                use cancel-path to provide path to TPM's cancel sysfs entry; if\n"
228292dcc234SStefan Berger    "                not provided it will be searched for in /sys/class/misc/tpm?/device\n",
2283d1a0cf73SStefan Berger    QEMU_ARCH_ALL)
2284d1a0cf73SStefan BergerSTEXI
2285d1a0cf73SStefan Berger
2286d1a0cf73SStefan BergerThe general form of a TPM device option is:
2287d1a0cf73SStefan Berger@table @option
2288d1a0cf73SStefan Berger
2289d1a0cf73SStefan Berger@item -tpmdev @var{backend} ,id=@var{id} [,@var{options}]
2290d1a0cf73SStefan Berger@findex -tpmdev
2291d1a0cf73SStefan BergerBackend type must be:
22924549a8b7SStefan Berger@option{passthrough}.
2293d1a0cf73SStefan Berger
2294d1a0cf73SStefan BergerThe specific backend type will determine the applicable options.
229528c4fa32SCorey BryantThe @code{-tpmdev} option creates the TPM backend and requires a
229628c4fa32SCorey Bryant@code{-device} option that specifies the TPM frontend interface model.
2297d1a0cf73SStefan Berger
2298d1a0cf73SStefan BergerOptions to each backend are described below.
2299d1a0cf73SStefan Berger
2300d1a0cf73SStefan BergerUse 'help' to print all available TPM backend types.
2301d1a0cf73SStefan Berger@example
2302d1a0cf73SStefan Bergerqemu -tpmdev help
2303d1a0cf73SStefan Berger@end example
2304d1a0cf73SStefan Berger
230592dcc234SStefan Berger@item -tpmdev passthrough, id=@var{id}, path=@var{path}, cancel-path=@var{cancel-path}
23064549a8b7SStefan Berger
23074549a8b7SStefan Berger(Linux-host only) Enable access to the host's TPM using the passthrough
23084549a8b7SStefan Bergerdriver.
23094549a8b7SStefan Berger
23104549a8b7SStefan Berger@option{path} specifies the path to the host's TPM device, i.e., on
23114549a8b7SStefan Bergera Linux host this would be @code{/dev/tpm0}.
23124549a8b7SStefan Berger@option{path} is optional and by default @code{/dev/tpm0} is used.
23134549a8b7SStefan Berger
231492dcc234SStefan Berger@option{cancel-path} specifies the path to the host TPM device's sysfs
231592dcc234SStefan Bergerentry allowing for cancellation of an ongoing TPM command.
231692dcc234SStefan Berger@option{cancel-path} is optional and by default QEMU will search for the
231792dcc234SStefan Bergersysfs entry to use.
231892dcc234SStefan Berger
23194549a8b7SStefan BergerSome notes about using the host's TPM with the passthrough driver:
23204549a8b7SStefan Berger
23214549a8b7SStefan BergerThe TPM device accessed by the passthrough driver must not be
23224549a8b7SStefan Bergerused by any other application on the host.
23234549a8b7SStefan Berger
23244549a8b7SStefan BergerSince the host's firmware (BIOS/UEFI) has already initialized the TPM,
23254549a8b7SStefan Bergerthe VM's firmware (BIOS/UEFI) will not be able to initialize the
23264549a8b7SStefan BergerTPM again and may therefore not show a TPM-specific menu that would
23274549a8b7SStefan Bergerotherwise allow the user to configure the TPM, e.g., allow the user to
23284549a8b7SStefan Bergerenable/disable or activate/deactivate the TPM.
23294549a8b7SStefan BergerFurther, if TPM ownership is released from within a VM then the host's TPM
23304549a8b7SStefan Bergerwill get disabled and deactivated. To enable and activate the
23314549a8b7SStefan BergerTPM again afterwards, the host has to be rebooted and the user is
23324549a8b7SStefan Bergerrequired to enter the firmware's menu to enable and activate the TPM.
23334549a8b7SStefan BergerIf the TPM is left disabled and/or deactivated most TPM commands will fail.
23344549a8b7SStefan Berger
23354549a8b7SStefan BergerTo create a passthrough TPM use the following two options:
23364549a8b7SStefan Berger@example
23374549a8b7SStefan Berger-tpmdev passthrough,id=tpm0 -device tpm-tis,tpmdev=tpm0
23384549a8b7SStefan Berger@end example
23394549a8b7SStefan BergerNote that the @code{-tpmdev} id is @code{tpm0} and is referenced by
23404549a8b7SStefan Berger@code{tpmdev=tpm0} in the device option.
23414549a8b7SStefan Berger
2342d1a0cf73SStefan Berger@end table
2343d1a0cf73SStefan Berger
2344d1a0cf73SStefan BergerETEXI
2345d1a0cf73SStefan Berger
2346d1a0cf73SStefan BergerDEFHEADING()
2347d1a0cf73SStefan Berger
2348d1a0cf73SStefan Berger#endif
2349d1a0cf73SStefan Berger
23507677f05dSAlexander GrafDEFHEADING(Linux/Multiboot boot specific:)
23515824d651Sblueswir1STEXI
23527677f05dSAlexander Graf
23537677f05dSAlexander GrafWhen using these options, you can use a given Linux or Multiboot
23547677f05dSAlexander Grafkernel without installing it in the disk image. It can be useful
23555824d651Sblueswir1for easier testing of various kernels.
23565824d651Sblueswir1
23575824d651Sblueswir1@table @option
23585824d651Sblueswir1ETEXI
23595824d651Sblueswir1
23605824d651Sblueswir1DEF("kernel", HAS_ARG, QEMU_OPTION_kernel, \
2361ad96090aSBlue Swirl    "-kernel bzImage use 'bzImage' as kernel image\n", QEMU_ARCH_ALL)
23625824d651Sblueswir1STEXI
23635824d651Sblueswir1@item -kernel @var{bzImage}
23646616b2adSStefan Weil@findex -kernel
23657677f05dSAlexander GrafUse @var{bzImage} as kernel image. The kernel can be either a Linux kernel
23667677f05dSAlexander Grafor in multiboot format.
23675824d651Sblueswir1ETEXI
23685824d651Sblueswir1
23695824d651Sblueswir1DEF("append", HAS_ARG, QEMU_OPTION_append, \
2370ad96090aSBlue Swirl    "-append cmdline use 'cmdline' as kernel command line\n", QEMU_ARCH_ALL)
23715824d651Sblueswir1STEXI
23725824d651Sblueswir1@item -append @var{cmdline}
23736616b2adSStefan Weil@findex -append
23745824d651Sblueswir1Use @var{cmdline} as kernel command line
23755824d651Sblueswir1ETEXI
23765824d651Sblueswir1
23775824d651Sblueswir1DEF("initrd", HAS_ARG, QEMU_OPTION_initrd, \
2378ad96090aSBlue Swirl           "-initrd file    use 'file' as initial ram disk\n", QEMU_ARCH_ALL)
23795824d651Sblueswir1STEXI
23805824d651Sblueswir1@item -initrd @var{file}
23816616b2adSStefan Weil@findex -initrd
23825824d651Sblueswir1Use @var{file} as initial ram disk.
23837677f05dSAlexander Graf
23847677f05dSAlexander Graf@item -initrd "@var{file1} arg=foo,@var{file2}"
23857677f05dSAlexander Graf
23867677f05dSAlexander GrafThis syntax is only available with multiboot.
23877677f05dSAlexander Graf
23887677f05dSAlexander GrafUse @var{file1} and @var{file2} as modules and pass arg=foo as parameter to the
23897677f05dSAlexander Graffirst module.
23905824d651Sblueswir1ETEXI
23915824d651Sblueswir1
2392412beee6SGrant LikelyDEF("dtb", HAS_ARG, QEMU_OPTION_dtb, \
2393379b5c7cSPeter A. G. Crosthwaite    "-dtb    file    use 'file' as device tree image\n", QEMU_ARCH_ALL)
2394412beee6SGrant LikelySTEXI
2395412beee6SGrant Likely@item -dtb @var{file}
2396412beee6SGrant Likely@findex -dtb
2397412beee6SGrant LikelyUse @var{file} as a device tree binary (dtb) image and pass it to the kernel
2398412beee6SGrant Likelyon boot.
2399412beee6SGrant LikelyETEXI
2400412beee6SGrant Likely
24015824d651Sblueswir1STEXI
24025824d651Sblueswir1@end table
24035824d651Sblueswir1ETEXI
24045824d651Sblueswir1DEFHEADING()
24055824d651Sblueswir1
24065824d651Sblueswir1DEFHEADING(Debug/Expert options:)
24075824d651Sblueswir1STEXI
24085824d651Sblueswir1@table @option
24095824d651Sblueswir1ETEXI
24105824d651Sblueswir1
24115824d651Sblueswir1DEF("serial", HAS_ARG, QEMU_OPTION_serial, \
2412ad96090aSBlue Swirl    "-serial dev     redirect the serial port to char device 'dev'\n",
2413ad96090aSBlue Swirl    QEMU_ARCH_ALL)
24145824d651Sblueswir1STEXI
24155824d651Sblueswir1@item -serial @var{dev}
24166616b2adSStefan Weil@findex -serial
24175824d651Sblueswir1Redirect the virtual serial port to host character device
24185824d651Sblueswir1@var{dev}. The default device is @code{vc} in graphical mode and
24195824d651Sblueswir1@code{stdio} in non graphical mode.
24205824d651Sblueswir1
24215824d651Sblueswir1This option can be used several times to simulate up to 4 serial
24225824d651Sblueswir1ports.
24235824d651Sblueswir1
24245824d651Sblueswir1Use @code{-serial none} to disable all serial ports.
24255824d651Sblueswir1
24265824d651Sblueswir1Available character devices are:
2427b3f046c2SKevin Wolf@table @option
24284e257e5eSKevin Wolf@item vc[:@var{W}x@var{H}]
24295824d651Sblueswir1Virtual console. Optionally, a width and height can be given in pixel with
24305824d651Sblueswir1@example
24315824d651Sblueswir1vc:800x600
24325824d651Sblueswir1@end example
24335824d651Sblueswir1It is also possible to specify width or height in characters:
24345824d651Sblueswir1@example
24355824d651Sblueswir1vc:80Cx24C
24365824d651Sblueswir1@end example
24375824d651Sblueswir1@item pty
24385824d651Sblueswir1[Linux only] Pseudo TTY (a new PTY is automatically allocated)
24395824d651Sblueswir1@item none
24405824d651Sblueswir1No device is allocated.
24415824d651Sblueswir1@item null
24425824d651Sblueswir1void device
244388e020e5SIngo van Lil@item chardev:@var{id}
244488e020e5SIngo van LilUse a named character device defined with the @code{-chardev} option.
24455824d651Sblueswir1@item /dev/XXX
24465824d651Sblueswir1[Linux only] Use host tty, e.g. @file{/dev/ttyS0}. The host serial port
24475824d651Sblueswir1parameters are set according to the emulated ones.
24485824d651Sblueswir1@item /dev/parport@var{N}
24495824d651Sblueswir1[Linux only, parallel port only] Use host parallel port
24505824d651Sblueswir1@var{N}. Currently SPP and EPP parallel port features can be used.
24515824d651Sblueswir1@item file:@var{filename}
24525824d651Sblueswir1Write output to @var{filename}. No character can be read.
24535824d651Sblueswir1@item stdio
24545824d651Sblueswir1[Unix only] standard input/output
24555824d651Sblueswir1@item pipe:@var{filename}
24565824d651Sblueswir1name pipe @var{filename}
24575824d651Sblueswir1@item COM@var{n}
24585824d651Sblueswir1[Windows only] Use host serial port @var{n}
24595824d651Sblueswir1@item udp:[@var{remote_host}]:@var{remote_port}[@@[@var{src_ip}]:@var{src_port}]
24605824d651Sblueswir1This implements UDP Net Console.
24615824d651Sblueswir1When @var{remote_host} or @var{src_ip} are not specified
24625824d651Sblueswir1they default to @code{0.0.0.0}.
24635824d651Sblueswir1When not using a specified @var{src_port} a random port is automatically chosen.
24645824d651Sblueswir1
24655824d651Sblueswir1If you just want a simple readonly console you can use @code{netcat} or
2466b65ee4faSStefan Weil@code{nc}, by starting QEMU with: @code{-serial udp::4555} and nc as:
2467b65ee4faSStefan Weil@code{nc -u -l -p 4555}. Any time QEMU writes something to that port it
24685824d651Sblueswir1will appear in the netconsole session.
24695824d651Sblueswir1
24705824d651Sblueswir1If you plan to send characters back via netconsole or you want to stop
2471b65ee4faSStefan Weiland start QEMU a lot of times, you should have QEMU use the same
24725824d651Sblueswir1source port each time by using something like @code{-serial
2473b65ee4faSStefan Weiludp::4555@@:4556} to QEMU. Another approach is to use a patched
24745824d651Sblueswir1version of netcat which can listen to a TCP port and send and receive
24755824d651Sblueswir1characters via udp.  If you have a patched version of netcat which
24765824d651Sblueswir1activates telnet remote echo and single char transfer, then you can
24775824d651Sblueswir1use the following options to step up a netcat redirector to allow
2478b65ee4faSStefan Weiltelnet on port 5555 to access the QEMU port.
24795824d651Sblueswir1@table @code
2480071c9394SStefan Weil@item QEMU Options:
24815824d651Sblueswir1-serial udp::4555@@:4556
24825824d651Sblueswir1@item netcat options:
24835824d651Sblueswir1-u -P 4555 -L 0.0.0.0:4556 -t -p 5555 -I -T
24845824d651Sblueswir1@item telnet options:
24855824d651Sblueswir1localhost 5555
24865824d651Sblueswir1@end table
24875824d651Sblueswir1
24885824d651Sblueswir1@item tcp:[@var{host}]:@var{port}[,@var{server}][,nowait][,nodelay]
24895824d651Sblueswir1The TCP Net Console has two modes of operation.  It can send the serial
24905824d651Sblueswir1I/O to a location or wait for a connection from a location.  By default
24915824d651Sblueswir1the TCP Net Console is sent to @var{host} at the @var{port}.  If you use
24925824d651Sblueswir1the @var{server} option QEMU will wait for a client socket application
24935824d651Sblueswir1to connect to the port before continuing, unless the @code{nowait}
24945824d651Sblueswir1option was specified.  The @code{nodelay} option disables the Nagle buffering
24955824d651Sblueswir1algorithm.  If @var{host} is omitted, 0.0.0.0 is assumed. Only
24965824d651Sblueswir1one TCP connection at a time is accepted. You can use @code{telnet} to
24975824d651Sblueswir1connect to the corresponding character device.
24985824d651Sblueswir1@table @code
24995824d651Sblueswir1@item Example to send tcp console to 192.168.0.2 port 4444
25005824d651Sblueswir1-serial tcp:192.168.0.2:4444
25015824d651Sblueswir1@item Example to listen and wait on port 4444 for connection
25025824d651Sblueswir1-serial tcp::4444,server
25035824d651Sblueswir1@item Example to not wait and listen on ip 192.168.0.100 port 4444
25045824d651Sblueswir1-serial tcp:192.168.0.100:4444,server,nowait
25055824d651Sblueswir1@end table
25065824d651Sblueswir1
25075824d651Sblueswir1@item telnet:@var{host}:@var{port}[,server][,nowait][,nodelay]
25085824d651Sblueswir1The telnet protocol is used instead of raw tcp sockets.  The options
25095824d651Sblueswir1work the same as if you had specified @code{-serial tcp}.  The
25105824d651Sblueswir1difference is that the port acts like a telnet server or client using
25115824d651Sblueswir1telnet option negotiation.  This will also allow you to send the
25125824d651Sblueswir1MAGIC_SYSRQ sequence if you use a telnet that supports sending the break
25135824d651Sblueswir1sequence.  Typically in unix telnet you do it with Control-] and then
25145824d651Sblueswir1type "send break" followed by pressing the enter key.
25155824d651Sblueswir1
25165824d651Sblueswir1@item unix:@var{path}[,server][,nowait]
25175824d651Sblueswir1A unix domain socket is used instead of a tcp socket.  The option works the
25185824d651Sblueswir1same as if you had specified @code{-serial tcp} except the unix domain socket
25195824d651Sblueswir1@var{path} is used for connections.
25205824d651Sblueswir1
25215824d651Sblueswir1@item mon:@var{dev_string}
25225824d651Sblueswir1This is a special option to allow the monitor to be multiplexed onto
25235824d651Sblueswir1another serial port.  The monitor is accessed with key sequence of
252402c4bdf1SPaolo Bonzini@key{Control-a} and then pressing @key{c}.
25255824d651Sblueswir1@var{dev_string} should be any one of the serial devices specified
25265824d651Sblueswir1above.  An example to multiplex the monitor onto a telnet server
25275824d651Sblueswir1listening on port 4444 would be:
25285824d651Sblueswir1@table @code
25295824d651Sblueswir1@item -serial mon:telnet::4444,server,nowait
25305824d651Sblueswir1@end table
2531be022d61SMichael TokarevWhen the monitor is multiplexed to stdio in this way, Ctrl+C will not terminate
253202c4bdf1SPaolo BonziniQEMU any more but will be passed to the guest instead.
25335824d651Sblueswir1
25345824d651Sblueswir1@item braille
25355824d651Sblueswir1Braille device.  This will use BrlAPI to display the braille output on a real
25365824d651Sblueswir1or fake device.
25375824d651Sblueswir1
2538be8b28a9SKevin Wolf@item msmouse
2539be8b28a9SKevin WolfThree button serial mouse. Configure the guest to use Microsoft protocol.
25405824d651Sblueswir1@end table
25415824d651Sblueswir1ETEXI
25425824d651Sblueswir1
25435824d651Sblueswir1DEF("parallel", HAS_ARG, QEMU_OPTION_parallel, \
2544ad96090aSBlue Swirl    "-parallel dev   redirect the parallel port to char device 'dev'\n",
2545ad96090aSBlue Swirl    QEMU_ARCH_ALL)
25465824d651Sblueswir1STEXI
25475824d651Sblueswir1@item -parallel @var{dev}
25486616b2adSStefan Weil@findex -parallel
25495824d651Sblueswir1Redirect the virtual parallel port to host device @var{dev} (same
25505824d651Sblueswir1devices as the serial port). On Linux hosts, @file{/dev/parportN} can
25515824d651Sblueswir1be used to use hardware devices connected on the corresponding host
25525824d651Sblueswir1parallel port.
25535824d651Sblueswir1
25545824d651Sblueswir1This option can be used several times to simulate up to 3 parallel
25555824d651Sblueswir1ports.
25565824d651Sblueswir1
25575824d651Sblueswir1Use @code{-parallel none} to disable all parallel ports.
25585824d651Sblueswir1ETEXI
25595824d651Sblueswir1
25605824d651Sblueswir1DEF("monitor", HAS_ARG, QEMU_OPTION_monitor, \
2561ad96090aSBlue Swirl    "-monitor dev    redirect the monitor to char device 'dev'\n",
2562ad96090aSBlue Swirl    QEMU_ARCH_ALL)
25635824d651Sblueswir1STEXI
25644e307fc8SGerd Hoffmann@item -monitor @var{dev}
25656616b2adSStefan Weil@findex -monitor
25665824d651Sblueswir1Redirect the monitor to host device @var{dev} (same devices as the
25675824d651Sblueswir1serial port).
25685824d651Sblueswir1The default device is @code{vc} in graphical mode and @code{stdio} in
25695824d651Sblueswir1non graphical mode.
257070e098afSLuiz CapitulinoUse @code{-monitor none} to disable the default monitor.
25715824d651Sblueswir1ETEXI
25726ca5582dSGerd HoffmannDEF("qmp", HAS_ARG, QEMU_OPTION_qmp, \
2573ad96090aSBlue Swirl    "-qmp dev        like -monitor but opens in 'control' mode\n",
2574ad96090aSBlue Swirl    QEMU_ARCH_ALL)
257595d5f08bSStefan WeilSTEXI
257695d5f08bSStefan Weil@item -qmp @var{dev}
25776616b2adSStefan Weil@findex -qmp
257895d5f08bSStefan WeilLike -monitor but opens in 'control' mode.
257995d5f08bSStefan WeilETEXI
25805824d651Sblueswir1
258122a0e04bSGerd HoffmannDEF("mon", HAS_ARG, QEMU_OPTION_mon, \
2582f17e4eaaSMichael Tokarev    "-mon [chardev=]name[,mode=readline|control][,default]\n", QEMU_ARCH_ALL)
258322a0e04bSGerd HoffmannSTEXI
2584f17e4eaaSMichael Tokarev@item -mon [chardev=]name[,mode=readline|control][,default]
25856616b2adSStefan Weil@findex -mon
258622a0e04bSGerd HoffmannSetup monitor on chardev @var{name}.
258722a0e04bSGerd HoffmannETEXI
258822a0e04bSGerd Hoffmann
2589c9f398e5SH. Peter AnvinDEF("debugcon", HAS_ARG, QEMU_OPTION_debugcon, \
2590ad96090aSBlue Swirl    "-debugcon dev   redirect the debug console to char device 'dev'\n",
2591ad96090aSBlue Swirl    QEMU_ARCH_ALL)
2592c9f398e5SH. Peter AnvinSTEXI
2593c9f398e5SH. Peter Anvin@item -debugcon @var{dev}
25946616b2adSStefan Weil@findex -debugcon
2595c9f398e5SH. Peter AnvinRedirect the debug console to host device @var{dev} (same devices as the
2596c9f398e5SH. Peter Anvinserial port).  The debug console is an I/O port which is typically port
2597c9f398e5SH. Peter Anvin0xe9; writing to that I/O port sends output to this device.
2598c9f398e5SH. Peter AnvinThe default device is @code{vc} in graphical mode and @code{stdio} in
2599c9f398e5SH. Peter Anvinnon graphical mode.
2600c9f398e5SH. Peter AnvinETEXI
2601c9f398e5SH. Peter Anvin
26025824d651Sblueswir1DEF("pidfile", HAS_ARG, QEMU_OPTION_pidfile, \
2603ad96090aSBlue Swirl    "-pidfile file   write PID to 'file'\n", QEMU_ARCH_ALL)
26045824d651Sblueswir1STEXI
26055824d651Sblueswir1@item -pidfile @var{file}
26066616b2adSStefan Weil@findex -pidfile
26075824d651Sblueswir1Store the QEMU process PID in @var{file}. It is useful if you launch QEMU
26085824d651Sblueswir1from a script.
26095824d651Sblueswir1ETEXI
26105824d651Sblueswir1
26111b530a6dSaurel32DEF("singlestep", 0, QEMU_OPTION_singlestep, \
2612ad96090aSBlue Swirl    "-singlestep     always run in singlestep mode\n", QEMU_ARCH_ALL)
26131b530a6dSaurel32STEXI
26141b530a6dSaurel32@item -singlestep
26156616b2adSStefan Weil@findex -singlestep
26161b530a6dSaurel32Run the emulation in single step mode.
26171b530a6dSaurel32ETEXI
26181b530a6dSaurel32
26195824d651Sblueswir1DEF("S", 0, QEMU_OPTION_S, \
2620ad96090aSBlue Swirl    "-S              freeze CPU at startup (use 'c' to start execution)\n",
2621ad96090aSBlue Swirl    QEMU_ARCH_ALL)
26225824d651Sblueswir1STEXI
26235824d651Sblueswir1@item -S
26246616b2adSStefan Weil@findex -S
26255824d651Sblueswir1Do not start CPU at startup (you must type 'c' in the monitor).
26265824d651Sblueswir1ETEXI
26275824d651Sblueswir1
2628888a6bc6SSatoru MoriyaDEF("realtime", HAS_ARG, QEMU_OPTION_realtime,
2629888a6bc6SSatoru Moriya    "-realtime [mlock=on|off]\n"
2630888a6bc6SSatoru Moriya    "                run qemu with realtime features\n"
2631888a6bc6SSatoru Moriya    "                mlock=on|off controls mlock support (default: on)\n",
2632888a6bc6SSatoru Moriya    QEMU_ARCH_ALL)
2633888a6bc6SSatoru MoriyaSTEXI
2634888a6bc6SSatoru Moriya@item -realtime mlock=on|off
2635888a6bc6SSatoru Moriya@findex -realtime
2636888a6bc6SSatoru MoriyaRun qemu with realtime features.
2637888a6bc6SSatoru Moriyamlocking qemu and guest memory can be enabled via @option{mlock=on}
2638888a6bc6SSatoru Moriya(enabled by default).
2639888a6bc6SSatoru MoriyaETEXI
2640888a6bc6SSatoru Moriya
264159030a8cSaliguoriDEF("gdb", HAS_ARG, QEMU_OPTION_gdb, \
2642ad96090aSBlue Swirl    "-gdb dev        wait for gdb connection on 'dev'\n", QEMU_ARCH_ALL)
26435824d651Sblueswir1STEXI
264459030a8cSaliguori@item -gdb @var{dev}
26456616b2adSStefan Weil@findex -gdb
264659030a8cSaliguoriWait for gdb connection on device @var{dev} (@pxref{gdb_usage}). Typical
264759030a8cSaliguoriconnections will likely be TCP-based, but also UDP, pseudo TTY, or even
2648b65ee4faSStefan Weilstdio are reasonable use case. The latter is allowing to start QEMU from
264959030a8cSaliguoriwithin gdb and establish the connection via a pipe:
265059030a8cSaliguori@example
26513804da9dSStefan Weil(gdb) target remote | exec qemu-system-i386 -gdb stdio ...
265259030a8cSaliguori@end example
26535824d651Sblueswir1ETEXI
26545824d651Sblueswir1
265559030a8cSaliguoriDEF("s", 0, QEMU_OPTION_s, \
2656ad96090aSBlue Swirl    "-s              shorthand for -gdb tcp::" DEFAULT_GDBSTUB_PORT "\n",
2657ad96090aSBlue Swirl    QEMU_ARCH_ALL)
26585824d651Sblueswir1STEXI
265959030a8cSaliguori@item -s
26606616b2adSStefan Weil@findex -s
266159030a8cSaliguoriShorthand for -gdb tcp::1234, i.e. open a gdbserver on TCP port 1234
266259030a8cSaliguori(@pxref{gdb_usage}).
26635824d651Sblueswir1ETEXI
26645824d651Sblueswir1
26655824d651Sblueswir1DEF("d", HAS_ARG, QEMU_OPTION_d, \
2666989b697dSPeter Maydell    "-d item1,...    enable logging of specified items (use '-d help' for a list of log items)\n",
2667ad96090aSBlue Swirl    QEMU_ARCH_ALL)
26685824d651Sblueswir1STEXI
2669989b697dSPeter Maydell@item -d @var{item1}[,...]
26706616b2adSStefan Weil@findex -d
2671989b697dSPeter MaydellEnable logging of specified items. Use '-d help' for a list of log items.
26725824d651Sblueswir1ETEXI
26735824d651Sblueswir1
2674c235d738SMatthew FernandezDEF("D", HAS_ARG, QEMU_OPTION_D, \
2675989b697dSPeter Maydell    "-D logfile      output log to logfile (default stderr)\n",
2676c235d738SMatthew Fernandez    QEMU_ARCH_ALL)
2677c235d738SMatthew FernandezSTEXI
26788bd383b4SStefan Weil@item -D @var{logfile}
2679c235d738SMatthew Fernandez@findex -D
2680989b697dSPeter MaydellOutput log in @var{logfile} instead of to stderr
2681c235d738SMatthew FernandezETEXI
2682c235d738SMatthew Fernandez
26835824d651Sblueswir1DEF("L", HAS_ARG, QEMU_OPTION_L, \
2684ad96090aSBlue Swirl    "-L path         set the directory for the BIOS, VGA BIOS and keymaps\n",
2685ad96090aSBlue Swirl    QEMU_ARCH_ALL)
26865824d651Sblueswir1STEXI
26875824d651Sblueswir1@item -L  @var{path}
26886616b2adSStefan Weil@findex -L
26895824d651Sblueswir1Set the directory for the BIOS, VGA BIOS and keymaps.
26905824d651Sblueswir1ETEXI
26915824d651Sblueswir1
26925824d651Sblueswir1DEF("bios", HAS_ARG, QEMU_OPTION_bios, \
2693ad96090aSBlue Swirl    "-bios file      set the filename for the BIOS\n", QEMU_ARCH_ALL)
26945824d651Sblueswir1STEXI
26955824d651Sblueswir1@item -bios @var{file}
26966616b2adSStefan Weil@findex -bios
26975824d651Sblueswir1Set the filename for the BIOS.
26985824d651Sblueswir1ETEXI
26995824d651Sblueswir1
27005824d651Sblueswir1DEF("enable-kvm", 0, QEMU_OPTION_enable_kvm, \
2701ad96090aSBlue Swirl    "-enable-kvm     enable KVM full virtualization support\n", QEMU_ARCH_ALL)
27025824d651Sblueswir1STEXI
27035824d651Sblueswir1@item -enable-kvm
27046616b2adSStefan Weil@findex -enable-kvm
27055824d651Sblueswir1Enable KVM full virtualization support. This option is only available
27065824d651Sblueswir1if KVM support is enabled when compiling.
27075824d651Sblueswir1ETEXI
27085824d651Sblueswir1
2709e37630caSaliguoriDEF("xen-domid", HAS_ARG, QEMU_OPTION_xen_domid,
2710ad96090aSBlue Swirl    "-xen-domid id   specify xen guest domain id\n", QEMU_ARCH_ALL)
2711e37630caSaliguoriDEF("xen-create", 0, QEMU_OPTION_xen_create,
2712e37630caSaliguori    "-xen-create     create domain using xen hypercalls, bypassing xend\n"
2713ad96090aSBlue Swirl    "                warning: should not be used when xend is in use\n",
2714ad96090aSBlue Swirl    QEMU_ARCH_ALL)
2715e37630caSaliguoriDEF("xen-attach", 0, QEMU_OPTION_xen_attach,
2716e37630caSaliguori    "-xen-attach     attach to existing xen domain\n"
2717b65ee4faSStefan Weil    "                xend will use this when starting QEMU\n",
2718ad96090aSBlue Swirl    QEMU_ARCH_ALL)
271995d5f08bSStefan WeilSTEXI
272095d5f08bSStefan Weil@item -xen-domid @var{id}
27216616b2adSStefan Weil@findex -xen-domid
272295d5f08bSStefan WeilSpecify xen guest domain @var{id} (XEN only).
272395d5f08bSStefan Weil@item -xen-create
27246616b2adSStefan Weil@findex -xen-create
272595d5f08bSStefan WeilCreate domain using xen hypercalls, bypassing xend.
272695d5f08bSStefan WeilWarning: should not be used when xend is in use (XEN only).
272795d5f08bSStefan Weil@item -xen-attach
27286616b2adSStefan Weil@findex -xen-attach
272995d5f08bSStefan WeilAttach to existing xen domain.
2730b65ee4faSStefan Weilxend will use this when starting QEMU (XEN only).
273195d5f08bSStefan WeilETEXI
2732e37630caSaliguori
27335824d651Sblueswir1DEF("no-reboot", 0, QEMU_OPTION_no_reboot, \
2734ad96090aSBlue Swirl    "-no-reboot      exit instead of rebooting\n", QEMU_ARCH_ALL)
27355824d651Sblueswir1STEXI
27365824d651Sblueswir1@item -no-reboot
27376616b2adSStefan Weil@findex -no-reboot
27385824d651Sblueswir1Exit instead of rebooting.
27395824d651Sblueswir1ETEXI
27405824d651Sblueswir1
27415824d651Sblueswir1DEF("no-shutdown", 0, QEMU_OPTION_no_shutdown, \
2742ad96090aSBlue Swirl    "-no-shutdown    stop before shutdown\n", QEMU_ARCH_ALL)
27435824d651Sblueswir1STEXI
27445824d651Sblueswir1@item -no-shutdown
27456616b2adSStefan Weil@findex -no-shutdown
27465824d651Sblueswir1Don't exit QEMU on guest shutdown, but instead only stop the emulation.
27475824d651Sblueswir1This allows for instance switching to monitor to commit changes to the
27485824d651Sblueswir1disk image.
27495824d651Sblueswir1ETEXI
27505824d651Sblueswir1
27515824d651Sblueswir1DEF("loadvm", HAS_ARG, QEMU_OPTION_loadvm, \
27525824d651Sblueswir1    "-loadvm [tag|id]\n" \
2753ad96090aSBlue Swirl    "                start right away with a saved state (loadvm in monitor)\n",
2754ad96090aSBlue Swirl    QEMU_ARCH_ALL)
27555824d651Sblueswir1STEXI
27565824d651Sblueswir1@item -loadvm @var{file}
27576616b2adSStefan Weil@findex -loadvm
27585824d651Sblueswir1Start right away with a saved state (@code{loadvm} in monitor)
27595824d651Sblueswir1ETEXI
27605824d651Sblueswir1
27615824d651Sblueswir1#ifndef _WIN32
27625824d651Sblueswir1DEF("daemonize", 0, QEMU_OPTION_daemonize, \
2763ad96090aSBlue Swirl    "-daemonize      daemonize QEMU after initializing\n", QEMU_ARCH_ALL)
27645824d651Sblueswir1#endif
27655824d651Sblueswir1STEXI
27665824d651Sblueswir1@item -daemonize
27676616b2adSStefan Weil@findex -daemonize
27685824d651Sblueswir1Daemonize the QEMU process after initialization.  QEMU will not detach from
27695824d651Sblueswir1standard IO until it is ready to receive connections on any of its devices.
27705824d651Sblueswir1This option is a useful way for external programs to launch QEMU without having
27715824d651Sblueswir1to cope with initialization race conditions.
27725824d651Sblueswir1ETEXI
27735824d651Sblueswir1
27745824d651Sblueswir1DEF("option-rom", HAS_ARG, QEMU_OPTION_option_rom, \
2775ad96090aSBlue Swirl    "-option-rom rom load a file, rom, into the option ROM space\n",
2776ad96090aSBlue Swirl    QEMU_ARCH_ALL)
27775824d651Sblueswir1STEXI
27785824d651Sblueswir1@item -option-rom @var{file}
27796616b2adSStefan Weil@findex -option-rom
27805824d651Sblueswir1Load the contents of @var{file} as an option ROM.
27815824d651Sblueswir1This option is useful to load things like EtherBoot.
27825824d651Sblueswir1ETEXI
27835824d651Sblueswir1
27845824d651Sblueswir1DEF("clock", HAS_ARG, QEMU_OPTION_clock, \
27855824d651Sblueswir1    "-clock          force the use of the given methods for timer alarm.\n" \
2786585f6036SPeter Maydell    "                To see what timers are available use '-clock help'\n",
2787ad96090aSBlue Swirl    QEMU_ARCH_ALL)
27885824d651Sblueswir1STEXI
27895824d651Sblueswir1@item -clock @var{method}
27906616b2adSStefan Weil@findex -clock
27915824d651Sblueswir1Force the use of the given methods for timer alarm. To see what timers
2792585f6036SPeter Maydellare available use @code{-clock help}.
27935824d651Sblueswir1ETEXI
27945824d651Sblueswir1
27951ed2fc1fSJan KiszkaHXCOMM Options deprecated by -rtc
2796ad96090aSBlue SwirlDEF("localtime", 0, QEMU_OPTION_localtime, "", QEMU_ARCH_ALL)
2797ad96090aSBlue SwirlDEF("startdate", HAS_ARG, QEMU_OPTION_startdate, "", QEMU_ARCH_ALL)
27985824d651Sblueswir1
27991ed2fc1fSJan KiszkaDEF("rtc", HAS_ARG, QEMU_OPTION_rtc, \
280078808141SPaolo Bonzini    "-rtc [base=utc|localtime|date][,clock=host|rt|vm][,driftfix=none|slew]\n" \
2801ad96090aSBlue Swirl    "                set the RTC base and clock, enable drift fix for clock ticks (x86 only)\n",
2802ad96090aSBlue Swirl    QEMU_ARCH_ALL)
28031ed2fc1fSJan Kiszka
28045824d651Sblueswir1STEXI
28055824d651Sblueswir1
28066875204cSJan Kiszka@item -rtc [base=utc|localtime|@var{date}][,clock=host|vm][,driftfix=none|slew]
28076616b2adSStefan Weil@findex -rtc
28081ed2fc1fSJan KiszkaSpecify @option{base} as @code{utc} or @code{localtime} to let the RTC start at the current
28091ed2fc1fSJan KiszkaUTC or local time, respectively. @code{localtime} is required for correct date in
28101ed2fc1fSJan KiszkaMS-DOS or Windows. To start at a specific point in time, provide @var{date} in the
28111ed2fc1fSJan Kiszkaformat @code{2006-06-17T16:01:21} or @code{2006-06-17}. The default base is UTC.
28121ed2fc1fSJan Kiszka
28139d85d557SMichael TokarevBy default the RTC is driven by the host system time. This allows using of the
28146875204cSJan KiszkaRTC as accurate reference clock inside the guest, specifically if the host
28156875204cSJan Kiszkatime is smoothly following an accurate external reference clock, e.g. via NTP.
281678808141SPaolo BonziniIf you want to isolate the guest time from the host, you can set @option{clock}
281778808141SPaolo Bonzinito @code{rt} instead.  To even prevent it from progressing during suspension,
281878808141SPaolo Bonziniyou can set it to @code{vm}.
28196875204cSJan Kiszka
28201ed2fc1fSJan KiszkaEnable @option{driftfix} (i386 targets only) if you experience time drift problems,
28211ed2fc1fSJan Kiszkaspecifically with Windows' ACPI HAL. This option will try to figure out how
28221ed2fc1fSJan Kiszkamany timer interrupts were not processed by the Windows guest and will
28231ed2fc1fSJan Kiszkare-inject them.
28245824d651Sblueswir1ETEXI
28255824d651Sblueswir1
28265824d651Sblueswir1DEF("icount", HAS_ARG, QEMU_OPTION_icount, \
28275824d651Sblueswir1    "-icount [N|auto]\n" \
2828bc14ca24Saliguori    "                enable virtual instruction counter with 2^N clock ticks per\n" \
2829ad96090aSBlue Swirl    "                instruction\n", QEMU_ARCH_ALL)
28305824d651Sblueswir1STEXI
28314e257e5eSKevin Wolf@item -icount [@var{N}|auto]
28326616b2adSStefan Weil@findex -icount
28335824d651Sblueswir1Enable virtual instruction counter.  The virtual cpu will execute one
28344e257e5eSKevin Wolfinstruction every 2^@var{N} ns of virtual time.  If @code{auto} is specified
28355824d651Sblueswir1then the virtual cpu speed will be automatically adjusted to keep virtual
28365824d651Sblueswir1time within a few seconds of real time.
28375824d651Sblueswir1
28385824d651Sblueswir1Note that while this option can give deterministic behavior, it does not
28395824d651Sblueswir1provide cycle accurate emulation.  Modern CPUs contain superscalar out of
28405824d651Sblueswir1order cores with complex cache hierarchies.  The number of instructions
28415824d651Sblueswir1executed often has little or no correlation with actual performance.
28425824d651Sblueswir1ETEXI
28435824d651Sblueswir1
28449dd986ccSRichard W.M. JonesDEF("watchdog", HAS_ARG, QEMU_OPTION_watchdog, \
28459dd986ccSRichard W.M. Jones    "-watchdog i6300esb|ib700\n" \
2846ad96090aSBlue Swirl    "                enable virtual hardware watchdog [default=none]\n",
2847ad96090aSBlue Swirl    QEMU_ARCH_ALL)
28489dd986ccSRichard W.M. JonesSTEXI
28499dd986ccSRichard W.M. Jones@item -watchdog @var{model}
28506616b2adSStefan Weil@findex -watchdog
28519dd986ccSRichard W.M. JonesCreate a virtual hardware watchdog device.  Once enabled (by a guest
28529dd986ccSRichard W.M. Jonesaction), the watchdog must be periodically polled by an agent inside
28539dd986ccSRichard W.M. Jonesthe guest or else the guest will be restarted.
28549dd986ccSRichard W.M. Jones
28559dd986ccSRichard W.M. JonesThe @var{model} is the model of hardware watchdog to emulate.  Choices
28569dd986ccSRichard W.M. Jonesfor model are: @code{ib700} (iBASE 700) which is a very simple ISA
28579dd986ccSRichard W.M. Joneswatchdog with a single timer, or @code{i6300esb} (Intel 6300ESB I/O
28589dd986ccSRichard W.M. Jonescontroller hub) which is a much more featureful PCI-based dual-timer
28599dd986ccSRichard W.M. Joneswatchdog.  Choose a model for which your guest has drivers.
28609dd986ccSRichard W.M. Jones
2861585f6036SPeter MaydellUse @code{-watchdog help} to list available hardware models.  Only one
28629dd986ccSRichard W.M. Joneswatchdog can be enabled for a guest.
28639dd986ccSRichard W.M. JonesETEXI
28649dd986ccSRichard W.M. Jones
28659dd986ccSRichard W.M. JonesDEF("watchdog-action", HAS_ARG, QEMU_OPTION_watchdog_action, \
28669dd986ccSRichard W.M. Jones    "-watchdog-action reset|shutdown|poweroff|pause|debug|none\n" \
2867ad96090aSBlue Swirl    "                action when watchdog fires [default=reset]\n",
2868ad96090aSBlue Swirl    QEMU_ARCH_ALL)
28699dd986ccSRichard W.M. JonesSTEXI
28709dd986ccSRichard W.M. Jones@item -watchdog-action @var{action}
2871b8f490ebSMarkus Armbruster@findex -watchdog-action
28729dd986ccSRichard W.M. Jones
28739dd986ccSRichard W.M. JonesThe @var{action} controls what QEMU will do when the watchdog timer
28749dd986ccSRichard W.M. Jonesexpires.
28759dd986ccSRichard W.M. JonesThe default is
28769dd986ccSRichard W.M. Jones@code{reset} (forcefully reset the guest).
28779dd986ccSRichard W.M. JonesOther possible actions are:
28789dd986ccSRichard W.M. Jones@code{shutdown} (attempt to gracefully shutdown the guest),
28799dd986ccSRichard W.M. Jones@code{poweroff} (forcefully poweroff the guest),
28809dd986ccSRichard W.M. Jones@code{pause} (pause the guest),
28819dd986ccSRichard W.M. Jones@code{debug} (print a debug message and continue), or
28829dd986ccSRichard W.M. Jones@code{none} (do nothing).
28839dd986ccSRichard W.M. Jones
28849dd986ccSRichard W.M. JonesNote that the @code{shutdown} action requires that the guest responds
28859dd986ccSRichard W.M. Jonesto ACPI signals, which it may not be able to do in the sort of
28869dd986ccSRichard W.M. Jonessituations where the watchdog would have expired, and thus
28879dd986ccSRichard W.M. Jones@code{-watchdog-action shutdown} is not recommended for production use.
28889dd986ccSRichard W.M. Jones
28899dd986ccSRichard W.M. JonesExamples:
28909dd986ccSRichard W.M. Jones
28919dd986ccSRichard W.M. Jones@table @code
28929dd986ccSRichard W.M. Jones@item -watchdog i6300esb -watchdog-action pause
28939dd986ccSRichard W.M. Jones@item -watchdog ib700
28949dd986ccSRichard W.M. Jones@end table
28959dd986ccSRichard W.M. JonesETEXI
28969dd986ccSRichard W.M. Jones
28975824d651Sblueswir1DEF("echr", HAS_ARG, QEMU_OPTION_echr, \
2898ad96090aSBlue Swirl    "-echr chr       set terminal escape character instead of ctrl-a\n",
2899ad96090aSBlue Swirl    QEMU_ARCH_ALL)
29005824d651Sblueswir1STEXI
29015824d651Sblueswir1
29024e257e5eSKevin Wolf@item -echr @var{numeric_ascii_value}
29036616b2adSStefan Weil@findex -echr
29045824d651Sblueswir1Change the escape character used for switching to the monitor when using
29055824d651Sblueswir1monitor and serial sharing.  The default is @code{0x01} when using the
29065824d651Sblueswir1@code{-nographic} option.  @code{0x01} is equal to pressing
29075824d651Sblueswir1@code{Control-a}.  You can select a different character from the ascii
29085824d651Sblueswir1control keys where 1 through 26 map to Control-a through Control-z.  For
29095824d651Sblueswir1instance you could use the either of the following to change the escape
29105824d651Sblueswir1character to Control-t.
29115824d651Sblueswir1@table @code
29125824d651Sblueswir1@item -echr 0x14
29135824d651Sblueswir1@item -echr 20
29145824d651Sblueswir1@end table
29155824d651Sblueswir1ETEXI
29165824d651Sblueswir1
29175824d651Sblueswir1DEF("virtioconsole", HAS_ARG, QEMU_OPTION_virtiocon, \
29185824d651Sblueswir1    "-virtioconsole c\n" \
2919ad96090aSBlue Swirl    "                set virtio console\n", QEMU_ARCH_ALL)
29205824d651Sblueswir1STEXI
29215824d651Sblueswir1@item -virtioconsole @var{c}
29226616b2adSStefan Weil@findex -virtioconsole
29235824d651Sblueswir1Set virtio console.
292498b19252SAmit Shah
292598b19252SAmit ShahThis option is maintained for backward compatibility.
292698b19252SAmit Shah
292798b19252SAmit ShahPlease use @code{-device virtconsole} for the new way of invocation.
29285824d651Sblueswir1ETEXI
29295824d651Sblueswir1
29305824d651Sblueswir1DEF("show-cursor", 0, QEMU_OPTION_show_cursor, \
2931ad96090aSBlue Swirl    "-show-cursor    show cursor\n", QEMU_ARCH_ALL)
29325824d651Sblueswir1STEXI
293395d5f08bSStefan Weil@item -show-cursor
29346616b2adSStefan Weil@findex -show-cursor
293595d5f08bSStefan WeilShow cursor.
29365824d651Sblueswir1ETEXI
29375824d651Sblueswir1
29385824d651Sblueswir1DEF("tb-size", HAS_ARG, QEMU_OPTION_tb_size, \
2939ad96090aSBlue Swirl    "-tb-size n      set TB size\n", QEMU_ARCH_ALL)
29405824d651Sblueswir1STEXI
294195d5f08bSStefan Weil@item -tb-size @var{n}
29426616b2adSStefan Weil@findex -tb-size
294395d5f08bSStefan WeilSet TB size.
29445824d651Sblueswir1ETEXI
29455824d651Sblueswir1
29465824d651Sblueswir1DEF("incoming", HAS_ARG, QEMU_OPTION_incoming, \
2947ad96090aSBlue Swirl    "-incoming p     prepare for incoming migration, listen on port p\n",
2948ad96090aSBlue Swirl    QEMU_ARCH_ALL)
29495824d651Sblueswir1STEXI
295095d5f08bSStefan Weil@item -incoming @var{port}
29516616b2adSStefan Weil@findex -incoming
295295d5f08bSStefan WeilPrepare for incoming migration, listen on @var{port}.
29535824d651Sblueswir1ETEXI
29545824d651Sblueswir1
2955d8c208ddSGerd HoffmannDEF("nodefaults", 0, QEMU_OPTION_nodefaults, \
2956ad96090aSBlue Swirl    "-nodefaults     don't create default devices\n", QEMU_ARCH_ALL)
2957d8c208ddSGerd HoffmannSTEXI
29583dbf2c7fSStefan Weil@item -nodefaults
29596616b2adSStefan Weil@findex -nodefaults
296066c19bf1SMichal NovotnyDon't create default devices. Normally, QEMU sets the default devices like serial
296166c19bf1SMichal Novotnyport, parallel port, virtual console, monitor device, VGA adapter, floppy and
296266c19bf1SMichal NovotnyCD-ROM drive and others. The @code{-nodefaults} option will disable all those
296366c19bf1SMichal Novotnydefault devices.
2964d8c208ddSGerd HoffmannETEXI
2965d8c208ddSGerd Hoffmann
29665824d651Sblueswir1#ifndef _WIN32
29675824d651Sblueswir1DEF("chroot", HAS_ARG, QEMU_OPTION_chroot, \
2968ad96090aSBlue Swirl    "-chroot dir     chroot to dir just before starting the VM\n",
2969ad96090aSBlue Swirl    QEMU_ARCH_ALL)
29705824d651Sblueswir1#endif
29715824d651Sblueswir1STEXI
29724e257e5eSKevin Wolf@item -chroot @var{dir}
29736616b2adSStefan Weil@findex -chroot
29745824d651Sblueswir1Immediately before starting guest execution, chroot to the specified
29755824d651Sblueswir1directory.  Especially useful in combination with -runas.
29765824d651Sblueswir1ETEXI
29775824d651Sblueswir1
29785824d651Sblueswir1#ifndef _WIN32
29795824d651Sblueswir1DEF("runas", HAS_ARG, QEMU_OPTION_runas, \
2980ad96090aSBlue Swirl    "-runas user     change to user id user just before starting the VM\n",
2981ad96090aSBlue Swirl    QEMU_ARCH_ALL)
29825824d651Sblueswir1#endif
29835824d651Sblueswir1STEXI
29844e257e5eSKevin Wolf@item -runas @var{user}
29856616b2adSStefan Weil@findex -runas
29865824d651Sblueswir1Immediately before starting guest execution, drop root privileges, switching
29875824d651Sblueswir1to the specified user.
29885824d651Sblueswir1ETEXI
29895824d651Sblueswir1
29905824d651Sblueswir1DEF("prom-env", HAS_ARG, QEMU_OPTION_prom_env,
29915824d651Sblueswir1    "-prom-env variable=value\n"
2992ad96090aSBlue Swirl    "                set OpenBIOS nvram variables\n",
2993ad96090aSBlue Swirl    QEMU_ARCH_PPC | QEMU_ARCH_SPARC)
299495d5f08bSStefan WeilSTEXI
299595d5f08bSStefan Weil@item -prom-env @var{variable}=@var{value}
29966616b2adSStefan Weil@findex -prom-env
299795d5f08bSStefan WeilSet OpenBIOS nvram @var{variable} to given @var{value} (PPC, SPARC only).
299895d5f08bSStefan WeilETEXI
29995824d651Sblueswir1DEF("semihosting", 0, QEMU_OPTION_semihosting,
30001ddeaa5dSMax Filippov    "-semihosting    semihosting mode\n", QEMU_ARCH_ARM | QEMU_ARCH_M68K | QEMU_ARCH_XTENSA)
300195d5f08bSStefan WeilSTEXI
300295d5f08bSStefan Weil@item -semihosting
30036616b2adSStefan Weil@findex -semihosting
30041ddeaa5dSMax FilippovSemihosting mode (ARM, M68K, Xtensa only).
300595d5f08bSStefan WeilETEXI
30065824d651Sblueswir1DEF("old-param", 0, QEMU_OPTION_old_param,
3007ad96090aSBlue Swirl    "-old-param      old param mode\n", QEMU_ARCH_ARM)
300895d5f08bSStefan WeilSTEXI
300995d5f08bSStefan Weil@item -old-param
30106616b2adSStefan Weil@findex -old-param (ARM)
301195d5f08bSStefan WeilOld param mode (ARM only).
301295d5f08bSStefan WeilETEXI
301395d5f08bSStefan Weil
30147d76ad4fSEduardo OtuboDEF("sandbox", HAS_ARG, QEMU_OPTION_sandbox, \
30157d76ad4fSEduardo Otubo    "-sandbox <arg>  Enable seccomp mode 2 system call filter (default 'off').\n",
30167d76ad4fSEduardo Otubo    QEMU_ARCH_ALL)
30177d76ad4fSEduardo OtuboSTEXI
30186265c43bSMarkus Armbruster@item -sandbox @var{arg}
30197d76ad4fSEduardo Otubo@findex -sandbox
30207d76ad4fSEduardo OtuboEnable Seccomp mode 2 system call filter. 'on' will enable syscall filtering and 'off' will
30217d76ad4fSEduardo Otubodisable it.  The default is 'off'.
30227d76ad4fSEduardo OtuboETEXI
30237d76ad4fSEduardo Otubo
3024715a664aSGerd HoffmannDEF("readconfig", HAS_ARG, QEMU_OPTION_readconfig,
3025ad96090aSBlue Swirl    "-readconfig <file>\n", QEMU_ARCH_ALL)
30263dbf2c7fSStefan WeilSTEXI
30273dbf2c7fSStefan Weil@item -readconfig @var{file}
30286616b2adSStefan Weil@findex -readconfig
3029ed24cfacSMichal NovotnyRead device configuration from @var{file}. This approach is useful when you want to spawn
3030ed24cfacSMichal NovotnyQEMU process with many command line options but you don't want to exceed the command line
3031ed24cfacSMichal Novotnycharacter limit.
30323dbf2c7fSStefan WeilETEXI
3033715a664aSGerd HoffmannDEF("writeconfig", HAS_ARG, QEMU_OPTION_writeconfig,
3034715a664aSGerd Hoffmann    "-writeconfig <file>\n"
3035ad96090aSBlue Swirl    "                read/write config file\n", QEMU_ARCH_ALL)
30363dbf2c7fSStefan WeilSTEXI
30373dbf2c7fSStefan Weil@item -writeconfig @var{file}
30386616b2adSStefan Weil@findex -writeconfig
3039ed24cfacSMichal NovotnyWrite device configuration to @var{file}. The @var{file} can be either filename to save
3040ed24cfacSMichal Novotnycommand line and device configuration into file or dash @code{-}) character to print the
3041ed24cfacSMichal Novotnyoutput to stdout. This can be later used as input file for @code{-readconfig} option.
30423dbf2c7fSStefan WeilETEXI
3043292444cbSAnthony LiguoriDEF("nodefconfig", 0, QEMU_OPTION_nodefconfig,
3044292444cbSAnthony Liguori    "-nodefconfig\n"
3045ad96090aSBlue Swirl    "                do not load default config files at startup\n",
3046ad96090aSBlue Swirl    QEMU_ARCH_ALL)
3047292444cbSAnthony LiguoriSTEXI
3048292444cbSAnthony Liguori@item -nodefconfig
30496616b2adSStefan Weil@findex -nodefconfig
3050f29a5614SEduardo HabkostNormally QEMU loads configuration files from @var{sysconfdir} and @var{datadir} at startup.
3051f29a5614SEduardo HabkostThe @code{-nodefconfig} option will prevent QEMU from loading any of those config files.
3052f29a5614SEduardo HabkostETEXI
3053f29a5614SEduardo HabkostDEF("no-user-config", 0, QEMU_OPTION_nouserconfig,
3054f29a5614SEduardo Habkost    "-no-user-config\n"
3055f29a5614SEduardo Habkost    "                do not load user-provided config files at startup\n",
3056f29a5614SEduardo Habkost    QEMU_ARCH_ALL)
3057f29a5614SEduardo HabkostSTEXI
3058f29a5614SEduardo Habkost@item -no-user-config
3059f29a5614SEduardo Habkost@findex -no-user-config
3060f29a5614SEduardo HabkostThe @code{-no-user-config} option makes QEMU not load any of the user-provided
3061f29a5614SEduardo Habkostconfig files on @var{sysconfdir}, but won't make it skip the QEMU-provided config
3062f29a5614SEduardo Habkostfiles from @var{datadir}.
3063292444cbSAnthony LiguoriETEXI
3064ab6540d5SPrerna SaxenaDEF("trace", HAS_ARG, QEMU_OPTION_trace,
306523d15e86SLluís    "-trace [events=<file>][,file=<file>]\n"
306623d15e86SLluís    "                specify tracing options\n",
3067ab6540d5SPrerna Saxena    QEMU_ARCH_ALL)
3068ab6540d5SPrerna SaxenaSTEXI
306923d15e86SLluísHXCOMM This line is not accurate, as some sub-options are backend-specific but
307023d15e86SLluísHXCOMM HX does not support conditional compilation of text.
307123d15e86SLluís@item -trace [events=@var{file}][,file=@var{file}]
3072ab6540d5SPrerna Saxena@findex -trace
3073e4858974SLluís
307423d15e86SLluísSpecify tracing options.
307523d15e86SLluís
307623d15e86SLluís@table @option
307723d15e86SLluís@item events=@var{file}
307823d15e86SLluísImmediately enable events listed in @var{file}.
307923d15e86SLluísThe file must contain one event name (as listed in the @var{trace-events} file)
308023d15e86SLluísper line.
3081c1ba4e0bSStefan WeilThis option is only available if QEMU has been compiled with
3082c1ba4e0bSStefan Weileither @var{simple} or @var{stderr} tracing backend.
308323d15e86SLluís@item file=@var{file}
308423d15e86SLluísLog output traces to @var{file}.
308523d15e86SLluís
3086c1ba4e0bSStefan WeilThis option is only available if QEMU has been compiled with
3087c1ba4e0bSStefan Weilthe @var{simple} tracing backend.
308823d15e86SLluís@end table
3089ab6540d5SPrerna SaxenaETEXI
30903dbf2c7fSStefan Weil
309131e70d6cSMarkus ArmbrusterHXCOMM Internal use
309231e70d6cSMarkus ArmbrusterDEF("qtest", HAS_ARG, QEMU_OPTION_qtest, "", QEMU_ARCH_ALL)
309331e70d6cSMarkus ArmbrusterDEF("qtest-log", HAS_ARG, QEMU_OPTION_qtest_log, "", QEMU_ARCH_ALL)
3094c7f0f3b1SAnthony Liguori
30950f66998fSPaul Moore#ifdef __linux__
30960f66998fSPaul MooreDEF("enable-fips", 0, QEMU_OPTION_enablefips,
30970f66998fSPaul Moore    "-enable-fips    enable FIPS 140-2 compliance\n",
30980f66998fSPaul Moore    QEMU_ARCH_ALL)
30990f66998fSPaul Moore#endif
31000f66998fSPaul MooreSTEXI
31010f66998fSPaul Moore@item -enable-fips
31020f66998fSPaul Moore@findex -enable-fips
31030f66998fSPaul MooreEnable FIPS 140-2 compliance mode.
31040f66998fSPaul MooreETEXI
31050f66998fSPaul Moore
3106a0dac021SJan KiszkaHXCOMM Deprecated by -machine accel=tcg property
3107c6e88b3bSBruce RogersDEF("no-kvm", 0, QEMU_OPTION_no_kvm, "", QEMU_ARCH_I386)
3108a0dac021SJan Kiszka
3109c21fb4f8SJan KiszkaHXCOMM Deprecated by kvm-pit driver properties
3110c6e88b3bSBruce RogersDEF("no-kvm-pit-reinjection", 0, QEMU_OPTION_no_kvm_pit_reinjection,
3111c21fb4f8SJan Kiszka    "", QEMU_ARCH_I386)
3112c21fb4f8SJan Kiszka
31134086bde8SJan KiszkaHXCOMM Deprecated (ignored)
3114c6e88b3bSBruce RogersDEF("no-kvm-pit", 0, QEMU_OPTION_no_kvm_pit, "", QEMU_ARCH_I386)
31154086bde8SJan Kiszka
3116e43d594eSJan KiszkaHXCOMM Deprecated by -machine kernel_irqchip=on|off property
3117c6e88b3bSBruce RogersDEF("no-kvm-irqchip", 0, QEMU_OPTION_no_kvm_irqchip, "", QEMU_ARCH_I386)
3118e43d594eSJan Kiszka
311988eed34aSJan KiszkaHXCOMM Deprecated (ignored)
312088eed34aSJan KiszkaDEF("tdf", 0, QEMU_OPTION_tdf,"", QEMU_ARCH_ALL)
312188eed34aSJan Kiszka
312268d98d3eSAnthony LiguoriDEF("object", HAS_ARG, QEMU_OPTION_object,
312368d98d3eSAnthony Liguori    "-object TYPENAME[,PROP1=VALUE1,...]\n"
312468d98d3eSAnthony Liguori    "                create an new object of type TYPENAME setting properties\n"
312568d98d3eSAnthony Liguori    "                in the order they are specified.  Note that the 'id'\n"
312668d98d3eSAnthony Liguori    "                property must be set.  These objects are placed in the\n"
312768d98d3eSAnthony Liguori    "                '/objects' path.\n",
312868d98d3eSAnthony Liguori    QEMU_ARCH_ALL)
31296265c43bSMarkus ArmbrusterSTEXI
31306265c43bSMarkus Armbruster@item -object @var{typename}[,@var{prop1}=@var{value1},...]
31316265c43bSMarkus Armbruster@findex -object
31326265c43bSMarkus ArmbrusterCreate an new object of type @var{typename} setting properties
31336265c43bSMarkus Armbrusterin the order they are specified.  Note that the 'id'
31346265c43bSMarkus Armbrusterproperty must be set.  These objects are placed in the
31356265c43bSMarkus Armbruster'/objects' path.
31366265c43bSMarkus ArmbrusterETEXI
313768d98d3eSAnthony Liguori
31385e2ac519SSeiji AguchiDEF("msg", HAS_ARG, QEMU_OPTION_msg,
31395e2ac519SSeiji Aguchi    "-msg timestamp[=on|off]\n"
31405e2ac519SSeiji Aguchi    "                change the format of messages\n"
31415e2ac519SSeiji Aguchi    "                on|off controls leading timestamps (default:on)\n",
31425e2ac519SSeiji Aguchi    QEMU_ARCH_ALL)
31435e2ac519SSeiji AguchiSTEXI
31445e2ac519SSeiji Aguchi@item -msg timestamp[=on|off]
31455e2ac519SSeiji Aguchi@findex -msg
31465e2ac519SSeiji Aguchiprepend a timestamp to each log message.(default:on)
31475e2ac519SSeiji AguchiETEXI
31485e2ac519SSeiji Aguchi
31493dbf2c7fSStefan WeilHXCOMM This is the last statement. Insert new options before this line!
31503dbf2c7fSStefan WeilSTEXI
31513dbf2c7fSStefan Weil@end table
31523dbf2c7fSStefan WeilETEXI
3153