<?xml version="1.0" encoding="UTF-8"?><!-- generator="wordpress.com" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	>

<channel>
	<title>sysadmin &amp;laquo; WordPress.com Tag Feed</title>
	<link>http://en.wordpress.com/tag/sysadmin/</link>
	<description>Feed of posts on WordPress.com tagged "sysadmin"</description>
	<pubDate>Sun, 19 May 2013 04:59:48 +0000</pubDate>

	<generator>http://en.wordpress.com/tags/</generator>
	<language>en</language>

<item>
<title><![CDATA[My First 5 Minutes On A Server]]></title>
<link>http://pencilneck.wordpress.com/2013/03/04/my-first-5-minutes-on-a-server/</link>
<pubDate>Mon, 04 Mar 2013 10:21:43 +0000</pubDate>
<dc:creator>pencilneck</dc:creator>
<guid>http://pencilneck.wordpress.com/2013/03/04/my-first-5-minutes-on-a-server/</guid>
<description><![CDATA[http://plusbryan.com/my-first-5-minutes-on-a-server-or-essential-security-for-linux-servers]]></description>
<content:encoded><![CDATA[<p><a href="http://plusbryan.com/my-first-5-minutes-on-a-server-or-essential-security-for-linux-servers" rel="nofollow">http://plusbryan.com/my-first-5-minutes-on-a-server-or-essential-security-for-linux-servers</a></p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[How To - Find user login history via Terminal]]></title>
<link>http://jamauai.wordpress.com/2013/03/01/how-to-find-user-login-history-via-terminal/</link>
<pubDate>Fri, 01 Mar 2013 22:53:31 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/03/01/how-to-find-user-login-history-via-terminal/</guid>
<description><![CDATA[This command-line tool displays a history of user accounts that were logged into the computer as wel]]></description>
<content:encoded><![CDATA[This command-line tool displays a history of user accounts that were logged into the computer as wel]]></content:encoded>
</item>
<item>
<title><![CDATA[Considering GlusterFS for a side project]]></title>
<link>http://ifireball.wordpress.com/2013/03/01/considering-glusterfs-for-a-side-project/</link>
<pubDate>Fri, 01 Mar 2013 10:39:55 +0000</pubDate>
<dc:creator>ifireball</dc:creator>
<guid>http://ifireball.wordpress.com/2013/03/01/considering-glusterfs-for-a-side-project/</guid>
<description><![CDATA[GlusterFS has been getting a lot of attention recently with RedHat&#8217;s decision to integrate it]]></description>
<content:encoded><![CDATA[GlusterFS has been getting a lot of attention recently with RedHat&#8217;s decision to integrate it]]></content:encoded>
</item>
<item>
<title><![CDATA[How To - Remove 'Other' account at login screen]]></title>
<link>http://jamauai.wordpress.com/2013/02/28/how-to-remove-other-account-at-login-screen/</link>
<pubDate>Thu, 28 Feb 2013 20:30:13 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/02/28/how-to-remove-other-account-at-login-screen/</guid>
<description><![CDATA[The &#8220;Other&#8221; account option at the mac login screen is enabled by default. Networked user]]></description>
<content:encoded><![CDATA[The &#8220;Other&#8221; account option at the mac login screen is enabled by default. Networked user]]></content:encoded>
</item>
<item>
<title><![CDATA[Solaris + xenserver + ovswitch]]></title>
<link>http://mperedim.wordpress.com/2013/02/28/solaris-xenserver-ovswitch/</link>
<pubDate>Thu, 28 Feb 2013 19:04:50 +0000</pubDate>
<dc:creator>mperedim</dc:creator>
<guid>http://mperedim.wordpress.com/2013/02/28/solaris-xenserver-ovswitch/</guid>
<description><![CDATA[This has troubling me for quite some time, hopefully someone else can save a few hours by bumping in]]></description>
<content:encoded><![CDATA[<p>This has troubling me for quite some time, hopefully someone else can save a few hours by bumping in this post. </p>
<p>For some reason my Solaris 10 Virtual Machines on <a href="http://www.citrix.com/xenserver">Xenserver</a> failed when the Distributed Virtual Switch Controller was also running. I didn&#8217;t really troubleshoot the issue until recently since I could live without cross-server private networks. This no longer being the case I decided to look into it again. </p>
<p>Scroll forward a couple of hours and after losing quite some time on trying various tricks on the VM (disabling NIC checksum offload, lower MTUs etc) to no avail I concluded that it must be a hypervisor issue. Digging into the openvswitch tools revealed something interesting. </p>
<p><code><br />
[root@xenserver ~]# ovs-vsctl list-ports xapi25<br />
vif42.0<br />
tap47.0<br />
vif47.0<br />
vif6.0<br />
</code></p>
<p>Specifically, for my Linux VMs only a vifX.Y interface was being added to the bridge, while for my Solaris ones both a tapX.Y and a vifX.Y. Clickety-click. </p>
<p><code><br />
[root@xenserver ~]# ovs-vsctl del-port xapi25 tap47.0<br />
</code></p>
<p>Et voila! Network connectivity to the Solaris VM works like a charm. Now to make this change permanent: </p>
<p><code><br />
[root@xenserver ~]# diff /etc/xensource/scripts/vif.orig /etc/xensource/scripts/vif<br />
134c134,138<br />
         if [[ $dev != tap* ]]; then<br />
&#62;             $vsctl --timeout=30 -- --if-exists del-port $dev -- add-port $bridge $dev $vif_details<br />
&#62;         else<br />
&#62;             echo Skipping command $vsctl --timeout=30 -- --if-exists del-port $dev -- add-port $bridge $dev $vif_details<br />
&#62;         fi<br />
</code></p>
<p>I am not really certain of the ugly side-effects that this may have. But it does the trick for me. </p>
<p><strong>Update 2013/03/10</strong>: A better workaround is to have the above behavior apply only to Solaris VMs. For example, assuming that these are based on the &#8220;Solaris 10 (experimental)&#8221; template, the following snippet skips the offending command only for the Solaris VMs: </p>
<pre>
if [[ $dev != tap* ]]; then
    $vsctl --timeout=30 -- --if-exists del-port $dev -- add-port $bridge $dev $vif_details
else
    xe vm-list dom-id=$DOMID params=name-description &#124; grep 'Solaris 10' 2&#62;&#38;1 &#62;/dev/null &#124;&#124; \
        $vsctl --timeout=30 -- --if-exists del-port $dev -- add-port $bridge $dev $vif_details
fi
</pre>
]]></content:encoded>
</item>
<item>
<title><![CDATA[don't do the damn symlink yourself]]></title>
<link>http://incarnate365.wordpress.com/2013/02/28/dont-do-the-damn-symlink-yourself/</link>
<pubDate>Thu, 28 Feb 2013 15:16:33 +0000</pubDate>
<dc:creator>jaydestro</dc:creator>
<guid>http://incarnate365.wordpress.com/2013/02/28/dont-do-the-damn-symlink-yourself/</guid>
<description><![CDATA[setting up a vhost in apache on an ubuntu machine?  need to symlink it to sites-enabled?  don&#8217;]]></description>
<content:encoded><![CDATA[<p>setting up a vhost in apache on an ubuntu machine?  need to symlink it to sites-enabled?  don&#8217;t do it manually you big dummy.</p>
<p>following commands let you create/destroy symlinks for vhosts and apache modules:</p>
<p>a2dismod  a2dissite  a2enmod    a2ensite</p>
<p>so blahblah blah i add a new site for supercoolblog.net</p>
<p>create my vhost in /etc/apache2/sites-available/supercoolblog.net</p>
<p><span style="font-family:Consolas, Monaco, monospace;font-size:12px;line-height:18px;">a2ensite supercoolblog.net</span></p>
<p>Symlink is added, restart apache and you got your cool site.</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Fix - (ARD) Can't remote into curtain-mode enabled client]]></title>
<link>http://jamauai.wordpress.com/2013/02/27/fix-ard-cant-remote-into-curtain-mode-enabled-client-2/</link>
<pubDate>Thu, 28 Feb 2013 03:52:22 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/02/27/fix-ard-cant-remote-into-curtain-mode-enabled-client-2/</guid>
<description><![CDATA[Curtain mode in Apple Remote Desktop to allows IT Admins to lock a remote computer&#8217;s screen wh]]></description>
<content:encoded><![CDATA[Curtain mode in Apple Remote Desktop to allows IT Admins to lock a remote computer&#8217;s screen wh]]></content:encoded>
</item>
<item>
<title><![CDATA[change that, son.]]></title>
<link>http://incarnate365.wordpress.com/2013/02/27/change-that-son/</link>
<pubDate>Wed, 27 Feb 2013 18:25:25 +0000</pubDate>
<dc:creator>jaydestro</dc:creator>
<guid>http://incarnate365.wordpress.com/2013/02/27/change-that-son/</guid>
<description><![CDATA[http://www.commandlinefu.com/commands/view/8374/rename-all-files-which-contain-the-sub-string-foo-re]]></description>
<content:encoded><![CDATA[<p><a href="http://www.commandlinefu.com/commands/view/8374/rename-all-files-which-contain-the-sub-string-foo-replacing-it-with-bar">http://www.commandlinefu.com/commands/view/8374/rename-all-files-which-contain-the-sub-string-foo-replacing-it-with-bar</a></p>
<p>This was a great help.  Basically I had to take about 8 files with the word &#8220;stage&#8221; in them and replace it with &#8220;dev&#8221;</p>
<pre>for i in ./*stage*;do mv -- "$i" "${i//stage/dev}";done</pre>
<p>Bang, done!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Fix - (Flash CS6) AIR SDK version 3.4 is missing]]></title>
<link>http://jamauai.wordpress.com/2013/02/27/fix-flash-cs6-air-sdk-version-3-4-is-missing/</link>
<pubDate>Wed, 27 Feb 2013 11:37:03 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/02/27/fix-flash-cs6-air-sdk-version-3-4-is-missing/</guid>
<description><![CDATA[This error came after installing CS6 on the lab computers manually (one-by-one). Usually if you]]></description>
<content:encoded><![CDATA[This error came after installing CS6 on the lab computers manually (one-by-one). Usually if you]]></content:encoded>
</item>
<item>
<title><![CDATA[Fix - (Disk Utility) Couldn't unmount disk]]></title>
<link>http://jamauai.wordpress.com/2013/02/27/fix-couldnt-unmount-disk-disk-utility/</link>
<pubDate>Wed, 27 Feb 2013 11:31:38 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/02/27/fix-couldnt-unmount-disk-disk-utility/</guid>
<description><![CDATA[I came across this problem while trying to erase a partition on one of our file servers. After an ho]]></description>
<content:encoded><![CDATA[I came across this problem while trying to erase a partition on one of our file servers. After an ho]]></content:encoded>
</item>
<item>
<title><![CDATA[Fix - Stuck at spinning wheel during startup]]></title>
<link>http://jamauai.wordpress.com/2013/02/27/fix-mac-stuck-at-spinning-wheel-during-startup/</link>
<pubDate>Wed, 27 Feb 2013 11:23:49 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/02/27/fix-mac-stuck-at-spinning-wheel-during-startup/</guid>
<description><![CDATA[I nearly had a heart attack when this happened. I was making configurations on our file server, and]]></description>
<content:encoded><![CDATA[I nearly had a heart attack when this happened. I was making configurations on our file server, and]]></content:encoded>
</item>
<item>
<title><![CDATA[Fix - (ARD) A newer version of this software already exists on this disk]]></title>
<link>http://jamauai.wordpress.com/2013/02/27/fix-ard-a-newer-version-of-this-software-already-exists-on-this-disk/</link>
<pubDate>Wed, 27 Feb 2013 11:16:42 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/02/27/fix-ard-a-newer-version-of-this-software-already-exists-on-this-disk/</guid>
<description><![CDATA[This fix is intended for those who don&#8217;t yet have access to the latest Apple Remote Desktop in]]></description>
<content:encoded><![CDATA[This fix is intended for those who don&#8217;t yet have access to the latest Apple Remote Desktop in]]></content:encoded>
</item>
<item>
<title><![CDATA[Fix - Application window(s) automatically open at every login]]></title>
<link>http://jamauai.wordpress.com/2013/02/27/fix-application-windows-open-when-students-log-in/</link>
<pubDate>Wed, 27 Feb 2013 11:03:16 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/02/27/fix-application-windows-open-when-students-log-in/</guid>
<description><![CDATA[This is caused by copying certain plist files, or in some cases the entire English.lproj folder over]]></description>
<content:encoded><![CDATA[This is caused by copying certain plist files, or in some cases the entire English.lproj folder over]]></content:encoded>
</item>
<item>
<title><![CDATA[Fix - CS6 still prompting for serial &amp; authentication]]></title>
<link>http://jamauai.wordpress.com/2013/02/27/fix-cs6-still-prompting-for-serial-authentication/</link>
<pubDate>Wed, 27 Feb 2013 10:57:52 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/02/27/fix-cs6-still-prompting-for-serial-authentication/</guid>
<description><![CDATA[With the previous Adobe Creative Suite software versions, once you input the serial number and Adobe]]></description>
<content:encoded><![CDATA[With the previous Adobe Creative Suite software versions, once you input the serial number and Adobe]]></content:encoded>
</item>
<item>
<title><![CDATA[Fix - Premier Pro error "Media Cache Not Found"]]></title>
<link>http://jamauai.wordpress.com/2013/02/27/fix-premier-pro-error-media-cache-not-found/</link>
<pubDate>Wed, 27 Feb 2013 10:47:03 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/02/27/fix-premier-pro-error-media-cache-not-found/</guid>
<description><![CDATA[This error is a result of copying unnecessary preference files over to the User Template. In this ca]]></description>
<content:encoded><![CDATA[This error is a result of copying unnecessary preference files over to the User Template. In this ca]]></content:encoded>
</item>
<item>
<title><![CDATA[Fix - Can't install plugins/add-ons after CS6 installation via AAMEE]]></title>
<link>http://jamauai.wordpress.com/2013/02/27/fix-cant-install-pluginsadd-ons-after-cs6-installation-via-aamee/</link>
<pubDate>Wed, 27 Feb 2013 10:40:47 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/02/27/fix-cant-install-pluginsadd-ons-after-cs6-installation-via-aamee/</guid>
<description><![CDATA[When you install CS6 using AAMEE, updates are disabled by default. If you feel the need to update an]]></description>
<content:encoded><![CDATA[When you install CS6 using AAMEE, updates are disabled by default. If you feel the need to update an]]></content:encoded>
</item>
<item>
<title><![CDATA[Fix - Auralia couldn't connect to the database]]></title>
<link>http://jamauai.wordpress.com/2013/02/27/fix-auralia-couldnt-connect-to-the-database/</link>
<pubDate>Wed, 27 Feb 2013 10:24:09 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/02/27/fix-auralia-couldnt-connect-to-the-database/</guid>
<description><![CDATA[There will be an error trying to open Auralia after the image has been deployed. I don&#8217;t know]]></description>
<content:encoded><![CDATA[There will be an error trying to open Auralia after the image has been deployed. I don&#8217;t know]]></content:encoded>
</item>
<item>
<title><![CDATA[Fix - The system was unable to unlock your login keychain]]></title>
<link>http://jamauai.wordpress.com/2013/02/27/fix-the-system-was-unable-to-unlock-your-login-keychain/</link>
<pubDate>Wed, 27 Feb 2013 10:12:34 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/02/27/fix-the-system-was-unable-to-unlock-your-login-keychain/</guid>
<description><![CDATA[If you&#8217;ve created a custom user template (when creating an image) and forgot to delete the use]]></description>
<content:encoded><![CDATA[If you&#8217;ve created a custom user template (when creating an image) and forgot to delete the use]]></content:encoded>
</item>
<item>
<title><![CDATA[How To - Setup Pharos printing on laptops]]></title>
<link>http://jamauai.wordpress.com/2013/02/26/how-to-setup-pharos-printing-on-laptops-2/</link>
<pubDate>Wed, 27 Feb 2013 06:29:30 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/02/26/how-to-setup-pharos-printing-on-laptops-2/</guid>
<description><![CDATA[Here are some important things you should remember when setting up printers on laptops: - You may ha]]></description>
<content:encoded><![CDATA[Here are some important things you should remember when setting up printers on laptops: - You may ha]]></content:encoded>
</item>
<item>
<title><![CDATA[How To - Remove "Nearby Printers" as an option]]></title>
<link>http://jamauai.wordpress.com/2013/02/26/how-to-remove-nearby-printers-as-an-option/</link>
<pubDate>Wed, 27 Feb 2013 05:28:59 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/02/26/how-to-remove-nearby-printers-as-an-option/</guid>
<description><![CDATA[In an enterprise situation, for example a University, this is a pretty big deal. If a student select]]></description>
<content:encoded><![CDATA[In an enterprise situation, for example a University, this is a pretty big deal. If a student select]]></content:encoded>
</item>
<item>
<title><![CDATA[How To - Remove iCloud Setup Assistant]]></title>
<link>http://jamauai.wordpress.com/2013/02/25/how-to-remove-icloud-setup-assistant/</link>
<pubDate>Tue, 26 Feb 2013 08:07:22 +0000</pubDate>
<dc:creator>jamauai</dc:creator>
<guid>http://jamauai.wordpress.com/2013/02/25/how-to-remove-icloud-setup-assistant/</guid>
<description><![CDATA[The iCloud setup assistant that pops up by default when a new user logs in is irritating. Also, it]]></description>
<content:encoded><![CDATA[The iCloud setup assistant that pops up by default when a new user logs in is irritating. Also, it]]></content:encoded>
</item>
<item>
<title><![CDATA[Dansguardian + Squid +Cntlm + Proxy Parent = Internet Access]]></title>
<link>http://adolfomaltez.wordpress.com/2013/02/22/dansguardian-squid-cntlm-proxy-parent-internet-access/</link>
<pubDate>Fri, 22 Feb 2013 15:32:10 +0000</pubDate>
<dc:creator>meistermaltez</dc:creator>
<guid>http://adolfomaltez.wordpress.com/2013/02/22/dansguardian-squid-cntlm-proxy-parent-internet-access/</guid>
<description><![CDATA[Problem:  The credentials in my proxy parent was upgraded from basic to NTLM. I don&#8217;t know how]]></description>
<content:encoded><![CDATA[<p><strong>Problem: </strong> The credentials in my proxy parent was upgraded from basic to NTLM. I don&#8217;t know how to configure Squid for NTLM auth against proxy parent.</p>
<p><strong>Solution:</strong> Install Cntlm between Squid and proxy parent.</p>
<p>Cntlm (<a title="http://sourceforge.net/projects/cntlm/" href="http://sourceforge.net/projects/cntlm/" target="_blank">http://sourceforge.net/projects/cntlm/</a>): &#8220;Is an NTLM / NTLMv2 authenticating HTTP/1.1 proxy&#8221;.</p>
<p><a href="http://adolfomaltez.files.wordpress.com/2013/02/dg-squid-cntlm.png"><img class="alignnone size-thumbnail wp-image-471" alt="dg-squid-cntlm" src="http://adolfomaltez.files.wordpress.com/2013/02/dg-squid-cntlm.png" /></a></p>
<p>In front of my clients, in the proxy server, Dansguardian is installed for content filtering.</p>
<p>Then Squid listen only for dansguardian requests and redirects to a proxy parent.</p>
<p>Because I don&#8217;t know if its possible to configure Squid to authenticate with the proxy parent using NTLM, instead, I have used cntlm between Squid and the proxy parent. Good idea huh!</p>
<p>The basic configuration will be like:</p>
<p><strong>Client:</strong> Shots to Dansguardian.</p>
<p><code>Proxy: 192.168.5.7<br />
Port: 8080</code></p>
<p><strong>Dansguandian:</strong> Listen on port 8080 and shots to squid.</p>
<p><code>filterip = 192.168.5.7<br />
filterport = 8080<br />
proxyip = 192.168.5.7<br />
proxyport = 3128</code></p>
<p><strong>Squid:</strong> Listen on port 3128 and shots to cntlm:</p>
<p><code>http_port 192.168.5.7:3128<br />
cache_peer 192.168.5.7  parent  4040  0  default no-query proxy-only</code></p>
<p><strong>Cntlm:</strong> Listen on port 4040 and shots to Proxy parent with the credentials:</p>
<p><code>Username    userofdomain<br />
Domain       MYCOMPANY<br />
Password    supersecretpassword<br />
Proxy        10.0.0.10:8080<br />
Listen        192.168.5.7:4040</code></p>
<p><code>Daemons:</code> After configuring, restart every daemon:</p>
<p><code># /etc/init.d/cntlm restart<br />
# /etc/init.d/squid3 restart<br />
# /etc/init.d/dansguardian restart</code></p>
<p>Well, for prevent clients to directly jump to cntlm or squid evading the filter, somo iptables rules:</p>
<p>Redirect traffic to port 3128 (squid) to filter on port 8080 (DansGuardian).<br />
<code># iptables -t nat -A PREROUTING -p tcp -s 0.0.0.0/0 --dport 3128 -j REDIRECT --to 8080;</code></p>
<p>Redirect traffic to port 4040 (cntlm) to filter on port 8080 (DansGuardian).<br />
<code># iptables -t nat -A PREROUTING -p tcp -s 0.0.0.0/0 --dport 4040 -j REDIRECT --to 8080;</code></p>
<p>Ta Dan!</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[Troubleshooting network teaming issue on ESX/ESXi]]></title>
<link>http://saltwetbytes.wordpress.com/2013/02/22/troubleshooting-network-teaming-issue-on-esxesxi/</link>
<pubDate>Fri, 22 Feb 2013 01:26:02 +0000</pubDate>
<dc:creator>Kelvin Wong</dc:creator>
<guid>http://saltwetbytes.wordpress.com/2013/02/22/troubleshooting-network-teaming-issue-on-esxesxi/</guid>
<description><![CDATA[Today, VMWare blog posted a fantastic and detailed article on troubleshooting network teaming issue]]></description>
<content:encoded><![CDATA[<p>Today, VMWare blog posted a fantastic and detailed article on troubleshooting network teaming issue on ESX/ESX (which as a VMWare newbie frankly had been a danting task, but I am getting the hang of it)</p>
<p><a href="http://blogs.vmware.com/kb/2013/02/troubleshooting-network-teaming-problems-in-esxesxi.html">http://blogs.vmware.com/kb/2013/02/troubleshooting-network-teaming-problems-in-esxesxi.html</a></p>
<p>A quick summary of what I picked up from this:</p>
<ul>
<li>If you are using VST or Virtual Switch Tagging, your physical network must be configured with VLAN trunking using 802.1q protocol on the physical switch</li>
<li>If you are using ‘Route based on originating virtual port ID’ load balancing type, the physical switch should not be configured for link aggregation (802.3ad or etherchannel or Trunks). Link aggregation or bonding should be used only with IP hash load balancing type.</li>
<li>When troubleshooting VM network issue, remember to identify which port group and VLAN ID is belongs to</li>
<li>To determine this which NIC a VM, connect to the host using SSH or via the Local Tech Support Mode console and use a tool called esxtop. From within esxtop, we simply hit ‘n’ for the networking view and it will show you which NIC the VM is using.</li>
</ul>
<p>&#160;</p>
]]></content:encoded>
</item>
<item>
<title><![CDATA[The little ssh that (sometimes) couldn't - Mina Naguib]]></title>
<link>http://nathankohler.wordpress.com/2013/02/21/the-little-ssh-that-sometimes-couldnt-mina-naguib/</link>
<pubDate>Thu, 21 Feb 2013 06:27:41 +0000</pubDate>
<dc:creator>Nathan Kohler</dc:creator>
<guid>http://nathankohler.wordpress.com/2013/02/21/the-little-ssh-that-sometimes-couldnt-mina-naguib/</guid>
<description><![CDATA[The little ssh that (sometimes) couldn&#8217;t &#8211; Mina Naguib.]]></description>
<content:encoded><![CDATA[<p><a href="http://mina.naguib.ca/blog/2012/10/22/the-little-ssh-that-sometimes-couldnt.html">The little ssh that (sometimes) couldn&#8217;t &#8211; Mina Naguib</a>.</p>
]]></content:encoded>
</item>

</channel>
</rss>
