{"id":1954,"date":"2026-03-08T03:34:37","date_gmt":"2026-03-08T02:34:37","guid":{"rendered":"https:\/\/christeninformatica.ch\/?p=1954"},"modified":"2026-07-27T22:26:20","modified_gmt":"2026-07-27T20:26:20","slug":"how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux","status":"publish","type":"post","link":"https:\/\/christeninformatica.ch\/it\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/","title":{"rendered":"Come creare una routed network con QEMU\/KVM (libvirt) usando il comando virsh"},"content":{"rendered":"<p>In questo tutorial ti mostrer\u00f2 come creare una routed network con QEMU \/ KVM libvirt usando il comando virsh. <\/p>\n<p>Con KVM libvirt si possono creare tre tipi di rete.<\/p>\n<h2>Types of Network<\/h2>\n<ol>\n<li>Rete virtuale NAT (NATed virtual network): questo tipo di rete permette le connessioni in uscita per le macchine virtuali, consentendone la comunicazione con il mondo esterno - se l'host \u00e8 connesso con la rete. Tuttavia, le entit\u00e0 esterne non potranno comunicare con le macchine virtuali.<\/li>\n<li>Routed virtual network: questo tipo di rete consente alle macchine virtuali di comunicare tra loro e con host esterni instradando pacchetti tra reti diverse.<\/li>\n<li>Rete virtuale isolata: questo tipo di rete isola le macchine virtuali l'una dall'altra e dal mondo esterno, fornendo un ambiente di rete completamente separato per ogni VM.<\/li>\n<\/ol>\n<h2>Cosa \u00e8 una routed network (KVM libvirt)<\/h2>\n<p>Una routed network in KVM Livirt \u00e8 un tipo di rete virtuale che consente alle macchine virtuali (VM) di comunicare tra loro e con il mondo esterno instradando pacchetti tra reti diverse. In una rete instradata, ogni VM ha il proprio indirizzo IP e pu\u00f2 comunicare direttamente con altre VM o host esterni.<\/p>\n<p>Una routed network in KVM Livirt \u00e8 un tipo di rete virtuale che consente alle macchine virtuali (VM) di comunicare tra loro e con il mondo esterno instradando pacchetti tra reti diverse. In una rete instradata, ogni VM ha il proprio indirizzo IP e pu\u00f2 comunicare direttamente con altre VM o host esterni.<\/p>\n<p>Per creare una routed network in KVM libvirt, \u00e8 necessario definire un'interfaccia di rete utilizzando un file XML che specifichi la configurazione di rete. \u00c8 quindi possibile avviare la rete utilizzando il comando \u201cvirsh net-start\u201d e configurare le VM per utilizzare questa rete.<\/p>\n<p>Le routed networks sono utili quando \u00e8 necessario isolare pi\u00f9 macchine virtuali l'una dall'altra, pur consentendo loro di comunicare con host esterni o tra di loro. Sono comunemente utilizzate in ambienti di virtualizzazione dei server in cui pi\u00f9 VM vengono installate su un singolo host fisico.<\/p>\n<p>In modalit\u00e0 routed, la rete virtuale \u00e8 connessa alla rete fisica utilizzando le impostazioni specificate sul host. Questi percorsi vengono utilizzati per instradare il traffico dalle macchine virtuali alla rete. Per essere in grado di comunicare con la macchina virtuale usando questa configurazione \u00e8 necessario impostare una static IP route nel router in modo che i pacchetti di risposta siano in grado di raggiungere l'hypervisor, altrimenti non raggiungeranno mai l'host. <\/p>\n<h2>Come creare una routed network usando il comando virsh<\/h2>\n<p>Per creare una routed network con virsh devi prima creare un file con la configurazione, ad esempio virbr1.xml.<\/p>\n<div class=\"comandi\">\n<blockquote>\n<pre>\n&lt;network&gt;\n  &lt;name&gt;virbr1&lt;&sol;name&gt;\n  &lt;forward mode=&apos;route&apos;&sol;&gt;\n  &lt;bridge name=&apos;virbr1&apos; stp=&apos;on&apos; delay=&apos;0&apos;&sol;&gt;\n  &lt;ip address=&apos;10.2.7.0&apos; netmask=&apos;255.255.255.240&apos;&gt;\n    &lt;dhcp&gt;\n      &lt;range start=&apos;10.2.7.3&apos; end=&apos;10.2.7.14&apos;&sol;&gt;\n    &lt;&sol;dhcp&gt;\n  &lt;&sol;ip&gt;\n&lt;&sol;network&gt;\n<\/pre>\n<\/blockquote>\n<\/div>\n<p>Una volta creato il file eseguire il commando virsh net-define: <\/p>\n<div class=\"comandi\">\n<blockquote>\n<pre>\n# virsh net-define virbr1.xml\n# virsh net-start virbr1\n# virsh net-autostart virbr1\n<\/pre>\n<\/blockquote>\n<\/div>\n<p>Una volta creata la rete \u00e8 possibile configurare la macchina virtuale in modo da utilizzarla.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"789\" src=\"https:\/\/christeninformatica.ch\/media\/network-configuration-virtual-machine-manager-libvirt.jpg\" alt=\"\" class=\"wp-image-1956\" srcset=\"https:\/\/christeninformatica.ch\/media\/network-configuration-virtual-machine-manager-libvirt.jpg 1024w, https:\/\/christeninformatica.ch\/media\/network-configuration-virtual-machine-manager-libvirt-300x231.jpg 300w, https:\/\/christeninformatica.ch\/media\/network-configuration-virtual-machine-manager-libvirt-768x592.jpg 768w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>\n\n\n<p>Ora, affinch\u00e9 la macchina virtuale sia raggiungibile dall'esterno, \u00e8 necessario aggiungere un percorso statico sul router usando l'indirizzo IP dell'host come gateway, di solito in Routing e Static Route.<\/p>\n\n\n<figure class=\"wp-block-image size-full\"><img loading=\"lazy\" decoding=\"async\" width=\"1024\" height=\"516\" src=\"https:\/\/christeninformatica.ch\/media\/add-static-route-router-routed-network.jpg\" alt=\"\" class=\"wp-image-1957\" srcset=\"https:\/\/christeninformatica.ch\/media\/add-static-route-router-routed-network.jpg 1024w, https:\/\/christeninformatica.ch\/media\/add-static-route-router-routed-network-300x151.jpg 300w, https:\/\/christeninformatica.ch\/media\/add-static-route-router-routed-network-768x387.jpg 768w\" sizes=\"auto, (max-width: 1024px) 100vw, 1024px\" \/><\/figure>","protected":false},"excerpt":{"rendered":"<p>In this tutorial I will show you how to create a Routed Network on QEMU\/KVM libvirt with the virsh command. With KVM libvirt there are three types of networks. Types of Network NATed (Network Address Translation) virtual network: This type of network provides outbound network connectivity to virtual machines, allowing them to communicate with the&#8230;<\/p>\n<p class=\"more-link-wrap\"><a href=\"https:\/\/christeninformatica.ch\/it\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/\" class=\"more-link\">Read More<span class=\"screen-reader-text\"> &ldquo;How to create a routed network on QEMU\/KVM (libvirt) with Virsh&rdquo;<\/span> &raquo;<\/a><\/p>","protected":false},"author":5,"featured_media":1955,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[74,215,297],"tags":[347,344,343,348,349,345,346],"class_list":["post-1954","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-linux-server","category-opensuse","category-tutorials","tag-create","tag-kvm","tag-libvirt","tag-network","tag-routed-network","tag-virtual-machines","tag-vm"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.3 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>How to create a routed network on QEMU\/KVM (libvirt) with Virsh &#8226; CHIT<\/title>\n<meta name=\"description\" content=\"Tutorial on how to create a routed network on QEMU\/KVM (libvirt) for virtual machines with the virsh command.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/christeninformatica.ch\/it\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/\" \/>\n<meta property=\"og:locale\" content=\"it_IT\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"How to create a routed network on QEMU\/KVM (libvirt) with Virsh &#8226; CHIT\" \/>\n<meta property=\"og:description\" content=\"Tutorial on how to create a routed network on QEMU\/KVM (libvirt) for virtual machines with the virsh command.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/christeninformatica.ch\/it\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/\" \/>\n<meta property=\"og:site_name\" content=\"CHIT\" \/>\n<meta property=\"article:published_time\" content=\"2026-03-08T02:34:37+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-07-27T20:26:20+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/christeninformatica.ch\/media\/How-To-Create-Routed-Network-QEMU-KVM-Virsh.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"1024\" \/>\n\t<meta property=\"og:image:height\" content=\"400\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"chitblog\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"chitblog\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"3 minuti\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\\\/\"},\"author\":{\"name\":\"chitblog\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/#\\\/schema\\\/person\\\/b0952e900860b424a6b0906f1d6a0a64\"},\"headline\":\"How to create a routed network on QEMU\\\/KVM (libvirt) with Virsh\",\"datePublished\":\"2026-03-08T02:34:37+00:00\",\"dateModified\":\"2026-07-27T20:26:20+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\\\/\"},\"wordCount\":517,\"commentCount\":0,\"image\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/christeninformatica.ch\\\/media\\\/How-To-Create-Routed-Network-QEMU-KVM-Virsh.jpg\",\"keywords\":[\"Create\",\"KVM\",\"Libvirt\",\"Network\",\"Routed Network\",\"Virtual Machines\",\"VM\"],\"articleSection\":[\"LINUX SERVER\",\"openSUSE\",\"Tutorials\"],\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\\\/\",\"url\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\\\/\",\"name\":\"How to create a routed network on QEMU\\\/KVM (libvirt) with Virsh &#8226; CHIT\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/christeninformatica.ch\\\/media\\\/How-To-Create-Routed-Network-QEMU-KVM-Virsh.jpg\",\"datePublished\":\"2026-03-08T02:34:37+00:00\",\"dateModified\":\"2026-07-27T20:26:20+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/#\\\/schema\\\/person\\\/b0952e900860b424a6b0906f1d6a0a64\"},\"description\":\"Tutorial on how to create a routed network on QEMU\\\/KVM (libvirt) for virtual machines with the virsh command.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\\\/#breadcrumb\"},\"inLanguage\":\"it-IT\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\\\/#primaryimage\",\"url\":\"https:\\\/\\\/christeninformatica.ch\\\/media\\\/How-To-Create-Routed-Network-QEMU-KVM-Virsh.jpg\",\"contentUrl\":\"https:\\\/\\\/christeninformatica.ch\\\/media\\\/How-To-Create-Routed-Network-QEMU-KVM-Virsh.jpg\",\"width\":1024,\"height\":400},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/christeninformatica.ch\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"How to create a routed network on QEMU\\\/KVM (libvirt) with Virsh\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/#website\",\"url\":\"https:\\\/\\\/christeninformatica.ch\\\/\",\"name\":\"CHIT\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/christeninformatica.ch\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"it-IT\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/christeninformatica.ch\\\/#\\\/schema\\\/person\\\/b0952e900860b424a6b0906f1d6a0a64\",\"name\":\"chitblog\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"it-IT\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g\",\"caption\":\"chitblog\"}}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"How to create a routed network on QEMU\/KVM (libvirt) with Virsh &#8226; CHIT","description":"Tutorial on how to create a routed network on QEMU\/KVM (libvirt) for virtual machines with the virsh command.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/christeninformatica.ch\/it\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/","og_locale":"it_IT","og_type":"article","og_title":"How to create a routed network on QEMU\/KVM (libvirt) with Virsh &#8226; CHIT","og_description":"Tutorial on how to create a routed network on QEMU\/KVM (libvirt) for virtual machines with the virsh command.","og_url":"https:\/\/christeninformatica.ch\/it\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/","og_site_name":"CHIT","article_published_time":"2026-03-08T02:34:37+00:00","article_modified_time":"2026-07-27T20:26:20+00:00","og_image":[{"width":1024,"height":400,"url":"https:\/\/christeninformatica.ch\/media\/How-To-Create-Routed-Network-QEMU-KVM-Virsh.jpg","type":"image\/jpeg"}],"author":"chitblog","twitter_card":"summary_large_image","twitter_misc":{"Written by":"chitblog","Est. reading time":"3 minuti"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/christeninformatica.ch\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/#article","isPartOf":{"@id":"https:\/\/christeninformatica.ch\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/"},"author":{"name":"chitblog","@id":"https:\/\/christeninformatica.ch\/#\/schema\/person\/b0952e900860b424a6b0906f1d6a0a64"},"headline":"How to create a routed network on QEMU\/KVM (libvirt) with Virsh","datePublished":"2026-03-08T02:34:37+00:00","dateModified":"2026-07-27T20:26:20+00:00","mainEntityOfPage":{"@id":"https:\/\/christeninformatica.ch\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/"},"wordCount":517,"commentCount":0,"image":{"@id":"https:\/\/christeninformatica.ch\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/christeninformatica.ch\/media\/How-To-Create-Routed-Network-QEMU-KVM-Virsh.jpg","keywords":["Create","KVM","Libvirt","Network","Routed Network","Virtual Machines","VM"],"articleSection":["LINUX SERVER","openSUSE","Tutorials"],"inLanguage":"it-IT","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/christeninformatica.ch\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/christeninformatica.ch\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/","url":"https:\/\/christeninformatica.ch\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/","name":"How to create a routed network on QEMU\/KVM (libvirt) with Virsh &#8226; CHIT","isPartOf":{"@id":"https:\/\/christeninformatica.ch\/#website"},"primaryImageOfPage":{"@id":"https:\/\/christeninformatica.ch\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/#primaryimage"},"image":{"@id":"https:\/\/christeninformatica.ch\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/#primaryimage"},"thumbnailUrl":"https:\/\/christeninformatica.ch\/media\/How-To-Create-Routed-Network-QEMU-KVM-Virsh.jpg","datePublished":"2026-03-08T02:34:37+00:00","dateModified":"2026-07-27T20:26:20+00:00","author":{"@id":"https:\/\/christeninformatica.ch\/#\/schema\/person\/b0952e900860b424a6b0906f1d6a0a64"},"description":"Tutorial on how to create a routed network on QEMU\/KVM (libvirt) for virtual machines with the virsh command.","breadcrumb":{"@id":"https:\/\/christeninformatica.ch\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/#breadcrumb"},"inLanguage":"it-IT","potentialAction":[{"@type":"ReadAction","target":["https:\/\/christeninformatica.ch\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/"]}]},{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/christeninformatica.ch\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/#primaryimage","url":"https:\/\/christeninformatica.ch\/media\/How-To-Create-Routed-Network-QEMU-KVM-Virsh.jpg","contentUrl":"https:\/\/christeninformatica.ch\/media\/How-To-Create-Routed-Network-QEMU-KVM-Virsh.jpg","width":1024,"height":400},{"@type":"BreadcrumbList","@id":"https:\/\/christeninformatica.ch\/how-to-create-routed-network-qemu-kvm-libvirt-virsh-virtual-machines-linux\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/christeninformatica.ch\/"},{"@type":"ListItem","position":2,"name":"How to create a routed network on QEMU\/KVM (libvirt) with Virsh"}]},{"@type":"WebSite","@id":"https:\/\/christeninformatica.ch\/#website","url":"https:\/\/christeninformatica.ch\/","name":"CHIT","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/christeninformatica.ch\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"it-IT"},{"@type":"Person","@id":"https:\/\/christeninformatica.ch\/#\/schema\/person\/b0952e900860b424a6b0906f1d6a0a64","name":"chitblog","image":{"@type":"ImageObject","inLanguage":"it-IT","@id":"https:\/\/secure.gravatar.com\/avatar\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/321ffb3802ecc0a2fc461c52e31fbbabb19873df19bfb793c8e64c6a0cc49313?s=96&d=identicon&r=g","caption":"chitblog"}}]}},"_links":{"self":[{"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/posts\/1954","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/users\/5"}],"replies":[{"embeddable":true,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/comments?post=1954"}],"version-history":[{"count":0,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/posts\/1954\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/media\/1955"}],"wp:attachment":[{"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/media?parent=1954"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/categories?post=1954"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/christeninformatica.ch\/it\/wp-json\/wp\/v2\/tags?post=1954"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}