{"id":160,"date":"2013-04-22T18:37:57","date_gmt":"2013-04-22T23:37:57","guid":{"rendered":"https:\/\/www.softwareab.net\/wordpress\/?p=160"},"modified":"2013-07-08T07:44:48","modified_gmt":"2013-07-08T12:44:48","slug":"esxi5-and-windows-cifs","status":"publish","type":"post","link":"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/","title":{"rendered":"ESXi5 and Windows CIFS"},"content":{"rendered":"<p>Hello All &#8211; another chapter in the long-running story of ESXi integration in a significant project I have worked on for the 6 months: namely, the decision to upgrade ESX from 3.5 to version 5.1 was made. As all of you know, ESXi is not the &#8220;full&#8221; ESX of 3.5; instead, it is a minimal hypervisor (&#8220;bare-metal&#8221; to use VMware marketing terms). This article covers the challenges and opportunities I found in integrating the Common Internet File System (CIFS) via Windows 2008 (<em>not<\/em> R2) with ESXi5. <!--more--> It was a bit of a shock to an ESXi n00b13 like myself. There is no <code>mount<\/code> command; instead, the admin must use <code>esxcfg-nas<\/code>. But that isn&#8217;t all&#8230;not by a long shot. For my ESXi hosts to access my Windows CIFS file server I had to take quite a few steps. This article provides three views of the problem space:<\/p>\n<ol>\n<li>&#8220;Common Setup&#8221; &#8211; Things to setup on the Windows side ahead of time.<\/li>\n<li>&#8220;Read-Write Access Shares&#8221; &#8211; How to get read-write access working.<\/li>\n<li>&#8220;Read-Only Access Shares&#8221; &#8211; Slightly easier as no write access required.<\/li>\n<\/ol>\n<h2>Common Setup for ESXi<\/h2>\n<p>In my case, I followed these steps for any CIFS (Windows 2008) server that requires ESXi consumer access:<\/p>\n<ol>\n<li><b>Install Services for Network File System.<\/b> Do not reboot after mapping.<\/li>\n<li><b>Setup user mapping or allow anonymous access.<\/b> User mapping requires many steps but would be preferred especially since Server 2008 only supports Linux-to-AD mapping. The blog entry at <a href=\"http:\/\/blog.scottlowe.org\/2007\/07\/09\/linux-ad-integration-with-windows-server-2008\/\"> Scott Lowe&#8217;s Windows 2008 Linux-AD Integration<\/a> provides excellent detail on this process. For my environment, however, this was too complex given the small number of Linux servers. Therefore, an alternate approach to modify GPO to enable anonymous access. I created an ActiveDirectory GPO &#8220;NAS Servers with Linux CIFS&#8221; and set it as follows:\n<p><em>Computer Configuration -&gt; Policies -&gt; Windows Settings -&gt; Security Settings -&gt; Local Policies -&gt; Security Options -&gt; &#8220;Network access: Let <code>Everyone<\/code> permissions apply to anonymous users&#8221;.<\/em><\/li>\n<li><b>Configure other NFS settings.<\/b> From admin command prompt:<br \/>\n<code>nfsadmin server config mountprotocol=tcp<\/code><\/li>\n<li><b>Reboot the server.<\/b> This must be done for the group policy and NFS settings to be applied properly.<\/li>\n<li><b>NFS Share Requirements.<\/b> NFS shares must be exposed such that ESXi hosts can access them. The ESXi hosts use <code>esxcfg-nas<\/code> which does not support many of the functions and options that the <code>mount<\/code> command does. So we must relax permissions on the NAS server to accommodate this. The trick is to relax permissions as minimally as possible:\n<ul>\n<li><i>Define client groups.<\/i> On the NAS server from an elevated command prompt, create a group for the ESXi hosts. For my environment this was initially done as follows with a single HDS blade used as the ESXi5 server:<code>nfsadmin server creategroup ESXiHosts<\/code> <code>nfsadmin server addmembers ESXiHosts 172.24.1.90<\/code><\/li>\n<li><i>Analyze shares and expose via<\/i> <code>nfsshare<\/code><i>.<\/i> This command-line tool can be used to grant NFS permissions to defined client groups and is the preferred way to refine privilege escalation on specific folders. The following sections detail the differences between read-write (full) and read-only permissions with practical examples.<\/li>\n<li><i>Set NTFS permissions.<\/i> NTFS permissions define actual permissions on specific folder trees. The following sections show how the <code>Everyone<\/code> group can be granted read-only or read-write (full) control on individual folders based on the share need.<\/li>\n<\/ul>\n<p>See the following sections for read-write (full) vice read-only share access.<\/p>\n<h2>Read-Write NFS Shares for ESXi<\/h2>\n<p>As an example, consider a share named &#8220;Backups&#8221; on a Windows 2008 host <code>\/\/172.24.0.33<\/code>; this is the share which ESXi5 hosts use to write backups and as such requires read-write permissions. Follow these steps:<\/p>\n<ol>\n<li><i>Expose via<\/i> <code>nfsshare<\/code><i>.<\/i> As an example, an ESXi host used which must access backed-up VM images. So the following command allows the defined ESXi hosts to access the share with full <i>NFS<\/i> permissions (as opposed to NTFS permissions).\n<p><code>nfsshare Backups=C:\\Managed\\Backups -o rw=ESXiHosts -o root=ESXiHosts -o anon=yes<\/code><\/li>\n<li><i>Set NTFS permissions.<\/i> The above command grants NFS &#8220;root&#8221; and &#8220;read-write&#8221; permissions to all hosts in the ESXiHosts group. Creating a share on an ESXi host will report success; however, trying to <i>access<\/i> that share will fail unless the <code>Everyone<\/code> group on the CIFS server is explicitly granted permissions (NTFS permissions). Best practice is to limit the number of folders where <code>Everyone<\/code> has permissions just to those absolutely required. In the case of the VM backups folder, the approach is to provide read-only access to the base &#8220;Backups&#8221; share as shown below:\n<p><a href=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/01-esxi-cifs.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-162\" alt=\"01-esxi-cifs\" src=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/01-esxi-cifs-227x300.png\" width=\"227\" height=\"300\" srcset=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/01-esxi-cifs-227x300.png 227w, https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/01-esxi-cifs.png 357w\" sizes=\"(max-width: 227px) 100vw, 227px\" \/><\/a><\/p>\n<p>For the lower-level ESX folder that is used for backups, the <code>Everyone<\/code> group requires full permissions as shown:<\/p>\n<p><a href=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/02-esxi-cifs.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-163\" alt=\"02-esxi-cifs\" src=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/02-esxi-cifs-247x300.png\" width=\"247\" height=\"300\" srcset=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/02-esxi-cifs-247x300.png 247w, https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/02-esxi-cifs.png 357w\" sizes=\"(max-width: 247px) 100vw, 247px\" \/><\/a><\/li>\n<\/ol>\n<p>The above steps are not perfect and using Active Directory Linux User Mapping might be a way to provide finer control over permissions. But the above process does work as shown in the following screen shot from a running ESXi host:<\/p>\n<p><a href=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/03-esxi-cifs.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-164\" alt=\"03-esxi-cifs\" src=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/03-esxi-cifs-300x69.png\" width=\"300\" height=\"69\" srcset=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/03-esxi-cifs-300x69.png 300w, https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/03-esxi-cifs.png 545w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p>In the above shot, a share has been created. Then the file <code>foo.txt<\/code> was written to within the top-level share (&#8220;\/Backups&#8221;). NTFS permissions on the NAS server provide the ESXi5 host with read-only permissions (via the <code>Everyone<\/code> group) so that failed. However, under the &#8220;\/Backups\/ESX&#8221; folder read-write permissions <i>are<\/i> available as well as delete.<\/p>\n<h2>Read-Only NFS Shares for ESXi5<\/h2>\n<p>The use case is the &#8220;Software&#8221; share on \/\/172.24.0.33, which must be available to ESXi hosts so that we can access an ESXi patch depot. It is easier as read-only is the default access. Follow these steps:<\/p>\n<ol>\n<li><i>Expose via<\/i> <code>nfsshare<\/code><i>.<\/i> For example, assume an ESXi host must access a backup partition. The following command allows the defined ESXi hosts to access the share with full <i>NFS<\/i> permissions (as opposed to NTFS permissions).\n<p><code>nfsshare Software=C:\\Managed\\Software -o rw=ESXiHosts -o root=ESXiHosts -o anon=yes<\/code><\/br><\/li>\n<li><i>Set NTFS permissions.<\/i> The above command grants NFS <code>root<\/code> and &#8220;read-only&#8221; permissions to all hosts in the ESXiHosts group. Creating a share on an ESXi host will report success; however, trying to <i>access<\/i> that share will fail unless the <code>Everyone<\/code> group is explicitly granted read-only permissions at NTFS level. (By default, the <code>Everyone<\/code> group has <i>no permissions<\/i> on any folder.) The following shows the permissions being set for read-only access:\n<p><a href=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/04-esxi-cifs.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-165\" alt=\"04-esxi-cifs\" src=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/04-esxi-cifs-233x300.png\" width=\"233\" height=\"300\" srcset=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/04-esxi-cifs-233x300.png 233w, https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/04-esxi-cifs.png 366w\" sizes=\"(max-width: 233px) 100vw, 233px\" \/><\/a><\/br><\/li>\n<\/ol>\n<p>No more steps should be necessary, running the <code>esxcfg-nas<\/code> should work on the ESXi host. Here is an example from an ESXi5 host &#8220;ESXHost011HB&#8221; running on the first CB2000 blade within my Infrastructure rack:<\/p>\n<p><a href=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/05-esxi-cifs.png\"><img loading=\"lazy\" decoding=\"async\" class=\"alignnone size-medium wp-image-166\" alt=\"05-esxi-cifs\" src=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/05-esxi-cifs-300x140.png\" width=\"300\" height=\"140\" srcset=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/05-esxi-cifs-300x140.png 300w, https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/05-esxi-cifs.png 624w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p>In the above example, the user first logs in to the ESXi host (<code>ssh root@172.24.1.90<\/code>), then creates the share mapped to a local datastore (<code>esxcfg-nas -a -o 172.24.0.33 -s \/Software Software<\/code>), then lists the contents of the mounted data folder (<code>ls \/vmfs\/volumes\/Software\/VMware\/esxhost\/patch_depot\/ESX500\/zips<\/code>), and finally deletes the mount point (<code>esxcfg-nas -d Software<\/code>). This last point about deleting the mount point is a good habit; do not leave mounts unless they are needed.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Hello All &#8211; another chapter in the long-running story of ESXi integration in a significant project I have worked on for the 6 months: namely, the decision to upgrade ESX from 3.5 to version 5.1 was made. As all of &hellip;<\/p>\n<p class=\"read-more\"> <a class=\"more-link\" href=\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/\"> <span class=\"screen-reader-text\">ESXi5 and Windows CIFS<\/span> Read More &raquo;<\/a><\/p>\n","protected":false},"author":3,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1,11],"tags":[19,20,33],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v22.2 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>ESXi5 and Windows CIFS - softwareab<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"ESXi5 and Windows CIFS - softwareab\" \/>\n<meta property=\"og:description\" content=\"Hello All &#8211; another chapter in the long-running story of ESXi integration in a significant project I have worked on for the 6 months: namely, the decision to upgrade ESX from 3.5 to version 5.1 was made. As all of &hellip; ESXi5 and Windows CIFS Read More &raquo;\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/\" \/>\n<meta property=\"og:site_name\" content=\"softwareab\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/cloudraticsolutions\/\" \/>\n<meta property=\"article:author\" content=\"https:\/\/www.facebook.com\/cloudraticsolutions\/\" \/>\n<meta property=\"article:published_time\" content=\"2013-04-22T23:37:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2013-07-08T12:44:48+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/01-esxi-cifs-227x300.png\" \/>\n<meta name=\"author\" content=\"Andrew Bruce\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@realcloudratics\" \/>\n<meta name=\"twitter:site\" content=\"@realcloudratics\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Andrew Bruce\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/\"},\"author\":{\"name\":\"Andrew Bruce\",\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/#\/schema\/person\/1337443eaeb75104e0410b508e67f600\"},\"headline\":\"ESXi5 and Windows CIFS\",\"datePublished\":\"2013-04-22T23:37:57+00:00\",\"dateModified\":\"2013-07-08T12:44:48+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/\"},\"wordCount\":1040,\"commentCount\":2,\"publisher\":{\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/#\/schema\/person\/1337443eaeb75104e0410b508e67f600\"},\"image\":{\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/01-esxi-cifs-227x300.png\",\"keywords\":[\"network\",\"vmware\",\"w2k8r2\"],\"articleSection\":[\"Teknocratica\",\"VMware\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/\",\"url\":\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/\",\"name\":\"ESXi5 and Windows CIFS - softwareab\",\"isPartOf\":{\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/01-esxi-cifs-227x300.png\",\"datePublished\":\"2013-04-22T23:37:57+00:00\",\"dateModified\":\"2013-07-08T12:44:48+00:00\",\"breadcrumb\":{\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#primaryimage\",\"url\":\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/01-esxi-cifs.png\",\"contentUrl\":\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/01-esxi-cifs.png\",\"width\":357,\"height\":470},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.softwareab.net\/wordpress\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"network\",\"item\":\"https:\/\/www.softwareab.net\/wordpress\/tag\/network-2\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"ESXi5 and Windows CIFS\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/#website\",\"url\":\"https:\/\/www.softwareab.net\/wordpress\/\",\"name\":\"softwareab\",\"description\":\"Technocratica, Technopolitik, Technophobia\",\"publisher\":{\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/#\/schema\/person\/1337443eaeb75104e0410b508e67f600\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.softwareab.net\/wordpress\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/#\/schema\/person\/1337443eaeb75104e0410b508e67f600\",\"name\":\"Andrew Bruce\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2024\/03\/andy-cartoon.jpg\",\"contentUrl\":\"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2024\/03\/andy-cartoon.jpg\",\"width\":400,\"height\":330,\"caption\":\"Andrew Bruce\"},\"logo\":{\"@id\":\"https:\/\/www.softwareab.net\/wordpress\/#\/schema\/person\/image\/\"},\"description\":\"Team-oriented systems mentor with deep knowledge of numerous software methodologies, technologies, languages, and operating systems. Excited about turning emerging technology into working production-ready systems. Focused on moving software teams to a higher level of world-class application development. Specialties:Software analysis and development...Product management through the entire lifecycle...Discrete product integration specialist!\",\"sameAs\":[\"http:\/\/cloudraticsolutions.net\/\",\"https:\/\/www.facebook.com\/cloudraticsolutions\/\",\"https:\/\/twitter.com\/realcloudratics\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"ESXi5 and Windows CIFS - softwareab","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:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/","og_locale":"en_US","og_type":"article","og_title":"ESXi5 and Windows CIFS - softwareab","og_description":"Hello All &#8211; another chapter in the long-running story of ESXi integration in a significant project I have worked on for the 6 months: namely, the decision to upgrade ESX from 3.5 to version 5.1 was made. As all of &hellip; ESXi5 and Windows CIFS Read More &raquo;","og_url":"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/","og_site_name":"softwareab","article_publisher":"https:\/\/www.facebook.com\/cloudraticsolutions\/","article_author":"https:\/\/www.facebook.com\/cloudraticsolutions\/","article_published_time":"2013-04-22T23:37:57+00:00","article_modified_time":"2013-07-08T12:44:48+00:00","og_image":[{"url":"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/01-esxi-cifs-227x300.png"}],"author":"Andrew Bruce","twitter_card":"summary_large_image","twitter_creator":"@realcloudratics","twitter_site":"@realcloudratics","twitter_misc":{"Written by":"Andrew Bruce","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#article","isPartOf":{"@id":"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/"},"author":{"name":"Andrew Bruce","@id":"https:\/\/www.softwareab.net\/wordpress\/#\/schema\/person\/1337443eaeb75104e0410b508e67f600"},"headline":"ESXi5 and Windows CIFS","datePublished":"2013-04-22T23:37:57+00:00","dateModified":"2013-07-08T12:44:48+00:00","mainEntityOfPage":{"@id":"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/"},"wordCount":1040,"commentCount":2,"publisher":{"@id":"https:\/\/www.softwareab.net\/wordpress\/#\/schema\/person\/1337443eaeb75104e0410b508e67f600"},"image":{"@id":"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#primaryimage"},"thumbnailUrl":"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/01-esxi-cifs-227x300.png","keywords":["network","vmware","w2k8r2"],"articleSection":["Teknocratica","VMware"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/","url":"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/","name":"ESXi5 and Windows CIFS - softwareab","isPartOf":{"@id":"https:\/\/www.softwareab.net\/wordpress\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#primaryimage"},"image":{"@id":"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#primaryimage"},"thumbnailUrl":"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/01-esxi-cifs-227x300.png","datePublished":"2013-04-22T23:37:57+00:00","dateModified":"2013-07-08T12:44:48+00:00","breadcrumb":{"@id":"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#primaryimage","url":"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/01-esxi-cifs.png","contentUrl":"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2013\/04\/01-esxi-cifs.png","width":357,"height":470},{"@type":"BreadcrumbList","@id":"https:\/\/www.softwareab.net\/wordpress\/esxi5-and-windows-cifs\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.softwareab.net\/wordpress\/"},{"@type":"ListItem","position":2,"name":"network","item":"https:\/\/www.softwareab.net\/wordpress\/tag\/network-2\/"},{"@type":"ListItem","position":3,"name":"ESXi5 and Windows CIFS"}]},{"@type":"WebSite","@id":"https:\/\/www.softwareab.net\/wordpress\/#website","url":"https:\/\/www.softwareab.net\/wordpress\/","name":"softwareab","description":"Technocratica, Technopolitik, Technophobia","publisher":{"@id":"https:\/\/www.softwareab.net\/wordpress\/#\/schema\/person\/1337443eaeb75104e0410b508e67f600"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.softwareab.net\/wordpress\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.softwareab.net\/wordpress\/#\/schema\/person\/1337443eaeb75104e0410b508e67f600","name":"Andrew Bruce","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.softwareab.net\/wordpress\/#\/schema\/person\/image\/","url":"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2024\/03\/andy-cartoon.jpg","contentUrl":"https:\/\/www.softwareab.net\/wordpress\/wp-content\/uploads\/2024\/03\/andy-cartoon.jpg","width":400,"height":330,"caption":"Andrew Bruce"},"logo":{"@id":"https:\/\/www.softwareab.net\/wordpress\/#\/schema\/person\/image\/"},"description":"Team-oriented systems mentor with deep knowledge of numerous software methodologies, technologies, languages, and operating systems. Excited about turning emerging technology into working production-ready systems. Focused on moving software teams to a higher level of world-class application development. Specialties:Software analysis and development...Product management through the entire lifecycle...Discrete product integration specialist!","sameAs":["http:\/\/cloudraticsolutions.net\/","https:\/\/www.facebook.com\/cloudraticsolutions\/","https:\/\/twitter.com\/realcloudratics"]}]}},"_links":{"self":[{"href":"https:\/\/www.softwareab.net\/wordpress\/wp-json\/wp\/v2\/posts\/160"}],"collection":[{"href":"https:\/\/www.softwareab.net\/wordpress\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.softwareab.net\/wordpress\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.softwareab.net\/wordpress\/wp-json\/wp\/v2\/users\/3"}],"replies":[{"embeddable":true,"href":"https:\/\/www.softwareab.net\/wordpress\/wp-json\/wp\/v2\/comments?post=160"}],"version-history":[{"count":10,"href":"https:\/\/www.softwareab.net\/wordpress\/wp-json\/wp\/v2\/posts\/160\/revisions"}],"predecessor-version":[{"id":377,"href":"https:\/\/www.softwareab.net\/wordpress\/wp-json\/wp\/v2\/posts\/160\/revisions\/377"}],"wp:attachment":[{"href":"https:\/\/www.softwareab.net\/wordpress\/wp-json\/wp\/v2\/media?parent=160"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.softwareab.net\/wordpress\/wp-json\/wp\/v2\/categories?post=160"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.softwareab.net\/wordpress\/wp-json\/wp\/v2\/tags?post=160"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}