<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss xmlns:creativeCommons="http://backend.userland.com/creativeCommonsRssModule" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:blip="http://blip.tv/dtd/blip/1.0" xmlns:yv="http://video.yahooapis.com/v2/video/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:amp="http://www.adobe.com/amp/1.0" xmlns:dcterms="http://purl.org/dc/terms" xmlns:gm="http://www.google.com/schemas/gm/1.1" xmlns:mediaad="http://blip.tv/dtd/mediaad/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">
<channel>
<title>Castix</title>
<link>http://castix.wordpress.com</link>















<description>Recent Posts - Blip - Blip</description>


<itunes:block>no</itunes:block>


<itunes:category text="" />


<language>en</language>
<generator>http://blip.tv</generator>
<lastBuildDate>Thu, 09 Apr 2009 06:31:46 +0000</lastBuildDate>
<pubDate>Thu, 09 Apr 2009 06:31:46 +0000</pubDate>



<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/Castix" /><feedburner:info uri="castix" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
  <guid isPermaLink="false">198749DC-24D0-11DE-ACD6-F2BBFC889CA6</guid>
  <link>http://feedproxy.google.com/~r/Castix/~3/ylUN2c1A2FM/openldap-configuring-a-server-to-authenticate-users-using-ldap-1984407</link>
  <title>OpenLDAP - Configuring a server to authenticate users using LDAP</title>
  <blip:user>bdenning</blip:user>
  <blip:userid>354834</blip:userid>
  <blip:safeusername>castix</blip:safeusername>
  <blip:showpath>castix</blip:showpath>
  <blip:show>Castix</blip:show>
  <blip:showpage>http://blip.tv/castix</blip:showpage>
  <blip:picture>http://blip.tv/skin/blipnew/placeholder_user.gif</blip:picture>
  <blip:posts_id>1984407</blip:posts_id>
  <blip:item_id>1974430</blip:item_id>
  <blip:item_type>file</blip:item_type>
  <blip:contentRating>TV-G</blip:contentRating>
  <blip:rating>0.0</blip:rating>
  <blip:datestamp>2009-04-09T06:31:46Z</blip:datestamp>
  <blip:language>English</blip:language>
  <blip:adChannel />
  <blip:recommendations>0</blip:recommendations>
  <blip:recommendable>0</blip:recommendable>
  <blip:core>0</blip:core>
  <blip:adminRating />
  <blip:runtime>587</blip:runtime>
  <blip:embedLookup>AfmPewI</blip:embedLookup>
  <blip:embedUrl type="application/x-shockwave-flash">http://blip.tv/play/AfmPewI</blip:embedUrl>
  <wfw:commentRss>http://blip.tv/comments/?attached_to=post1984407&amp;skin=rss</wfw:commentRss>
  <blip:thumbnail_src>Bdenning-OpenLDAPConfiguringAServerToAuthenticateUsersUsingLDAP308-37.jpg</blip:thumbnail_src>
  <blip:puredescription><![CDATA[ObjectivesThis screencast continues on with the ldap server we setup in the previous screencast, but this time we will configure another server (client.test.net) to authenticate its users against our LDAP. This is a concept known as centralised user authentication, where by we can store all our users and their credentials on one server. The screencast is basically a walk through of the changes that need to be made to PAM (pluggable authentication modules) which Linux uses to determine how users should be authenticated when logging in.I have to apologise for the screw up at the end. I had changed my example users password and forgotten about it until I came to do the screencast, hopefully you&#8217;ll get the idea.Note: If you haven&#8217;t come across PAM before it is advisable to have a quick skim though this very good introduction before trying to configure PAM.Resourcesapt-get install libpam-ldap nscdcd /etc/emacs nsswitch.confchange: passwd: ldap compat group: ldap compat shadow: ldap compatcd /etc/pam.d/edit each of the following files...* common-auth (edit) auth [success=1 default=ignore] pam_unix.so nullok_secure (add) auth required pam_ldap.so use_first_pass (add) auth required pam_permit.so* common-account (edit) account sufficient pam_unix.so (add) account required pam_ldap.so* common-session (add) session required pam_mkhomedir.so skel=/etc/skel/ umask=0022* common-password (edit) password sufficient pam_unix.so nullok obscure md5 (add) password required pam_ldap.soinvoke-rc.d nscd restartReferenceshttp://www.tuxradar.com/content/how-pam-workshttp://www.debian-administration.org/articles/585http://linux.com/feature/114074]]></blip:puredescription>
  <blip:smallThumbnail>http://a.images.blip.tv/Bdenning-OpenLDAPConfiguringAServerToAuthenticateUsersUsingLDAP308-37-415.jpg</blip:smallThumbnail>
  <blip:license>Creative Commons Attribution-NonCommercial 2.0</blip:license>
  <description><![CDATA[

<iframe src="http://blip.tv/play/AfmPewI.html?p=1" width="550" height="443" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#AfmPewI" style="display:none"></embed>
<br />

ObjectivesThis screencast continues on with the ldap server we setup in the previous screencast, but this time we will configure another server (client.test.net) to authenticate its users against our LDAP. This is a concept known as centralised user authentication, where by we can store all our users and their credentials on one server. The screencast is basically a walk through of the changes that need to be made to PAM (pluggable authentication modules) which Linux uses to determine how users should be authenticated when logging in.I have to apologise for the screw up at the end. I had changed my example users password and forgotten about it until I came to do the screencast, hopefully you&#8217;ll get the idea.Note: If you haven&#8217;t come across PAM before it is advisable to have a quick skim though this very good introduction before trying to configure PAM.Resourcesapt-get install libpam-ldap nscdcd /etc/emacs nsswitch.confchange: passwd: ldap compat group: ldap compat shadow: ldap compatcd /etc/pam.d/edit each of the following files...* common-auth (edit) auth [success=1 default=ignore] pam_unix.so nullok_secure (add) auth required pam_ldap.so use_first_pass (add) auth required pam_permit.so* common-account (edit) account sufficient pam_unix.so (add) account required pam_ldap.so* common-session (add) session required pam_mkhomedir.so skel=/etc/skel/ umask=0022* common-password (edit) password sufficient pam_unix.so nullok obscure md5 (add) password required pam_ldap.soinvoke-rc.d nscd restartReferenceshttp://www.tuxradar.com/content/how-pam-workshttp://www.debian-administration.org/articles/585http://linux.com/feature/114074

]]></description>
  <yv:adInfo>
    <yv:adTargeting>
      <yv:adData>
        <yv:id>YahooPartnerVideoID</yv:id>
        <yv:name>Blip post id</yv:name>
        <yv:value>1984407</yv:value>
      </yv:adData>
    </yv:adTargeting>
  </yv:adInfo>
  <comments>http://blip.tv/file/1974430</comments>
  <category>Technology</category>
  <pubDate>Thu, 09 Apr 2009 06:31:46 +0000</pubDate>
  
  <itunes:keywords />
  <itunes:image>http://a.images.blip.tv/Bdenning-OpenLDAPConfiguringAServerToAuthenticateUsersUsingLDAP308-37.jpg</itunes:image>
  <media:keywords />
  <media:group>
    <media:content blip:acodec="mp3" blip:role="Source" blip:vcodec="ffodivx" expression="full" fileSize="17630210" height="360" isDefault="true" type="video/msvideo" url="http://blip.tv/file/get/Bdenning-OpenLDAPConfiguringAServerToAuthenticateUsersUsingLDAP308.avi" width="480">
      <mediaad:content position="preroll" provider="freewheel" />
    </media:content>
    <media:content blip:acodec="mp3" blip:role="web" blip:vcodec="ffvp6f" expression="full" fileSize="21420071" height="360" isDefault="false" type="video/x-flv" url="http://blip.tv/file/get/Bdenning-OpenLDAPConfiguringAServerToAuthenticateUsersUsingLDAP675.flv" width="480" />
  </media:group>
  <media:player url="http://blip.tv/file/1974430"><![CDATA[<iframe src="http://blip.tv/play/AfmPewI.html?p=1" width="550" height="443" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#AfmPewI" style="display:none"></embed>]]></media:player>
  <media:title>OpenLDAP - Configuring a server to authenticate users using LDAP</media:title>
  <media:thumbnail url="http://a.images.blip.tv/Bdenning-OpenLDAPConfiguringAServerToAuthenticateUsersUsingLDAP308-37.jpg" />
  <creativeCommons:license>http://creativecommons.org/licenses/by-nc/2.0/</creativeCommons:license>
<feedburner:origLink>http://blip.tv/castix/openldap-configuring-a-server-to-authenticate-users-using-ldap-1984407</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/Castix/~5/Cadt4cdKv28/Bdenning-OpenLDAPConfiguringAServerToAuthenticateUsersUsingLDAP308.avi" length="17630210" type="video/msvideo" /><feedburner:origEnclosureLink>http://blip.tv/file/get/Bdenning-OpenLDAPConfiguringAServerToAuthenticateUsersUsingLDAP308.avi</feedburner:origEnclosureLink></item>




<item>
  <guid isPermaLink="false">53F49322-24CB-11DE-929B-B514127FFB1F</guid>
  <link>http://feedproxy.google.com/~r/Castix/~3/blSQ01IVh-Y/openldap-installation-and-adding-objects-using-phpldapadmin-and-ldapadd-1984355</link>
  <title>OpenLDAP - Installation and adding objects using phpldapadmin and ldapadd</title>
  <blip:user>bdenning</blip:user>
  <blip:userid>354834</blip:userid>
  <blip:safeusername>castix</blip:safeusername>
  <blip:showpath>castix</blip:showpath>
  <blip:show>Castix</blip:show>
  <blip:showpage>http://blip.tv/castix</blip:showpage>
  <blip:picture>http://blip.tv/skin/blipnew/placeholder_user.gif</blip:picture>
  <blip:posts_id>1984355</blip:posts_id>
  <blip:item_id>1974378</blip:item_id>
  <blip:item_type>file</blip:item_type>
  <blip:contentRating>TV-G</blip:contentRating>
  <blip:rating>0.0</blip:rating>
  <blip:datestamp>2009-04-09T05:57:37Z</blip:datestamp>
  <blip:language>English</blip:language>
  <blip:adChannel />
  <blip:recommendations>0</blip:recommendations>
  <blip:recommendable>0</blip:recommendable>
  <blip:core>0</blip:core>
  <blip:adminRating />
  <blip:runtime>522</blip:runtime>
  <blip:embedLookup>AfmPRwI</blip:embedLookup>
  <blip:embedUrl type="application/x-shockwave-flash">http://blip.tv/play/AfmPRwI</blip:embedUrl>
  <wfw:commentRss>http://blip.tv/comments/?attached_to=post1984355&amp;skin=rss</wfw:commentRss>
  <blip:thumbnail_src>Bdenning-OpenLDAPInstallationAndAddingObjectsUsingPhpldapadminAnd390-264.jpg</blip:thumbnail_src>
  <blip:puredescription><![CDATA[OverviewThis screencast shows a walk through of installing openldap and phpldapadmin. After installation I go through and setup a couple of organizational units to store users and groups which I&#8217;ll use in a later screencast when I configure ubuntu to authenticate against against an LDAP server for user logins.This screencast doesn&#8217;t really acomplish anything overly exciting but is required before heading into some of the things that LDAP can do, such as centralized user authentication or storing your puppet configured servers and their classes.Resourcesapt-get install slapdapt-get install ldap-utilsapt-get install phpldapadminemacs /etc/ldap/ldap.conf(set BASE dc=test,dc=net and URI ldap://172.16.1.1)emacs /etc/php5/apache2/php.ini(set memory_limit = 32M)ldapadd -c -x -D &quot;cn=admin,dc=test,dc=net&quot; -W -f ./test.ldifReferenceshttp://www.debian-administration.org/articles/585http://linux.com/feature/114074]]></blip:puredescription>
  <blip:smallThumbnail>http://a.images.blip.tv/Bdenning-OpenLDAPInstallationAndAddingObjectsUsingPhpldapadminAnd390-264-776.jpg</blip:smallThumbnail>
  <blip:license>Creative Commons Attribution-NonCommercial 2.0</blip:license>
  <description><![CDATA[

<iframe src="http://blip.tv/play/AfmPRwI.html?p=1" width="550" height="443" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#AfmPRwI" style="display:none"></embed>
<br />

OverviewThis screencast shows a walk through of installing openldap and phpldapadmin. After installation I go through and setup a couple of organizational units to store users and groups which I&#8217;ll use in a later screencast when I configure ubuntu to authenticate against against an LDAP server for user logins.This screencast doesn&#8217;t really acomplish anything overly exciting but is required before heading into some of the things that LDAP can do, such as centralized user authentication or storing your puppet configured servers and their classes.Resourcesapt-get install slapdapt-get install ldap-utilsapt-get install phpldapadminemacs /etc/ldap/ldap.conf(set BASE dc=test,dc=net and URI ldap://172.16.1.1)emacs /etc/php5/apache2/php.ini(set memory_limit = 32M)ldapadd -c -x -D &quot;cn=admin,dc=test,dc=net&quot; -W -f ./test.ldifReferenceshttp://www.debian-administration.org/articles/585http://linux.com/feature/114074

]]></description>
  <yv:adInfo>
    <yv:adTargeting>
      <yv:adData>
        <yv:id>YahooPartnerVideoID</yv:id>
        <yv:name>Blip post id</yv:name>
        <yv:value>1984355</yv:value>
      </yv:adData>
    </yv:adTargeting>
  </yv:adInfo>
  <comments>http://blip.tv/file/1974378</comments>
  <category>Technology</category>
  <category>linux</category>
  <category>system</category>
  <category>administration</category>
  <category>openldap</category>
  <category>screencast</category>
  <pubDate>Thu, 09 Apr 2009 05:57:37 +0000</pubDate>
  
  <itunes:keywords>linux, system, administration, openldap, screencast</itunes:keywords>
  <itunes:image>http://a.images.blip.tv/Bdenning-OpenLDAPInstallationAndAddingObjectsUsingPhpldapadminAnd390-264.jpg</itunes:image>
  <media:keywords>linux, system, administration, openldap, screencast</media:keywords>
  <media:group>
    <media:content blip:acodec="mp3" blip:role="Source" blip:vcodec="ffodivx" expression="full" fileSize="24878348" height="360" isDefault="true" type="video/msvideo" url="http://blip.tv/file/get/Bdenning-OpenLDAPInstallationAndAddingObjectsUsingPhpldapadminAnd390.avi" width="480">
      <mediaad:content position="preroll" provider="freewheel" />
    </media:content>
    <media:content blip:acodec="mp3" blip:role="web" blip:vcodec="ffvp6f" expression="full" fileSize="22731241" height="360" isDefault="false" type="video/x-flv" url="http://blip.tv/file/get/Bdenning-OpenLDAPInstallationAndAddingObjectsUsingPhpldapadminAnd478.flv" width="480" />
  </media:group>
  <media:player url="http://blip.tv/file/1974378"><![CDATA[<iframe src="http://blip.tv/play/AfmPRwI.html?p=1" width="550" height="443" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#AfmPRwI" style="display:none"></embed>]]></media:player>
  <media:title>OpenLDAP - Installation and adding objects using phpldapadmin and ldapadd</media:title>
  <media:thumbnail url="http://a.images.blip.tv/Bdenning-OpenLDAPInstallationAndAddingObjectsUsingPhpldapadminAnd390-264.jpg" />
  <creativeCommons:license>http://creativecommons.org/licenses/by-nc/2.0/</creativeCommons:license>
<feedburner:origLink>http://blip.tv/castix/openldap-installation-and-adding-objects-using-phpldapadmin-and-ldapadd-1984355</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/Castix/~5/WtSmTr6WOu0/Bdenning-OpenLDAPInstallationAndAddingObjectsUsingPhpldapadminAnd390.avi" length="24878348" type="video/msvideo" /><feedburner:origEnclosureLink>http://blip.tv/file/get/Bdenning-OpenLDAPInstallationAndAddingObjectsUsingPhpldapadminAnd390.avi</feedburner:origEnclosureLink></item>




<item>
  <guid isPermaLink="false">A95464C2-24C7-11DE-BA62-DC11A5EA7CF9</guid>
  <link>http://feedproxy.google.com/~r/Castix/~3/kszwIYCwcRU/zenoss-monitoring-a-cisco-router-forwading-cisco-and-linux-syslog-events-1984318</link>
  <title>Zenoss - Monitoring a Cisco Router &amp; forwading Cisco and Linux syslog events</title>
  <blip:user>bdenning</blip:user>
  <blip:userid>354834</blip:userid>
  <blip:safeusername>castix</blip:safeusername>
  <blip:showpath>castix</blip:showpath>
  <blip:show>Castix</blip:show>
  <blip:showpage>http://blip.tv/castix</blip:showpage>
  <blip:picture>http://blip.tv/skin/blipnew/placeholder_user.gif</blip:picture>
  <blip:posts_id>1984318</blip:posts_id>
  <blip:item_id>1974342</blip:item_id>
  <blip:item_type>file</blip:item_type>
  <blip:contentRating>TV-G</blip:contentRating>
  <blip:rating>0.0</blip:rating>
  <blip:datestamp>2009-04-09T05:31:22Z</blip:datestamp>
  <blip:language>English</blip:language>
  <blip:adChannel />
  <blip:recommendations>0</blip:recommendations>
  <blip:recommendable>0</blip:recommendable>
  <blip:core>0</blip:core>
  <blip:adminRating />
  <blip:runtime>697</blip:runtime>
  <blip:embedLookup>AfmPIgI</blip:embedLookup>
  <blip:embedUrl type="application/x-shockwave-flash">http://blip.tv/play/AfmPIgI</blip:embedUrl>
  <wfw:commentRss>http://blip.tv/comments/?attached_to=post1984318&amp;skin=rss</wfw:commentRss>
  <blip:thumbnail_src>Bdenning-ZenossMonitoringACiscoRouterForwadingCiscoAndLinuxSys125-669.jpg</blip:thumbnail_src>
  <blip:puredescription><![CDATA[OverviewThis screencast starts by showing you how to enable SNMP on a Cisco router (please note the configuration of other Cisco devices such as catalyst switches is slightly different). Then we look at getting all log messages forwarded through to Zenoss so they show up as Zenoss events. I then go back and setup forwarding of the /var/log/syslog to Zenoss on the Linux server we configured in the first Zenoss screencast.(I ran over the youtube limit of 10 minutes with this video and so had to upload it to google video instead. As a result the quality isn&#8217;t quite as good. Sorry, won&#8217;t happen again)ResourcesCisco configuration:enconf thostname router1int fa0/0ip address 172.16.1.5 255.255.255.0exitsnmp-server community public ROsnmp-server contact Joe Adminsnmp-server location Brisbane QLD Australialogging 172.16.1.1copy run startLinux Configuration:vim /etc/syslog.conf(add the line: *.* @172.16.1.1)update-rc.d sysklogd restartReferenceshttp://www.netcraftsmen.net/welcher/papers/snmprouter.htmlhttp://www.linuxhomenetworking.com/cisco-hn/syslog-cisco.htmhttp://www.adventnet.com/products/webnms/syslog/help/syslog_fp/start_forward.html]]></blip:puredescription>
  <blip:smallThumbnail>http://a.images.blip.tv/Bdenning-ZenossMonitoringACiscoRouterForwadingCiscoAndLinuxSys125-669-488.jpg</blip:smallThumbnail>
  <blip:license>Creative Commons Attribution-NonCommercial 2.0</blip:license>
  <description><![CDATA[

<iframe src="http://blip.tv/play/AfmPIgI.html?p=1" width="550" height="443" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#AfmPIgI" style="display:none"></embed>
<br />

OverviewThis screencast starts by showing you how to enable SNMP on a Cisco router (please note the configuration of other Cisco devices such as catalyst switches is slightly different). Then we look at getting all log messages forwarded through to Zenoss so they show up as Zenoss events. I then go back and setup forwarding of the /var/log/syslog to Zenoss on the Linux server we configured in the first Zenoss screencast.(I ran over the youtube limit of 10 minutes with this video and so had to upload it to google video instead. As a result the quality isn&#8217;t quite as good. Sorry, won&#8217;t happen again)ResourcesCisco configuration:enconf thostname router1int fa0/0ip address 172.16.1.5 255.255.255.0exitsnmp-server community public ROsnmp-server contact Joe Adminsnmp-server location Brisbane QLD Australialogging 172.16.1.1copy run startLinux Configuration:vim /etc/syslog.conf(add the line: *.* @172.16.1.1)update-rc.d sysklogd restartReferenceshttp://www.netcraftsmen.net/welcher/papers/snmprouter.htmlhttp://www.linuxhomenetworking.com/cisco-hn/syslog-cisco.htmhttp://www.adventnet.com/products/webnms/syslog/help/syslog_fp/start_forward.html

]]></description>
  <yv:adInfo>
    <yv:adTargeting>
      <yv:adData>
        <yv:id>YahooPartnerVideoID</yv:id>
        <yv:name>Blip post id</yv:name>
        <yv:value>1984318</yv:value>
      </yv:adData>
    </yv:adTargeting>
  </yv:adInfo>
  <comments>http://blip.tv/file/1974342</comments>
  <category>Technology</category>
  <pubDate>Thu, 09 Apr 2009 05:31:22 +0000</pubDate>
  
  <itunes:keywords />
  <itunes:image>http://a.images.blip.tv/Bdenning-ZenossMonitoringACiscoRouterForwadingCiscoAndLinuxSys125-669.jpg</itunes:image>
  <media:keywords />
  <media:group>
    <media:content blip:acodec="mp3" blip:role="Source" blip:vcodec="ffodivx" expression="full" fileSize="26486106" height="360" isDefault="true" type="video/msvideo" url="http://blip.tv/file/get/Bdenning-ZenossMonitoringACiscoRouterForwadingCiscoAndLinuxSys125.avi" width="480">
      <mediaad:content position="preroll" provider="freewheel" />
    </media:content>
    <media:content blip:acodec="mp3" blip:role="web" blip:vcodec="ffvp6f" expression="full" fileSize="28726531" height="360" isDefault="false" type="video/x-flv" url="http://blip.tv/file/get/Bdenning-ZenossMonitoringACiscoRouterForwadingCiscoAndLinuxSys336.flv" width="480" />
  </media:group>
  <media:player url="http://blip.tv/file/1974342"><![CDATA[<iframe src="http://blip.tv/play/AfmPIgI.html?p=1" width="550" height="443" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#AfmPIgI" style="display:none"></embed>]]></media:player>
  <media:title>Zenoss - Monitoring a Cisco Router &amp; forwading Cisco and Linux syslog events</media:title>
  <media:thumbnail url="http://a.images.blip.tv/Bdenning-ZenossMonitoringACiscoRouterForwadingCiscoAndLinuxSys125-669.jpg" />
  <creativeCommons:license>http://creativecommons.org/licenses/by-nc/2.0/</creativeCommons:license>
<feedburner:origLink>http://blip.tv/castix/zenoss-monitoring-a-cisco-router-forwading-cisco-and-linux-syslog-events-1984318</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/Castix/~5/FzkBD_JRTOI/Bdenning-ZenossMonitoringACiscoRouterForwadingCiscoAndLinuxSys125.avi" length="26486106" type="video/msvideo" /><feedburner:origEnclosureLink>http://blip.tv/file/get/Bdenning-ZenossMonitoringACiscoRouterForwadingCiscoAndLinuxSys125.avi</feedburner:origEnclosureLink></item>




<item>
  <guid isPermaLink="false">F266C2E4-24C3-11DE-809E-EF3F334DA87B</guid>
  <link>http://feedproxy.google.com/~r/Castix/~3/zylcp1RLchA/zenoss-adding-a-user-and-email-alerts-1984271</link>
  <title>Zenoss - Adding a user and email alerts</title>
  <blip:user>bdenning</blip:user>
  <blip:userid>354834</blip:userid>
  <blip:safeusername>castix</blip:safeusername>
  <blip:showpath>castix</blip:showpath>
  <blip:show>Castix</blip:show>
  <blip:showpage>http://blip.tv/castix</blip:showpage>
  <blip:picture>http://blip.tv/skin/blipnew/placeholder_user.gif</blip:picture>
  <blip:posts_id>1984271</blip:posts_id>
  <blip:item_id>1974296</blip:item_id>
  <blip:item_type>file</blip:item_type>
  <blip:contentRating>TV-G</blip:contentRating>
  <blip:rating>0.0</blip:rating>
  <blip:datestamp>2009-04-09T05:04:47Z</blip:datestamp>
  <blip:language>English</blip:language>
  <blip:adChannel />
  <blip:recommendations>0</blip:recommendations>
  <blip:recommendable>0</blip:recommendable>
  <blip:core>0</blip:core>
  <blip:adminRating />
  <blip:runtime>583</blip:runtime>
  <blip:embedLookup>AfmOcwI</blip:embedLookup>
  <blip:embedUrl type="application/x-shockwave-flash">http://blip.tv/play/AfmOcwI</blip:embedUrl>
  <wfw:commentRss>http://blip.tv/comments/?attached_to=post1984271&amp;skin=rss</wfw:commentRss>
  <blip:thumbnail_src>Bdenning-ZenossAddingAUserAndEmailAlerts240-285.jpg</blip:thumbnail_src>
  <blip:puredescription><![CDATA[This screencast shows you how to add a user and configure them to receive alerts for a specific class of devices (in our case any Linux server) via email. It also quickly shows performance data which the test server setup in the first Zenoss screencast has collected (after running for two hours).]]></blip:puredescription>
  <blip:smallThumbnail>http://a.images.blip.tv/Bdenning-ZenossAddingAUserAndEmailAlerts240-285-5.jpg</blip:smallThumbnail>
  <blip:license>Creative Commons Attribution-NonCommercial 2.0</blip:license>
  <description><![CDATA[

<iframe src="http://blip.tv/play/AfmOcwI.html?p=1" width="550" height="443" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#AfmOcwI" style="display:none"></embed>
<br />

This screencast shows you how to add a user and configure them to receive alerts for a specific class of devices (in our case any Linux server) via email. It also quickly shows performance data which the test server setup in the first Zenoss screencast has collected (after running for two hours).

]]></description>
  <yv:adInfo>
    <yv:adTargeting>
      <yv:adData>
        <yv:id>YahooPartnerVideoID</yv:id>
        <yv:name>Blip post id</yv:name>
        <yv:value>1984271</yv:value>
      </yv:adData>
    </yv:adTargeting>
  </yv:adInfo>
  <comments>http://blip.tv/file/1974296</comments>
  <category>Technology</category>
  <category>linux</category>
  <category>system</category>
  <category>administration</category>
  <category>zenoss</category>
  <category>screencast</category>
  <pubDate>Thu, 09 Apr 2009 05:04:47 +0000</pubDate>
  
  <itunes:keywords>linux, system, administration, zenoss, screencast</itunes:keywords>
  <itunes:image>http://a.images.blip.tv/Bdenning-ZenossAddingAUserAndEmailAlerts240-285.jpg</itunes:image>
  <media:keywords>linux, system, administration, zenoss, screencast</media:keywords>
  <media:group>
    <media:content blip:acodec="mp3" blip:role="Source" blip:vcodec="ffodivx" expression="full" fileSize="18890482" height="360" isDefault="true" type="video/msvideo" url="http://blip.tv/file/get/Bdenning-ZenossAddingAUserAndEmailAlerts240.avi" width="480">
      <mediaad:content position="preroll" provider="freewheel" />
    </media:content>
    <media:content blip:acodec="mp3" blip:role="web" blip:vcodec="ffvp6f" expression="full" fileSize="22396821" height="360" isDefault="false" type="video/x-flv" url="http://blip.tv/file/get/Bdenning-ZenossAddingAUserAndEmailAlerts480.flv" width="480" />
  </media:group>
  <media:player url="http://blip.tv/file/1974296"><![CDATA[<iframe src="http://blip.tv/play/AfmOcwI.html?p=1" width="550" height="443" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#AfmOcwI" style="display:none"></embed>]]></media:player>
  <media:title>Zenoss - Adding a user and email alerts</media:title>
  <media:thumbnail url="http://a.images.blip.tv/Bdenning-ZenossAddingAUserAndEmailAlerts240-285.jpg" />
  <creativeCommons:license>http://creativecommons.org/licenses/by-nc/2.0/</creativeCommons:license>
<feedburner:origLink>http://blip.tv/castix/zenoss-adding-a-user-and-email-alerts-1984271</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/Castix/~5/hGvJuKsrb44/Bdenning-ZenossAddingAUserAndEmailAlerts240.avi" length="18890482" type="video/msvideo" /><feedburner:origEnclosureLink>http://blip.tv/file/get/Bdenning-ZenossAddingAUserAndEmailAlerts240.avi</feedburner:origEnclosureLink></item>




<item>
  <guid isPermaLink="false">66794DEA-24C0-11DE-90D4-D0097A8211D2</guid>
  <link>http://feedproxy.google.com/~r/Castix/~3/o-G1F7qQJ30/zenoss-installation-and-monitoring-a-server-via-snmp-1984202</link>
  <title>Zenoss - Installation and monitoring a server via SNMP</title>
  <blip:user>bdenning</blip:user>
  <blip:userid>354834</blip:userid>
  <blip:safeusername>castix</blip:safeusername>
  <blip:showpath>castix</blip:showpath>
  <blip:show>Castix</blip:show>
  <blip:showpage>http://blip.tv/castix</blip:showpage>
  <blip:picture>http://blip.tv/skin/blipnew/placeholder_user.gif</blip:picture>
  <blip:posts_id>1984202</blip:posts_id>
  <blip:item_id>1974227</blip:item_id>
  <blip:item_type>file</blip:item_type>
  <blip:contentRating>TV-G</blip:contentRating>
  <blip:rating>0.0</blip:rating>
  <blip:datestamp>2009-04-09T04:39:23Z</blip:datestamp>
  <blip:language>English</blip:language>
  <blip:adChannel />
  <blip:recommendations>0</blip:recommendations>
  <blip:recommendable>0</blip:recommendable>
  <blip:core>0</blip:core>
  <blip:adminRating />
  <blip:runtime>577</blip:runtime>
  <blip:embedLookup>AfmOLgI</blip:embedLookup>
  <blip:embedUrl type="application/x-shockwave-flash">http://blip.tv/play/AfmOLgI</blip:embedUrl>
  <wfw:commentRss>http://blip.tv/comments/?attached_to=post1984202&amp;skin=rss</wfw:commentRss>
  <blip:thumbnail_src>Bdenning-ZenossInstallationAndMonitoringAServerViaSNMP231-585.jpg</blip:thumbnail_src>
  <blip:puredescription><![CDATA[In this screencast I show you how to download and install the Zenoss server software, how to configure an Ubuntu Linux server to run SNMP and then how to add that SNMP enabled server to Zenoss for monitoring.Hopefully someone with find this helpful to get them up and running quickly with Zenoss. Just as a precautionary note, I would probably advise against using SNMP (and certainly with my config file) if you&#8217;re monitoring servers over the internet, but on a secured LAN it should be fine.Below is my snmpd.conf configuration file that I use which is pretty much straight out of the Zenoss manual. ## System location and contact information syslocation Timbucktoo syscontact Joe Admin ## sec.name source community com2sec notConfigUser default public ## groupName securityModel securityName group notConfigGroup v1 notConfigUser group notConfigGroup v2c notConfigUser ## Make at least snmpwalk -v 1 localhost -c public system fast again. ## name incl/excl subtree mask(optional) view systemview included .1 ## group context sec.model sec.level prefix read write notif access notConfigGroup &#8220;&#8221; any noauth exact systemview none none]]></blip:puredescription>
  <blip:smallThumbnail>http://a.images.blip.tv/Bdenning-ZenossInstallationAndMonitoringAServerViaSNMP231-585-948.jpg</blip:smallThumbnail>
  <blip:license>Creative Commons Attribution-NonCommercial 2.0</blip:license>
  <description><![CDATA[

<iframe src="http://blip.tv/play/AfmOLgI.html?p=1" width="550" height="443" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#AfmOLgI" style="display:none"></embed>
<br />

In this screencast I show you how to download and install the Zenoss server software, how to configure an Ubuntu Linux server to run SNMP and then how to add that SNMP enabled server to Zenoss for monitoring.Hopefully someone with find this helpful to get them up and running quickly with Zenoss. Just as a precautionary note, I would probably advise against using SNMP (and certainly with my config file) if you&#8217;re monitoring servers over the internet, but on a secured LAN it should be fine.Below is my snmpd.conf configuration file that I use which is pretty much straight out of the Zenoss manual. ## System location and contact information syslocation Timbucktoo syscontact Joe Admin ## sec.name source community com2sec notConfigUser default public ## groupName securityModel securityName group notConfigGroup v1 notConfigUser group notConfigGroup v2c notConfigUser ## Make at least snmpwalk -v 1 localhost -c public system fast again. ## name incl/excl subtree mask(optional) view systemview included .1 ## group context sec.model sec.level prefix read write notif access notConfigGroup &#8220;&#8221; any noauth exact systemview none none

]]></description>
  <yv:adInfo>
    <yv:adTargeting>
      <yv:adData>
        <yv:id>YahooPartnerVideoID</yv:id>
        <yv:name>Blip post id</yv:name>
        <yv:value>1984202</yv:value>
      </yv:adData>
    </yv:adTargeting>
  </yv:adInfo>
  <comments>http://blip.tv/file/1974227</comments>
  <category>Technology</category>
  <category>linux</category>
  <category>screencast</category>
  <category>zenoss</category>
  <category>system</category>
  <category>administration</category>
  <pubDate>Thu, 09 Apr 2009 04:39:23 +0000</pubDate>
  
  <itunes:keywords>linux, screencast, zenoss, system, administration</itunes:keywords>
  <itunes:image>http://a.images.blip.tv/Bdenning-ZenossInstallationAndMonitoringAServerViaSNMP231-585.jpg</itunes:image>
  <media:keywords>linux, screencast, zenoss, system, administration</media:keywords>
  <media:group>
    <media:content blip:acodec="mp3" blip:role="Source" blip:vcodec="ffodivx" expression="full" fileSize="25734242" height="360" isDefault="true" type="video/msvideo" url="http://blip.tv/file/get/Bdenning-ZenossInstallationAndMonitoringAServerViaSNMP231.avi" width="480">
      <mediaad:content position="preroll" provider="freewheel" />
    </media:content>
    <media:content blip:acodec="mp3" blip:role="web" blip:vcodec="ffvp6f" expression="full" fileSize="25966658" height="360" isDefault="false" type="video/x-flv" url="http://blip.tv/file/get/Bdenning-ZenossInstallationAndMonitoringAServerViaSNMP386.flv" width="480" />
  </media:group>
  <media:player url="http://blip.tv/file/1974227"><![CDATA[<iframe src="http://blip.tv/play/AfmOLgI.html?p=1" width="550" height="443" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#AfmOLgI" style="display:none"></embed>]]></media:player>
  <media:title>Zenoss - Installation and monitoring a server via SNMP</media:title>
  <media:thumbnail url="http://a.images.blip.tv/Bdenning-ZenossInstallationAndMonitoringAServerViaSNMP231-585.jpg" />
  <creativeCommons:license>http://creativecommons.org/licenses/by-nc/2.0/</creativeCommons:license>
<feedburner:origLink>http://blip.tv/castix/zenoss-installation-and-monitoring-a-server-via-snmp-1984202</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/Castix/~5/NxnihNoCYlM/Bdenning-ZenossInstallationAndMonitoringAServerViaSNMP231.avi" length="25734242" type="video/msvideo" /><feedburner:origEnclosureLink>http://blip.tv/file/get/Bdenning-ZenossInstallationAndMonitoringAServerViaSNMP231.avi</feedburner:origEnclosureLink></item>




<item>
  <guid isPermaLink="false">561ADAF8-2435-11DE-B0CB-8FE3F671DF7D</guid>
  <link>http://feedproxy.google.com/~r/Castix/~3/s8T2Y3jjLOk/puppet-installation-configuring-a-client-server-1980684</link>
  <title>Puppet - Installation &amp; configuring a client server</title>
  <blip:user>bdenning</blip:user>
  <blip:userid>354834</blip:userid>
  <blip:safeusername>castix</blip:safeusername>
  <blip:showpath>castix</blip:showpath>
  <blip:show>Castix</blip:show>
  <blip:showpage>http://blip.tv/castix</blip:showpage>
  <blip:picture>http://blip.tv/skin/blipnew/placeholder_user.gif</blip:picture>
  <blip:posts_id>1980684</blip:posts_id>
  <blip:item_id>1970717</blip:item_id>
  <blip:item_type>file</blip:item_type>
  <blip:contentRating>TV-G</blip:contentRating>
  <blip:rating>0.0</blip:rating>
  <blip:datestamp>2009-04-08T12:03:56Z</blip:datestamp>
  <blip:language>English</blip:language>
  <blip:adChannel />
  <blip:recommendations>0</blip:recommendations>
  <blip:recommendable>0</blip:recommendable>
  <blip:core>0</blip:core>
  <blip:adminRating />
  <blip:runtime>532</blip:runtime>
  <blip:embedLookup>AfjycAI</blip:embedLookup>
  <blip:embedUrl type="application/x-shockwave-flash">http://blip.tv/play/AfjycAI</blip:embedUrl>
  <wfw:commentRss>http://blip.tv/comments/?attached_to=post1980684&amp;skin=rss</wfw:commentRss>
  <blip:thumbnail_src>Bdenning-PuppetInstallationConfiguringAClientServer412-772.jpg</blip:thumbnail_src>
  <blip:puredescription><![CDATA[This first screencast is going to get you up and running with a very simple puppet manifest that will be used to install emacs and a custom motd banner on a server. Below is the example site.pp manifest I used in the demonstration. node &#8216;client.test.net&#8217; { package { &#8220;emacs22-nox&#8221;: ensure =&gt; installed } file { &#8220;/var/run/motd&#8221;: source =&gt; &#8220;puppet:///files/motd&#8221; } }]]></blip:puredescription>
  <blip:smallThumbnail>http://a.images.blip.tv/Bdenning-PuppetInstallationConfiguringAClientServer412-772-441.jpg</blip:smallThumbnail>
  <blip:license>Creative Commons Attribution-NonCommercial 2.0</blip:license>
  <description><![CDATA[

<iframe src="http://blip.tv/play/AfjycAI.html?p=1" width="550" height="443" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#AfjycAI" style="display:none"></embed>
<br />

This first screencast is going to get you up and running with a very simple puppet manifest that will be used to install emacs and a custom motd banner on a server. Below is the example site.pp manifest I used in the demonstration. node &#8216;client.test.net&#8217; { package { &#8220;emacs22-nox&#8221;: ensure =&gt; installed } file { &#8220;/var/run/motd&#8221;: source =&gt; &#8220;puppet:///files/motd&#8221; } }

]]></description>
  <yv:adInfo>
    <yv:adTargeting>
      <yv:adData>
        <yv:id>YahooPartnerVideoID</yv:id>
        <yv:name>Blip post id</yv:name>
        <yv:value>1980684</yv:value>
      </yv:adData>
    </yv:adTargeting>
  </yv:adInfo>
  <comments>http://blip.tv/file/1970717</comments>
  <category>Technology</category>
  <category>linux</category>
  <category>puppet</category>
  <category>server</category>
  <category>configuration</category>
  <category>screencast</category>
  <pubDate>Wed, 08 Apr 2009 12:03:56 +0000</pubDate>
  
  <itunes:keywords>linux, puppet, server, configuration, screencast</itunes:keywords>
  <itunes:image>http://a.images.blip.tv/Bdenning-PuppetInstallationConfiguringAClientServer412-772.jpg</itunes:image>
  <media:keywords>linux, puppet, server, configuration, screencast</media:keywords>
  <media:group>
    <media:content blip:acodec="mp3" blip:role="Source" blip:vcodec="ffodivx" expression="full" fileSize="16879218" height="360" isDefault="true" type="video/msvideo" url="http://blip.tv/file/get/Bdenning-PuppetInstallationConfiguringAClientServer412.avi" width="480">
      <mediaad:content position="preroll" provider="freewheel" />
    </media:content>
    <media:content blip:acodec="mp3" blip:role="web" blip:vcodec="ffvp6f" expression="full" fileSize="20307014" height="360" isDefault="false" type="video/x-flv" url="http://blip.tv/file/get/Bdenning-PuppetInstallationConfiguringAClientServer792.flv" width="480" />
  </media:group>
  <media:player url="http://blip.tv/file/1970717"><![CDATA[<iframe src="http://blip.tv/play/AfjycAI.html?p=1" width="550" height="443" frameborder="0" allowfullscreen></iframe><embed type="application/x-shockwave-flash" src="http://a.blip.tv/api.swf#AfjycAI" style="display:none"></embed>]]></media:player>
  <media:title>Puppet - Installation &amp; configuring a client server</media:title>
  <media:thumbnail url="http://a.images.blip.tv/Bdenning-PuppetInstallationConfiguringAClientServer412-772.jpg" />
  <creativeCommons:license>http://creativecommons.org/licenses/by-nc/2.0/</creativeCommons:license>
<feedburner:origLink>http://blip.tv/castix/puppet-installation-configuring-a-client-server-1980684</feedburner:origLink><enclosure url="http://feedproxy.google.com/~r/Castix/~5/HggfPLMT-N0/Bdenning-PuppetInstallationConfiguringAClientServer412.avi" length="16879218" type="video/msvideo" /><feedburner:origEnclosureLink>http://blip.tv/file/get/Bdenning-PuppetInstallationConfiguringAClientServer412.avi</feedburner:origEnclosureLink></item>






</channel>
</rss>
