<?xml version="1.0" encoding="UTF-8"?>
<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/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title></title>
	<atom:link href="http://cloudmac.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://cloudmac.net</link>
	<description>cloudmac - your mac in the cloud</description>
	<lastBuildDate>Thu, 10 May 2012 20:14:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>More bandwidth!</title>
		<link>http://cloudmac.net/2012/05/more-bandwidth/</link>
		<comments>http://cloudmac.net/2012/05/more-bandwidth/#comments</comments>
		<pubDate>Mon, 07 May 2012 18:28:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://cloudmac.net/?p=744</guid>
		<description><![CDATA[To continue offering premier Los Angeles Mac hosting, CloudMac has increased bandwidth on colo and dedicated Mac mini&#8217;s. $30/mo includes colo for your Mac mini and 500GB monthly transit on a 1Gbps (1000Mbps) port.  We feel everybody needs fast connections so we only offer 1Gb ports for all customers on our non-oversubscribed network. Pricing details [...]]]></description>
			<content:encoded><![CDATA[<p>To continue offering premier Los Angeles Mac hosting, CloudMac has increased bandwidth on colo and dedicated Mac mini&#8217;s.</p>
<p>$30/mo includes colo for your Mac mini and 500GB monthly transit on a 1Gbps (1000Mbps) port.  We feel everybody needs fast connections so we only offer 1Gb ports for all customers on our non-oversubscribed network.</p>
<p>Pricing details are available here: <a href="http://cloudmac.net/pricing/">http://cloudmac.net/pricing/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cloudmac.net/2012/05/more-bandwidth/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Create ISO from folder</title>
		<link>http://cloudmac.net/2012/04/create-iso-from-folder/</link>
		<comments>http://cloudmac.net/2012/04/create-iso-from-folder/#comments</comments>
		<pubDate>Thu, 12 Apr 2012 00:14:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://cloudmac.net/?p=737</guid>
		<description><![CDATA[Sometimes it is necessary to create an ISO image from a folder.  The syntax is below.  Thanks to mattberther.com for the info. hdiutil makehybrid -o ~/Desktop/image.iso ~/path/to/folder/to/be/converted -iso -joliet]]></description>
			<content:encoded><![CDATA[<p>Sometimes it is necessary to create an ISO image from a folder.  The syntax is below.  Thanks to <a href="http://mattberther.com" target="_blank">mattberther.com</a> for the info.</p>
<pre>hdiutil makehybrid -o ~/Desktop/image.iso ~/path/to/folder/to/be/converted -iso -joliet</pre>
]]></content:encoded>
			<wfw:commentRss>http://cloudmac.net/2012/04/create-iso-from-folder/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X Server DNS TTL</title>
		<link>http://cloudmac.net/2011/11/os-x-server-dns-ttl-modification/</link>
		<comments>http://cloudmac.net/2011/11/os-x-server-dns-ttl-modification/#comments</comments>
		<pubDate>Tue, 29 Nov 2011 00:53:14 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://cloudmac.net/?p=715</guid>
		<description><![CDATA[For some reasons, you may want to modify the TTL (Time to Live) of a DNS Server. The default TTL is 10800 seconds (3 hours).  To modify the TTL, edit the following file on your OS X DNS Server and replace $TTL 10800 with the $TTL value you desire.  Please note using a TTL value [...]]]></description>
			<content:encoded><![CDATA[<p>For some reasons, you may want to modify the TTL (Time to Live) of a DNS Server.</p>
<p>The default TTL is 10800 seconds (3 hours).  To modify the TTL, edit the following file on your OS X DNS Server and replace $TTL 10800 with the $TTL value you desire.  Please note using a TTL value of 0 (zero) is not supported by some systems and is not advised.</p>
<p>The DNS cache on the client systems may need to be flushed to honor the new TTL.  This is done on OS X by using the &#8220;dscacheutil -flush&#8221; command.</p>
<pre>vi /var/named/zones/db.cloudmac.net.zone.apple</pre>
<p><span id="more-715"></span></p>
<p>Here is an example config file:</p>
<pre>dns1:~ root# cat /var/named/zones/db.cloudmac.net.zone.apple
 ;GUID=D521C96D-AA85-4438-A1BC-8B1D7987DCD0
 ;selfResolvingHostname=0

$TTL 300
cloudmac.net. IN SOA dns.cloudmac.net. netopps.cloudmac.net. (
     2011112804    ;Serial
     86400         ;Refresh
     3600          ;Retry
     604800        ;Expire
     345600        ;Negative caching TTL
 ) 

cloudmac.net. IN  NS dns.cloudmac.net.
dns1 IN  A 10.22.100.30
mail IN  A 10.22.100.31
cloudmac.net. IN  MX 0 mail.cloudmac.net.
dns1:~ root#</pre>
<p><!--more--></p>
<p>Run the dig command to confirm the TTL information reflects what you entered:</p>
<pre>dns1:~ root# dig mail.cloudmac.net @10.22.100.30

; &lt;&lt;&gt;&gt; DiG 9.6-ESV-R4-P3 &lt;&lt;&gt;&gt; mail.cloudmac.net @10.22.100.30
;; global options: +cmd
;; Got answer:
;; -&gt;&gt;HEADER&lt;&lt;- opcode: QUERY, status: NOERROR, id: 983
;; flags: qr aa rd ra; QUERY: 1, ANSWER: 1, AUTHORITY: 1, ADDITIONAL: 1

;; QUESTION SECTION:
;mail.cloudmac.net.        IN    A

;; ANSWER SECTION:
mail.cloudmac.net.    300    IN    A    10.22.100.31

;; AUTHORITY SECTION:
cloudmac.net.        300    IN    NS    dns1.cloudmac.net.

;; ADDITIONAL SECTION:
dns1.cloudmac.net.    300    IN    A    10.22.100.30

;; Query time: 1 msec
;; SERVER: 10.22.100.30#53(10.22.100.30)
;; WHEN: Mon Nov 28 16:47:32 2011
;; MSG SIZE  rcvd: 85

dns1:~ root#</pre>
<p><!--more--></p>
<pre></pre>
<p>More info is available by following the links below:</p>
<p><a href="http://en.wikipedia.org/wiki/Time_to_live" target="_blank">Time to live (TTL) &#8211; Wikipedia.com</a></p>
<p><a href="http://en.wikipedia.org/wiki/Round-robin_DNS" target="_blank">DNS Round Robin &#8211; Wikipedia.com</a></p>
<p><a href="http://developer.apple.com/library/mac/#documentation/Darwin/Reference/ManPages/man1/dscacheutil.1.html">dscacheutil &#8211; developer.apple.com</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cloudmac.net/2011/11/os-x-server-dns-ttl-modification/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Some Xserve&#8217;s</title>
		<link>http://cloudmac.net/2011/09/some-xserves/</link>
		<comments>http://cloudmac.net/2011/09/some-xserves/#comments</comments>
		<pubDate>Sun, 04 Sep 2011 02:50:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Servers]]></category>

		<guid isPermaLink="false">http://cloudmac.net/?p=704</guid>
		<description><![CDATA[Host your Xserve with CloudMac for only $80/mo.  This price includes the following: $0 Setup Cost Static IP Address Remote Reboots via our managed power infrastructure 500GB bandwidth per month on a 1Gbps (1000Mbps) port Month-to-Month term, no commitment Your server will be hosted in our primary datacenter in Los Angeles (One Wilshire). &#160; &#160;]]></description>
			<content:encoded><![CDATA[<p>Host your Xserve with CloudMac for only $80/mo.  This price includes the following:</p>
<p><img src="http://cloudmac.net/img/icon.gif" alt="" width="17" height="17" /> $0 Setup Cost<br />
<img src="http://cloudmac.net/img/icon.gif" alt="" width="17" height="17" /> Static IP Address<br />
<img src="http://cloudmac.net/img/icon.gif" alt="" width="17" height="17" /> Remote Reboots via our managed power infrastructure<br />
<img src="http://cloudmac.net/img/icon.gif" alt="" width="17" height="17" /> 500GB bandwidth per month on a 1Gbps (1000Mbps) port<br />
<img src="http://cloudmac.net/img/icon.gif" alt="" width="17" height="17" /> Month-to-Month term, no commitment</p>
<p>Your server will be hosted in our primary datacenter in Los Angeles (One Wilshire).</p>
<p>&nbsp;</p>
<p><img class="alignnone" title="Xserves" src="http://wpc.4846.edgecastcdn.net/004846/cloudmac/xserves.jpg" alt="" width="402" height="600" /></p>
<p>&nbsp;</p>
]]></content:encoded>
			<wfw:commentRss>http://cloudmac.net/2011/09/some-xserves/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gigabit connections for all customers</title>
		<link>http://cloudmac.net/2011/08/gigabit-connections-for-all-customers/</link>
		<comments>http://cloudmac.net/2011/08/gigabit-connections-for-all-customers/#comments</comments>
		<pubDate>Sun, 21 Aug 2011 19:33:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://cloudmac.net/?p=700</guid>
		<description><![CDATA[All existing and new customers will be upgraded to 1 gigabit per second (1,000 Mbit/s) links to the Internet.  Previously, there was a $15/mo upgrade cost for bumping up from 100Mbps.  We decided all customers should have fast access to the Internet and offer this for no additional cost.  $30/mo gets your Mac mini in [...]]]></description>
			<content:encoded><![CDATA[<p>All existing and new customers will be upgraded to 1 gigabit per second (1,000 Mbit/s) links to the Internet.  Previously, there was a $15/mo upgrade cost for bumping up from 100Mbps.  We decided all customers should have fast access to the Internet and offer this for no additional cost.  $30/mo gets your Mac mini in the One Wilshire data center with 250GB transfers on a 1Gbps port.</p>
<p>If you require faster connectivity we offer link aggregation (802.3ad) for multiple 1Gbps links (native support for OS X and Mac Pro&#8217;s / Xserve&#8217;s), as well as 10Gbps offerings.</p>
<p>We are advocates of transferring data to and from your servers at the fastest speeds possible.</p>
]]></content:encoded>
			<wfw:commentRss>http://cloudmac.net/2011/08/gigabit-connections-for-all-customers/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>May 1000Mbps uplink Promotion</title>
		<link>http://cloudmac.net/2011/04/may-1000mbps-uplink-promotion/</link>
		<comments>http://cloudmac.net/2011/04/may-1000mbps-uplink-promotion/#comments</comments>
		<pubDate>Mon, 25 Apr 2011 22:39:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://cloudmac.net/?p=688</guid>
		<description><![CDATA[Gig-E uplink promo: All customers signing up before May 31st receive a free upgrade with a Gigabit (1000Mbps) uplink port! Contact us to take advantage of this promotion.]]></description>
			<content:encoded><![CDATA[<p>Gig-E uplink promo:  All customers signing up before May 31st receive a free upgrade with a Gigabit (1000Mbps) uplink port!</p>
<p>Contact us to take advantage of this promotion.</p>
]]></content:encoded>
			<wfw:commentRss>http://cloudmac.net/2011/04/may-1000mbps-uplink-promotion/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X Server 10.6.6 Update Released</title>
		<link>http://cloudmac.net/2011/01/os-x-server-10-6-6-update-released/</link>
		<comments>http://cloudmac.net/2011/01/os-x-server-10-6-6-update-released/#comments</comments>
		<pubDate>Thu, 06 Jan 2011 21:28:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://cloudmac.net/?p=650</guid>
		<description><![CDATA[Apple releases OS X 10.6.6 Server and Client today.  Here are are the updates: This update includes the Mac App Store, a new application you&#8217;ll find in the Dock. The Mac App Store includes the following features: Discover Mac apps: Browse featured apps, top charts, and categories; or, search for something specific. Read detailed app [...]]]></description>
			<content:encoded><![CDATA[<p>Apple releases OS X 10.6.6 Server and Client today.  Here are are the updates:</p>
<p>This update includes the Mac App Store, a new application you&#8217;ll find in the Dock. The Mac App Store includes the following features:</p>
<ul>
<li>Discover Mac apps: Browse featured apps, top charts, and categories; or, search for something specific. Read detailed app descriptions and user reviews, and flip through screen shots.</li>
</ul>
<ul>
<li>Buy and install: Easily purchase apps with your iTunes account. Apps install in one step and are quickly available from the Dock.</li>
</ul>
<ul>
<li>App updates: The Mac App Store keeps track of all your purchased apps and notifies you when free updates are available.</li>
</ul>
<p>Additional improvements</p>
<ul>
<li>Fixes a DNS resolution issue for Mac OS X Server v10.6.5. The system now properly resolves a DNS alias (CNAME) that points to a host in a .local domain.</li>
</ul>
<ul>
<li>Improves Mac OS X Server security. For more information about the security content of Mac OS X Server v10.6.5 see this article.</li>
</ul>
<ul>
<li>Includes all the improvements in the previous 10.6.1, 10.6.2, 10.6.3, 10.6.4 and 10.6.5 updates.</li>
</ul>
<ul>
<li>Mac OS X Server v10.6.6 also includes all improvements delivered in the client Mac OS X v10.6.6 Update.</li>
</ul>
<p>More information is available on Apple&#8217;s site: <a href="http://support.apple.com/kb/HT4460">http://support.apple.com/kb/HT4460</a></p>
]]></content:encoded>
			<wfw:commentRss>http://cloudmac.net/2011/01/os-x-server-10-6-6-update-released/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Google Voice available on iPhone</title>
		<link>http://cloudmac.net/2010/11/google-voice-available-on-iphone/</link>
		<comments>http://cloudmac.net/2010/11/google-voice-available-on-iphone/#comments</comments>
		<pubDate>Wed, 17 Nov 2010 18:01:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://cloudmac.net/?p=640</guid>
		<description><![CDATA[Google voice is now available on the iPhone via the Apple Store: http://itunes.apple.com/us/app/google-voice/id318698524?mt=8 More information on Google voice is available here: http://www.google.com/mobile/iphone/]]></description>
			<content:encoded><![CDATA[<p>Google voice is now available on the iPhone via the Apple Store:</p>
<p><a href="http://itunes.apple.com/us/app/google-voice/id318698524?mt=8">http://itunes.apple.com/us/app/google-voice/id318698524?mt=8</a></p>
<p>More information on Google voice is available here:</p>
<p><a href="http://www.google.com/mobile/iphone/">http://www.google.com/mobile/iphone/</a></p>
<p><img class="alignleft" src="http://a1.phobos.apple.com/us/r1000/026/Purple/8f/68/bd/mzi.kaxapnbt.175x175-75.jpg" alt="" width="175" height="175" /></p>
]]></content:encoded>
			<wfw:commentRss>http://cloudmac.net/2010/11/google-voice-available-on-iphone/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X Server 10.6.5 Update Available</title>
		<link>http://cloudmac.net/2010/11/os-x-server-10-6-5-update-available/</link>
		<comments>http://cloudmac.net/2010/11/os-x-server-10-6-5-update-available/#comments</comments>
		<pubDate>Thu, 11 Nov 2010 08:11:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://cloudmac.net/?p=637</guid>
		<description><![CDATA[Apple released OS X Server 10.6.5 which addresses several key fixes. One important fix is with Xsan, 10.6.5 &#8220;Improves reliability of fibre channel connections, resolving a potential Xsan volume availability problem.&#8221; More information is available here: OS X Server: http://support.apple.com/kb/HT4249 OS X Client: http://support.apple.com/kb/HT4250 We suggest updating to 10.6.5 to address Xsan stability.]]></description>
			<content:encoded><![CDATA[<p>Apple released OS X Server 10.6.5 which addresses several key fixes.</p>
<p>One important fix is with Xsan, 10.6.5 &#8220;Improves reliability of fibre channel connections, resolving a potential Xsan volume availability problem.&#8221;</p>
<p>More information is available here:</p>
<p>OS X Server: <a href="http://support.apple.com/kb/HT4249">http://support.apple.com/kb/HT4249</a><br />
OS X Client: <a href="http://support.apple.com/kb/HT4250">http://support.apple.com/kb/HT4250</a></p>
<p>We suggest updating to 10.6.5 to address Xsan stability.</p>
]]></content:encoded>
			<wfw:commentRss>http://cloudmac.net/2010/11/os-x-server-10-6-5-update-available/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Junos Pulse iPhone App for Juniper SSL VPN</title>
		<link>http://cloudmac.net/2010/09/junos-pulse-iphone-app-for-juniper-ssl-vpn/</link>
		<comments>http://cloudmac.net/2010/09/junos-pulse-iphone-app-for-juniper-ssl-vpn/#comments</comments>
		<pubDate>Mon, 13 Sep 2010 20:20:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://cloudmac.net/?p=627</guid>
		<description><![CDATA[Juniper&#8217;s Junos Pulse App offers a secure, remote access client that allows enterprises to provide end users with secure access to corporate resources, while simultaneously conforming to existing enterprise security policies. Today, Juniper is the leading security vendor for mobility, secures the majority of smartphone traffic in the U.S. and has the industry&#8217;s market-leading SSL [...]]]></description>
			<content:encoded><![CDATA[<p>Juniper&#8217;s Junos Pulse App offers a secure, remote access client that allows enterprises to provide end users with secure access to corporate resources, while simultaneously conforming to existing enterprise security policies. Today, Juniper is the leading security vendor for mobility, secures the majority of smartphone traffic in the U.S. and has the industry&#8217;s market-leading SSL VPN solution.1 This app extends Juniper&#8217;s footprint for SSL VPN, which is already deployed in tens of thousands of enterprises worldwide enabling more than 25 million end users to remotely and securely connect their devices to corporate networks. The Junos Pulse App has been built for ease of use and seamless deployment so enterprises can enable their iPhone and iPod touch users to be as productive as possible.</p>
<p>The Junos Pulse App is available for free from the App Store on iPhone and iPod touch running iOS 4.1 or at <a href="http://www.itunes.com/appstore/" target="_blank">www.itunes.com/appstore/</a>.</p>
<p>For more information, refer to <a href="http://www.juniper.net/us/en/company/press-center/press-releases/2010/pr_2010_09_13-05_00.html">Juniper&#8217;s press-center</a>:</p>
<p>http://www.juniper.net/us/en/company/press-center/press-releases/2010/pr_2010_09_13-05_00.html</p>
<p>CloudMac offers SSL VPN connectivity via our Juniper infrastructure.  For more information, please contact us via Email (contact@cloudmac.net) or iChat: cloudmacnet.</p>
<p><img class="alignleft size-full wp-image-632" title="juniper-networks-blue" src="http://cloudmac.net/wp-content/uploads/2010/09/juniper-networks-blue.gif" alt="" width="320" height="107" /></p>
]]></content:encoded>
			<wfw:commentRss>http://cloudmac.net/2010/09/junos-pulse-iphone-app-for-juniper-ssl-vpn/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

