<?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>[LINICKX].com</title>
	<atom:link href="http://www.linickx.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.linickx.com</link>
	<description>Moments of Genius followed by Trash.</description>
	<lastBuildDate>Sat, 11 May 2013 13:40:52 +0000</lastBuildDate>
	<language>en-GB</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Using Google as a FREE origin pull CDN</title>
		<link>http://www.linickx.com/3889/using-google-as-a-free-origin-pull-cdn</link>
		<comments>http://www.linickx.com/3889/using-google-as-a-free-origin-pull-cdn#comments</comments>
		<pubDate>Wed, 08 May 2013 19:00:01 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[CDN]]></category>
		<category><![CDATA[GAE]]></category>
		<category><![CDATA[Google]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=3889</guid>
		<description><![CDATA[There are bucket load of posts on how to use google application engine (GAE) as a CDN but many of them direct you to hosting static content on a google server. For me that approach isn&#8217;t practical, every time I &#8230; <a href="http://www.linickx.com/3889/using-google-as-a-free-origin-pull-cdn">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>There are bucket load of <a href="http://www.google.co.uk/#q=google+app+engine+cdn">posts on how to use google application engine (<strong>GAE</strong>) as a CDN</a> but many of them direct you to hosting static content on a google server. For me that approach isn&#8217;t practical, every time I did a WordPress update or plugin upgrade I would have to push an update to GAE&#8230; annoying!</p>
<p>Origin-Pull is the future then, basically the server acting as a CDN pulls a copy of the original, caches it and serves that to clients. Updates on the main site are easy, just wait for the CDN to age out it&#8217;s cache or if you are impatient manually purge.</p>
<p>Over the weekend I stumpbled upon <a href="http://www.symkat.com/sympull-cdn">SymPullCDN</a> a GAE app, it&#8217;s a bit out of date so I&#8217;ve pushed <a href="https://github.com/linickx/SymPullCDN">a newer version to github</a>. I&#8217;ve made two changes, firstly updated to python2.7 (<em>as per google&#8217;s recommendation</em>) and secondly I&#8217;ve added a cron job to keep your GAE app snappy <img src='http://i0.wp.com/www.linickx.com/wp/wp-includes/images/smilies/icon_smile.gif?w=584' alt=':)' class='wp-smiley' data-recalc-dims="1" /> </p>
<p>Setting up your own copy is simple, start by <a href="http://appengine.google.com/">signing up for GAE</a> and create a new &#8220;application&#8221;, mine&#8217;s called <code>mygaecdn</code>&#8230;</p>
<p><a href="http://i2.wp.com/www.linickx.com/files/2013/05/create_gae.png" rel="lightbox[3889]"><img src="http://i2.wp.com/www.linickx.com/files/2013/05/create_gae.png?resize=300%2C180" alt="create_gae" class="aligncenter size-medium wp-image-3890" data-recalc-dims="1" /></a></p>
<p>Next get a copy of the <em>Google App Engine SDK for Python</em> also known as <code>GoogleAppEngineLauncher</code>&#8230; Install it <img src='http://i0.wp.com/www.linickx.com/wp/wp-includes/images/smilies/icon_smile.gif?w=584' alt=':)' class='wp-smiley' data-recalc-dims="1" /> </p>
<p>Once it&#8217;s running, create a new application&#8230; give it the same name as the app you created on google.</p>
<p><a href="http://i0.wp.com/www.linickx.com/files/2013/05/new_gae_app.png" rel="lightbox[3889]"><img src="http://i0.wp.com/www.linickx.com/files/2013/05/new_gae_app.png?resize=300%2C184" alt="new_gae_app" class="aligncenter size-medium wp-image-3891" data-recalc-dims="1" /></a></p>
<p>Take a note of the directory in which the application is being created, mine is <code>Users/nick/Documents/GoogleAppEngine/mygaecdn</code></p>
<p>Next download <a href="https://github.com/linickx/SymPullCDN/archive/master.zip">this zip file which has the updated SymPullCDN files</a>.</p>
<p>Delete everything from your <code>Users/nick/Documents/GoogleAppEngine/mygaecdn</code> and place in there the contents of <code>SymPullCDN-master.zip</code></p>
<p>Open <code>app.yaml</code> in a text-editor and edit <code>line 1</code> to replace <em>*replace*me*</em> with your application name, e.g.:</p>
<pre class="brush: plain; title: ; notranslate">
application: mygaecdn
</pre>
<p>Next open <code>main.py</code> in a text-editor and edit <code>line 21</code> and replace <code>http://replace*me/</code> with your website, e.g.:</p>
<pre class="brush: plain; title: ; notranslate">
origin = &quot;http://www.linickx.com/&quot; 
</pre>
<p>Make sure you save both files and you are done!</p>
<p>Now, test locally in the GoogleAppEngineLauncher app before deploying to google. Click the green &#8220;play&#8221; and a GAE application will run on your local machine; from the screenshot above you can see mine is listening on &#8220;port 10080&#8243;, so I can open a web browser to http://localhost:10080 &#8211; all things being equal you will see a copy of your website <img src='http://i0.wp.com/www.linickx.com/wp/wp-includes/images/smilies/icon_smile.gif?w=584' alt=':)' class='wp-smiley' data-recalc-dims="1" /> </p>
<p>If that works you&#8217;re ready to deploy&#8230;. hit the blue &#8220;deploy&#8221; button to push you app up to google. When that&#8217;s finished you should be able to visit <code>mygaecdn.appspot.com</code>&#8230; obviously yours isn&#8217;t called mygaecdn!</p>
<p>Once the deploy is finished you have a GAE ready and willing to serve cached copies of your site.</p>
<p>What you do next will depend on your website. Me, I use <a href="http://wordpress.org">WordPress</a> and <a href="http://wordpress.org/extend/plugins/wp-super-cache/">wp-super-cache</a>, so I can simply enable the CDN feature in that, e.g.:</p>
<p><a href="http://i1.wp.com/www.linickx.com/files/2013/05/wp_wp-s-c_cdn.png" rel="lightbox[3889]"><img src="http://i1.wp.com/www.linickx.com/files/2013/05/wp_wp-s-c_cdn.png?resize=300%2C142" alt="wp_wp-s-c_cdn" class="aligncenter size-medium wp-image-3893" data-recalc-dims="1" /></a></p>
<p>You might have to install something, or change some URLs, whatever you do, just remember to only change links to static content such as CSS, JS or IMG &#8211; anything dynamic is likely to end in a world of pain.</p>
<p><strong>FOOTNOTE</strong>: The term CDN is used loosely in this blog post, GAE is more of a content off-load, IMHO a CDN should server you geographically-local content but in all my tests on <a href="http://www.webpagetest.org">webpagetest</a> showed all my content coming from Google-USA, not that is really a problem as their servers are still rocket-quick <img src='http://i0.wp.com/www.linickx.com/wp/wp-includes/images/smilies/icon_cool.gif?w=584' alt=':cool:' class='wp-smiley' data-recalc-dims="1" /> </p>
<img src="http://i1.wp.com/www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png?w=584" alt="Nick" data-recalc-dims="1" /> <hr/>Copyright &copy; 2013 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/3889/using-google-as-a-free-origin-pull-cdn/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X: Sync&#8217;ing keychains in the iCloud</title>
		<link>http://www.linickx.com/3879/os-x-syncing-keychains-in-the-icloud</link>
		<comments>http://www.linickx.com/3879/os-x-syncing-keychains-in-the-icloud#comments</comments>
		<pubDate>Mon, 06 May 2013 14:20:55 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[apple]]></category>
		<category><![CDATA[iCloud]]></category>
		<category><![CDATA[keychain]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=3879</guid>
		<description><![CDATA[Keychains hold passwords, certificates and general secret stuff &#8211; only do this if you understand the Apple will have access to this&#8230;. well assuming they can crack your keychain password (which they probably can). Synchronising a keychain across macs could &#8230; <a href="http://www.linickx.com/3879/os-x-syncing-keychains-in-the-icloud">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Keychains hold passwords, certificates and general secret stuff &#8211; only do this if you understand the Apple will have access to this&#8230;. well assuming they can crack your keychain password (<em>which they probably can</em>).</p>
<p>Synchronising a keychain across macs could be useful, for example, having a dedicated keychain for WiFi credentials.</p>
<p>I stumbled across <a href="http://forums.appleinsider.com/t/135212/hidden-drop-box-feature-in-mac-os-x-lion-lets-you-sync-files-across-macs">this link (dated Nov 2011)</a> and found that this still works!</p>
<p>The <code>~Library/Mobile Documents/</code> folder is pushed to all iCloud enabled computers, so I have created a new folder, and copied my WiFi keychain into it:</p>
<pre class="brush: bash; title: ; notranslate">
$ mkdir ~/Library/Mobile\ Documents/com~linickx~icloud
$ cp ~/Library/Keychains/wifi.keychain ~/Library/Mobile\ Documents/com~linickx~icloud/
</pre>
<p><em>If you only have one keychain <code>login.keychain</code>, consider splitting out the really secret stuff and only sync&#8217;ing the stuff you want to share with apple.</em></p>
<p>Now open &#8220;Keychain Access&#8221;, delete the original keychain and add/open the iCloud copy. On any other Mac, add/open the iCloud keychain. Once complete, any change to the keychain will be pushed to all Macs, simplifying password changes <img src='http://i0.wp.com/www.linickx.com/wp/wp-includes/images/smilies/icon_smile.gif?w=584' alt=':)' class='wp-smiley' data-recalc-dims="1" /> </p>
<p>I&#8217;m also using this to sync <a href="http://dotfiles.github.io">dotfiles</a>!</p>
<p>You could use dropbox for this, one reason to use dropbox is that iCloud sync seems to be a bit hit n miss; however Dropbox already have enough of my secrets, I&#8217;m not suggesting that iCloud is more secure, it&#8217;s just better to have many baskets.</p>
<p><strong>FOOTNOTE:</strong> <a href="http://blog.stevex.net/2012/03/icloud-mobile-documents-not-syncing/">If your mobile documents folder isn&#8217;t sync&#8217;ing, see this post by SteveX</a>.</p>
<img src="http://i1.wp.com/www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png?w=584" alt="Nick" data-recalc-dims="1" /> <hr/>Copyright &copy; 2013 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/3879/os-x-syncing-keychains-in-the-icloud/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco.com &amp; Wget</title>
		<link>http://www.linickx.com/3874/cisco-com-wget</link>
		<comments>http://www.linickx.com/3874/cisco-com-wget#comments</comments>
		<pubDate>Thu, 25 Apr 2013 18:20:44 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Linux]]></category>
		<category><![CDATA[wget]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=3874</guid>
		<description><![CDATA[Ever since cisco updated their website (you know like, a year ago), I&#8217;ve struggled to find a way to wget software onto a box. This week, I found a bodge using firefox. Sign into cisco.com and go through the normal &#8230; <a href="http://www.linickx.com/3874/cisco-com-wget">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Ever since cisco updated their website (you know like, a year ago), I&#8217;ve struggled to find a way to wget software onto a box.</p>
<p>This week, I found a bodge using <strong>firefox</strong>. Sign into cisco.com and go through the normal process, accepting agreements and begin the download.</p>
<p>Once the download starts, pause it&#8230; right click and copy the download link:</p>
<div id="attachment_3875" class="wp-caption aligncenter" style="width: 310px"><a href="http://i1.wp.com/www.linickx.com/files/2013/04/ffox-copy-link.png" rel="lightbox[3874]"><img src="http://i1.wp.com/www.linickx.com/files/2013/04/ffox-copy-link.png?resize=300%2C214" alt="Copy link from downloads" class="size-medium wp-image-3875" data-recalc-dims="1" /></a><p class="wp-caption-text">Copy link from downloads</p></div>
<p>Then from your terminal/linux box, you can paste the url into wget:</p>
<pre class="brush: plain; title: ; notranslate">
wget -O ise-1.1.3.124.i386.iso &quot;https://secure-us.esd.cisco.com/files/swc/sec/4_SDSP_59/bah/bah/ha?uid=linickxdotcom&amp;key=go&quot;
</pre>
<p>- Quick gotcha alert, the link you paste must be in speachmarks/double quotes or the full url will not paste correctly.</p>
<img src="http://i1.wp.com/www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png?w=584" alt="Nick" data-recalc-dims="1" /> <hr/>Copyright &copy; 2013 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/3874/cisco-com-wget/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X: anonymous ftp directory on Mountain Lion</title>
		<link>http://www.linickx.com/3869/os-x-anonymous-ftp-directory-on-mountain-lion</link>
		<comments>http://www.linickx.com/3869/os-x-anonymous-ftp-directory-on-mountain-lion#comments</comments>
		<pubDate>Mon, 22 Apr 2013 10:31:57 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[anonymous]]></category>
		<category><![CDATA[ftp]]></category>
		<category><![CDATA[OS X]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=3869</guid>
		<description><![CDATA[Pretty much every google search I tried landed me on a mountain lion server page, given I&#8217;m using normal mountain lion on a macbook the results were not much use! I use FTP to transfer images to various appliances, firewalls, &#8230; <a href="http://www.linickx.com/3869/os-x-anonymous-ftp-directory-on-mountain-lion">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Pretty much every google search I tried landed me on a mountain lion server page, given I&#8217;m using <em>normal</em> mountain lion on a macbook the results were not much use!</p>
<p>I use FTP to transfer images to various appliances, firewalls, proxies etc so for speed and simplicity I need anonymous ftp. The default home directory on 10.8 for anonymous FTP is /var/empty which is a special directory which I didn&#8217;t want to tamper with, once I found the right stuff in the man page changing the home of thr anonymous FTP user wasn&#8217;t actually that hard&#8230;</p>
<p>To get started, in case you need it, the command to start the FTP service is:</p>
<pre class="brush: plain; title: ; notranslate">
sudo launchctl load /System/Library/LaunchDaemons/ftp.plist
</pre>
<p>and to stop:</p>
<pre class="brush: plain; title: ; notranslate">
sudo launchctl unload /System/Library/LaunchDaemons/ftp.plist
</pre>
<p>The config file is <code>/etc/ftpd.conf</code>, mine looks like this:</p>
<pre class="brush: plain; title: ; notranslate">
# match umask from Mac OS X Server ftpd
umask all 022
chroot GUEST /Users/linickx/ftp
modify guest off
umask  guest 0707
upload guest on
</pre>
<p>As you can see, I have changed the home directory of my anonymous user to a folder called <em>ftp</em> inside <strong>my</strong> home directory.</p>
<p>Now, there&#8217;s some special security stuff you can do to that folder, see <code>man ftpd</code> for full details, but this should do you as a <em>minimun</em></p>
<blockquote><p>
~ftp           Make the home directory owned by &#8220;root&#8221; and unwritable by anyone.</p>
<p>~ftp/pub       This directory and the subdirectories beneath it should be owned by the users and groups responsible for placing files in them, and be writable only by them (mode<br />
                          755 or 775).  They should not be owned or writable by ftp or its group.</p>
<p> ~ftp/incoming  This directory is where anonymous users place files they upload.  The owners should be the user &#8220;ftp&#8221; and an appropriate group.  Members of this group will be<br />
                          the only users with access to these files after they have been uploaded; these should be people who know how to deal with them appropriately.  If you wish anony-<br />
                          mous FTP users to be able to see the names of the files in this directory the permissions should be 770, otherwise they should be 370.</p>
<p>                          The following ftpd.conf(5) directives should be used:<br />
                                modify guest off<br />
                                umask  guest 0707<br />
                                upload guest on</p>
<p>                          This will result in anonymous users being able to upload files to this directory, but they will not be able to download them, delete them, or overwrite them, due<br />
                          to the umask and disabling of the commands mentioned above.
</p></blockquote>
<p>Happy FTP Everyone!</p>
<img src="http://i1.wp.com/www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png?w=584" alt="Nick" data-recalc-dims="1" /> <hr/>Copyright &copy; 2013 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/3869/os-x-anonymous-ftp-directory-on-mountain-lion/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>wireshark xquartz osx (mountain lion) &#8211; crash on start</title>
		<link>http://www.linickx.com/3863/wireshark-xquartz-osx-mountain-lion-crash-on-start</link>
		<comments>http://www.linickx.com/3863/wireshark-xquartz-osx-mountain-lion-crash-on-start#comments</comments>
		<pubDate>Sun, 24 Mar 2013 11:59:17 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[wireshark]]></category>
		<category><![CDATA[x11]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=3863</guid>
		<description><![CDATA[If (like me) you have just installed wireshark and and xquartz at the same time you&#8217;ll notice that after completing both installations wireshark will crash and not start up properly. The wireshark forum shows that if you run wireshark from &#8230; <a href="http://www.linickx.com/3863/wireshark-xquartz-osx-mountain-lion-crash-on-start">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>If (<em>like me</em>) you have just installed <a href="http://www.wireshark.org/">wireshark</a> and and <a href="http://xquartz.macosforge.org/landing/">xquartz</a> at the same time you&#8217;ll notice that after completing both installations wireshark will crash and not start up properly.</p>
<p><a href="http://ask.wireshark.org/questions/12140/cant-run-wireshark-in-mac-os-x-mountain-lion">The wireshark forum</a> shows that if you run wireshark from the command line you get this error..</p>
<pre class="brush: plain; title: ; notranslate">
(process:1234): Gtk-WARNING **: Locale not supported by C library.
    Using the fallback 'C' locale.

(wireshark-bin:1234): Gtk-WARNING **: cannot open display:
</pre>
<p>&#8230; for which there are a couple of work arounds, such as setting your display variable or opening wireshark from within an xquartz terminal window.</p>
<p><strong>The actual fix</strong> was found <a href="http://networkstatic.net/wireshark-install-on-mac-os-x/">here</a>, notice the log out after installing&#8230; by simply <strong>logging out and back in again</strong> my wireshark now loads without any nasty work arounds.</p>
<p>Hope that helps!</p>
<img src="http://i1.wp.com/www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png?w=584" alt="Nick" data-recalc-dims="1" /> <hr/>Copyright &copy; 2013 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/3863/wireshark-xquartz-osx-mountain-lion-crash-on-start/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X: Mediatomb (luanchd) .plist file for automatic start up.</title>
		<link>http://www.linickx.com/3859/os-x-mediatomb-luanchd-plist-file-for-automatic-start-up</link>
		<comments>http://www.linickx.com/3859/os-x-mediatomb-luanchd-plist-file-for-automatic-start-up#comments</comments>
		<pubDate>Mon, 18 Mar 2013 07:34:25 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[mediatomb]]></category>
		<category><![CDATA[osx]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=3859</guid>
		<description><![CDATA[Inspired by this, but better So now I have got mediatomb working, I&#8217;ve started on my own StartupItem so that it loads at boot time. The reason it is better is because you can start and stop mediatomb via launchctl. &#8230; <a href="http://www.linickx.com/3859/os-x-mediatomb-luanchd-plist-file-for-automatic-start-up">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p><a href="http://mackenzie.ag/2011/08/16/mac-os-x-lion-launch-daemon-config-for-mediatomb-upnp-server/">Inspired by this</a>, but better <img src='http://i2.wp.com/www.linickx.com/wp/wp-includes/images/smilies/icon_wink.gif?w=584' alt=';)' class='wp-smiley' data-recalc-dims="1" /> </p>
<p>So now I have got mediatomb working, I&#8217;ve started on my own StartupItem so that it loads at boot time. The reason it is <em>better</em> is because you can start <strong>and stop</strong> mediatomb via launchctl.</p>
<p>I saved the below (<em>the more</em>) as <code>/Library/LaunchDaemons/com.linickx.mediatomb.plist</code>.</p>
<p>To start:</p>
<pre class="brush: plain; title: ; notranslate">
sudo launchctl load /Library/LaunchDaemons/com.linickx.mediatomb.plist
</pre>
<p>To stop:</p>
<pre class="brush: plain; title: ; notranslate">
sudo launchctl unload /Library/LaunchDaemons/com.linickx.mediatomb.plist
</pre>
<p>Happy Days!</p>
<pre class="brush: plain; title: ; notranslate">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;!DOCTYPE plist PUBLIC &quot;-//Apple Computer//DTD PLIST 1.0//EN&quot; &quot;http://www.apple.com/DTDs/PropertyList-1.0.dtd&quot;&gt;
&lt;plist version=&quot;1.0&quot;&gt;
&lt;dict&gt;  
	&lt;key&gt;Label&lt;/key&gt;
	&lt;string&gt;com.linickx.mediatomb&lt;/string&gt;
	&lt;key&gt;ProgramArguments&lt;/key&gt;
	&lt;array&gt; 
		&lt;string&gt;/usr/local/bin/mediatomb&lt;/string&gt;
		&lt;string&gt;-e&lt;/string&gt;
		&lt;string&gt;en0&lt;/string&gt;
		&lt;string&gt;-P&lt;/string&gt;
		&lt;string&gt;/Users/nick/.mediatomb/mediatomb.pid&lt;/string&gt;
		&lt;string&gt;-p&lt;/string&gt;
		&lt;string&gt;49152&lt;/string&gt;
	&lt;/array&gt;
	&lt;key&gt;UserName&lt;/key&gt;
	&lt;string&gt;nick&lt;/string&gt;
	&lt;key&gt;ServiceDescription&lt;/key&gt;
	&lt;string&gt;Run MediaTomb at boot&lt;/string&gt;
	&lt;key&gt;RunAtLoad&lt;/key&gt;
	&lt;true/&gt;
	&lt;key&gt;Nice&lt;/key&gt;
	&lt;integer&gt;20&lt;/integer&gt;
	&lt;key&gt;KeepAlive&lt;/key&gt;
	&lt;true/&gt;
	&lt;key&gt;StandardErrorPath&lt;/key&gt;
	&lt;string&gt;/Users/nick/.mediatomb/error.log&lt;/string&gt;
	&lt;key&gt;StandardOutPath&lt;/key&gt;
	&lt;string&gt;/Users/nick/.mediatomb/output.log&lt;/string&gt;
&lt;/dict&gt;
&lt;/plist&gt;
</pre>
<img src="http://i1.wp.com/www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png?w=584" alt="Nick" data-recalc-dims="1" /> <hr/>Copyright &copy; 2013 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/3859/os-x-mediatomb-luanchd-plist-file-for-automatic-start-up/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X: PS 3 Media Server service for start at boot (launchd)</title>
		<link>http://www.linickx.com/3849/os-x-ps-3-media-server-service-for-start-at-boot-launchd</link>
		<comments>http://www.linickx.com/3849/os-x-ps-3-media-server-service-for-start-at-boot-launchd#comments</comments>
		<pubDate>Sun, 17 Mar 2013 17:18:42 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[Playstation]]></category>
		<category><![CDATA[psm]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=3849</guid>
		<description><![CDATA[Given the popularity of the Playstation 3 Media Server (PSM) I&#8217;m a bit confused to why I struggled to find a good solution to this&#8230;PSM does does not come with an mac service for running it a boot time, there &#8230; <a href="http://www.linickx.com/3849/os-x-ps-3-media-server-service-for-start-at-boot-launchd">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>Given the popularity of the <a href="http://www.ps3mediaserver.org/">Playstation 3 Media Server (PSM)</a> I&#8217;m a bit confused to why I struggled to find a good solution to this&#8230;PSM does does not come with an mac service for running it a boot time, there is a windows service and some stuff for linux if you google but the best effort I could find for OS X was <a href="http://www.ps3mediaserver.org/forum/viewtopic.php?f=7&#038;t=3897&#038;p=17251&#038;hilit=background#p17251">a bodge via SSH</a>!</p>
<p>This is my best effort so far, it&#8217;s not perfect but it&#8217;s a start. <strong>Below the more link</strong>, is a <code>launchd .plist</code> file which if you place in <code>/Library/LaunchDaemons/</code> will start PSM at boot time, <em>well kinda.</em></p>
<p>The catch is that a user needs to log in, any user will do, the process will run as the user defined in the <code>.plist</code> file but since PSM requires some kind of windowing libraries it simply will not start until a user logs in!</p>
<p><span id="more-3849"></span></p>
<pre class="brush: plain; title: ; notranslate">
&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot;?&gt;
&lt;!DOCTYPE plist PUBLIC &quot;-//Apple Computer//DTD PLIST 1.0//EN&quot;
&quot;http://www.apple.com/DTDs/PropertyList-1.0.dtd&quot;&gt;
&lt;plist version=&quot;1.0&quot;&gt;
&lt;dict&gt;  
	&lt;key&gt;Label&lt;/key&gt;
	&lt;string&gt;com.linickx.ps3m&lt;/string&gt;
	&lt;key&gt;ProgramArguments&lt;/key&gt;
	&lt;array&gt; 
		&lt;string&gt;/Applications/PS3 Media Server.app/Contents/MacOS/JavaApplicationStub.setenv&lt;/string&gt;
	&lt;/array&gt;
	&lt;key&gt;UserName&lt;/key&gt;
	&lt;string&gt;linickx&lt;/string&gt;
	&lt;key&gt;ServiceDescription&lt;/key&gt;
	&lt;string&gt;Run PS3 Media at boot&lt;/string&gt;
	&lt;key&gt;RunAtLoad&lt;/key&gt;
	&lt;true/&gt;
	&lt;key&gt;Nice&lt;/key&gt;
	&lt;integer&gt;20&lt;/integer&gt;
	&lt;key&gt;KeepAlive&lt;/key&gt;
	&lt;true/&gt;
	&lt;key&gt;AbandonProcessGroup&lt;/key&gt;
	&lt;true/&gt;
	&lt;key&gt;WorkingDirectory&lt;/key&gt;
	&lt;string&gt;/Applications/PS3 Media Server.app/Contents/Resources/Java&lt;/string&gt;
	&lt;key&gt;StandardErrorPath&lt;/key&gt;
	&lt;string&gt;/Library/Logs/PSM/rror.log&lt;/string&gt;
	&lt;key&gt;StandardOutPath&lt;/key&gt;
	&lt;string&gt;/Library/Logs/PSM/output.log&lt;/string&gt;
	&lt;key&gt;Java&lt;/key&gt;
		&lt;dict&gt;
			&lt;key&gt;MainClass&lt;/key&gt;
			&lt;string&gt;net.pms.PMS&lt;/string&gt;
			&lt;key&gt;JVMVersion&lt;/key&gt;
			&lt;string&gt;1.6+&lt;/string&gt;
			&lt;key&gt;ClassPath&lt;/key&gt;
			&lt;array&gt;&lt;string&gt;$JAVAROOT/repo/net/pms/pms/1.72.0/pms-1.72.0.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/org/beanshell/bsh-core/2.0b4/bsh-core-2.0b4.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/commons-codec/commons-codec/1.7/commons-codec-1.7.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/commons-configuration/commons-configuration/1.9/commons-configuration-1.9.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/commons-httpclient/commons-httpclient/3.1/commons-httpclient-3.1.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/commons-io/commons-io/2.4/commons-io-2.4.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/commons-lang/commons-lang/2.6/commons-lang-2.6.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/com/h2database/h2/1.3.168/h2-1.3.168.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/ch/qos/logback/logback-classic/1.0.7/logback-classic-1.0.7.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/ch/qos/logback/logback-core/1.0.7/logback-core-1.0.7.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/org/apache/sanselan/sanselan/0.97-incubator/sanselan-0.97-incubator.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/org/slf4j/slf4j-api/1.7.1/slf4j-api-1.7.1.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/org/slf4j/jcl-over-slf4j/1.7.1/jcl-over-slf4j-1.7.1.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/com/google/code/gson/gson/2.2.2/gson-2.2.2.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/org/hamcrest/hamcrest-integration/1.2.1/hamcrest-integration-1.2.1.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/org/hamcrest/hamcrest-library/1.2.1/hamcrest-library-1.2.1.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/org/jboss/netty/netty/3.2.7.Final/netty-3.2.7.Final.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/maven/maven-nsis-plugin/2.1/maven-nsis-plugin-2.1.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/net/java/dev/rome/rome/1.0.0/rome-1.0.0.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/jdom/jdom/1.0/jdom-1.0.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/net/coobird/thumbnailator/0.4.2/thumbnailator-0.4.2.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/org/jaudiotagger/2.0.3/jaudiotagger-2.0.3.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/net/java/dev/jna/jna/3.4.0/jna-3.4.0.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/com/jgoodies/common/1.2.1/common-1.2.1.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/com/jgoodies/forms/1.4.2/forms-1.4.2.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/com/jgoodies/looks/2.4.2/looks-2.4.2.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/com/github/junrar/junrar/0.7/junrar-0.7.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/commons-logging/commons-logging-api/1.1/commons-logging-api-1.1.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/org/apache/commons/commons-vfs2/2.0/commons-vfs2-2.0.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/commons-logging/commons-logging/1.1.1/commons-logging-1.1.1.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/org/apache/maven/scm/maven-scm-api/1.4/maven-scm-api-1.4.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/org/codehaus/plexus/plexus-utils/1.5.6/plexus-utils-1.5.6.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/org/apache/maven/scm/maven-scm-provider-svnexe/1.4/maven-scm-provider-svnexe-1.4.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/org/apache/maven/scm/maven-scm-provider-svn-commons/1.4/maven-scm-provider-svn-commons-1.4.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/regexp/regexp/1.3/regexp-1.3.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/jwbroek/cuelib/cuelib/1.2.1-2008-06-13/cuelib-1.2.1-2008-06-13.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/mediautil/mediautil/1.0/mediautil-1.0.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/com/googlecode/xmlwise/1.2/xmlwise-1.2.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/com/googlecode/juniversalchardet/juniversalchardet/1.0.3/juniversalchardet-1.0.3.jar&lt;/string&gt;&lt;string&gt;$JAVAROOT/repo/org/hamcrest/hamcrest-core/1.1/hamcrest-core-1.1.jar&lt;/string&gt;&lt;/array&gt;
			&lt;key&gt;VMOptions&lt;/key&gt;
			&lt;string&gt;-Xmx768M -Xss16M -Dfile.encoding=UTF-8 -Djava.net.preferIPv4Stack=true -jar&lt;/string&gt;
			&lt;key&gt;WorkingDirectory&lt;/key&gt;
			&lt;string&gt;$APP_PACKAGE/Contents/Resources/Java&lt;/string&gt;
		&lt;/dict&gt;
&lt;/dict&gt;
&lt;/plist&gt;
</pre>
<img src="http://i1.wp.com/www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png?w=584" alt="Nick" data-recalc-dims="1" /> <hr/>Copyright &copy; 2013 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/3849/os-x-ps-3-media-server-service-for-start-at-boot-launchd/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OS X: Converting videos but keeping the timestamp</title>
		<link>http://www.linickx.com/3846/os-x-converting-videos-but-keeping-the-timestamp</link>
		<comments>http://www.linickx.com/3846/os-x-converting-videos-but-keeping-the-timestamp#comments</comments>
		<pubDate>Wed, 06 Mar 2013 18:24:35 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[mac]]></category>
		<category><![CDATA[bash]]></category>
		<category><![CDATA[osx]]></category>
		<category><![CDATA[script]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=3846</guid>
		<description><![CDATA[I got a new computer, w00t! My family like to use the point-and-click camera for adhoc videos whilst we&#8217;re out and about, the thing is it&#8217;s very old and records in a rubbish AVI format which consumes massive amounts of &#8230; <a href="http://www.linickx.com/3846/os-x-converting-videos-but-keeping-the-timestamp">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>I got a new computer, w00t! My family like to use the point-and-click camera for adhoc videos whilst we&#8217;re out and about, the thing is it&#8217;s very old and records in a rubbish AVI format which consumes massive amounts of disk space, b000!</p>
<p>After a bit of googling I wrote the below, it&#8217;ll search through your disk and find AVI files, check that the file extension is .AVI and then convert it to .mp4; for bonus points it&#8217;ll change the timestamp of the mp4 to match the avi so that it&#8217;ll import into iPhoto albums nicely.</p>
<pre class="brush: bash; title: ; notranslate">
#!/bin/bash
export IFS=$'\n'
for i in $(find ./ -type f -name '*.AVI') 
	do 
		if [ ${i: -4} == &quot;.AVI&quot; ]
			then
			echo &quot;Converting $i&quot;
			ffmpeg -i &quot;$i&quot; -s 480x320 -aspect 4:3 -b 768k -ab 64k -ar 22050 -r 30000/1001 &quot;${i%.AVI}.mp4&quot;
			sleep 5
			TSTAMP=`gls -l --time-style=+%Y%m%d%H%m &quot;$i&quot; | awk '{print $6}'`
			touch -mt $TSTAMP &quot;${i%.AVI}.mp4&quot;
			sleep 5 
			rm -f &quot;$i&quot;
		fi
	done
</pre>
<p>Quick Note: <code>gls</code> is the GNU version of <code>ls</code> not the built in BSD-MAC version, you get it via <a href="http://mxcl.github.com/homebrew/">homebrew</a> (<code>brew install coreutils</code>)</p>
<img src="http://i1.wp.com/www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png?w=584" alt="Nick" data-recalc-dims="1" /> <hr/>Copyright &copy; 2013 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/3846/os-x-converting-videos-but-keeping-the-timestamp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Sourcefire Certified Professional (SFCP)</title>
		<link>http://www.linickx.com/3841/sourcefire-certified-professional-sfcp</link>
		<comments>http://www.linickx.com/3841/sourcefire-certified-professional-sfcp#comments</comments>
		<pubDate>Sat, 23 Feb 2013 12:57:33 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[PICS]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[certificates]]></category>
		<category><![CDATA[sourcefire]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=3841</guid>
		<description><![CDATA[Copyright &#169; 2013 [LINICKX].com. This Feed is for personal non-commercial use only. Please check my Site Terms and Conditions for full details on copyrights. If you have any concerns with the content of this feed you may contact me here.WP &#8230; <a href="http://www.linickx.com/3841/sourcefire-certified-professional-sfcp">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<div id="attachment_3842" class="wp-caption aligncenter" style="width: 310px"><a href="http://i1.wp.com/www.linickx.com/files/2013/02/sourcefire_sfcp.jpeg" rel="lightbox[3841]"><img src="http://i1.wp.com/www.linickx.com/files/2013/02/sourcefire_sfcp.jpeg?resize=300%2C229" alt="Certificate" class="size-medium wp-image-3842" data-recalc-dims="1" /></a><p class="wp-caption-text">Sourcefire Certified Professional</p></div>
<img src="http://i1.wp.com/www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png?w=584" alt="Nick" data-recalc-dims="1" /> <hr/>Copyright &copy; 2013 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/3841/sourcefire-certified-professional-sfcp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco ISE, Andriod: &#8216;network setup assistant&#8217; unable to detect server</title>
		<link>http://www.linickx.com/3834/cisco-ise-andriod-network-setup-assistant-unable-to-detect-server</link>
		<comments>http://www.linickx.com/3834/cisco-ise-andriod-network-setup-assistant-unable-to-detect-server#comments</comments>
		<pubDate>Wed, 20 Feb 2013 15:56:03 +0000</pubDate>
		<dc:creator>Nick</dc:creator>
				<category><![CDATA[Cisco]]></category>
		<category><![CDATA[Android]]></category>
		<category><![CDATA[BYOD]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[ISE]]></category>
		<category><![CDATA[WLC]]></category>

		<guid isPermaLink="false">http://www.linickx.com/?p=3834</guid>
		<description><![CDATA[The title should just about cover it, ^that^ is the error message I saw when trying to provision an Android Tablet using Identity Services Engine. The answer is hidden on pg36 of the provisioning guide, you see that there http &#8230; <a href="http://www.linickx.com/3834/cisco-ise-andriod-network-setup-assistant-unable-to-detect-server">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
				<content:encoded><![CDATA[<p>The title should just about cover it, ^that^ is the error message I saw when trying to provision an Android Tablet using Identity Services Engine.</p>
<p>The answer is hidden on <a href="http://www.cisco.com/en/US/solutions/collateral/ns340/ns414/ns742/ns744/docs/howto_61_byod_provisioning.pdf">pg36 of the provisioning guide</a>, you see that there http request..</p>
<p><a href="http://i1.wp.com/www.linickx.com/files/2013/02/howto_61_byod_provisioning_PG36.png" rel="lightbox[3834]"><img src="http://i1.wp.com/www.linickx.com/files/2013/02/howto_61_byod_provisioning_PG36.png?resize=300%2C131" alt="howto_61_byod_provisioning_PG36" class="aligncenter size-medium wp-image-3836" data-recalc-dims="1" /></a></p>
<p>The client software sends a http request to it&#8217;s default gateway, which for me was the Ciso WLC (<em>Wireless LAN Controller</em>); what is supposed to happen is that http request is re-directed to the ISE, BUT that will only happen if the ACL pushed down blocks it.</p>
<p>So block http to the ip address of the WLC, assuming that you are sending the correct AV pair down the WLC will re-direct the android to ISE and the rest of the provisioning process should work.</p>
<p>It took me ages to find that, hopefully this will help you!</p>
<img src="http://i1.wp.com/www.linickx.com/wp/wp-content/themes/linickx_v2/images/nick_sig_bggrey.png?w=584" alt="Nick" data-recalc-dims="1" /> <hr/>Copyright &copy; 2013 <strong><a href="http://www.linickx.com">[LINICKX].com</a></strong>. This Feed is for personal non-commercial use only. Please check my <a href="http://www.linickx.com/?page_id=63">Site Terms and Conditions</a> for full details on copyrights. If you have any concerns with the content of this feed you may <a href="http://www.linickx.com/contact">contact me here</a>.<br/><span style="float: right;font-size: 7pt"><a href="http://blog.taragana.com/index.php/archive/wordpress-plugins-provided-by-taraganacom/">WP Copyright Plugin</a></span>]]></content:encoded>
			<wfw:commentRss>http://www.linickx.com/3834/cisco-ise-andriod-network-setup-assistant-unable-to-detect-server/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Dynamic page generated in 0.662 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2013-05-19 14:02:01 -->
