{"id":13711,"date":"2012-11-05T12:00:00","date_gmt":"2012-11-05T12:00:00","guid":{"rendered":"https:\/\/aidanfinn.com\/?p=13711"},"modified":"2012-11-05T12:00:00","modified_gmt":"2012-11-05T12:00:00","slug":"live-migration-security-failures-kerberos-live-migration-authentication-constrained-delegation","status":"publish","type":"post","link":"https:\/\/aidanfinn.com\/?p=13711","title":{"rendered":"Live Migration Security Failures, Kerberos Live Migration Authentication &#038; Constrained Delegation"},"content":{"rendered":"<p>In the past 3 weeks I\u2019ve delivered my 75 minutes long Live Migration session at 2 events in Barcelona (Spain) and Hamburg (Germany). The big topic in WS2012 Live Migration is being able to do Live Migration in new ways:<\/p>\n<ul>\n<li>Inside a cluster with traditional storage<\/li>\n<li>Inside a cluster with shared SMB 3.0 storage<\/li>\n<li>Between non-clustered hosts with shared SMB 3.0 storage<\/li>\n<li>Between non-clustered hosts with no shared storage (Shared-Nothing Live Migration)<\/li>\n<li>Between clustered hosts <em>in different clusters <\/em>with no shared storage (Shared-Nothing Live Migration) \u2013 requires you to disable HA for the VM before migration and re-enable it after migration (no downtime required)<\/li>\n<li>Between clustered hosts and non-clustered hosts with no shared storage (Shared-Nothing Live Migration) \u2013 requires you to disable HA for the VM before migration (no downtime required)<\/li>\n<li>Between non-clustered hosts and clustered hosts with no shared storage (Shared-Nothing Live Migration) \u2013 you should to enable HA for the VM after migration (no downtime required)<\/li>\n<\/ul>\n<p>Let\u2019s talk security for a moment, to figure out why Kerberos Constrained Delegation is required.&#160; Say you are only going to do LM inside a cluster. You do not have to enable LM in the host settings.&#160; If you do want LM between hosts that are not in a common cluster, then you need to enable LM.&#160; Then you see there are 2 authentication types.<\/p>\n<p>If you want quick and dirty, you pick CredSSP authentication when you enable LM. It allows you to push a VM from the host you are logged into. It\u2019s find for demo, but useless in the real world, e.g. running Hyper-V Manager from your PC or using a centralized management system.&#160; You will get security issues if trying to LM a VM and you are not logged into the host if you use CredSSP.<\/p>\n<p>The alternative is Kerberos authentication. This allows an authorized Hyper-V administrator to run LM from any domain member machine, therefore not requiring you to log into a host to push a VM. You might remember that mounting an ISO over a file share requires CIFS delegation. We have to do something similar to that for LM to work with Kerberos authentication.<\/p>\n<p>The process of enabling Kerberos Constrained Delegation via GUI is:<\/p>\n<ol>\n<li>Enable the advanced view in ADUC<\/li>\n<li>Edit the properties of the host\u2019s computer account<\/li>\n<li>Edit the Delegation tab<\/li>\n<li>Add the required computer accounts<\/li>\n<li>Add the required service types to delegate<\/li>\n<li>And the bit no one in MSFT talks\/blogs about: reboot the host that you just modified the computer object of, e.g. reboot Host2 if you edited the Host2 computer account<\/li>\n<\/ol>\n<p>So what computer accounts and service types you add, and where? There are 2 scenarios that I\u2019ll talk about:<\/p>\n<p><strong><u>1) Shared SMB 3.0 Storage and Non-Clustered Hosts<\/u><\/strong><\/p>\n<p>You need to edit each host that can be involved in LM:<\/p>\n<ul>\n<li>Delegate Microsoft Virtual System Migration Service for every&#160; other possible LM host<\/li>\n<li>Delegate CIFS for every possible file share that LM VMs will be stored on. Use the computer account of the Scale-Out File Server (SOFS) if using SOFS, and not the node members.<\/li>\n<\/ul>\n<p><a href=\"https:\/\/aidanfinn.com\/wp-content\/uploads\/2012\/11\/image.png\"><img loading=\"lazy\" decoding=\"async\" style=\"background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px; padding-top: 0px\" title=\"image\" border=\"0\" alt=\"image\" src=\"https:\/\/aidanfinn.com\/wp-content\/uploads\/2012\/11\/image_thumb.png\" width=\"504\" height=\"346\" \/><\/a><\/p>\n<p><strong><u>2) Shared-Nothing Live Migration<\/u><\/strong><\/p>\n<p>This one requires more work. For every host that can be involved in LM, you need to delegate:<\/p>\n<ul>\n<li>Microsoft Virtual Machine Migration Service for every other possible LM host<\/li>\n<li>CIFS for every other possible LM host<\/li>\n<\/ul>\n<p><a href=\"https:\/\/aidanfinn.com\/wp-content\/uploads\/2012\/11\/image1.png\"><img loading=\"lazy\" decoding=\"async\" style=\"background-image: none; border-bottom: 0px; border-left: 0px; padding-left: 0px; padding-right: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px; padding-top: 0px\" title=\"image\" border=\"0\" alt=\"image\" src=\"https:\/\/aidanfinn.com\/wp-content\/uploads\/2012\/11\/image_thumb1.png\" width=\"504\" height=\"160\" \/><\/a><\/p>\n<p>There\u2019s a lot of clicking involved in all that. This is why PowerShell is so \u2026 powerful. Save some time. Reduce the mistakes. Script it:<\/p>\n<p>$HostName = &quot;host1&quot;   <br \/>$HostFQDN = &quot;$HostName.demo.internal&quot;    <br \/>Get-ADComputer host2| Set-ADObject -Add @{&quot;msDS-AllowedToDelegateTo&quot;=&quot;Microsoft Virtual System Migration Service\/$HostFQDN&quot;, &quot;Microsoft Virtual System Migration Service\/$HostName&quot;, &quot;cifs\/$HostFQDN&quot;, &quot;cifs\/$HostName&quot;}<\/p>\n<p>That Set-ADObject cmdlet took me a while to figure out. I actually set the settings I required in the GUI, ran Get-ADObject and copied\/pasted the value of msDS-AllowedToDelegateTo <img decoding=\"async\" style=\"border-bottom-style: none; border-left-style: none; border-top-style: none; border-right-style: none\" class=\"wlEmoticon wlEmoticon-smile\" alt=\"Smile\" src=\"https:\/\/aidanfinn.com\/wp-content\/uploads\/2012\/11\/wlEmoticon-smile.png\" \/><\/p>\n<p>You could go create a function for the last line of the script, and just pass the name of the Host you\u2019re editing and the name of the host you want to delegate to. I\u2019m not going to do everything for you \u2026 I\u2019ve got to hold something back for the book.<\/p>\n<p>Speaking of which \u2026 this is just a teeny tiny snippet of <a href=\"http:\/\/www.amazon.com\/Windows-Server-Hyper-V-Installation-Configuration\/dp\/1118486498%3FSubscriptionId%3DAKIAIJ5WNI7ZSH7W4OXA%26tag%3Dafm0c-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1118486498\" target=\"_blank\">Windows Server 2012 Hyper-V Installation and Configuration Guide<\/a> (available on pre-order on <a href=\"http:\/\/www.amazon.com\/Windows-Server-Hyper-V-Installation-Configuration\/dp\/1118486498%3FSubscriptionId%3DAKIAIJ5WNI7ZSH7W4OXA%26tag%3Dafm0c-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1118486498\" target=\"_blank\">Amazon<\/a>). I just submitted my VM management chapter to the editors. It was 78 pages of <em>text<\/em>. And I\u2019ve since realised that I need to add more stuff to that chapter!<\/p>\n<p><a href=\"http:\/\/www.amazon.com\/Windows-Server-Hyper-V-Installation-Configuration\/dp\/1118486498%3FSubscriptionId%3DAKIAIJ5WNI7ZSH7W4OXA%26tag%3Dafm0c-20%26linkCode%3Dxm2%26camp%3D2025%26creative%3D165953%26creativeASIN%3D1118486498\" target=\"_blank\"><img loading=\"lazy\" decoding=\"async\" style=\"display: block; float: none; margin-left: auto; margin-right: auto\" title=\"image\" border=\"0\" alt=\"image\" src=\"https:\/\/aidanfinn.com\/wp-content\/uploads\/2012\/09\/image_thumb19.png\" width=\"196\" height=\"244\" \/><\/a>    <\/p>\n<div style=\"padding-bottom: 0px; margin: 0px; padding-left: 0px; padding-right: 0px; display: inline; float: none; padding-top: 0px\" id=\"scid:0767317B-992E-4b12-91E0-4F059A8CECA8:4ac0068d-ae71-45ae-b1de-6f8c519c19b5\" class=\"wlWriterEditableSmartContent\">Technorati Tags: <a href=\"http:\/\/technorati.com\/tags\/Windows+Server+2012\" rel=\"tag\">Windows Server 2012<\/a>,<a href=\"http:\/\/technorati.com\/tags\/Hyper-V\" rel=\"tag\">Hyper-V<\/a><\/div>\n","protected":false},"excerpt":{"rendered":"<p>In the past 3 weeks I\u2019ve delivered my 75 minutes long Live Migration session at 2 events in Barcelona (Spain) and Hamburg (Germany). The big topic in WS2012 Live Migration is being able to do Live Migration in new ways: Inside a cluster with traditional storage Inside a cluster with shared SMB 3.0 storage Between &hellip; <a href=\"https:\/\/aidanfinn.com\/?p=13711\" class=\"more-link\">Continue reading<span class=\"screen-reader-text\"> &#8220;Live Migration Security Failures, Kerberos Live Migration Authentication &#038; Constrained Delegation&#8221;<\/span><\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"om_disable_all_campaigns":false,"_monsterinsights_skip_tracking":false,"_uf_show_specific_survey":0,"_uf_disable_surveys":false,"_wpcom_ai_launchpad_first_post":false,"footnotes":""},"categories":[20],"tags":[181,118],"class_list":["post-13711","post","type-post","status-publish","format-standard","hentry","category-hyper-v","tag-hyper-v","tag-windows-server-2012"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 5.0.1.1 - aioseo.com -->\n\t<meta name=\"description\" content=\"In the past 3 weeks I\u2019ve delivered my 75 minutes long Live Migration session at 2 events in Barcelona (Spain) and Hamburg (Germany). The big topic in WS2012 Live Migration is being able to do Live Migration in new ways: Inside a cluster with traditional storage Inside a cluster with shared SMB 3.0 storage Between\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"AFinn\"\/>\n\t<meta name=\"google-site-verification\" content=\"TDKjbi2McB2eLIfL6KwPB3aQqv5E-mbcb2QYIcovGaI\" \/>\n\t<link rel=\"canonical\" href=\"https:\/\/aidanfinn.com\/?p=13711\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 5.0.1.1\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_GB\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Aidan Finn, IT Pro - A blog covering Azure, Hyper-V, Windows Server, desktop, systems management, deployment, and so on ...\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Live Migration Security Failures, Kerberos Live Migration Authentication &amp; Constrained Delegation | Aidan Finn, IT Pro\" \/>\n\t\t<meta property=\"og:description\" content=\"In the past 3 weeks I\u2019ve delivered my 75 minutes long Live Migration session at 2 events in Barcelona (Spain) and Hamburg (Germany). The big topic in WS2012 Live Migration is being able to do Live Migration in new ways: Inside a cluster with traditional storage Inside a cluster with shared SMB 3.0 storage Between\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/aidanfinn.com\/?p=13711\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2012-11-05T12:00:00+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2012-11-05T12:00:00+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary\" \/>\n\t\t<meta name=\"twitter:site\" content=\"@joe_elway\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Live Migration Security Failures, Kerberos Live Migration Authentication &amp; Constrained Delegation | Aidan Finn, IT Pro\" \/>\n\t\t<meta name=\"twitter:description\" content=\"In the past 3 weeks I\u2019ve delivered my 75 minutes long Live Migration session at 2 events in Barcelona (Spain) and Hamburg (Germany). The big topic in WS2012 Live Migration is being able to do Live Migration in new ways: Inside a cluster with traditional storage Inside a cluster with shared SMB 3.0 storage Between\" \/>\n\t\t<meta name=\"twitter:creator\" content=\"@joe_elway\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=13711#article\",\"name\":\"Live Migration Security Failures, Kerberos Live Migration Authentication & Constrained Delegation | Aidan Finn, IT Pro\",\"headline\":\"Live Migration Security Failures, Kerberos Live Migration Authentication &#038; Constrained Delegation\",\"author\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?author=1#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#person\"},\"image\":{\"@type\":\"ImageObject\",\"url\":\"https:\\\/\\\/aidanfinn.com\\\/wp-content\\\/uploads\\\/2012\\\/11\\\/image_thumb.png\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=13711\\\/#articleImage\",\"width\":504,\"height\":346},\"datePublished\":\"2012-11-05T12:00:00+00:00\",\"dateModified\":\"2012-11-05T12:00:00+00:00\",\"inLanguage\":\"en-GB\",\"commentCount\":6,\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=13711#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=13711#webpage\"},\"articleSection\":\"Hyper-V, Hyper-V, Windows Server 2012\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=13711#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/aidanfinn.com\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?cat=20#listItem\",\"name\":\"Hyper-V\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?cat=20#listItem\",\"position\":2,\"name\":\"Hyper-V\",\"item\":\"https:\\\/\\\/aidanfinn.com\\\/?cat=20\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=13711#listItem\",\"name\":\"Live Migration Security Failures, Kerberos Live Migration Authentication &#038; Constrained Delegation\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=13711#listItem\",\"position\":3,\"name\":\"Live Migration Security Failures, Kerberos Live Migration Authentication &#038; Constrained Delegation\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?cat=20#listItem\",\"name\":\"Hyper-V\"}}]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#person\",\"name\":\"AFinn\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=13711#personImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/65fde4aa9f2ab1cf1514ae320a37ec682d9398ce5791d3c2dd1e8670a71ceea0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"AFinn\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?author=1#author\",\"url\":\"https:\\\/\\\/aidanfinn.com\\\/?author=1\",\"name\":\"AFinn\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=13711#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/65fde4aa9f2ab1cf1514ae320a37ec682d9398ce5791d3c2dd1e8670a71ceea0?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"AFinn\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=13711#webpage\",\"url\":\"https:\\\/\\\/aidanfinn.com\\\/?p=13711\",\"name\":\"Live Migration Security Failures, Kerberos Live Migration Authentication & Constrained Delegation | Aidan Finn, IT Pro\",\"description\":\"In the past 3 weeks I\\u2019ve delivered my 75 minutes long Live Migration session at 2 events in Barcelona (Spain) and Hamburg (Germany). The big topic in WS2012 Live Migration is being able to do Live Migration in new ways: Inside a cluster with traditional storage Inside a cluster with shared SMB 3.0 storage Between\",\"inLanguage\":\"en-GB\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?p=13711#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?author=1#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/?author=1#author\"},\"datePublished\":\"2012-11-05T12:00:00+00:00\",\"dateModified\":\"2012-11-05T12:00:00+00:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#website\",\"url\":\"https:\\\/\\\/aidanfinn.com\\\/\",\"name\":\"Aidan Finn, IT Pro\",\"description\":\"A blog covering Azure, Hyper-V, Windows Server, desktop, systems management, deployment, and so on ...\",\"inLanguage\":\"en-GB\",\"publisher\":{\"@id\":\"https:\\\/\\\/aidanfinn.com\\\/#person\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Live Migration Security Failures, Kerberos Live Migration Authentication & Constrained Delegation | Aidan Finn, IT Pro","description":"In the past 3 weeks I\u2019ve delivered my 75 minutes long Live Migration session at 2 events in Barcelona (Spain) and Hamburg (Germany). The big topic in WS2012 Live Migration is being able to do Live Migration in new ways: Inside a cluster with traditional storage Inside a cluster with shared SMB 3.0 storage Between","canonical_url":"https:\/\/aidanfinn.com\/?p=13711","robots":"max-image-preview:large","keywords":"","webmasterTools":{"google-site-verification":"TDKjbi2McB2eLIfL6KwPB3aQqv5E-mbcb2QYIcovGaI","miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/aidanfinn.com\/?p=13711#article","name":"Live Migration Security Failures, Kerberos Live Migration Authentication & Constrained Delegation | Aidan Finn, IT Pro","headline":"Live Migration Security Failures, Kerberos Live Migration Authentication &#038; Constrained Delegation","author":{"@id":"https:\/\/aidanfinn.com\/?author=1#author"},"publisher":{"@id":"https:\/\/aidanfinn.com\/#person"},"image":{"@type":"ImageObject","url":"https:\/\/aidanfinn.com\/wp-content\/uploads\/2012\/11\/image_thumb.png","@id":"https:\/\/aidanfinn.com\/?p=13711\/#articleImage","width":504,"height":346},"datePublished":"2012-11-05T12:00:00+00:00","dateModified":"2012-11-05T12:00:00+00:00","inLanguage":"en-GB","commentCount":6,"mainEntityOfPage":{"@id":"https:\/\/aidanfinn.com\/?p=13711#webpage"},"isPartOf":{"@id":"https:\/\/aidanfinn.com\/?p=13711#webpage"},"articleSection":"Hyper-V, Hyper-V, Windows Server 2012"},{"@type":"BreadcrumbList","@id":"https:\/\/aidanfinn.com\/?p=13711#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/aidanfinn.com#listItem","position":1,"name":"Home","item":"https:\/\/aidanfinn.com","nextItem":{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/?cat=20#listItem","name":"Hyper-V"}},{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/?cat=20#listItem","position":2,"name":"Hyper-V","item":"https:\/\/aidanfinn.com\/?cat=20","nextItem":{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/?p=13711#listItem","name":"Live Migration Security Failures, Kerberos Live Migration Authentication &#038; Constrained Delegation"},"previousItem":{"@type":"ListItem","@id":"https:\/\/aidanfinn.com#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/?p=13711#listItem","position":3,"name":"Live Migration Security Failures, Kerberos Live Migration Authentication &#038; Constrained Delegation","previousItem":{"@type":"ListItem","@id":"https:\/\/aidanfinn.com\/?cat=20#listItem","name":"Hyper-V"}}]},{"@type":"Person","@id":"https:\/\/aidanfinn.com\/#person","name":"AFinn","image":{"@type":"ImageObject","@id":"https:\/\/aidanfinn.com\/?p=13711#personImage","url":"https:\/\/secure.gravatar.com\/avatar\/65fde4aa9f2ab1cf1514ae320a37ec682d9398ce5791d3c2dd1e8670a71ceea0?s=96&d=mm&r=g","width":96,"height":96,"caption":"AFinn"}},{"@type":"Person","@id":"https:\/\/aidanfinn.com\/?author=1#author","url":"https:\/\/aidanfinn.com\/?author=1","name":"AFinn","image":{"@type":"ImageObject","@id":"https:\/\/aidanfinn.com\/?p=13711#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/65fde4aa9f2ab1cf1514ae320a37ec682d9398ce5791d3c2dd1e8670a71ceea0?s=96&d=mm&r=g","width":96,"height":96,"caption":"AFinn"}},{"@type":"WebPage","@id":"https:\/\/aidanfinn.com\/?p=13711#webpage","url":"https:\/\/aidanfinn.com\/?p=13711","name":"Live Migration Security Failures, Kerberos Live Migration Authentication & Constrained Delegation | Aidan Finn, IT Pro","description":"In the past 3 weeks I\u2019ve delivered my 75 minutes long Live Migration session at 2 events in Barcelona (Spain) and Hamburg (Germany). The big topic in WS2012 Live Migration is being able to do Live Migration in new ways: Inside a cluster with traditional storage Inside a cluster with shared SMB 3.0 storage Between","inLanguage":"en-GB","isPartOf":{"@id":"https:\/\/aidanfinn.com\/#website"},"breadcrumb":{"@id":"https:\/\/aidanfinn.com\/?p=13711#breadcrumblist"},"author":{"@id":"https:\/\/aidanfinn.com\/?author=1#author"},"creator":{"@id":"https:\/\/aidanfinn.com\/?author=1#author"},"datePublished":"2012-11-05T12:00:00+00:00","dateModified":"2012-11-05T12:00:00+00:00"},{"@type":"WebSite","@id":"https:\/\/aidanfinn.com\/#website","url":"https:\/\/aidanfinn.com\/","name":"Aidan Finn, IT Pro","description":"A blog covering Azure, Hyper-V, Windows Server, desktop, systems management, deployment, and so on ...","inLanguage":"en-GB","publisher":{"@id":"https:\/\/aidanfinn.com\/#person"}}]},"og:locale":"en_GB","og:site_name":"Aidan Finn, IT Pro - A blog covering Azure, Hyper-V, Windows Server, desktop, systems management, deployment, and so on ...","og:type":"article","og:title":"Live Migration Security Failures, Kerberos Live Migration Authentication &amp; Constrained Delegation | Aidan Finn, IT Pro","og:description":"In the past 3 weeks I\u2019ve delivered my 75 minutes long Live Migration session at 2 events in Barcelona (Spain) and Hamburg (Germany). The big topic in WS2012 Live Migration is being able to do Live Migration in new ways: Inside a cluster with traditional storage Inside a cluster with shared SMB 3.0 storage Between","og:url":"https:\/\/aidanfinn.com\/?p=13711","article:published_time":"2012-11-05T12:00:00+00:00","article:modified_time":"2012-11-05T12:00:00+00:00","twitter:card":"summary","twitter:site":"@joe_elway","twitter:title":"Live Migration Security Failures, Kerberos Live Migration Authentication &amp; Constrained Delegation | Aidan Finn, IT Pro","twitter:description":"In the past 3 weeks I\u2019ve delivered my 75 minutes long Live Migration session at 2 events in Barcelona (Spain) and Hamburg (Germany). The big topic in WS2012 Live Migration is being able to do Live Migration in new ways: Inside a cluster with traditional storage Inside a cluster with shared SMB 3.0 storage Between","twitter:creator":"@joe_elway"},"aioseo_meta_data":{"post_id":"13711","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":null,"schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"breadcrumb_settings":null,"limit_modified_date":false,"ai":null,"created":"2020-12-21 03:53:19","updated":"2025-06-04 15:29:51","seo_analyzer_scan_date":null,"focus_keyword":null,"additional_keywords":null,"truseo_locale":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/aidanfinn.com\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/aidanfinn.com\/?cat=20\" title=\"Hyper-V\">Hyper-V<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tLive Migration Security Failures, Kerberos Live Migration Authentication &amp; Constrained Delegation\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/aidanfinn.com"},{"label":"Hyper-V","link":"https:\/\/aidanfinn.com\/?cat=20"},{"label":"Live Migration Security Failures, Kerberos Live Migration Authentication &#038; Constrained Delegation","link":"https:\/\/aidanfinn.com\/?p=13711"}],"amp_enabled":true,"jetpack_featured_media_url":"","_links":{"self":[{"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/posts\/13711","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=13711"}],"version-history":[{"count":0,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=\/wp\/v2\/posts\/13711\/revisions"}],"wp:attachment":[{"href":"https:\/\/aidanfinn.com\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=13711"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=13711"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/aidanfinn.com\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=13711"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}