最美情侣中文字幕电影,在线麻豆精品传媒,在线网站高清黄,久久黄色视频

歡迎光臨散文網(wǎng) 會(huì)員登陸 & 注冊(cè)

[QEMU]設(shè)備網(wǎng)址語法

2022-07-24 17:38 作者:-小白之家-  | 我要投稿

除了對(duì)模擬存儲(chǔ)設(shè)備使用普通文件映像外,QEMU 還可以使用網(wǎng)絡(luò)資源,如 iSCSI 設(shè)備。這些是使用特殊的 URL 語法指定的。

  • iSCSI

  • iSCSI 支持允許 QEMU 直接訪問 iSCSI 資源,并用作來賓存儲(chǔ)的映像。同時(shí)支持磁盤和 CDROM 映像。

    指定 iSCSI LUN 的語法是“iscsi://<target-ip>[:<port>]/<target-iqn>/<lun>”

    默認(rèn)情況下,qemu 將使用 iSCSI 發(fā)起程序名稱 'iqn.2008-11.org.linux-kvm[:<name>]“,但這也可以從命令行或配置文件進(jìn)行設(shè)置。

    從版本 QEMU 2.4 開始,可以指定 iSCSI 請(qǐng)求超時(shí)來檢測(cè)停止的請(qǐng)求并強(qiáng)制重新建立會(huì)話。超時(shí)以秒為單位指定。默認(rèn)值為 0,表示無超時(shí)。此功能需要 Libiscsi 1.15.0 或更高版本。

    示例(不帶身份驗(yàn)證):

    qemu-system-x86_64 -iscsi initiator-name=iqn.2001-04.com.example:my-initiator \ ? ? ? ? ? ? ? ? -cdrom iscsi://192.0.2.1/iqn.2001-04.com.example/2 \ ? ? ? ? ? ? ? ? -drive file=iscsi://192.0.2.1/iqn.2001-04.com.example/1

    示例(通過 URL 的 CHAP 用戶名/密碼):

    qemu-system-x86_64 -drive file=iscsi://user%password@192.0.2.1/iqn.2001-04.com.example/1

    示例(通過環(huán)境變量的 CHAP 用戶名/密碼):

    LIBISCSI_CHAP_USERNAME="user" \ LIBISCSI_CHAP_PASSWORD="password" \ qemu-system-x86_64 -drive file=iscsi://192.0.2.1/iqn.2001-04.com.example/1

  • NBD

  • QEMU支持NBD(網(wǎng)絡(luò)塊設(shè)備),既使用TCP協(xié)議,也支持Unix域套接字。使用 TCP 時(shí),默認(rèn)端口為 10809。

    使用 TCP 指定 NBD 設(shè)備的語法,采用首選 URI 形式:“nbd://<server-ip>[:<port>]/[<export>]”

    使用Unix域套接字指定NBD設(shè)備的語法;請(qǐng)記住,'?'是一個(gè)shell glob字符,可能需要引用:“nbd+unix:///[<export>]?socket=<domain-socket>”

    也可以識(shí)別的舊語法:“nbd:<server-ip>:<port>[:exportname=<export>]”

    使用Unix域套接字指定NBD設(shè)備的語法“nbd:unix:<domain-socket>[:exportname=<export>]”

    TCP 示例

    qemu-system-x86_64 --drive file=nbd:192.0.2.1:30000

    Unix 域套接字的示例

    qemu-system-x86_64 --drive file=nbd:unix:/tmp/nbd-socket

  • SSH

  • QEMU 支持對(duì)遠(yuǎn)程磁盤的 SSH(安全外殼)訪問。

    例子:

    qemu-system-x86_64 -drive file=ssh://user@host/path/to/disk.imgqemu-system-x86_64 -drive file.driver=ssh,file.user=user,file.host=host,file.port=22,file.path=/path/to/disk.img

    當(dāng)前,必須使用 ssh 代理完成身份驗(yàn)證。將來可能會(huì)支持其他身份驗(yàn)證方法。

  • GlusterFS

  • GlusterFS是一個(gè)用戶空間分布式文件系統(tǒng)。QEMU 支持使用 GlusterFS 卷來托管使用 TCP、Unix 域套接字和 RDMA 傳輸協(xié)議的虛擬機(jī)磁盤映像。

    在 GlusterFS 卷上指定 VM 磁盤映像的語法為

    URI: gluster[+type]://[host[:port]]/volume/path[?socket=...][,debug=N][,logfile=...] JSON: 'json:{"driver":"qcow2","file":{"driver":"gluster","volume":"testvol","path":"a.img","debug":N,"logfile":"...", ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?"server":[{"type":"tcp","host":"...","port":"..."}, ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?{"type":"unix","socket":"..."}]}}'

    URI: qemu-system-x86_64 --drive file=gluster://192.0.2.1/testvol/a.img, ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?file.debug=9,file.logfile=/var/log/qemu-gluster.log JSON: qemu-system-x86_64 'json:{"driver":"qcow2", ? ? ? ? ? ? ? ? ? ? ? ? ? "file":{"driver":"gluster", ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?"volume":"testvol","path":"a.img", ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?"debug":9,"logfile":"/var/log/qemu-gluster.log", ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?"server":[{"type":"tcp","host":"1.2.3.4","port":24007}, ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ?{"type":"unix","socket":"/var/run/glusterd.socket"}]}}' qemu-system-x86_64 -drive driver=qcow2,file.driver=gluster,file.volume=testvol,file.path=/path/a.img, ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? file.debug=9,file.logfile=/var/log/qemu-gluster.log, ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? file.server.0.type=tcp,file.server.0.host=1.2.3.4,file.server.0.port=24007, ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? file.server.1.type=unix,file.server.1.socket=/var/run/glusterd.socket

    另請(qǐng)參見?http://www.gluster.org。

  • HTTP/HTTPS/FTP/FTPS

  • QEMU 支持對(duì)通過 http(s) 和 ftp(s) 訪問的文件進(jìn)行只讀訪問。

    使用單個(gè)文件名的語法:

    <protocol>://[<username>[:<password>]@]<host>/<path>

    哪里:

    還支持以下選項(xiàng):

    請(qǐng)注意,當(dāng)顯式地將選項(xiàng)傳遞給 qemu 時(shí),值是 <protocol>。driver

    示例:從遠(yuǎn)程 Fedora 20 實(shí)時(shí) ISO 映像引導(dǎo)

    qemu-system-x86_64 --drive media=cdrom,file=https://archives.fedoraproject.org/pub/archive/fedora/linux/releases/20/Live/x86_64/Fedora-Live-Desktop-x86_64-20-1.iso,readonly qemu-system-x86_64 --drive media=cdrom,file.driver=http,file.url=http://archives.fedoraproject.org/pub/fedora/linux/releases/20/Live/x86_64/Fedora-Live-Desktop-x86_64-20-1.iso,readonly

    示例:從遠(yuǎn)程 Fedora 20 云映像引導(dǎo),使用本地覆蓋進(jìn)行寫入、邊讀時(shí)復(fù)制和 64k 的預(yù)讀

    qemu-img create -f qcow2 -o backing_file='json:{"file.driver":"http",, "file.url":"http://archives.fedoraproject.org/pub/archive/fedora/linux/releases/20/Images/x86_64/Fedora-x86_64-20-20131211.1-sda.qcow2",, "file.readahead":"64k"}' /tmp/Fedora-x86_64-20-20131211.1-sda.qcow2 qemu-system-x86_64 -drive file=/tmp/Fedora-x86_64-20-20131211.1-sda.qcow2,copy-on-read=on

    示例:從存儲(chǔ)在 VMware vSphere 服務(wù)器上的映像引導(dǎo),該映像具有自簽名證書,使用本地覆蓋進(jìn)行寫入,讀取間隔為 64k,超時(shí)時(shí)間為 10 秒。

    qemu-img create -f qcow2 -o backing_file='json:{"file.driver":"https",, "file.url":"https://user:password@vsphere.example.com/folder/test/test-flat.vmdk?dcPath=Datacenter&dsName=datastore1",, "file.sslverify":"off",, "file.readahead":"64k",, "file.timeout":10}' /tmp/test.qcow2 qemu-system-x86_64 -drive file=/tmp/test.qcow2

    • url

    • 將選項(xiàng)顯式傳遞給驅(qū)動(dòng)程序時(shí)的完整 URL。

    • readahead

    • 向遠(yuǎn)程服務(wù)器發(fā)出每個(gè)范圍請(qǐng)求時(shí)要提前讀取的數(shù)據(jù)量。此值可以選擇具有后綴“T”、“G”、“M”、“K”、“k”或“b”。如果它沒有后綴,則假定它以字節(jié)為單位。該值必須是 512 字節(jié)的倍數(shù)。它默認(rèn)為 256k。

    • sslverify

    • 通過 SSL 連接時(shí)是否驗(yàn)證遠(yuǎn)程服務(wù)器的證書。它可以具有值“開”或“關(guān)”。它默認(rèn)為“開”。

    • cookie

    • 隨每個(gè)傳出請(qǐng)求發(fā)送此 Cookie(也可以是用“;”分隔的 Cookie 列表)。僅當(dāng)使用支持 cookie 的 HTTP 等協(xié)議時(shí)才受支持,否則將被忽略。

    • timeout

    • 設(shè)置 CURL 連接的超時(shí)(以秒為單位)。此超時(shí)是 CURL 等待來自遠(yuǎn)程服務(wù)器的響應(yīng)以獲取要下載的圖像大小的時(shí)間。如果未設(shè)置,則使用 5 秒的默認(rèn)超時(shí)。

    • protocol

    • “http”、“https”、“ftp”或“ftps”。

    • username

    • 用于對(duì)遠(yuǎn)程服務(wù)器進(jìn)行身份驗(yàn)證的可選用戶名。

    • password

    • 用于對(duì)遠(yuǎn)程服務(wù)器進(jìn)行身份驗(yàn)證的可選密碼。

    • host

    • 遠(yuǎn)程服務(wù)器的地址。

    • path

    • 遠(yuǎn)程服務(wù)器上的路徑,包括任何查詢字符串。


    [QEMU]設(shè)備網(wǎng)址語法的評(píng)論 (共 條)

    分享到微博請(qǐng)遵守國家法律
    东乡| 错那县| 乌兰察布市| 安泽县| 丹巴县| 内黄县| 桐城市| 英超| 班玛县| 乌兰县| 泊头市| 海门市| 婺源县| 会同县| 临沂市| 辉县市| 莎车县| 邵东县| 桂林市| 淮滨县| 江山市| 平舆县| 武汉市| 香格里拉县| 白河县| 嘉黎县| 平度市| 贵南县| 大庆市| 会昌县| 孝感市| 信阳市| 鄯善县| 焦作市| 襄樊市| 怀仁县| 海宁市| 诸暨市| 乾安县| 洪湖市| 白城市|