<?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>gomez's blog</title>
	<atom:link href="http://www.sanjta.org/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.sanjta.org</link>
	<description>IT from the unblinking eyes of the GNU/Linux user</description>
	<lastBuildDate>Sun, 15 Apr 2012 15:19:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>RFC 1998 implementation example: BGP Community Attribute in Multi-home Routing</title>
		<link>http://www.sanjta.org/?p=812</link>
		<comments>http://www.sanjta.org/?p=812#comments</comments>
		<pubDate>Sun, 15 Apr 2012 15:16:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cisco]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[networks]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=812</guid>
		<description><![CDATA[Couple of days ago, I had really interesting discussion about using BGP communities to influent inbound traffic by modifying ISP&#8217;s LOCAL_PREF on advertised prefixes in multi homed environments. There are many Internet Service Providers that support this, including, for example, Level3 (as visible on this link). Taking in consideration that BGP communities are basically prefix [...]]]></description>
			<content:encoded><![CDATA[<p>Couple of days ago, I had really interesting discussion about using BGP communities to influent inbound traffic by modifying ISP&#8217;s LOCAL_PREF on advertised prefixes in multi homed environments. There are many Internet Service Providers that support this, including, for example, Level3 (as visible on <a href="http://www.onesc.net/communities/as3356/">this link</a>).</p>
<p>Taking in consideration that BGP communities are basically prefix tags, one can ask how can this be done. I was wondering about it as well, so I have found out that this particular behavior is described in RFC 1998, and it needs to be supported by your ISP. Here is the example:</p>
<p><center><img src="http://www.sanjta.org/wp-content/uploads/BGPCommunitiesLocalPref.png" alt="" /></center></p>
<p>AS 100 is under our administrative control, and AS 200 is our ISP. Addressing is as follows:</p>
<blockquote><p>R1:<br />
FastEthernet0/0     10.10.10.1/24 (100Mbps)<br />
FastEthernet0/1     20.20.20.1/24 (10Mbps)<br />
Loopback77             1.1.1.1/24<br />
Loopback10 150.0.10.1/24<br />
Loopback20 150.0.20.1/24<br />
Loopback30 150.0.30.1/24<br />
R2:<br />
FastEthernet0/0     10.10.10.2/24 (100 Mbps)<br />
FastEthernet0/1     192.168.1.1/24 (100 Mbps)<br />
Loopback77             2.2.2.2/24<br />
R3<br />
FastEthernet0/0     20.20.20.2/24 (10Mbps)<br />
FastEthernet0/1     192.168.1.2/24 (100 Mbps)<br />
Loopback77             3.3.3.3/24</p></blockquote>
<p>Please note that in this particular example, I am using static routing to ensure network reachability between above listed loopbacks (loopbacks that are used for update-source, in this particular example loopback77).</p>
<p>Once we have network reachability working as expected, we need to configure our eBGP peers. In order to configure eBGP peers on R1 with R2 and R3, we need to execute following:</p>
<blockquote><p>R1(config)# router bgp 100<br />
R1(config-router)#neighbor 2.2.2.2 remote-as 200<br />
R1(config-router)#neighbor 2.2.2.2 update-source loopback77<br />
R1(config-router)#neighbor 2.2.2.2 ebgp-multihop<br />
R1(config-router)#neighbor 3.3.3.3 remote-as 200<br />
R1(config-router)#neighbor 3.3.3.3 update-source loopback77<br />
R1(config-router)#neighbor 3.3.3.3 ebgp-multihop</p></blockquote>
<p>Taking in consideration that we are going to use BGP communities new-format, we need to configure following:</p>
<blockquote><p>R1(config)#ip bgp-community new-format<br />
R1(config)#router bgp 100<br />
R1(config-router)#neighbor 2.2.2.2 send-community<br />
R1(config-router)#neighbor 3.3.3.3 send-community</p></blockquote>
<p>On provider side, in order to establish eBGP session from R2 to R1 we need to execute following:</p>
<blockquote><p>R2(config)#router bgp 200<br />
R2(config-router)#neighbor 1.1.1.1 remote-as 100<br />
R2(config-router)#neighbor 1.1.1.1 update-source loopback77<br />
R2(config-router)#neighbor 1.1.1.1 ebgp-multihop</p></blockquote>
<p>Additionally, R2 is connected to R3 using their Fa0/1 interfaces within the same AS 200, therefore, ISP needs to configure iBGP, as follows:</p>
<blockquote><p>R2(config-router)#neighbor 192.168.1.2 remote-as 200<br />
R2(config-router)#neighbor 192.168.1.2 next-hop-self</p></blockquote>
<p>Additionally, we will be using BGP Communities new-format, so we need to configure following:</p>
<blockquote><p>R2(config)#ip bgp-community new-format<br />
R2(config)#router bgp 200<br />
R2(config-router)#neighbor 1.1.1.1 send-community<br />
R2(config-router)#neighbor 192.168.1.2 send-community</p></blockquote>
<p>On provider side, there is R3 that needs to be configured. In order to configure eBGP peering with R1, we need to do following:</p>
<blockquote><p>R3(config)#router bgp 200<br />
R3(config-router)#neighbor 1.1.1.1 remote-as 100<br />
R3(config-router)#neighbor 1.1.1.1 update-source loopback77<br />
R3(config-router)#neighbor 1.1.1.1 ebgp-multihop</p></blockquote>
<p>Also, R3 FastEthernet 0/1 is connected to R2 FastEthernet 0/1 so we need to configure iBGP as follows:</p>
<blockquote><p>R3(config-router)#neighbor 192.168.1.1 remote-as 200<br />
R3(config-router)#neighbor 192.168.1.1 next-hop-self</p></blockquote>
<p>and we need to apply BGP communities new-format related configuration:</p>
<blockquote><p>R3(config)#ip bgp-community new-format<br />
R3(config)#router bgp 200<br />
R3(config-router)#neighbor 1.1.1.1 send-community<br />
R3(config-router)#neighbor 192.168.1.1 send-community</p></blockquote>
<p>Last step that we need to preform is to verify that our peers are up and running as expected: </p>
<pre>  R1#show ip bgp summary | begin Neig
  Neighbor   V    AS MsgRcvd MsgSent TblVer  InQ OutQ Up/Down State/PfxRcd
  2.2.2.2    4   200     156     158      4    0    0 00:41:15      0
  3.3.3.3    4   200     143     144      4    0    0 00:41:15      0
  R1#

  R2#show ip bgp summary | begin Neig
  Neighbor     V    AS MsgRcvd MsgSent TblVer  InQ OutQ Up/Down State/PfxRcd
  1.1.1.1      4   100     158     156     20    0    0 00:41:23      0
  192.168.1.2  4   200     128     127     20    0    0 01:57:31      0
  R2#

  R3#show ip bgp summary | begin Neig
  Neighbor    V    AS MsgRcvd MsgSent TblVer  InQ OutQ Up/Down State/PfxRcd
  1.1.1.1     4   100     144     143     23    0    0 00:41:26      0
  192.168.1.1 4   200     127     128     23    0    0 01:57:35      0
  R3#</pre>
<p>As visible above, everything seems to be working fine. We have peering between R1 that is under our administrative control and ISP routers R2 and R3. ISP routers have iBGP peering over their FastEthernet 0/1 interfaces.</p>
<p>Now that we have everything working as expected, we will advertise directly connected networks from R1 (in our particular example lo10, lo20 and lo30) by using redistribute connected BGP command. </p>
<p>We will create prefix-list first, and route-map that matches that prefix-list in order to control what are we advertising:</p>
<blockquote><p>R1(config)#ip prefix-list REDIST permit 150.0.10.0/24<br />
R1(config)#ip prefix-list REDIST permit 150.0.20.0/24<br />
R1(config)#ip prefix-list REDIST permit 150.0.30.0/24<br />
R1(config)#route-map BGP-REDIST permit 10<br />
1(config-route-map)#match ip address prefix-list REDIST</p></blockquote>
<p>and then we need to redistribute it as follows:</p>
<blockquote><p>R1(config-router)#redistribute connected route-map BGP-REDIST</p></blockquote>
<p>We can verify results by checking R2/R3 BGP table:</p>
<pre>  R2#show ip bgp | begin Net
     Network          Next Hop            Metric LocPrf Weight Path
  * i150.0.10.0/24    192.168.1.2              0    100      0 100 ?
  *&gt;                  1.1.1.1                  0             0 100 ?
  * i150.0.20.0/24    192.168.1.2              0    100      0 100 ?
  *&gt;                  1.1.1.1                  0             0 100 ?
  * i150.0.30.0/24    192.168.1.2              0    100      0 100 ?
  *&gt;                  1.1.1.1                  0             0 100 ?
  R2#

  R3#show ip bgp | begin Net
     Network          Next Hop            Metric LocPrf Weight Path
  * i150.0.10.0/24    192.168.1.1              0    100      0 100 ?
  *&gt;                  1.1.1.1                  0             0 100 ?
  * i150.0.20.0/24    192.168.1.1              0    100      0 100 ?
  *&gt;                  1.1.1.1                  0             0 100 ?
  * i150.0.30.0/24    192.168.1.1              0    100      0 100 ?
  *&gt;                  1.1.1.1                  0             0 100 ?
  R3#</pre>
<p>So, we have expected BGP results. Now, taking in consideration that our link between R1 FastEthernet 0/0 and R2 FastEthernet 0/0 is 100bps we would like to prefer that link for inbound routing, as it is better than the other available R1 FastEthernet 0/1 R3 FastEthernet 0/0 link which is 10 mbps.</p>
<p>Usual way to achieve this would be to use MED or AS Prepanding, but if supported by your ISP you could possibly use BGP communities.</p>
<p>In case that your provider supports that, first thing that we would need to do is to set communities:</p>
<blockquote><p>R1(config)#route-map SET-BGP-COMMUNITY-200<br />
R1(config-route-map)#set community 200:200<br />
R1(config-route-map)#exit<br />
R1(config)#route-map SET-BGP-COMMUNITY-150<br />
R1(config-route-map)#set community 200:150</p></blockquote>
<p>As visible from configuration above, we have two different route-maps. First one is SET-BGP-COMMUNITY-200 and it is setting community to 200:200. Notice that 200 is our ISP ASN and it is followed by :200 which should, in our particular example, set our ISP&#8217;s LOCAL_PREF to 200 on our advertised routes. By doing that, we are directly influencing our inbound traffic. Following the same logic, route map SET-BGP-COMMUNITY-150 is going to set community to 200:150, and it should influence ISP&#8217;s LOCAL_PREF to be 150. </p>
<p>Once we configure those route-maps we need to apply them. We will apply SET-BGP-COMMUNITY-200 to our eBGP peer with R2 as it is 100Mbps link. SET-BGP-COMMUNITY-150 will be applied to our BGP peer with R3:</p>
<blockquote><p>R1(config)#router bgp 100<br />
R1(config-router)#neighbor 2.2.2.2 route-map SET-BGP-COMMUNITY-200 out<br />
R1(config-router)#neighbor 3.3.3.3 route-map SET-BGP-COMMUNITY-150 out</p></blockquote>
<p>In order to verify our results we need to check BGP table on our ISP routers, R2 and R3:</p>
<pre>  R2#show ip bgp | begin Net
     Network          Next Hop            Metric LocPrf Weight Path
  *&gt; 150.0.10.0/24    1.1.1.1                  0    200      0 100 ?
  *&gt; 150.0.20.0/24    1.1.1.1                  0    200      0 100 ?
  *&gt; 150.0.30.0/24    1.1.1.1                  0    200      0 100 ?
  R2#</pre>
<p>As visible from R2 output, LOCAL_PREF is set to 200 and all of the prefixes that are learned from R1 on 100Mbps link. Therefore, this means that our setup is working as expected. Just to make sure, lets verify one of the routes and it&#8217;s set community:</p>
<pre>  R2#show ip bgp 150.0.10.0
  BGP routing table entry for 150.0.10.0/24, version 33
  Paths: (1 available, best #1, table Default-IP-Routing-Table)
    Advertised to update-groups:
       2
    100
      1.1.1.1 from 1.1.1.1 (150.0.30.1)
        Origin incomplete, metric 0, localpref 200, valid, external, best
        Community: 200:200
  R2#</pre>
<p>As visible from the output above, community is set to 200:200. Therefore, our configuration is working as expected. </p>
<p>Far more interesting output should be visible on R3:</p>
<pre>  R3#show ip bgp | begin Net
     Network          Next Hop            Metric LocPrf Weight Path
  *&gt;i150.0.10.0/24    192.168.1.1              0    200      0 100 ?
  *                   1.1.1.1                  0    150      0 100 ?
  *&gt;i150.0.20.0/24    192.168.1.1              0    200      0 100 ?
  *                   1.1.1.1                  0    150      0 100 ?
  *&gt;i150.0.30.0/24    192.168.1.1              0    200      0 100 ?
  *                   1.1.1.1                  0    150      0 100 ?
  R3#</pre>
<p>As expected, we can see that all of the prefixes have two possible paths, but in order to reach prefixes advertised by R1 traffic will go over R2 (iBGP peer) because LOCAL_PREF is better than from routes learned from R1 (1.1.1.1).</p>
<p>As visible from the above output, we successfully influenced inbound routing.</p>
<p>But what needs to be configured on our ISP routers in order to support this?</p>
<p>On both ISP routers we need to configure community lists that are going to match communities that are sent by R1:</p>
<blockquote><p>R2(config)#ip community-list 20 permit 200:150<br />
R2(config)#ip community-list 10 permit 200:200</p></blockquote>
<blockquote><p>R3(config)#ip community-list 20 permit 200:150<br />
R3(config)#ip community-list 10 permit 200:200</p></blockquote>
<p>Once that is done, ISP needs to create route-map that is expecting above community lists, and then based on the match it sets required LOCAL_PREF:</p>
<blockquote><p>R2(config)#route-map BGP-COMMUNITY-LOCAL-PREF permit 10<br />
R2(config-route-map)# match community 10<br />
R2(config-route-map)# set local-preference 200<br />
R2(config-route-map)#route-map BGP-COMMUNITY-LOCAL-PREF permit 20<br />
R2(config-route-map)# match community 20<br />
R2(config-route-map)# set local-preference 150<br />
R2(config-route-map)# route-map BGP-COMMUNITY-LOCAL-PREF permit 30</p></blockquote>
<blockquote><p>R3(config)#route-map BGP-COMMUNITY-LOCAL-PREF permit 10<br />
R3(config-route-map)# match community 10<br />
R3(config-route-map)# set local-preference 200<br />
R3(config-route-map)#route-map BGP-COMMUNITY-LOCAL-PREF permit 20<br />
R3(config-route-map)# match community 20<br />
R3(config-route-map)# set local-preference 150<br />
R3(config-route-map)# route-map BGP-COMMUNITY-LOCAL-PREF permit 30</p></blockquote>
<p>and last step that ISP needs to do is to apply that on all BGP peers, for example:</p>
<blockquote><p>R2(config)#router bgp 200<br />
R2(config-router)#neighbor 1.1.1.1 route-map BGP-COMMUNITY-LOCAL-PREF in</p></blockquote>
<blockquote><p>R3(config)#router bgp 200<br />
R3(config-router)#neighbor 1.1.1.1 route-map BGP-COMMUNITY-LOCAL-PREF in</p></blockquote>
<p>And that is all. Everything is working as expected.</p>
<p>In case that you have some questions don&#8217;t hesitate to leave comments.</p>
<ol>
<li><a href="http://www.ietf.org/rfc/rfc1998.txt">RFC1998</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=812</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Juniper Networks JNCIS-ENT certified and else</title>
		<link>http://www.sanjta.org/?p=803</link>
		<comments>http://www.sanjta.org/?p=803#comments</comments>
		<pubDate>Sun, 25 Mar 2012 17:14:51 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[juniper]]></category>
		<category><![CDATA[networks]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=803</guid>
		<description><![CDATA[Wow, it&#8217;s been a while. Although I haven&#8217;t really forgot my blog, I have to admit it looks like that. I have received a couple of comments on several blog posts (can you imagine that I have couple of blog posts that people actually read?) but I didn&#8217;t have time to respond on those, therefore, [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src=" http://www.sanjta.org/wp-content/uploads/juniper-networks-blue-png.jpg" alt="" /></p>
<p>Wow, it&#8217;s been a while.</p>
<p>Although I haven&#8217;t really forgot my blog, I have to admit it looks like that. I have received a couple of comments on several blog posts (can you imagine that I have couple of blog posts that people actually read?) but I didn&#8217;t have time to respond on those, therefore, my apologies, I will get some time to do so.</p>
<p>I wanted to write about my experience with JNCIS-ENT exam that I have passed couple of months ago (I took exam in Dec last year). Exam is covering wide range of topics, including:</p>
<p>Layer 2 Switching and VLANs<br />
Spanning Tree<br />
Layer 2 Security<br />
Protocol Independent Routing<br />
Open Shortest Path First (OSPF)<br />
Intermediate System to Intermediate System (IS-IS)<br />
Border Gateway Protocol (BGP)<br />
Tunnels<br />
High Availability</p>
<p>Complete list of exam objectives can be found on <a href="http://www.juniper.net/us/en/training/certification/resources_jncisent.html" target="_blank">this link</a>. As you can see, exam is covering wide range of topics, and based on my exam experience you will need to prepare seriously using couple of different learning sources if you have serious intentions to pass this exam. Technologies that are listed on the exam blueprint are something that I am dealing with on the daily basis, and it makes it much easier, but still, there is always something that can surprise you, and in order not to get surprised some study time needs to get dedicated for this exam.</p>
<p>I have used <a href="http://www.juniper.net/us/en/training/fasttrack/" target="_blank">Juniper Network Fast Track program</a> (I have used Fast Track materials for my JNCIA-Junos exam that I took like year or more ago, experience with that exam can be found at <a href="http://www.sanjta.org/?p=729" target="_blank">this link</a>) as primary material source, and I found it to be quite good. Please note that it is created for people that already have some experience with technologies listed, and I found it to be quite useful from syntax point of view (if you know how, lets say, protocol works, than it is pretty much just syntax difference that you need to get used to). Beside that, I would recommend <a href="http://www.juniper.net/us/en/training/certification/JNCIA_studyguide.pdf" target="_blank">JNCIA-Junos Study Guide</a> by Joseph M. Soricelli (it cover almost all of the topics on the JNCIS exam), I found that to be quite good and useful book. Currently  I am reading <a href="http://www.amazon.co.uk/JUNOS-Enterprise-Routing-Practical-Certification/dp/0596514425/ref=sr_1_1?ie=UTF8&amp;qid=1332693399&amp;sr=8-1" target="_blank">Juniper Networks Enterprise Routing</a>, by Doug Marschke and Harry Reynolds and it seems to be quite good book, and I will try to write some review once I am done with it.</p>
<p>Most of the routing related topics listed above can be configured and worked on using Olive (Olive is your good friend in case that you don&#8217;t have your own lab, or at least access to one). In case that you don&#8217;t want to spend your time configuring BSD in virtual machines, you can always buy couple of router hours on <a href="http://www.juniper.net/as/en/products-services/software/junos-platform/junosphere/" target="_blank">Junospehere</a>. Marko Milivojevic (twitter handle: icemarkom@) wrote couple of good blog posts describing his experience with Junosphere, and you can find them <a href="http://blog.markom.info/2012/02/the-junosphere-experience-part-one-getting-access/" target="_blank">here</a>. Switching part is problematic, as Junosphere (yet) or Olive doesn&#8217;t support Layer 2. Therefore, for switching part of the exam, you are on your own. <a href="http://www.proteus.net/" target="_blank">Proteus Networks</a> are offering rack rentals, so you can try with them when it comes to L2 part of the exam.</p>
<p>There is approximately  60 questions on the exam, and those are single or multiple choice questions. Exam is fair, questions are concise and designed to test your knowledge. Make sure to cover Fast Track materials couple of times. Make sure to know syntax and test your self before exam. You will get questions on all of the topics listed in blueprint. Don&#8217;t assume that something from the blueprint will be skipped, it won&#8217;t.</p>
<p>Also, big thanks for my exam goes to Juniper Networks &#8211; they provided voucher that covered exam cost (make sure to follow them on twitter or their promotions on Fast Track program, I will just say that they are &#8216;generous&#8217;).  In case that some more information is required, let me know (I won&#8217;t answer questions that are violating exam NDA).</p>
<ol>
<li><a href="http://juniper.net">Juniper Networks</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=803</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>[1. - 6. Nov 2011] 15. International Music Festival &#8211; Jazz Fest Sarajevo</title>
		<link>http://www.sanjta.org/?p=789</link>
		<comments>http://www.sanjta.org/?p=789#comments</comments>
		<pubDate>Tue, 20 Sep 2011 14:19:32 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[happenings]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=789</guid>
		<description><![CDATA[Richard Bona Tuesday, 1st November @ 8:00 pm The Rosenberg Trio Tuesday, 1st November @ 10:15 pm Dave Holland &#38; Pepe Habichuela Flamenco Quintet feat. Josemi Carmona Wednesday, 2nd November @ 8:00 pm Henderson/Berlin/Chambers Super Trio Wednesday, 2nd November @ 10:15 pm John Abercrombie Quartet Thursday, 3rd November @ 8:00 pm Joseph &#38; James Tawadros [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://sanjta.org/pics/jazz/jazzfest11.jpg" alt="" width="498" height="181" /></p>
<div>
<div>
<h5></h5>
<h5></h5>
<h5><a title="Richard Bona" href="http://jazzfest.ba/en/2011/11/01/richard-bona-en/" rel="bookmark">Richard Bona</a></h5>
<p>Tuesday, 1st November @ 8:00 pm</p>
</div>
</div>
<div>
<div>
<h5><a title="The Rosenberg Trio" href="http://jazzfest.ba/en/2011/11/01/rosenberg-trio/" rel="bookmark">The Rosenberg Trio</a></h5>
<p>Tuesday, 1st November @ 10:15 pm</p>
</div>
</div>
<div>
<div>
<h5><a title="Dave Holland &amp; Pepe Habichuela Flamenco Quintet feat. Josemi Carmona" href="http://jazzfest.ba/en/2011/11/02/dave-holland-and-pepe-habichuela-flamenco-quintet-feat-josemi-carmona-en/" rel="bookmark">Dave Holland &amp; Pepe Habichuela Flamenco Quintet feat. Josemi Carmona</a></h5>
<p>Wednesday, 2nd November @ 8:00 pm</p>
</div>
</div>
<div>
<div>
<h5><a title="Henderson/Berlin/Chambers Super Trio" href="http://jazzfest.ba/en/2011/11/02/henderson-berlin-chambers-trio-en/" rel="bookmark">Henderson/Berlin/Chambers Super Trio</a></h5>
<p>Wednesday, 2nd November @ 10:15 pm</p>
</div>
</div>
<div>
<div>
<h5><a title="John Abercrombie Quartet" href="http://jazzfest.ba/en/2011/11/03/john-abercrombie-quartet-en/" rel="bookmark">John Abercrombie Quartet</a></h5>
<p>Thursday, 3rd November @ 8:00 pm</p>
</div>
</div>
<div>
<div>
<h5><a title="Joseph &amp; James Tawadros" href="http://jazzfest.ba/en/2011/11/03/joseph-james-tawadros-en/" rel="bookmark">Joseph &amp; James Tawadros</a></h5>
<p>Thursday, 3rd November @ 10:00 pm</p>
</div>
</div>
<div>
<div>
<h5><a title="Kudsi Erguner Trio" href="http://jazzfest.ba/en/2011/11/04/kudsi-erguner-trio-en/" rel="bookmark">Kudsi Erguner Trio</a></h5>
<p>Friday, 4th November @ 8:00 pm</p>
</div>
</div>
<div>
<div>
<h5><a title="Stian Westerhus" href="http://jazzfest.ba/en/2011/11/04/stian-westerhus-en/" rel="bookmark">Stian Westerhus</a></h5>
<p>Friday, 4th November @ 10:00 pm</p>
</div>
</div>
<div>
<div>
<h5><a title="Schiefel – Hadžić – Yankoulov" href="http://jazzfest.ba/en/2011/11/05/schiefel-hadzic-yankoulov-en/" rel="bookmark">Schiefel – Hadžić – Yankoulov</a></h5>
<p>Saturday, 5th November @ 6:00 pm</p>
</div>
</div>
<div>
<div>
<h5><a title="Ralph Towner" href="http://jazzfest.ba/en/2011/11/05/ralph-towner-solo-en/" rel="bookmark">Ralph Towner</a></h5>
<p>Saturday, 5th November @ 8:00 pm</p>
</div>
</div>
<div>
<div>
<h5><a title="Cheikh Lô" href="http://jazzfest.ba/en/2011/11/05/cheikh-lo-en/" rel="bookmark">Cheikh Lô</a></h5>
<p>Saturday, 5th November @ 10:00 pm</p>
</div>
</div>
<div>
<div>
<h5><a title="Concert for kids" href="http://jazzfest.ba/en/2011/11/06/concert-for-kids/" rel="bookmark">Concert for kids</a></h5>
<p>Sunday, 6th November @ 12:00 pm</p>
</div>
</div>
<div>
<div>
<h5><a title="WORKSHOP: Meet the instruments!" href="http://jazzfest.ba/en/2011/11/06/workshop-meet-the-instruments-2011/" rel="bookmark">WORKSHOP: Meet the instruments!</a></h5>
<p>Sunday, 6th November @ 1:00 pm</p>
<p>For more information refer to:</p>
<ol>
<li><a href="http://www.jazzfest.ba">Jazzfest Sarajevo</a></li>
</ol>
</div>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=789</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Configuring Frame Relay in Multipoint topology</title>
		<link>http://www.sanjta.org/?p=764</link>
		<comments>http://www.sanjta.org/?p=764#comments</comments>
		<pubDate>Wed, 11 May 2011 00:32:12 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cisco]]></category>
		<category><![CDATA[networks]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=764</guid>
		<description><![CDATA[For the purpose of testing EIGRP and OSPF over NBMA networks I needed to configure Frame Relay topology that I will be able to use to preform those tests. Although configuration is quite simple &#8211; it takes time to configure it (as I rarely work with Frame Relay, especially with Frame Relay switch configuration). This [...]]]></description>
			<content:encoded><![CDATA[<p>For the purpose of testing EIGRP and OSPF over NBMA networks I needed to configure Frame Relay topology that I will be able to use to preform those tests. Although configuration is quite simple &#8211; it takes time to configure it (as I rarely work with Frame Relay, especially with Frame Relay switch configuration). This blog post should provide brief configuration overview on how to configure Frame Relay Switch as well as other routers in order to meet test requirements.</p>
<p><img class="aligncenter" src="http://sanjta.org/pics/CISCO/FrameRelay/FrameRelayTopology.png" alt="" width="449" height="271" /></p>
<p>Given topology above, we have three routers: HQ, BR1 and BR2 interconnected with Frame Relay. As visible per above picture, we will be dealing with simple hub-and-spoke topology with HQ as hub router. First of all, we need to configure Frame Relay switch &#8211; FRS.</p>
<p>First thing that we need to do is to enable Frame Relay switching with following command:</p>
<blockquote><p><strong>FRS&gt;enable</strong><br />
<strong> FRS#conf t</strong><br />
<strong> Enter configuration commands, one per line.  End with CNTL/Z.</strong><br />
<strong> FRS(config)#frame-relay switching</strong></p></blockquote>
<p>Once done with that, we can start configuring serial interfaces. As visible from topology above we will use DLCI 102 to communicate from HQ router with DLCI 201 which will be used by BR1 router. Following the same logic, we will use DLCI 103 from HQ router to communicate with DLCI 301 used by BR2.</p>
<p>To accomplish above task we need to configure Serial0/0 interface on FRS as follows:</p>
<blockquote><p><strong>FRS(config)#interface Serial0/0</strong><br />
<strong> FRS(config-if)#encapsulation frame-relay</strong><br />
<strong> FRS(config-if)#clock rate 64000</strong><br />
<strong> FRS(config-if)#frame-relay intf-type dce</strong><br />
<strong> FRS(config-if)#frame-relay route 102 interface Serial0/1 201</strong><br />
<strong> FRS(config-if)#frame-relay route 103 interface Serial0/2 301</strong></p></blockquote>
<p>As visible from the configuration listed above, first thing that we need to do is to move to interface configuration mode with  &#8216;<em>interface Serial0/0</em>&#8216; command. Then, we need to set frame relay encapsulation with &#8216;<em>encapsulation frame-relay</em>&#8216; for given interface. As this interface is going to work as DCE we need to set clock rate with command &#8216;<em>clock rate 64000</em>&#8216; followed by command &#8216;<em>frame-relay intf-type dce</em>&#8216; which specifies interface to be handled as frame relay DCE device. Once done with that, we need to configure frame relay routes using &#8216;<em>frame-relay route</em>&#8216; command. That command specify incoming DLCI followed with outgoing interface and outgoing DLCI.</p>
<p>Once done with interface Serial0/0 configuration we can continue with interface Serial0/1 as follows:</p>
<blockquote><p><strong>FRS(config)#interface Serial0/1</strong><br />
<strong> FRS(config-if)#encapsulation frame-relay</strong><br />
<strong> FRS(config-if)#clock rate 64000</strong><br />
<strong> FRS(config-if)#frame-relay intf-type dce</strong><br />
<strong> FRS(config-if)#frame-relay route 201 interface Serial0/0 102</strong></p></blockquote>
<p>Please notice that above configuration is almost identical to configuration from interface Serial0/0 except for &#8216;<em>frame-relay route</em>&#8216; command which in this case sets DLCI 201 as incoming DLCI followed with interface Serial0/0 and outgoing DLCI 102 (HQ router is connected to interface Serial0/0).</p>
<p>Last step that we need to take on Frame Relay switch is to configure interface Serial0/2:</p>
<blockquote><p><strong>FRS(config-if)#interface Serial0/2</strong><br />
<strong> FRS(config-if)#encapsulation frame-relay</strong><br />
<strong> FRS(config-if)#clock rate 64000</strong><br />
<strong> FRS(config-if)#frame-relay intf-type dce</strong><br />
<strong> FRS(config-if)#frame-relay route 301 interface Serial0/0 103</strong></p></blockquote>
<p>Once done with that, issue &#8216;<strong><em>no shutdown</em></strong>&#8216; command on interface Serial0/0, Serial0/1 and Serial0/2.</p>
<p>In order to verify given configuration and frame relay routing you can execute following command:</p>
<blockquote><p><strong>FRS#show frame-relay route</strong><br />
<strong> Input Intf     Input Dlci     Output Intf     Output Dlci     Status</strong><br />
<strong> Serial0/0       102         Serial0/1       201         active</strong><br />
<strong> Serial0/0       103         Serial0/2       301         active</strong><br />
<strong> Serial0/1       201         Serial0/0       102         active</strong><br />
<strong> Serial0/2       301         Serial0/0       103         active</strong><br />
<strong> FRS#</strong></p></blockquote>
<p>Once we have completed and verified above configuration (we can see matching incominig/outgoing DLCIs as well as corresponding interfaces), we can move to router HQ to configure Frame Relay interface. It is quite simple and straight forward configuration. First thing that we need to do is to set frame relay encapsulation on Serial0/0 interface:</p>
<blockquote><p><strong>HQ(config)#interface Serial0/0</strong><br />
<strong> HQ(config-if)#encapsulation frame-relay</strong></p></blockquote>
<p>Once done with that, we can configure Serial0/0.1 subinterface as multipoint interface, as follows:</p>
<blockquote><p><strong>HQ(config)#interface Serial0/0.1 multipoint</strong><br />
<strong> HQ(config-if)#ip address 172.16.10.1 255.255.255.0</strong><br />
<strong> HQ(config-if)#frame-relay map ip 172.16.10.2 102 broadcast</strong><br />
<strong> HQ(config-if)#frame-relay map ip 172.16.10.3 103 broadcast</strong></p></blockquote>
<p>Once done with above configuration, issue &#8216;<em><strong>no shutdown</strong></em>&#8216; on interface Serial0/0. Please notice that we have created Serial0/0.1 multipoint interface, and we have assigned it IP address 172.16.10.1 with /24 subnet mask. Then, by using frame-relay map command we mapped IP protocol IP address 172.16.10.2 (that IP addressed is assigned on BR1 router&#8217;s interface Serial0/0.1) with DLCI 102 (which is linked with DLCI 201 on FRS as per listed configuration in section with FRS configurations &#8211; refer to output from &#8216;<em><strong>show frame-relay route</strong></em>&#8216; command from FRS section configuration).</p>
<p>Once done with that, you can verify your configuration with following command:</p>
<blockquote><p><strong>HQ#show frame-relay map</strong><br />
<strong> Serial0/0.1 (up): ip 172.16.10.2 dlci 102(0&#215;66,0&#215;1860), static,</strong><br />
<strong> broadcast,</strong><br />
<strong> CISCO, status defined, active</strong><br />
<strong> Serial0/0.1 (up): ip 172.16.10.3 dlci 103(0&#215;67,0&#215;1870), static,</strong><br />
<strong> broadcast,</strong><br />
<strong> CISCO, status defined, active</strong></p></blockquote>
<p>As we can see, Serial0/0.1 multipoint interface is up, it is statically configured with pseudo broadcast enabled. If it is all active, we can move to BR1 and BR2 router configuration which is similar to HQ except for the &#8216;<strong><em>frame-relay map</em></strong>&#8216; commands:</p>
<blockquote><p><strong>BR1(config)#interface Serial0/0</strong><br />
<strong> BR1(config-if)#encapsulation frame-relay</strong><br />
<strong> BR1(config-if)#no shutdown</strong><br />
<strong> BR1(config-if)#exit</strong><br />
<strong> BR1(config)#interface Serial0/0.1 multipoint</strong><br />
<strong> BR1(config-if)#ip address 172.16.10.2 255.255.255.0</strong><br />
<strong> BR1(config-if)#frame-relay map ip 172.16.10.1 201 broadcast</strong></p></blockquote>
<p>Once done with BR1 router, verify frame relay map configuration and status with following command:</p>
<blockquote><p><strong>BR1#show frame-relay map</strong><br />
<strong> Serial0/0.1 (up): ip 172.16.10.1 dlci 201(0xC9,0&#215;3090), static,</strong><br />
<strong> broadcast,</strong><br />
<strong> CISCO, status defined, active</strong></p></blockquote>
<p>If it active, then we can move to BR2 configuration:</p>
<blockquote><p><strong>BR2(config)#interface Serial0/0</strong><br />
<strong> BR2(config-if)#no shutdown</strong><br />
<strong> BR2(config-if)#encapsulation frame-relay</strong><br />
<strong> BR2(config-if)#exit</strong><br />
<strong> BR2(config)#interface Serial0/0.1 multipoint</strong><br />
<strong> BR2(config-if)#ip address 172.16.10.3 255.255.255.0</strong><br />
<strong> BR2(config-if)#frame-relay map ip 172.16.10.1 301 broadcast</strong></p></blockquote>
<p>Once done with configuration, give a check to frame relay map by issuing following command:</p>
<blockquote><p><strong>BR2#show frame-relay map</strong><br />
<strong> Serial0/0.1 (up): ip 172.16.10.1 dlci 301(0x12D,0x48D0), static,</strong><br />
<strong> broadcast,</strong><br />
<strong> CISCO, status defined, active</strong></p></blockquote>
<p>If it is active, then we can preform last test from each of the routers, which is in our case end to end connectivity check with ping command, starting with HQ:</p>
<blockquote><p><strong>HQ#ping 172.16.10.2</strong></p>
<p><strong>Type escape sequence to abort.</strong><br />
<strong> Sending 5, 100-byte ICMP Echos to 172.16.10.2, timeout is 2 seconds:</strong><br />
<strong> !!!!!</strong><br />
<strong> Success rate is 100 percent (5/5), round-trip min/avg/max = 1/61/256 ms</strong><br />
<strong> HQ#ping 172.16.10.3</strong></p>
<p><strong>Type escape sequence to abort.</strong><br />
<strong> Sending 5, 100-byte ICMP Echos to 172.16.10.3, timeout is 2 seconds:</strong><br />
<strong> !!!!!</strong><br />
<strong> Success rate is 100 percent (5/5), round-trip min/avg/max = 1/36/168 ms</strong><br />
<strong> HQ#</strong></p></blockquote>
<p>As we can see from output above, we are able to successfully ping BR1 and BR2 IP addresses. If that is the case, we need to issue ping from BR1:</p>
<blockquote><p><strong>BR1#ping 172.16.10.1</strong></p>
<p><strong>Type escape sequence to abort.</strong><br />
<strong> Sending 5, 100-byte ICMP Echos to 172.16.10.1, timeout is 2 seconds:</strong><br />
<strong> !!!!!</strong><br />
<strong> Success rate is 100 percent (5/5), round-trip min/avg/max = 8/21/40 ms</strong><br />
<strong> BR1#</strong></p></blockquote>
<p>And last step is to ping HQ from BR2:</p>
<blockquote><p><strong>BR2#ping 172.16.10.1</strong></p>
<p><strong>Type escape sequence to abort.</strong><br />
<strong> Sending 5, 100-byte ICMP Echos to 172.16.10.1, timeout is 2 seconds:</strong><br />
<strong> !!!!!</strong><br />
<strong> Success rate is 100 percent (5/5), round-trip min/avg/max = 12/18/24 ms</strong><br />
<strong> BR2#</strong></p></blockquote>
<p>If it is all working as per above example, then you established end to end connectivity within this hub and spoke topology as per requirement and you are able to use it to preform some other actions. In my case, that is going to be EIGRP and OSPF test over NBMA. If there are some question, please comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=764</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>QSS Enterprise Day 2011: Ride the Right Cloud!</title>
		<link>http://www.sanjta.org/?p=746</link>
		<comments>http://www.sanjta.org/?p=746#comments</comments>
		<pubDate>Wed, 13 Apr 2011 13:04:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[education]]></category>
		<category><![CDATA[happenings]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=746</guid>
		<description><![CDATA[What: QSS Enterprise Day 2011 &#8211; Ride the Right Cloud! Where: Hotel Bristol Sarajevo Date: 14/04/2011 Agenda: Start &#8211; End Presentation 09:00 &#8211; 9:30 Guests registration 09:30 – 09:50 Keynote Isan Selimovic, QSS CEO 09:50 – 10:30 Gartner &#8220;The CIO Agenda 2011&#8243; - Ivan Maglic, Regional Manager 10:30 – 11:15 Check Point &#8220;How to secure [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://www.sanjta.org/pics/RideTheRightCloud/logo-qsseday-11.jpg" alt="" /></p>
<p><strong>What:</strong> QSS Enterprise Day 2011 &#8211; Ride the Right Cloud!<br />
<strong>Where:</strong> Hotel Bristol Sarajevo<br />
<strong>Date:</strong> 14/04/2011</p>
<p><strong>Agenda:</strong></p>
<table width="100%">
<tbody>
<tr>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;" width="20%"><strong>Start &#8211; End<br />
</strong></td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;" colspan="2"><strong>Presentation</strong></td>
</tr>
<tr>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;">09:00 &#8211; 9:30</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;" colspan="2">Guests registration</td>
</tr>
<tr style="background-color: #eee;">
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;">09:30 – 09:50</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;" colspan="2"><strong>Keynote</strong></p>
<p>Isan Selimovic, QSS CEO</td>
</tr>
<tr>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;">09:50 – 10:30</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;" colspan="2"><strong>Gartner</strong></p>
<p>&#8220;The CIO Agenda 2011&#8243;</p>
<p>- Ivan Maglic, Regional Manager</td>
</tr>
<tr style="background-color: #eee;">
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;">10:30 – 11:15</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;" width="37%"><strong>Check Point </strong></p>
<p>&#8220;How to secure the cloud: Check Point solution for virtual environment!&#8221;</p>
<p>- Edin Rizvanbegovic, Sales Manager Adriatics, Check Point</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;" width="43%"><strong>HP &#8220;HP Cloud Solutions&#8221; </strong></p>
<p>- Saša Blagojevic, Solution Architect, HP CDG Serbia &amp; Montenegro</td>
</tr>
<tr>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;">11:15 – 11:25</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;" colspan="2">Short brake</td>
</tr>
<tr style="background-color: #eee;">
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;">11:25 – 12:10</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;"><strong>Juniper Networks </strong></p>
<p>&#8220;Juniper Solutions for Cloud Computing&#8221;</p>
<p>- Uwe-Dirk Richter, Technical Director Russia/CIS, East/SouthEast Europe &#8211; Juniper Networks</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;"><strong>Oracle </strong></p>
<p>&#8220;Consolidation to private cloud&#8221;</p>
<p>- Johan Hendrickx, Oracle EMEA Core Tech Director Performance &amp; Availability</td>
</tr>
<tr>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;">12:10 – 12:55</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;"><strong>VMware </strong></p>
<p>Accelerating the Journey to Your Cloud</p>
<p>- Ivo Sladoljev, VMware Territory Manager Adriatic</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;"><strong>Microsoft</strong></p>
<p>&#8220;Automatizacija upravljanja podatkovnim centrima pomoću Microsoft System Center alata&#8221;</p>
<p>- Mirad Maglic,Technology Strategist Microsoft BiH</td>
</tr>
<tr style="background-color: #eee;">
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;">12:55 – 13:45</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;" colspan="2">Lunch brake</td>
</tr>
<tr>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;">13:45 – 14:30</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;"><strong>Extreme Networks </strong></p>
<p>&#8220;Extreme Networks &#8211; Make Your Network Mobile&#8221;</p>
<p>- Ruedi Wegmann, Extreme Networks Country Manager Central &amp; Southeast Europe,</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;"><strong>FalconStor </strong></p>
<p>&#8220;Backup including Disaster Recovery as a Service&#8221;</p>
<p>- Venelin Tonev, FalconStor Storage Architect Central Europe</td>
</tr>
<tr style="background-color: #eee;">
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;">14:30 – 15:15</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;"><strong>IBM </strong></p>
<p>&#8220;IBM Cloud Solutions&#8221;</p>
<p>- Luka Pušnik, IBM Sales &amp; Distribution, STG Sales, IBM Cloud Sales Manager, IBM STG CEE</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;"><strong>EMC </strong></p>
<p>7 Steps for the (Private Cloud) Journey</p>
<p>- David Hanacek, EMC vSpecialist</td>
</tr>
<tr>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;">15:15 – 15:25</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;" colspan="2">Short brake</td>
</tr>
<tr style="background-color: #eee;">
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;">15:25 – 16:10</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;"><strong>HP </strong></p>
<p>&#8220;Get the Benefits of Shared Services today with HP BladeSystem Matrix&#8221;</p>
<p>- Dejan Stanic, HP Enterprise Servers and Storages Pre-Sales Consultant, HP CDG region</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;"><strong>Check Point</strong></p>
<p>&#8220;IPS rjesenje/Application control&#8221;</p>
<p>- Edin Rizvanbegovic, Sales Manager Adriatics, Check Point</td>
</tr>
<tr>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;">16:10 – 16:30</td>
<td style="border-bottom: #999 1px solid; font-family: 'Trebuchet MS', Arial, Helvetica, sans-serif; font-size: 13px; vertical-align: top; padding: 3px;" colspan="2"><strong>Closure<br />
</strong></td>
</tr>
</tbody>
</table>
<p>For more information refer to links below:</p>
<ol>
<li><a href="http://qss.ba/ufokusu/?id=510" target="_blank">Information about conference</a></li>
<li><a href="http://www.qss.ba/event/RegForm.aspx">Conference registration</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=746</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Juniper Networks JNCIA-Junos certified!</title>
		<link>http://www.sanjta.org/?p=729</link>
		<comments>http://www.sanjta.org/?p=729#comments</comments>
		<pubDate>Thu, 13 Jan 2011 13:02:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=729</guid>
		<description><![CDATA[Two months ago I have started to work on Juniper Networks JNCIA-Junos certification program in order to get in touch with Junos OS. I didn&#8217;t have that much experience with it, so it was research from scratch to me.  I have a friend which spent most of his career working with Juniper Networks gear, and [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://www.sanjta.org/wp-content/uploads/juniper-networks-blue-png.jpg" alt="" width="500" height="167" />Two months ago I have started to work on Juniper Networks JNCIA-Junos certification program in order to get in touch with Junos OS. I didn&#8217;t have that much experience with it, so it was research from scratch to me.  I have a friend which spent most of his career working with Juniper Networks gear, and I was listening super positive comments about it for some time, so I got interested into it. The best option for me to start with Juniper Networks was Juniper Networks FastTrack program, and I even wrote about it and about my desire to get in touch with it back in 2009. You can see that blog post on <a href="http://www.sanjta.org/?p=142">this link</a>.</p>
<p>Documentation that I have used to prepare myself for exam included JNCIA study guide from Joseph M. Soricelli and official FastTrack Program documentation which includes two PDFs. Please note that you can download FastTrack materials for free, by registering yourself on FastTrack site. Also, it is important to mention that Study guide covers lot of topics that will not appear on this exam (like BGP, MPLS or IS-IS) and could be used to find out more on topics that are not covered in FastTrack documentation. I really enjoyed reading that book, and I strongly recommend it.</p>
<p>Please note that JN0-101 exam (that is most recent exam code) is proctored through Prometric. Exam price is 100$ but I got 50% voucher by passing pre-assessment test within FastTrack program. There are 65 questions on this exam and 105 minutes to resolve them. Minimum passing score was set to 66%. Questions are oriented around general networking fundamentals as well as some vendor specific details (syntax, configurations, troubleshooting and else). Exam consists of single and multiple choice questions. Scope of JNCIA-Junos exam can be compared to Cisco CCNA. My advice is to cover Junos OS fundamentals, Policy statements, Firewall and CoS in details as I have noticed that focus is on those topics.</p>
<p>So far, I really like what Junos OS can provide and I am sure that I will explore it more. If you do have some questions about Juniper certification, and you think that I might help, please let me know.</p>
<ol>
<li><a href="http://www.juniper.net/us/en/">Juniper Networks</a></li>
<li><a href="https://learningportal.juniper.net/juniper/user_fasttrack_home.aspx">Juniper Networks Fast Track</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=729</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>E72 &#8211; The reason that I like Nokia</title>
		<link>http://www.sanjta.org/?p=667</link>
		<comments>http://www.sanjta.org/?p=667#comments</comments>
		<pubDate>Sat, 09 Oct 2010 13:51:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[IT]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[voip]]></category>
		<category><![CDATA[web]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=667</guid>
		<description><![CDATA[I have Nokia E72 for eight months already. I wanted to write some review in regards to this phone even earlier, but since I was Nokia E71 user in prior to that I had big expectations, so I wanted to have more experience with this phone. Taking in consideration that Nokia E71 was really good [...]]]></description>
			<content:encoded><![CDATA[<p>I have Nokia E72 for eight months already. I wanted to write some review in regards to this phone even earlier, but since I was Nokia E71 user in prior to that I had big expectations, so I wanted to have more experience with this phone. Taking in consideration that Nokia E71 was really good phone and that I bought E72 based on just few online reviews that were available back then I was kind of curies about this phone functionality and satisfaction that it can provide.</p>
<p><img class="aligncenter" src="http://www.sanjta.org/pics/Nokia/nokia_e72_fixes_side.jpg" alt="" width="500" height="339" />In my personal opinion this phone is all that Nokia E71 lacked to be and final prove to me that Nokia actually listen to their customers. For example, E72 is equiped with new ARM11 processor which is now working on 600Mhz which is noticeable in comparison with E71 which is working on 369Mhz. It directly improves customer satisfaction. Beside that, this phone is equipped with 5 megapixel auto-focus camera, standard 3.55 audio port and built in flashlight. New version of software (S60 3rd edition, Feature pack 2) fixes many problems that were present on Nokia E71, and also provides new features such as Nokia Messaging client built in. Also, it is coming with optical navigation key which can be useful for scrolling.</p>
<p>One of the most important features of this phone for me is it&#8217;s support for SIP stack, which is there by default. I think that I am using this option more than regular GSM calls, and I have to say that it works like a charm. SIP stack is installed by default but client needs to be installed additionally. By the end of text there are some useful links, and you will be able to see how to set it up. Client is easy to configure but allows you to set up every aspect of your connection like Quality of Service DSCPs both for media and signaling traffic, SIP URI, codecs and many other options intended for Voice over IP professionals. It is enjoyable to have that level of customization. VoIP calls over 3G are not allowed by default so I wrote blog post how to enable it (link is available at the bottom of this text as well). VoIP calls over 3G are working very good, but it is very dependent on 3G network that you are connected to (since 3G is kind of expensive in my country I am using G.729 codec with MOS of 3.7 which is good enough). Also, this phone is equipped with small front camera and I have tested video calls as well, and it is working very good. As I work a lot of with Cisco Unified Communications Manager I wanted to test Skinny Client Control Protocol &#8211; SCCP as well, so I installed Nokia  Call Connect for Cisco, which adds SCCP capabilities to this phone, and it is also very cool to have your mobile phone working as the end client in your Cisco Voice network. Link on how to set it up is available as well.</p>
<p>Taking in consideration that this is qwerty phone, it is understandable that screen size is smaller than it could be. Battery life is one of the features that I like the most on this phone &#8211; 1500MAh battery guaranties  five to seven days of normal phone use (actually I am charging this phone from Sunday to Sunday). Phone is coming with 2GB flash card which is enough for my use, but in case that you need more phone supports 16GB memory cards. Month ago, I bought Bluetooth Stereo Headset BH 214 and I have started using this phone as music player.</p>
<p><img class="aligncenter" src="http://www.sanjta.org/pics/Nokia/4656_3.jpg" alt="" width="461" height="281" /></p>
<p>It is small, nice looking device with a battery that can work up to 3 days, and I really think that it is one of the reasons that I will drop my iPod use in the future. I am not saying that it is decent replacement, but it works and I am satisfied with it. Good thing about this small device is that it is equipped with standard 3.55mm audio port, therefore I am able to use much better in ear headphones.</p>
<p>As it is visible, Nokia E72 is very powerful business and personal communication device. It is not toy for sure, first of all that is a phone (unlike what is now popular on the market, phone is first everything else than a phone) with very strong networking capabilities and then device that you can use for other things. So, if you are trying to find something like that, this is for sure good choice.</p>
<p>Recently we witnessed departures of few high positioned people at Nokia including their CEO and it is going to be interesting to follow which development strategy will Nokia choose in the future, but it is very unprofessional to think that world number one phone maker will go out of business as I was able to read on some social media. I think that new people within Nokia will find a way to deal with new competitors such as Apple and other manufactures that provide Android based phones. For sure, they have experience to deal with it.</p>
<ol>
<li><a href="http://www.mobile-review.com/review/nokia-e72-en.shtml">Nokia E72 review on Mobile Review</a></li>
<li><a href="http://www.voipvoip.com/nokia/e72.html">How to install SIP client on Nokia E72</a></li>
<li><a href="http://www.sanjta.org/?p=312">Placing VoIP calls over UMTS/3G on Nokia E72</a></li>
<li><a href="http://www.sanjta.org/?p=229" target="_blank">Nokia Call Connect for Cisco: Deploying solution with Cisco Unified Communications Manager</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=667</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>14. International music fest: Jazz Fest Sarajevo</title>
		<link>http://www.sanjta.org/?p=659</link>
		<comments>http://www.sanjta.org/?p=659#comments</comments>
		<pubDate>Fri, 01 Oct 2010 12:41:02 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[happenings]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=659</guid>
		<description><![CDATA[02.11.2010. 20:30 BURHAN ÖÇAL &#38; THE TRAKYA ALL STARS Turkey Main Stage &#8211; Bosanski kulturni centar, Branilaca Sarajeva 24 03.11.2010. 19:00 EDIN BOSNIĆ Bosnia-Herzegovina Solo Premiere Dom Oružanih snaga, Zelenih beretki 2 03.11.2010. 21:00 MIKE STERN BAND feat. DIDIER LOCKWOOD USA, France, Canada Main Stage &#8211; Bosanski kulturni centar, Branilaca Sarajeva 24 04.11.2010. 19:00 TIGRAN [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" src="http://www.sanjta.org/wp-content/uploads/jazzfest14.jpg" alt="" /></p>
<p>02.11.2010. 20:30<br />
<a href="http://jazzfest.ba/artists.php?artist_id=192&amp;lang=en&amp;godina=2010">BURHAN ÖÇAL &amp; THE TRAKYA ALL STARS</a><br />
Turkey<br />
Main Stage &#8211; Bosanski kulturni centar, Branilaca Sarajeva 24</p>
<p>03.11.2010. 19:00<br />
<a href="http://jazzfest.ba/artists.php?artist_id=185&amp;lang=en&amp;godina=2010">EDIN BOSNIĆ</a><br />
Bosnia-Herzegovina<br />
Solo Premiere Dom Oružanih snaga, Zelenih beretki 2</p>
<p>03.11.2010. 21:00<br />
<a href="http://jazzfest.ba/artists.php?artist_id=184&amp;lang=en&amp;godina=2010">MIKE STERN BAND feat. DIDIER LOCKWOOD</a><br />
USA, France, Canada<br />
Main Stage &#8211; Bosanski kulturni centar, Branilaca Sarajeva 24</p>
<p>04.11.2010. 19:00<br />
<a href="http://jazzfest.ba/artists.php?artist_id=186&amp;lang=en&amp;godina=2010" target="_blank">TIGRAN HAMASYAN</a><br />
Armenia<br />
Next Generation &#8211; Dom Oružanih snaga, Zelenih beretki 2</p>
<p>04.11.2010. 21:00<br />
<a href="http://jazzfest.ba/artists.php?artist_id=187&amp;lang=en&amp;godina=2010">DAVE HOLLAND QUINTET</a><br />
UK, USA<br />
Main Stage &#8211; Bosanski kulturni centar, Branilaca Sarajeva 24</p>
<p>05.11.2010. 19:00<br />
<a href="http://jazzfest.ba/artists.php?artist_id=193&amp;lang=en&amp;godina=2010">JOSEPH TAWADROS</a><br />
Egypt/Australia<br />
Next Generation &#8211; Pozorište mladih, Kulovića 8</p>
<p>05.11.2010. 21:00<br />
<a href="http://jazzfest.ba/artists.php?artist_id=188&amp;lang=en&amp;godina=2010" target="_blank">JOHN SCOFIELD TRIO</a><br />
USA<br />
Main Stage &#8211; Bosanski kulturni centar, Branilaca Sarajeva 24</p>
<p>06.11.2010. 21:00<br />
<a href="http://jazzfest.ba/artists.php?artist_id=189&amp;lang=en&amp;godina=2010">GERARDO NÚÑEZ FLAMENCA REUNION</a><br />
Spain<br />
Main Stage &#8211; Bosanski kulturni centar, Branilaca Sarajeva 24</p>
<p>06.11.2010. 23:45<br />
<a href="http://jazzfest.ba/artists.php?artist_id=194&amp;lang=en&amp;godina=2010">MERCAN DEDE TRIBAL QUARTET</a><br />
Turkey, Canada<br />
Groove Stage &#8211; Dom mladih, Terezije bb</p>
<p>07.11.2010. 12:00<br />
<a href="http://jazzfest.ba/artists.php?artist_id=191&amp;lang=en&amp;godina=2010">BUZZ &#8211; kid s concert</a><br />
Bosnia-Herzegovina<br />
Radionica Mala sala BKC a, Branilaca Sarajeva 24</p>
<p>07.11.2010. 13:00<br />
<a href="http://jazzfest.ba/artists.php?artist_id=190&amp;lang=en&amp;godina=2010" target="_blank">WORKSHOP: Meet the instruments!</a><br />
Bosnia-Herzegovina<br />
Radionica Mala sala BKC a, Branilaca Sarajeva 24</p>
<p>02.- 07.11.2010. 23:00<br />
<a href="http://jazzfest.ba/artists.php?artist_id=195&amp;lang=en&amp;godina=2010">214 QUOTES</a><br />
Bosanski kulturni centar, Branilaca Sarajeva 24</p>
<p>For more information please visit:</p>
<ol>
<li><a href="http://jazzfest.ba/index.php?lang=en" target="_blank">Jazzfest Sarajevo</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=659</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>H.323 protocol revealed</title>
		<link>http://www.sanjta.org/?p=628</link>
		<comments>http://www.sanjta.org/?p=628#comments</comments>
		<pubDate>Tue, 21 Sep 2010 22:37:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cisco]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[voip]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=628</guid>
		<description><![CDATA[H.323 is a widely used, long time present peer to peer voice signaling protocol. The H.323 standard addresses call signaling and control, multimedia transport and control, and bandwidth control for point-to-point and multi-point conferences. It is widely implemented by voice and videoconferencing equipment manufacturers, is used within various Internet real-time applications and is widely deployed [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://sanjta.org/pics/blog/h323/crs3.jpg" alt="" width="500" height="152" /></p>
<p><strong>H.323</strong> is a widely used, long time present <strong>peer to peer voice signaling protocol</strong>. The H.323 standard addresses call signaling and control, multimedia transport and control, and bandwidth control for point-to-point and multi-point conferences. It is widely implemented by voice and videoconferencing equipment manufacturers, is used within various Internet real-time applications and is widely deployed worldwide by service providers and enterprises for both voice and video services over Internet Protocol (IP) networks.</p>
<p>Actually, it is signaling protocol <strong>built with following sub protocols</strong>:</p>
<ul>
<li>H.225 &#8211; Handles call setup and teardown (Q.931 operations)</li>
<li>H.225 Registration Admission Status <strong>RAS</strong> &#8211; Handles Gatekeeper signaling</li>
<li>H.245 -  Feature negotiation</li>
<li>H.261 and H.263 &#8211; Used for video conferencing</li>
<li>H.450 &#8211; Supplementary services</li>
<li>T.120 &#8211; Data transfer and application sharing</li>
</ul>
<p><img class="aligncenter" src="http://www.sanjta.org/pics/blog/h323/image6.jpg" alt="" width="500" height="388" /></p>
<p>As you can see, I have listed just partial overview of the H.323 protocol suit. Detailed discussion about all sub-protocols would take like of time and is not subject of this blog post.</p>
<p>There are <strong>many reasons to use H.323</strong>:</p>
<ul>
<li>Supports voice, video and data conferencing</li>
<li>Fractional PRI support</li>
<li>Widely supported &#8211; interoperable</li>
<li>NFAS support</li>
<li>H.225 RAS &#8211; Gatekeeper support</li>
<li>PRI Call Preservation</li>
<li>Multiple call routing and call manipulation options</li>
<li>Caller ID support on FXO or T1 CAS</li>
</ul>
<p>There are many reasons beside those listed above. H.323 is old, very big and reliable protocol suit widely used and there are many very good features that it provides.</p>
<p>It is not easy to describe <strong>H.323 call flow</strong>, but in simple words first thing that happens is H.225 setup message exchange between Unified Communications Manager and G.323 gateway on TCP port 1720. Once done with first step, there is H.245 feature negotiation (codec negotiation), and once that is done, RTP stream is sent. Of course, this is not that simple, because in case that we are using Gatekeeper there would be H.225 RAS, but I will try to cover that scenario in other blog post in details. We all know that picture is worth 1000 words, so here is the picture of H.323 call flows:</p>
<p><img class="aligncenter" src="http://www.sanjta.org/pics/blog/h323/04fig12.gif" alt="" width="500" height="686" /></p>
<p>At the end of this blog post, I will try to cover some of <strong>H.323 defaults</strong> that we are able to find on VoIP and POTS dial-peers. Those values are somehow surprising and it is very important to pay attention before deployments, because you could lose some time trying to find where the issue actually is and it is there by default.</p>
<p><strong>VoIP</strong>:</p>
<ul>
<li>Voice Activity Detection VAD enabled</li>
<li>Preference 0</li>
<li>G.729r8 codec</li>
<li>Huntstop disabled</li>
<li>RSVP is set to best effort</li>
<li>Audio DSCP = EF; Signaling DSCP = AF31</li>
<li>DTMF Relay is disabled</li>
<li>Fax Relay is disabled</li>
</ul>
<p><strong>POTS</strong>:</p>
<ul>
<li>Preference 0</li>
<li>Digit stripping enabled</li>
<li>DID is disabled</li>
<li>Huntstop is disabled</li>
<li>Registers with Gatekeeper</li>
</ul>
<p>In next blog post, I will try to present H.323 configuration options on Cisco gateways and how to tune some parameters. I hope that this blog post is useful for getting a picture of basic H.323 functionality. In case that you have some questions, please leave a comment.</p>
<p>For more information please give a check to following links:</p>
<ol>
<li><a href="http://en.wikipedia.org/wiki/H.323" target="_blank">H.323</a></li>
<li><a href="http://www.cisco.com/en/US/tech/tk652/tk701/tk309/tsd_technology_support_sub-protocol_home.html" target="_blank">H.323 Cisco resources</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=628</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Measurement-based CAC Mechanism IP SLA and Voice traffic</title>
		<link>http://www.sanjta.org/?p=616</link>
		<comments>http://www.sanjta.org/?p=616#comments</comments>
		<pubDate>Fri, 20 Aug 2010 13:18:23 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cisco]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[voip]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=616</guid>
		<description><![CDATA[There are differences between Call Admission Control mechanisms and Quality of Service. In this blog post, I intend to write about one measurement-based Call Admission Control mechanism and that is IP SLA &#8211; which you can use to test end to end Quality of Service within your network. Also, it can be used for measurements [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://www.sanjta.org/pics/CISCO/qos.jpg" alt="" width="496" height="177" /></p>
<p>There are differences between Call Admission Control mechanisms and Quality of Service. In this blog post, I intend to write about one measurement-based Call Admission Control mechanism and that is IP SLA &#8211; which you can use to test end to end Quality of Service within your network. Also, it can be used for measurements which you can use  for Advanced Busy Out (AVBO) but in this blog post I will just show how it can be implemented to provide end to end statistics which you can use for detailed analysis for your QoS setup or to test SLA that your service provider needs to meet.</p>
<p>First thing that you need to configure is Responder. That is the router that you will send probes to. If that is your provider and you want to test your link, then you will have to communicate with them to enable this for you. So, from global configuration mode you just need to type:</p>
<blockquote><p>Router(config)#<strong>ip sla monitor responder</strong></p></blockquote>
<p>and you are done with setting up responder.</p>
<p>Now on your side, you need to configure IP SLA. First step is to define tag for IP SLA (in our case that is number 1) and then we need to define what do we really want to test. In this case it is UDP jitter on voice packages, but you can configure multiple SLAs for different types of traffic depending on your requirements.</p>
<blockquote><p>VoiceGateway(config)#<strong>ip sla 1</strong></p></blockquote>
<p>Please note that we need to define IP address of the Responder (77.239.X.X) followed by the port (6500) and codec (g711ulaw). Also, codec and port values are adjustable as per your needs.</p>
<blockquote><p>VoiceGateway(config-ip-sla)#<strong>udp-jitter 77.239.X.X 65000 codec g711ulaw</strong></p></blockquote>
<p>Once done with that, you are able to define Quality of Service value for probe that we defined above, and in our case it is TOS value of 5 which is in decimal 160 (10100000).</p>
<blockquote><p>VoiceGateway(config-ip-sla-jitter)#<strong>tos 160</strong><br />
VoiceGateway(config-ip-sla-jitter)#<strong>exit</strong></p></blockquote>
<p>Once done with that, we need to configure when this probe will be sent and for how long it is going to work, as per following example:</p>
<blockquote><p>VoiceGatewayconfig)#<strong>ip sla schedule 1 start-time now life 180</strong><br />
VoiceGateway(config)#<strong>exit</strong></p></blockquote>
<p>Last thing that we need to do is to verify values:</p>
<blockquote><p>VoiceGateway#<strong>show ip sla statistics</strong></p>
<p>Round Trip Time (RTT) for       Index 1<br />
Latest RTT: 1 milliseconds<br />
Latest operation start time: 13:40:03.156 zenica Fri Aug 20 2010<br />
Latest operation return code: OK<br />
RTT Values:<br />
Number Of RTT: 1000             RTT Min/Avg/Max: 1/1/5 milliseconds<br />
Latency one-way time:<br />
Number of Latency one-way Samples: 0<br />
Source to Destination Latency one way Min/Avg/Max: 0/0/0 milliseconds<br />
Destination to Source Latency one way Min/Avg/Max: 0/0/0 milliseconds<br />
<strong>Jitter Time:<br />
Number of SD Jitter Samples: 999<br />
Number of DS Jitter Samples: 999<br />
Source to Destination Jitter Min/Avg/Max: 0/1/3 milliseconds<br />
Destination to Source Jitter Min/Avg/Max: 0/1/2 milliseconds</strong><br />
Packet Loss Values:<br />
Loss Source to Destination: 0           Loss Destination to Source: 0<br />
Out Of Sequence: 0      Tail Drop: 0<br />
Packet Late Arrival: 0  Packet Skipped: 0<br />
Voice Score Values:<br />
Calculated Planning Impairment Factor (ICPIF): 1<br />
<strong>MOS score: 4.34</strong><br />
<strong>Number of successes: 2</strong><br />
Number of failures: 0<br />
Operation time to live: 55 sec</p></blockquote>
<p>Based on the above output, you are able to see how does your service provider meets their SLA. Also, you are able to see based on the above numbers does your Quality of Service setup really works.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=616</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Maintaining Daylight Saving Time (DST) changes</title>
		<link>http://www.sanjta.org/?p=601</link>
		<comments>http://www.sanjta.org/?p=601#comments</comments>
		<pubDate>Wed, 11 Aug 2010 12:05:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[debian]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=601</guid>
		<description><![CDATA[Few days ago I needed to check Daylight Saving Time changes that are going to happen, and I was surprised that there are occasions when you need to update DST settings manually. This example will show how to do that for Egypt. Requirement is to change time on Aug 11, at 5.00AM EEST (Eastern European [...]]]></description>
			<content:encoded><![CDATA[<p>Few days ago I needed to check Daylight Saving Time changes that are going to happen, and I was surprised that there are occasions when you need to update DST settings manually. This example will show how to do that for Egypt. Requirement is to change time on Aug 11, at 5.00AM EEST (Eastern European Summer Time) to 4.00AM EET (Eastern European Time). Here is the procedure how to do that depending of your operating system (Solaris or Linux):</p>
<p>1. Login as user root;<br />
2. Download file tzdata&lt;year&gt;l.tar.gz from ftp://elsie.nci.nih.gov/pub/ or some other tzdata provider:</p>
<blockquote>
<pre><strong>#wget ftp://elsie.nci.nih.gov/pub/tzdata2010k.tar.gz</strong></pre>
</blockquote>
<p>3. Extract timezone info file &#8220;africa&#8221; from the tarball using following command:</p>
<blockquote>
<pre><strong>#tar -zxf tzdata2010k.tar.gz</strong></pre>
<p><strong> </strong></p>
<pre><strong>#cd tzdata2010k</strong></pre>
</blockquote>
<p>4. Modify file &#8220;africa&#8221; or some other zone by using your favorite text editor (vi, nano or something else):</p>
<blockquote>
<pre><strong>#vi africa</strong></pre>
<p><strong> (I have changed it to reflect my needs / EEST will change to EET on Aug 11, 5.00 AM)</strong></p></blockquote>
<p>5. Depending on your operating system, place file in one of the following directories:</p>
<p>/usr/share/lib/zoneinfo/src &#8211; Solaris<br />
/usr/share/zoneinfo/src     &#8211; Linux</p>
<blockquote>
<pre><strong>#mv africa /usr/share/lib/zoneinfo/src</strong></pre>
<p><strong> </strong></p>
<pre><strong>#mv africa /usr/share/zoneinfo/src</strong></pre>
</blockquote>
<p>6. Navigate to &#8220;src&#8221; directory and compile a new timezone data file using command &#8220;zic&#8221;</p>
<blockquote>
<pre><strong>#cd /usr/share/zoneinfo/src</strong></pre>
<p><strong> </strong></p>
<pre><strong>#zic africa</strong></pre>
</blockquote>
<p>7. Copy newly generated file</p>
<blockquote>
<pre> <strong>#cd .. &amp;&amp; cp Africa/Cairo Egypt</strong></pre>
</blockquote>
<p>8. Last step would be to test DST settings with following command:</p>
<blockquote>
<pre><strong>#zdump -v Egypt | grep 2010</strong></pre>
</blockquote>
<p>You should be able output similar to this, depending on what you have configured:</p>
<blockquote><p>#zdump -v Egypt | grep 2010<br />
Egypt  Wed Aug 11 09:34:23 2010 UTC = Wed Aug 11 11:34:23 2010 EET isdst=0<br />
Egypt  Thu Apr 29 21:59:59 2010 UTC = Thu Apr 29 23:59:59 2010 EET isdst=0<br />
Egypt  Thu Apr 29 22:00:00 2010 UTC = Fri Apr 30 01:00:00 2010 EEST isdst=1<br />
Egypt  Wed Aug 11 01:59:59 2010 UTC = <strong>Wed Aug 11 04:59:59 2010 EEST</strong> isdst=1<br />
Egypt  Wed Aug 11 02:00:00 2010 UTC = <strong>Wed Aug 11 04:00:00 2010 EET</strong> isdst=0<br />
Egypt  Wed Sep  8 21:59:59 2010 UTC = Wed Sep  8 23:59:59 2010 EET isdst=0<br />
Egypt  Wed Sep  8 22:00:00 2010 UTC = Thu Sep  9 01:00:00 2010 EEST isdst=1<br />
Egypt  Thu Sep 30 20:59:59 2010 UTC = Thu Sep 30 23:59:59 2010 EEST isdst=1<br />
Egypt  Thu Sep 30 21:00:00 2010 UTC = Thu Sep 30 23:00:00 2010 EET isdst=0</p></blockquote>
<p>That it is it! As you can se from above output time will automatically change on 5.00AM EEST and it will go one hour back to 4.00AM EET. I hope that this blog post clarify this procedure.</p>
<ol>
<li><a href="http://www.gsp.com/cgi-bin/man.cgi?section=8&amp;topic=zic" target="_blank">zic</a></li>
<li><a href="http://bostonlinux.net/linuxcommand.org/man_pages/zdump8.html" target="_blank">zdump</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=601</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MGCP Fallback, PRI/BRI Backhaul and DTMF Relay configuration</title>
		<link>http://www.sanjta.org/?p=565</link>
		<comments>http://www.sanjta.org/?p=565#comments</comments>
		<pubDate>Wed, 04 Aug 2010 16:06:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cisco]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[voip]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=565</guid>
		<description><![CDATA[My previous blog post covers some MGCP foundations and with this blog post I intend to show some other features like MGCP Fallback, PRI Backhaul configuration and DTMF Relay. Occasionally I will post some signaling protocols configurations that I find interesting. Please notice that I will not always post complete solution configuration, it would take [...]]]></description>
			<content:encoded><![CDATA[<p>My previous blog post covers some MGCP foundations and with this blog post I intend to show some other features like MGCP Fallback, PRI Backhaul configuration and DTMF Relay. Occasionally I will post some signaling protocols configurations that I find interesting. Please notice that I will not always post complete solution configuration, it would take additional time and resources but I will point to missing parts. So, lets start with &#8220;MGCP Part 2&#8243;.</p>
<p><strong>MGCP Fallback</strong></p>
<p>Let&#8217;s assume that you have configured your Cisco Unified Communications Manager to control your Cisco Voice gateway as described in my previous blog post. In that case, you will have your gateway fully controlled by MGCP and it is going to work&#8230; until there is a WAN failure or some other communication issue as shown on following picture.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://www.sanjta.org/pics/CISCO/mgcp/mgcpfallback1.gif" alt="" width="357" height="321" /></p>
<p style="text-align: left;">As shown on above picture, in case of WAN failure we need some kind of fall-back to assure that we have our business ongoing. Telephony is definitely one of the mission critical services which needs different solutions in order to achieve normal business continuity and one of those solutions is MGCP Fallback. Basically, as shown on above picture we need to make gateway to fallback to some other signaling protocol than MGCP in case of WAN failure or some other failure that could cause problems with connection between gateway and Unified Communications Manager. By default, fallback protocol of choice in this case is H.323. So basically, to achieve that, we need to preform following configuration:</p>
<blockquote>
<pre>Router(config)#<strong>application</strong>
Router(config-app)#<strong>global</strong>
Router(config-app-global)#<strong>service alternate Default</strong>
</pre>
</blockquote>
<p>Once we are done with configuring MGCP Fallback, we would need to configure complete dial plan for H.323 by creating dial peers for each destination/type of call (for example: national or international) in order to be able to establish a call. It is not my intention to cover that part, since I assume that you already configured it.</p>
<p style="text-align: left;">To verify, we would need to execute following commands:</p>
<blockquote>
<pre>Router#<strong>show ccm-manager</strong>
Router#<strong>show ccm-manager fallback-mgcp
</strong></pre>
</blockquote>
<p><strong>PRI/BRI Backhaul Configuration</strong></p>
<p>MGCP PRI/BRI Backhaul is mostly used when we are bridging Unified Communications Manager with some third party PBX using QSIG. While talking with networking (not telco) guys I would describe it this way: L2 signaling is maintained by voice gateway and L3 signaling is passed to Cisco Unified Communications Manager by voice gateway.</p>
<p>MGCP PRI backhaul is a method for transporting complete IP telephony signaling information from an ISDN PRI interface in an MGCP gateway to Cisco Unified Communications Manager using a highly reliable TCP connection. The gateway uses a single TCP connection to backhaul all ISDN D channels to Cisco Unified Communications Manager. MGCP PRI backhaul terminates all ISDN PRI Layer 2 (Q.921) signaling functions on the MGCP gateway while, at the same time, packaging all the ISDN PRI Layer 3 (Q.931) signaling information into packets for transmission to Cisco Unified Communications Manager through an IP tunnel over a TCP connection.</p>
<p>So, to configure PRI/BRI Backhaul I will assume that your E1/T1 controller is already configured with base configuration (line code, clocking, framing).</p>
<blockquote>
<pre>Router(config)#<strong>isdn switch-type primary-net5</strong>
Router(config)#<strong>controller E1 1/0</strong>
Router(config-controller)#<strong>pri-group timeslots 1-32 service MGCP</strong>
Router(config-controller)#<strong>exit</strong>
Router(config)#<strong>interface serial 1/0:16</strong>
Router(config-if)#<strong>isdn bind-l3 ccm-manager</strong>
</pre>
</blockquote>
<p>So basically, we defined our isdn-switch type globally (we could do that on controller level as well) and after that we started configuring our controller. We created pri-group which is basically controlled by MGCP. Once we applied that, we need to switch to serial interface created by execution of previous command and we need to instruct gateway to transfer all Q.931 signaling to Unified Communications Manager.</p>
<p>Last thing that we need to do is to verify above configuration and we can do that by executing following commands:</p>
<blockquote>
<pre>Router#<strong>show isdn status</strong>
Router#<strong>show ccm-manager backhaul</strong></pre>
</blockquote>
<p><strong>DTMF Relay Configuration</strong></p>
<p>If you have some services within your organization that require DTMF functions (good example would be some IVR implementation for support where customer is typing incident number in order to be connected to engineer that is working on incident) and you are facing some difficulties with that (not all digits are received and so on) solution would be to extract that signaling from codec bandwidth and process it out-of-band.</p>
<p>To achieve that, we would need following configuration:</p>
<blockquote>
<pre>Router#<strong>conf t</strong>
Router(config)#<strong>mgcp dtmf-relay voip codec all mode out-of-band</strong></pre>
</blockquote>
<p>Once done with that, don&#8217;t forget to save your configuration.</p>
<p>For more information, refer to following links:</p>
<ol>
<li><a href="http://www.cisco.com/en/US/tech/tk1077/technologies_configuration_example09186a008012ecc6.shtml">MGCP Fallback</a></li>
<li><a href="http://www.cisco.com/en/US/docs/ios/12_2t/12_2t8/feature/guide/ftmgcpfx.html">DTMF Relay</a></li>
<li><a href="http://www.mail-archive.com/ccie_voice@onlinestudylist.com/msg00195.html">PRI/BRI Backhaul</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=565</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Media Gateway Control Protocol &#8211; MGCP</title>
		<link>http://www.sanjta.org/?p=535</link>
		<comments>http://www.sanjta.org/?p=535#comments</comments>
		<pubDate>Thu, 29 Jul 2010 15:05:43 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cisco]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[voip]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=535</guid>
		<description><![CDATA[In following blog posts I will write about different Cisco based VoIP solutions and I will try to cover some foundation topics like voice signaling protocols and so on. My aim is to present different solutions and possibilities and I hope that you will find it interesting and helpful. About MGCP and reasons to use [...]]]></description>
			<content:encoded><![CDATA[<p>In following blog posts I will write about different Cisco based VoIP solutions and I will try to cover some foundation topics like voice signaling protocols and so on. My aim is to present  different solutions and possibilities and I hope that you will find it interesting and  helpful.</p>
<p><strong>About MGCP and reasons to use it</strong></p>
<p>Media Gateway Control Protocol is client server voice signaling protocol. Call control is handled by call agent (Cisco Unified Communications Manager) and media translation is performed by voice gateway. It is important to mention that it is only client &#8211; server model based voice signaling protocol on the market. Also, it is well know for its simple configuration (it is just matter of configuring call agent and remembering several gateway commands), centralized management and one of the main benefits is it&#8217;s use for MGCP back-haul QSIG configurations (in short: Layer 2 signalization is handled by voice gateway which is under control of call agent, and layer 3 signalization is forwarded to call agent &#8211; Cisco Unified Communications Manager &#8211; CallManager). Please note that MGCP is often called <strong>Megaco</strong> by telco people.</p>
<p><strong>MGCP Messages </strong></p>
<ol>
<li>Create connection &#8211; CRCX</li>
<li>Notification request &#8211; RQNT</li>
<li>Notify &#8211; NTFY</li>
<li>Modify connection &#8211; MDCX</li>
<li>Delete connection &#8211; DLCX</li>
<li>Audit endpoint &#8211; AUEP</li>
<li>Endpoint configuration &#8211; EPCF</li>
<li>Restart in progress &#8211; RSIP</li>
</ol>
<p><strong>MGCP Call flow</strong></p>
<p><img class="aligncenter" src="http://www.sanjta.org/pics/CISCO/mgcp/phpYcwtvPAM.jpg" alt="" width="459" height="500" /><strong> </strong></p>
<p><strong>MGCP configuration basics </strong></p>
<p>This part of text will cover MGCP configuration &#8211; just foundations. Please note that it won&#8217;t include all specific configurations, it will just cover base configuration, but in several new posts I will try to cover different configuration scenarios and solutions.</p>
<p>So, let assume that MGCP call agent, in our case Cisco Unified Communications Manager &#8211; CallManager is working on IP address 192.168.1.95. Also, assume that redundant CallManager is working on IP address 192.168.1.100.  This text does not show CallManager side of configuration of a gateway and I assume that that part is already successfully configured (I will eventually edit this blog post to include that configuration, afterwards)</p>
<p>Configurations is as follows:</p>
<p>1. From global configuration mode start MGCP proces:</p>
<blockquote><p>Router#conf t<br />
Enter configuration commands, one per line.  End with CNTL/Z.<br />
Router(config)#<strong>mgcp</strong><br />
Router(config)#</p></blockquote>
<p>2. Next thing we need to do is to configure call agent, redundant call agent and we need to inform voice gateway that call agent is under control of MGCP. We can do that as follows:</p>
<blockquote><p>Router(config)#<strong>mgcp call-agent 192.168.1.95</strong><br />
Router(config)#<strong>ccm-manager redundant-host 192.168.1.100</strong><br />
Router(config)#<strong>ccm-manager mgcp</strong></p></blockquote>
<p>3. Once done with that, we can configure out Cisco Unified Communications Manager gateway options. So to do that, navigate to your CallManager and in <strong>Cisco Unified CM Administration</strong> configuration menu select <strong>Device &gt; Gateway &gt; Add new</strong>. Select your voice gateway model from the drop down list and click <strong>Next</strong>. For <strong>Protocol</strong> select<strong> MGCP</strong> and click <strong>Next</strong>. Once there, configure Domain name (please note that this field needs to be in following format: <strong>gatewayhostname.domainname</strong>, for example <strong>CCIEVoiceLab.localnetwork.lab</strong>) and other required options (add cards and preform complete gateway configuration). Once you are done with voice gateway configuration you are required to configure dial plan which will include this gateway into configuration. That goes beyond the scope of this blog post and I will write about it in some of following blog posts.</p>
<p>4. Once done with CallManager configuration we need to instruct voice gateway about the TFTP address where CallManager stores configuration, and that is typically IP address of the CallManager it self:</p>
<blockquote><p>Router(config)#<strong>ccm-manager config server 192.168.1.95</strong><br />
Router(config)#</p></blockquote>
<p>5. Once we are done with that we can instruct our gateway to download and apply configuration by issuing following command:</p>
<blockquote><p>Router(config)#<strong>ccm-manager config </strong><br />
Router(config)#</p></blockquote>
<p>Wait several seconds and you can verify your downloaded and applied configuration with following command:</p>
<blockquote><p>Router#<strong>show running-config</strong><br />
Router(config)#</p></blockquote>
<p>At that point your voice gateway will be controlled by call agent, in this case CallManager. To verify your configuration please give a check to Troubleshooting commands.</p>
<p><strong>MGCP Troubleshooting</strong></p>
<p>Once you are done with MGCP gateway configuration, you can verify your configuration by issuing following commands:</p>
<blockquote><p>Router#<strong>show mgcp</strong><br />
MGCP Admin State ACTIVE, Oper State ACTIVE &#8211; Cause Code NONE<br />
MGCP call-agent: 192.168.1.95 Initial protocol service is MGCP 0.1<br />
MGCP validate call-agent source-ipaddr DISABLED<br />
MGCP validate domain name DISABLED<br />
MGCP block-newcalls DISABLED<br />
MGCP send SGCP RSIP: forced/restart/graceful/disconnected DISABLED<br />
&#8230;</p></blockquote>
<p>This command will show all MGCP settings, timers and so on.</p>
<blockquote><p>Router#<strong>show ccm-manager</strong><br />
MGCP Domain Name: Router<br />
Priority        Status                   Host<br />
======================================<br />
Primary         Registering with CM      192.168.1.95<br />
First Backup    Down                     192.168.1.100<br />
Second Backup   None</p>
<p>Current active Call Manager:    None<br />
Backhaul/Redundant link port:   2428<br />
&#8230;</p></blockquote>
<p>This command will show registration status and other statistics.</p>
<p>Beside above commands, we can use:</p>
<blockquote><p>Router#<strong>show mgcp endpoint</strong><br />
Router#<strong>show voice port summary</strong></p></blockquote>
<p>That would be all for this post. I hope that this blog post is helpful and if you do have some questions in regards to MGCP please let me know and we can try to find solution. In next several posts I will write about MGCP fallback, backhaul and DTMF configurations.</p>
<ol>
<li><a href="http://en.wikipedia.org/wiki/Media_Gateway_Control_Protocol">Media Gateway Control Protocol</a></li>
<li><a href="http://cciev.wordpress.com/2006/02/19/mgcp-messages/">MGCP messages</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=535</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Cisco Certified Voice Professional &#8211; CCVP!</title>
		<link>http://www.sanjta.org/?p=487</link>
		<comments>http://www.sanjta.org/?p=487#comments</comments>
		<pubDate>Wed, 14 Jul 2010 14:50:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cisco]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[voip]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=487</guid>
		<description><![CDATA[Two years ago I have decided to start working on Cisco Voice Professional certification track. It was logical step to make for me since I was working for several years in voice industry with different solutions, so when I started with Cisco solutions there was no doubt what to choose and why. In prior to [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><img class="aligncenter" src="http://www.sanjta.org/pics/CISCO/logo.JPG" alt="" width="460" height="134" /></p>
<p style="text-align: left;">Two years ago I have decided to start working on Cisco Voice Professional certification track. It was logical step to make for me since I was working for several years in voice industry with different solutions, so when I started with Cisco solutions there was no doubt what to choose and why. In prior to further discussion about certification I would like to point that I am full time employed with lot of different responsibilities which can and does impact preparations for certification.  So, for some people that might take this certification track this might be resolved faster, but all depends on attitude, basic knowledge and many other factors. I took a newer track based and created around Cisco Unified Communications Manager 6.0. When I started preparing myself for CCVP, there was active certification based on Cisco Unified Communications Manager 4.1, and main difference beside versions of Cisco Unified Communications Manager  is that old certification path included Gateway and Gatekeeper exam. I took all of the exams as Cisco is recommending on their web site for CCVP certification. So, that is as follows:</p>
<p style="text-align: left;"><strong>Cisco Certified Network Associate Voice &#8211; CCNA V</strong></p>
<div>
<p>Although  this is optional exam I think that this is very important step to make  if you are coming from some other field and this is your first touch  with voice. Please note that you will get this certificate if you  successfully pass CVOICE exam, but I really think that there might be  huge gap for people without experience between CCNA and CVOICE without  this exam. After taking this exam you should be  able to describe  function of the voice gateways, digital signal processors operation,  function and type of dial peers, calling privileges, productivity  features and so on. Please note that this exam is created around Cisco Unified Communications Manager  Express &#8211; CME which is version of CallManager designed  to work on voice gateways without dedicated call processing server.  As  I said, i recommend taking this exam. When it comes to materials that  you can use for this exam, there is really good <a href="http://www.amazon.com/Voice-Official-Certification-Guide-640-460/dp/1587202077/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1279114076&amp;sr=8-1">CCNA Voice Official Exam  Certification Guide (640-460 IIUC)</a> written by Jeremy Cioara.</p>
<p style="text-align: left;">
<p style="text-align: left;"><strong>Cisco Voice over IP &#8211; CVOICE</strong></p>
<p style="text-align: left;">Cvoice was second exam on my voice certification path. It contains all of the stuff from CCNA Voice but it covers topics in much more details. Also, you will learn in details components of a gateway, describe a dial plan, describe the basic operation and components involved in a VoIP call, implement a gateway, describe the function and interoperation of gatekeepers within an IP Communications network, implement a gatekeeper and implement an IP-to-IP gateway. I would say that Cvoice is most useful exam on certification path because it provides strong basis and foundation. For preparation materials I would recommend <a href="http://www.amazon.com/Cisco-Voice-CVOICE-Authorized-Self-Study/dp/1587055546/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1279114114&amp;sr=1-1">Cisco Voice over IP (CVOICE) (Authorized Self-Study Guide)</a> by Kevin Wallace. You can use CBT nuggets and ElementK video materials but please notice that taking one of the material sources is not sufficient for passing the exam.</p>
<p style="text-align: left;"><strong>Implementing Cisco Unified Communications Manager Part 1 &#8211; CIPT1</strong></p>
<p style="text-align: left;">After Cvoice it is time to move to new area of Cisco and that is Cisco Unified Communications Manager &#8211; UCCM well known as CallManager. You will learn about foundations like perform an installation and initial set up of a Cisco Unified Communications Manager cluster, describe and configure Cisco Unified Communications Manager to support on-cluster calling, describe and configure a route plan for Cisco Unified Communications Manager to support off-net calling, describe and configure Cisco Unified Communications Manager media resources, configure the Cisco Unified Communications Manager to support features and applications.  For preparation materials you could use <a href="http://www.amazon.com/Implementing-Unified-Communications-Authorized-Self-Study/dp/1587054833/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1279114154&amp;sr=1-1">Implementing Cisco Unified Communications Manager, Part 1 (CIPT1) (Authorized Self-Study Guide)</a> by Dennis Hartman.</p>
<p style="text-align: left;"><strong>Quality of Service &#8211; QoS</strong></p>
<p style="text-align: left;">This was matherial that I enjoyed the most. It is covering topics like IP QoS Fundamentals, IP QoS Components, modular QoS CLI and Auto-QoS, Classification and Marking, Congestion Management Methods, Congestion Avoidance Methods, Traffic Policing and Shaping, Link Efficiency Mechanisms, QoS Best Practices. In my personal opinion, converged networks without Quality of service are past and should be past because best effort network can cause more problems then benefits and I am really sure that you will end up with some problem with voice (packet loss, jitter, round trip delay) without properly implemented Quality of Service. For preparing this exam you could use ElementK video materials.</p>
<p style="text-align: left;"><strong>Implementing Unified Communications Manager Part 2 &#8211; CIPT2 </strong></p>
<p style="text-align: left;">Once you understand Cisco Unified Communications Manager foundations and  Quality of Service base, you are ready for some advanced features like  Manage Tcl and VXML call applications on a gateway, Describe and  implement centralized call processing redundancy, Describe and configure  a multi-site dial plan for Cisco Unified Communications Manager,  Implement bandwidth management and Call Admission Control, Secure an IP  Telephony network, Implement mobility in an IP Telephony network, you  will be faced will real voice network challenges and that is all that  this exam is up to. When it comes to preparation materials I would  recommend <a href="http://www.amazon.com/Implementing-Unified-Communications-Authorized-Self-Study/dp/1587055619/ref=sr_1_1?ie=UTF8&amp;s=books&amp;qid=1279105515&amp;sr=1-1">Implementing  Cisco Unified Communications Manager, Part 2 (CIPT2) (Authorized  Self-Study Guide)</a> by Dennis Hartman.</p>
<p style="text-align: left;"><strong>Troubleshooting Unified Communications &#8211; TUC</strong></p>
<p style="text-align: left;">Last exam was Troubleshooting Unified Communications. It is designed to test your knowledge on all of the areas mentioned above and that is really comprehensive exam. You will be faced with real time scenarios and issues that can happen in voice network and you will need to resolve them. One important thing to know in prior to taking this exam is that you need to know your log files and that you are going to be tested in details in almost every area which is covered in all of the above listed exams. In my personal opinion, this was the hardest exam in Voice Professional track. After this exam you should be able to apply the Cisco recommended methodology used to determine general Unified communications system problems and issues, troubleshoot call setup issues, troubleshoot registration issues, troubleshoot database issues, troubleshoot application issues and media resources, troubleshoot voice quality issues and security issues.</p>
<p>When  it comes to equipment that you can use to accomplish certification you  can use VMware to virtualize Cisco Unified  Communications Manager and that is not some kind of hack, Cisco actually support that kind of  installation legally. You can also use Cisco IP  Communicator as a phone which you can register to CallManager. I had access to Cisco Voice gateways during my  preparations but i suppose you could successfully use GNS to emulate  this part. The best option would obviously be to buy Voice Lab from eBay or some  other service for some reasonable price. This would be best option  because it is most convenient and you would be able to  test thing afterwords and so on.</p>
<p>After all I am really happy that I was able to work on this  certification path and successfully get my Cisco Voice Professional certification.  If there is some information or help needed in regards to CCVP  certification, feel free to contact me and I will be willing to help.</p>
<ol>
<li><a href="http://www.cisco.com">Cisco</a></li>
<li><a href="http://www.cisco.com/web/learning/le3/learning_career_certifications_and_learning_paths_home.html">Cisco IT certification</a></li>
<li><a href="http://www.cisco.com/web/learning/le3/le2/le37/le65/learning_certification_type_home.html">Cisco Certified Voice Professional Certification</a></li>
</ol>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=487</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Pearson VUE testni centar u REZ agenciji u Zenici</title>
		<link>http://www.sanjta.org/?p=455</link>
		<comments>http://www.sanjta.org/?p=455#comments</comments>
		<pubDate>Fri, 18 Jun 2010 10:39:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cisco]]></category>
		<category><![CDATA[happenings]]></category>
		<category><![CDATA[linux]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=455</guid>
		<description><![CDATA[For all English language readers of this blog, this is blog post in Bosnian language about opening of a new Pearson VUE testing centar in Zenica, Bosnia and Herzegovina at REZ agency. Cisco certifikati su jedni od najcjenjenijih referensi koji su dostupni stručnjacima u oblasti informacione tehnologije. Stoga je, kao logičan završetak obuke za polaznike [...]]]></description>
			<content:encoded><![CDATA[<p><em>For all English language readers of this blog, this is blog post in Bosnian language about opening of a new Pearson VUE testing centar in Zenica, Bosnia and Herzegovina at REZ agency.</em></p>
<blockquote><p>Cisco certifikati su jedni od najcjenjenijih referensi koji su dostupni stručnjacima u oblasti informacione tehnologije. Stoga je, kao logičan završetak obuke za polaznike Cisco Akademije, <strong>REZ Agencija</strong> u svom prostoru uspostavila testni centar najpoznatijeg testing provajdera Pearson Virtual Universities Enterprises (Pearson VUE), prema veoma strogim tehničkim  sigurnosnim kriterijima.</p>
<p>Usluge Pearson VUE testnog centra koriste mnoge poznate kompanije i organzacije kao što su Cisco, Linux Professional Insitute, CompTIA i drugi. Za ispite u Pearson VUE testnom centru u REZ Agenciji se možete prijaviti direktno preko weba <a href="http://www.pearsonvue.com/">http://www.vue.com/</a>, putem telefona<strong> 032 441 231</strong> ili dolaskom u našu Agenciju kod PVTC Administratora Testnog centra.</p>
<p>Plaćanje za Vaše ispite možete vršiti direktno putem stranice http://www.vue.com ili  se obratiti  administratoru u našem testnom centru (gđa Mediha Zukić).</p></blockquote>
<ol>
<li><a href="http://www.rez.ba">REZ Agencija</a></li>
<li><a href="http://www.pearsonvue.com/">Pearson VUE</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=455</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Firefox and VMware Remote Console Plug-in working solution</title>
		<link>http://www.sanjta.org/?p=425</link>
		<comments>http://www.sanjta.org/?p=425#comments</comments>
		<pubDate>Tue, 08 Jun 2010 08:56:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=425</guid>
		<description><![CDATA[Few days ago I moved my Ubuntu on laptop to version 10.04 and so far I am very satisfied with how does it work. That was a clear sign to refresh some software installs that I have and that fact included VMware server. Basically, I found VMware to suit my needs when it comes to [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://www.sanjta.org/pics/blog/vmware-console-plugin/vmware_view_pilot.jpg" alt="" width="455" height="152" /></p>
<p>Few days ago I moved my Ubuntu on laptop to version 10.04 and so far I am very satisfied with how does it work. That was a clear sign to refresh some software installs that I have and that fact included VMware server. Basically, I found VMware to suit my needs when it comes to personal virtualization. I am using virtualized CallManager (it is only supported with VMware) and also my appliance Linux environment is virtualized as well. There are other virtualisation solutions that I like but I will leave that for some other blog post.</p>
<p>So, I installed VMware Server 2.0.2 and it is working really nice. There are plenty of instruction manuals on VMware installation on Linux and Ubuntu, but I found <a href="https://help.ubuntu.com/community/VMware/Server">this one</a> to work like a charm. Under Ubuntu, I am using current version of Firefox, which is 3.6.3 and it seems to have a problem with VMware Remote Console Plug-in. It is not working at all. There is lot of discussion about this but I didn&#8217;t find that much solutions. Some are saying that some Firefox add-on for flash blocking is causing this to happen, but using Firefox without .mozilla didn&#8217;t help.</p>
<p>So, here is solution that actually works: Open Terminal and navigate to directory:</p>
<blockquote><p>root@gomez-laptop:/# <em><strong>cd</strong></em> <em><strong>/usr/lib/vmware/webAccess/tomcat/apache-tomcat-6.0.16/webapps/ui/plugin/</strong></em></p></blockquote>
<p>once there, execute list command and you should be able to see <em><strong>vmware-vmrc-linux-x86.xpi</strong></em> file which is required:</p>
<blockquote><p>root@gomez-laptop:/usr/lib/vmware/webAccess/tomcat/apache-tomcat-6.0.16/webapps/ui/plugin# <em><strong>ls</strong></em><br />
build_doNotErase.txt  vmware-vmrc-linux-x64.xpi  <em><strong>vmware-vmrc-linux-x86.xpi</strong></em> vmware-vmrc-win32-x86.exe  vmware-vmrc-win32-x86.xpi</p></blockquote>
<p>Once, there, we need to unzip that file by issuing following command:</p>
<blockquote><p>root@gomez-laptop:# <em><strong>unzip vmware-vmrc-linux-x86.xpi</strong></em></p></blockquote>
<p>and then, navigate to plugins directory and list the content:</p>
<blockquote><p>root@gomez-laptop:/usr/lib/vmware/webAccess/tomcat/apache-tomcat-6.0.16/webapps/ui/plugin# <strong><em>cd plugins/</em></strong><br />
root@gomez-laptop:/usr/lib/vmware/webAccess/tomcat/apache-tomcat-6.0.16/webapps/ui/plugin/plugins#<strong> <em>ls</em></strong><br />
bin  libconf                         open_source_licenses.txt  vmware-desktop-entry-creator  vmware-vmrc-daemon  xkeymap<br />
lib  np-vmware-vmrc-2.5.0-122581.so  share                     <strong><em>vmware-vmrc</em></strong> vmware-vmrc-legacy<br />
root@gomez-laptop:/usr/lib/vmware/webAccess/tomcat/apache-tomcat-6.0.16/webapps/ui/plugin/plugins#</p></blockquote>
<p>And one last step is to start vmware-vmrc with following command:</p>
<blockquote><p>root@gomez-laptop:/usr/lib/vmware/webAccess/tomcat/apache-tomcat-6.0.16/webapps/ui/plugin/plugins#<em><strong> ./vmware-vmrc -h localhost:8333</strong></em></p></blockquote>
<p>Please note that you can replace<em><strong> localhost</strong></em> with IP address of your working VMware server. Once above command is executed you need to authenticate and you should be able to select virtualized hosts. Please give a check to following screenshots:</p>
<p><img class="aligncenter" src="http://www.sanjta.org/pics/blog/vmware-console-plugin/vmwareplugin.png" alt="" width="500" height="399" />As shown on above screenshot, we need to authenticate and one last step is to select one of the virtualized machines that we want to work with:</p>
<p><img class="aligncenter" src="http://www.sanjta.org/pics/blog/vmware-console-plugin/vmwareplugin1.png" alt="" width="500" height="399" />If there are some questions, please let me know. I hope that this workaround will save some time for you and that you will have working solution.</p>
<ol>
<li><a href="http://vmware.com/download/server/">VMware server</a></li>
<li><a href="https://help.ubuntu.com/community/VMware/Server">VMware server installation on Ubuntu</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=425</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Upcoming events by Richard M. Stallman in Bosnia and Hercegovina</title>
		<link>http://www.sanjta.org/?p=408</link>
		<comments>http://www.sanjta.org/?p=408#comments</comments>
		<pubDate>Tue, 18 May 2010 08:06:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[free software]]></category>
		<category><![CDATA[happenings]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=408</guid>
		<description><![CDATA[Richard M. Stallman is an American software freedom activist and computer programmer. In September 1983, he launched the GNU Project to create a free Unix-like operating system, and has been the project&#8217;s lead architect and organizer. With the launch of the GNU Project, he initiated the free software movement and, in October 1985, set up [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://www.sanjta.org/pics/blog/fsf.gif" alt="" width="462" height="181" /><strong>Richard M. Stallman</strong> is an American software freedom activist and computer programmer. In September  1983, he launched the <a title="GNU Project" href="http://en.wikipedia.org/wiki/GNU_Project">GNU Project</a> to create a free <a title="Unix-like" href="http://en.wikipedia.org/wiki/Unix-like">Unix-like</a> operating system, and has been the  project&#8217;s lead architect and organizer. With the launch of the GNU  Project, he initiated the <a title="Free  software movement" href="http://en.wikipedia.org/wiki/Free_software_movement">free software movement</a> and, in October 1985, set  up the <a title="Free Software Foundation" href="http://en.wikipedia.org/wiki/Free_Software_Foundation">Free Software Foundation</a>.</p>
<p>Stallman pioneered the concept of <a title="Copyleft" href="http://en.wikipedia.org/wiki/Copyleft">copyleft</a> and he is the main author of several copyleft licenses including the <a title="GNU General Public License" href="http://en.wikipedia.org/wiki/GNU_General_Public_License">GNU General Public License</a>, the  most widely used <a title="Free  software license" href="http://en.wikipedia.org/wiki/Free_software_license">free software license</a>. Since the mid-1990s, Stallman has spent most of his time advocating for  free software, as well as campaigning against both <a title="Software  patent" href="http://en.wikipedia.org/wiki/Software_patent">software patents</a> and what he sees as excessive extension of  copyright laws. Stallman has also developed a number of pieces of  widely-used software, including the original <a title="Emacs" href="http://en.wikipedia.org/wiki/Emacs">Emacs</a>, the <a title="GNU Compiler Collection" href="http://en.wikipedia.org/wiki/GNU_Compiler_Collection">GNU Compiler Collection</a>,<sup> </sup>and the <a title="GNU  Debugger" href="http://en.wikipedia.org/wiki/GNU_Debugger">GNU Debugger</a>. He co-founded the <a title="League for Programming Freedom" href="http://en.wikipedia.org/wiki/League_for_Programming_Freedom">League for Programming Freedom</a> in 1989.</p>
<p>Richard M. Stallman will have following speeches in Bosnia and Hercegovina in May, 2010:</p>
<p><strong>What: Copyright vs. Community<br />
</strong> <strong>When</strong>: May 19, 2010 from 11:00 AM to 01:30 PM<br />
<strong>Where</strong>: IBU conference hall, main building, third floor, Francuske revolucije bb; Sarajevo, Bosnia and Herzegovina</p>
<p><strong>What: Free Software Movement and the GNU/Linux Operating System</strong><br />
<strong>When</strong>: May 20, 2010 from                               <abbr id="parent-fieldname-startDate" title="2010-05-20T14:00:00-04:00"> 02:00 PM </abbr> to                             <abbr id="parent-fieldname-endDate" title="2010-05-20T16:30:00-04:00"> 04:30 PM </abbr><br />
<strong>Where</strong>: IBU conference hall, main building, third floor, Francuske  revolucije bb; Sarajevo, Bosnia and Herzegovina</p>
<p><strong>What: Free Software Movement and the GNU/Linux Operating System</strong><br />
<strong>When</strong>: May 22, 2010 from <abbr id="parent-fieldname-startDate" title="2010-05-20T14:00:00-04:00">14:00  PM </abbr> to <abbr id="parent-fieldname-endDate" title="2010-05-20T16:30:00-04:00">16:00  PM </abbr><br />
<strong>Where</strong>: Fakultet Informacijskih Tehnologija, Univerzitet Dzemal Bijedic; Mostar, Bosnia and Herzegovina</p>
<p>We hope that you will come to listen speeches from Stallman and that you will enjoy those events. It is good opportunity to visit those events since we do not know when we will have Stallman in Bosnia and Hercegovina again. If there is additional information needed, please let me know.</p>
<ol>
<li><a href="http://en.wikipedia.org/wiki/Richard_Stallman" target="_blank">Richard M. Stallman</a></li>
<li><a href="http://www.fsf.org/">Free Software Foundation</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=408</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Implementing Cisco Quality of Service (QoS)</title>
		<link>http://www.sanjta.org/?p=388</link>
		<comments>http://www.sanjta.org/?p=388#comments</comments>
		<pubDate>Mon, 10 May 2010 09:15:48 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[cisco]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[networks]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=388</guid>
		<description><![CDATA[Few months ago I passed Implementing Cisco Quality of Service (QoS). It was one of those &#8220;real life&#8221; exams with lot of simulations and drag and drop questions. Passing score was set to around ~80% and there was around 50 questions or so. Since Quality of Service is one of the huge areas there is [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://www.sanjta.org/pics/CISCO/qos.jpg" alt="" width="488" height="177" /></p>
<p>Few months ago I passed Implementing Cisco Quality of Service (QoS). It was one of those &#8220;real life&#8221; exams with lot of simulations and drag and drop questions. Passing score was set to around ~80% and there was around 50 questions or so. Since Quality of Service is one of the huge areas there is lot of viable documentation. I would recommend <a href="http://www.ciscopress.com/bookstore/product.asp?isbn=1587201240">Cisco QOS Exam Certification Guide (IP Telephony Self-Study), 2nd Edition</a> from <a href="http://www.ciscopress.com/">Cisco Press</a>, but there are plenty of other books focused on this area as well. One of the best organized online learn sessions that I have found to be focused on this area was written by Paul Stryer from <a href="http://ciscoblog.globalknowledge.com">Global Knowledge</a>. Please find links below text pointing to that online learn session. I need to mention that it is best practice to give a try to all of the solutions that you can find in this texts on real equipment, deploy Quality of Service in your organization and you will gain required understanding and experience to pass this exam. Beside that, you will have your network working much better than it was in prior to implementing QoS within your organization. Since I am following Cisco CCVP track this was only exam that is not directly related to voice (I mean it is not organized around voice strictly) and it was very nice experience. Personally I really enjoyed learning and preparing this stuff, and most of the solutions that I have learned are something that needs and can be implemented in networks that I was working with.</p>
<blockquote><p><a href="http://ciscoblog.globalknowledge.com/2009/10/19/quality-of-service-part-1/">Quality of Service, Part 1 &#8211; Introduction</a><br />
<a href="http://ciscoblog.globalknowledge.com/2009/10/27/quality-of-service-qos-part-2/">Quality of Service, Part 2 &#8211; Introduction</a><br />
<a href="http://ciscoblog.globalknowledge.com/2009/11/04/quality-of-service-part-3/">Quality of Service, Part 3 &#8211; Introduction</a><br />
<a href="http://ciscoblog.globalknowledge.com/2009/11/12/qos-mechanisms/">Quality of Service, Part 4 – QoS Mechanisms</a><br />
<a href="http://ciscoblog.globalknowledge.com/2009/12/14/qos-part-5-classification/">Quality of Service, Part 5 – Classification</a><br />
<a href="http://ciscoblog.globalknowledge.com/2009/12/21/quality-of-service-part-6-marking/">Quality of Service, Part 6 </a><a href="http://ciscoblog.globalknowledge.com/2009/12/21/quality-of-service-part-6-marking/">–</a><a href="http://ciscoblog.globalknowledge.com/2009/12/21/quality-of-service-part-6-marking/"> Marking</a><br />
<a href="http://ciscoblog.globalknowledge.com/2010/01/20/qos-part-7-service-policy/">Quality of Service, Part 7 </a><a href="http://ciscoblog.globalknowledge.com/2009/12/21/quality-of-service-part-6-marking/">–</a><a href="http://ciscoblog.globalknowledge.com/2010/01/20/qos-part-7-service-policy/"> Service Policy</a><br />
<a href="http://ciscoblog.globalknowledge.com/2010/01/22/qos-part-8-congestion-management/">Quality of Service, Part 8 </a><a href="http://ciscoblog.globalknowledge.com/2009/12/21/quality-of-service-part-6-marking/">–</a><a href="http://ciscoblog.globalknowledge.com/2010/01/22/qos-part-8-congestion-management/"> Congestion Management</a><br />
<a href="http://ciscoblog.globalknowledge.com/2010/02/09/quality-of-service-part-9-%E2%80%93-fifo-queuing/">Quality of Service, Part 9 </a><a href="http://ciscoblog.globalknowledge.com/2009/12/21/quality-of-service-part-6-marking/">–</a><a href="http://ciscoblog.globalknowledge.com/2010/02/09/quality-of-service-part-9-%E2%80%93-fifo-queuing/"> FIFO Queuing</a><br />
<a href="http://ciscoblog.globalknowledge.com/2010/02/12/quality-of-service-part-10-%E2%80%93-weighted-fair-queuing/">Quality of Service, Part 10 – Weighted Fair Queuing</a><br />
<a href="http://ciscoblog.globalknowledge.com/2010/02/16/qos-11-cbwfq/">Quality of Service, Part 11 </a><a href="http://ciscoblog.globalknowledge.com/2009/12/21/quality-of-service-part-6-marking/">–</a><a href="http://ciscoblog.globalknowledge.com/2010/02/16/qos-11-cbwfq/"> CBWFQ</a><br />
<a href="http://ciscoblog.globalknowledge.com/2010/02/18/qos-12-low-latency-queuing/">Quality of Service, Part 12 – Low Latency Queuing</a><br />
<a href="http://ciscoblog.globalknowledge.com/2010/03/16/quality-of-service-part-13-%E2%80%93-mqc-pop-quiz/">Quality of Service, Part 13 – MQC Pop Quiz</a><br />
<a href="http://ciscoblog.globalknowledge.com/2010/03/23/qos-14-mqc-pop-quiz-answer/">Quality of Service, Part 14 – MQC Pop Quiz Answer</a></p></blockquote>
<p>I hope that you will enjoy reading above texts and that you will enjoy implementing Cisco Quality of Service. If you would need some additional information please leave a comment.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=388</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Firmware tweaking: Linux on Samsung LCD TV LE40A756 and A856 with firmware T-RBYDEU</title>
		<link>http://www.sanjta.org/?p=356</link>
		<comments>http://www.sanjta.org/?p=356#comments</comments>
		<pubDate>Mon, 05 Apr 2010 08:48:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[applications]]></category>
		<category><![CDATA[debian]]></category>
		<category><![CDATA[education]]></category>
		<category><![CDATA[free software]]></category>
		<category><![CDATA[geeks]]></category>
		<category><![CDATA[gentoo]]></category>
		<category><![CDATA[IT]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>
		<category><![CDATA[security]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=356</guid>
		<description><![CDATA[Few days ago I had interesting request to tweak Linux on Samsung LCD TV. At first, I was kind of surprised that Linux is supported on TV, but it is normal. Linux is very strong competitor on the appliance based market and it was just about time to face those kind of installations. The main [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://www.sanjta.org/pics/Samsung/samsung.JPG" alt="" width="489" height="151" /></p>
<p>Few days ago I had interesting request to tweak Linux on Samsung LCD TV. At first, I was kind of surprised that Linux is supported on TV, but it is normal. Linux is very strong competitor on the appliance based market and it was just about time to face those kind of installations. The main goal was to enable telnet on firmware in order to be able to connect to TV, and after that to load Common Internet File System to be able to use network mounts. Since I didn&#8217;t know anything about Samsung TV series and belonging firmware versions I needed to read something about that. Basically, there are differences in versions based on producing years and processors that are supported. This text is about to cover Samsung LCD TV LE40A756 and A856 with firmware T-RBYDEU. I need to mention that it is kind of easier to work with other models of Samsung LCD TVs since they seam to open more possibilities (this is just my opinion) for firmware hacking but this version was very interesting to play with as well. Since this firmware (as much as all other appliance based firmware versions) is using squash file system, to be able to add something on filesystem we would need to unsquash file system (unsquash is viable thru squashfs-tools) and then perform necessary changes. Since I am using Ubuntu which is providing newer version of squashfs-tools package than it is required (Ubuntu is providing squashfs-tools version 3.1 and it is required to have version 2.0) I didn&#8217;t follow that procedure. However, for those that would like to give it a try you can follow <a href="http://sourceforge.net/apps/mediawiki/samygo/index.php?title=Samsung_A_Series_%282008_Model%29_Hacks">this procedure</a>. We will follow other procedure.</p>
<ol>
	<strong>Downloads</strong>
</ol>
<p>Navigate to <a href="http://www.samsung.com/uk/">Samsung web site</a> &gt; Support &gt; Downloads &gt; TV Audio Video &gt; Choose a product type&gt;: Television &gt; Choose a product subtype: LCD TV &gt; Select your TV model and then click on Select. You will be provided with the link to download your firmware version. In our case firmware is called T-RBYDEU.exe.</p>
<ol>
	<strong>Firmware work</strong>
</ol>
<p>Using some of the decompression tools like 7zip, WinRAR or some other program that you use on the daily basis, we need to extract .exe file that we have downloaded. I will describe procedure under Linux operating system using 7zip:</p>
<blockquote><p><strong>7z x T-RBYDEU.exe</strong></p></blockquote>
<p>Once done, you will be able to see extracted files in directory T-RBYDEU. Please note that you will be able to see those files:</p>
<blockquote><p>gomez@gomez-laptop:/media/Data_/T-RBYDEU$ <strong>ls -la</strong><br />
total 40<br />
drwx&#8212;&#8212; 1 gomez gomez     0 2009-05-11 23:38 .<br />
drwx&#8212;&#8212; 1 gomez gomez  4096 2010-04-01 16:22 ..<br />
-rwxrwxrwx 1 gomez gomez 18929 2009-04-17 16:16 crc<br />
<strong>drwx&#8212;&#8212; 1 gomez gomez  4096 2009-05-11 23:38 image</strong><br />
-rwxrwxrwx 2 gomez gomez  8676 2009-04-17 16:16 MicomCtrl<br />
gomez@gomez-laptop:/media/Data_/T-RBYDEU<strong>$ cd image/</strong><br />
gomez@gomez-laptop:/media/Data_/T-RBYDEU/image$ <strong>ls -la</strong><br />
total 58166<br />
drwx&#8212;&#8212; 1 gomez gomez     4096 2009-05-11 23:38 .<br />
drwx&#8212;&#8212; 1 gomez gomez        0 2009-05-11 23:38 ..<br />
-rwxrwxrwx 1 gomez gomez  8155136 2009-04-17 16:16 appdata.img<br />
-rwxrwxrwx 1 gomez gomez   602112 2009-04-17 16:16 boot.img<br />
<strong>-rwxrwxrwx 1 gomez gomez 37646336 2009-04-17 16:16 exe.img</strong><br />
-rwxrwxrwx 1 gomez gomez   177920 2009-04-17 16:16 fnw.bin<br />
-rwxrwxrwx 1 gomez gomez       17 2009-04-17 16:16 info.txt<br />
-rwxrwxrwx 1 gomez gomez    99680 2009-04-17 16:16 oneboot.bin<br />
-rwxrwxrwx 1 gomez gomez  3424256 2009-04-17 16:16 rootfs.img<br />
-rwxrwxrwx 2 gomez gomez  3172612 2009-04-17 16:16 T-RBYDAUM<br />
-rwxrwxrwx 2 gomez gomez  3172612 2009-04-17 16:16 T-RBYDEUM<br />
-rwxrwxrwx 1 gomez gomez   228296 2009-04-17 16:16 u-boot.bin<br />
-rwxrwxrwx 2 gomez gomez       47 2009-04-17 16:16 validinfo.txt<br />
-rwxrwxrwx 2 gomez gomez       43 2009-04-17 16:16 version_info.txt<br />
-rwxrwxrwx 1 gomez gomez  2864533 2009-04-17 16:16 vmlinux.ub<br />
gomez@gomez-laptop:/media/Data_/T-RBYDEU/image$</p></blockquote>
<p>As per above output, please note that we have directory called <strong>image</strong>, and from the interesting files we have <strong>exe.img</strong> and <strong>validinfo.txt</strong> which will be used in following text.</p>
<ol>
	<strong>Firmware tweaks</strong>
</ol>
<p>Next thing that we need to do is to prepare <strong>exe.img</strong> for additional changes in order to be able to telnet to TV and use some networking services like CIFS. Now, navigate to image directory and create directory temp:</p>
<blockquote><p>gomez@gomez-laptop:/media/Data_/T-RBYDEU$ <strong>cd image/</strong><br />
gomez@gomez-laptop:/media/Data_/T-RBYDEU/image$ <strong>mkdir temp</strong><br />
gomez@gomez-laptop:/media/Data_/T-RBYDEU/image$</p></blockquote>
<p>Once done, we will mount <strong>exe.img</strong> with the type of <strong>vfat</strong> to newly created temp directory:</p>
<blockquote><p>gomez@gomez-laptop:/media/Data_/T-RBYDEU/image$ <strong>sudo mount -t vfat -o loop exe.img temp/</strong></p></blockquote>
<p>With above command, we have mounted <strong>exe.img</strong> to <strong>temp</strong> directory. Please note that we have following files inside temp directory:</p>
<blockquote><p>gomez@gomez-laptop:/media/Data_/T-RBYDEU/image$ <strong>cd temp/</strong><br />
gomez@gomez-laptop:/media/Data_/T-RBYDEU/image/temp$<strong> ls -la</strong><br />
total 28980<br />
drwxr-xr-x 3 root  root     16384 1970-01-01 01:00 .<br />
drwx&#8212;&#8212; 1 gomez gomez     4096 2010-04-04 19:06 ..<br />
-rwxr-xr-x 1 root  root  29487160 2009-04-17 16:16 exeDSP<br />
drwxr-xr-x 3 root  root      8192 2009-04-17 16:16 modules<br />
-r-xr-xr-x 1 root  root    131072 2009-04-17 16:16 $rfs_log.lo$<br />
-r-xr-xr-x 1 root  root      8192 2009-04-17 16:16 rfs_pool.sy$<br />
-rwxr-xr-x 1 root  root      4374 2009-04-17 16:16 run<br />
<strong>-rwxr-xr-x 1 root  root      4525 2009-04-17 16:16 start.sh</strong><br />
gomez@gomez-laptop:/media/Data_/T-RBYDEU/image/temp$</p></blockquote>
<p>Please note that we have start.sh file which we will use in following text.</p>
<ol>
	<strong>Scripts</strong>
</ol>
<p>Using your favourite text editor, replace current <strong>start.sh</strong> file with following:</p>
<blockquote><p>#!/bin/sh</p>
<p>if [ -e /mtd_chmap/start.sh ]<br />
then<br />
echo &#8220;user start.sh found!&#8221;<br />
/mtd_chmap/start.sh<br />
else</p>
<p>export PATH=/sbin:/usr/sbin:/usr/bin:/bin:/usr/local/bin:/usr/local/sbin<br />
#export LD_LIBRARY_PATH=/usr/local/lib:/usr/lib:/lib<br />
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/mtd_cmmlib:/usr/local/lib:/usr/lib:/lib<br />
export HOME=/tmp/root<br />
export TERM=linux<br />
export LOGNAME=&#8221;root&#8221;<br />
<strong>cd /dtv/usb<br />
PU=`cat log | grep Mount`<br />
PU=`echo ${PU##MountDir : }`<br />
echo $PU<br />
$PU/usb.sh &amp;</strong></p>
<p>mount</p>
<p>## mount -n -t usbfs none /proc/bus/usb</p>
<p>ulimit -s 2048</p>
<p>export PS1=&#8217;\h:\w\$ &#8216;</p>
<p>## STAPI Root Device Name?## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
ST_DEV_ROOT_NAME=stapi<br />
export ST_DEV_ROOT_NAME</p>
<p>## STAVMEM Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
STAVMEM_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stavmem_ioctl<br />
export STAVMEM_IOCTL_DEV_PATH</p>
<p>## STAUDLX Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
STAUDLX_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/staudlx_ioctl<br />
export STAUDLX_IOCTL_DEV_PATH</p>
<p>## STBLAST Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
STBLAST_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stblast_ioctl<br />
export STBLAST_IOCTL_DEV_PATH</p>
<p>## STBLIT Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
STBLIT_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stblit_ioctl<br />
export STBLIT_IOCTL_DEV_PATH</p>
<p>## STCC Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;-<br />
STCC_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stcc_ioctl<br />
export STCC_IOCTL_DEV_PATH</p>
<p>## STCLKRV Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
STCLKRV_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stclkrv_ioctl<br />
export STCLKRV_IOCTL_DEV_PATH</p>
<p>## STDENC Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
STDENC_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stdenc_ioctl<br />
export STDENC_IOCTL_DEV_PATH</p>
<p>## STEVT Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
STEVT_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stevt_ioctl<br />
export STEVT_IOCTL_DEV_PATH</p>
<p>## STFASTFILTER Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
STFASTFILTER_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stfastfilter_ioctl<br />
export STFASTFILTER_IOCTL_DEV_PATH</p>
<p>## STFDMA Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
STFDMA_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stfdma_ioctl<br />
export STFDMA_IOCTL_DEV_PATH</p>
<p>## STGFB Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
STGFB_CORE_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stgfb_core<br />
export STGFB_CORE_DEV_PATH<br />
STGFB_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stgfb_ioctl<br />
export STGFB_IOCTL_DEV_PATH</p>
<p>## STHDMI Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
STHDMI_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/sthdmi_ioctl<br />
export STHDMI_IOCTL_DEV_PATH</p>
<p>## STI2C Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
STI2C_IOCTL_DEV_PATH=&#8221;/dev/${ST_DEV_ROOT_NAME}/sti2c_ioctl&#8221;<br />
export STI2C_IOCTL_DEV_PATH</p>
<p>## STLAYER Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
STLAYER_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stlayer_ioctl<br />
export STLAYER_IOCTL_DEV_PATH</p>
<p>## STMERGE Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
STMERGE_IOCTL_DEV_PATH=&#8221;/dev/${ST_DEV_ROOT_NAME}/stmerge_ioctl&#8221;<br />
export STMERGE_IOCTL_DEV_PATH</p>
<p>## STPIO Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
STPIO_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stpio_ioctl<br />
export STPIO_IOCTL_DEV_PATH</p>
<p>## STPTI4 Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
STPTI4_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stpti4_ioctl<br />
export STPTI4_IOCTL_DEV_PATH</p>
<p>## STSMART Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
STSMART_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stsmart_ioctl<br />
export STSMART_IOCTL_DEV_PATH</p>
<p>## STSYS Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
STSYS_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stsys_ioctl<br />
export STSYS_IOCTL_DEV_PATH</p>
<p>## STTTX Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
STTTX_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stttx_ioctl<br />
export STTTX_IOCTL_DEV_PATH</p>
<p>## STTUNER Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
STTUNER_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/sttuner_ioctl<br />
export STTUNER_DEV_PATH</p>
<p>## STVBI Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
STVBI_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stvbi_ioctl<br />
export STVBI_IOCTL_DEV_PATH</p>
<p>## STVID Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
STVID_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stvid_ioctl<br />
export STVID_IOCTL_DEV_PATH</p>
<p>## STVIN Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
STVIN_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stvin_ioctl<br />
export STVIN_IOCTL_DEV_PATH</p>
<p>## STVMIX Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
STVMIX_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stvmix_ioctl<br />
export STVMIX_IOCTL_DEV_PATH</p>
<p>## STVOUT Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
STVOUT_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stvout_ioctl<br />
export STVOUT_IOCTL_DEV_PATH</p>
<p>## STVTG Device Name<br />
## &#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
STVTG_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/stvtg_ioctl<br />
export STVTG_IOCTL_DEV_PATH</p>
<p>STTKDMA_IOCTL_DEV_PATH=/dev/${ST_DEV_ROOT_NAME}/sttkdma_ioctl<br />
export STTKDMA_IOCTL_DEV_PATH</p>
<p>RUN=1<br />
/exe/exeDSP</p></blockquote>
<p>Please note bold lines. Basically, it is the same file except that we are instructing our Linux firmware to load <strong>usb.sh</strong> script which needs to be located on USB root directory. <strong>usb.sh</strong> script will instruct Linux firmware to start busybox instance of telnet deamon so that we are able to telnet to our TV, and additionally it will load cifs.ko kernel module which will enable <strong>Common Internet File System</strong> so that we are able to mount some network devices on our Linux firmware. <strong>usb.sh</strong> script looks like:</p>
<blockquote><p>#! /bin/sh</p>
<p>echo &#8220;!!!!!!!!!!!!!! USB START !!!!!!!!!!!!!!&#8221;</p>
<p>/bin/stty -F /dev/ttyAS0 ospeed 57600 ispeed 57600<br />
#line before enables console for speed 57600. Put &#8216;debug&#8217; to console and you see menu, put &#8217;12&#8242; and ENTER<br />
echo &#8220;!!!!!!!!!!!!!! start console on 57600 !!!!!!!!!!!!!!&#8221;</p>
<p>#sleep 25 sec is need for wait ethernet start<br />
sleep 25</p>
<p>cd /dtv/usb<br />
PU=`cat log | grep Mount`<br />
PU=`echo ${PU##MountDir : }`</p>
<p><strong>echo &#8220;!!!!!!!!!!!!!! start telnet !!!!!!!!!!!!!!&#8221;<br />
$PU/busybox telnetd -l /bin/sh</strong></p>
<p><strong>echo &#8220;!!!!!!!!!!!!!! start cifs.ko !!!!!!!!!!!!!!&#8221;<br />
cd $PU<br />
insmod cifs.ko</strong></p>
<p>sleep 4</p>
<p>echo &#8220;!!!!!!!!!!!!!! clear old contents USB on TV  !!!!!!!!!!!!!!&#8221;<br />
rm /mtd_contents/V* -R<br />
rm /mtd_contents/database -R</p>
<p><strong>echo &#8220;!!!!!!!!!!!!!! start mount !!!!!!!!!!!!!!&#8221;<br />
mount -t cifs //192.168.0.1/photo $PU/photo -o user=user_xp -o pass=password_xp<br />
mount -t cifs //192.168.0.1/mp3 $PU/mp3 -o user=user_xp -o pass=password_xp<br />
mount -t cifs //192.168.0.1/video $PU/video -o user=user_xp -o pass=password_xp</strong></p>
<p>mount</p>
<p>echo &#8220;!!!!!!!!!!!!!! USB END !!!!!!!!!!!!!!&#8221;</p></blockquote>
<p>Please note bold lines. Basically, we are starting telnet daemon and loading cifs.ko kernel module. After that, we are mounting some Windows XP shares from our personal computer which is working on 192.168.0.1 IP address. Once this file is loaded, and those mount locations are created you will be able to use files within above directories on your TV from the TV menus.</p>
<p><strong><em>Please note that usb.sh, cifs.ko, busybox files and mp3, video, and photo directories needs to be located on USB root location.</em> </strong></p>
<p>Once done with that, we are ready to preform final changes to our firmware. First thing that we need to do is to umount <strong>temp</strong> directory:</p>
<blockquote><p>gomez@gomez-laptop:/media/Data_/T-RBYDEU$ <strong>sudo umount /home/gomez/Desktop/T-RBYDEU/temp</strong></p></blockquote>
<p>Then, we need to delete temp directory:</p>
<blockquote><p>gomez@gomez-laptop:/media/Data_/T-RBYDEU/image$ <strong>sudo rm -rf temp/</strong></p></blockquote>
<p>Once done with that, we need to change CRC information, because we have changed exe.img file. We can do that as follows:</p>
<blockquote><p>gomez@gomez-laptop:/media/Data_/T-RBYDEU/image$ <strong>crc32 exe.img</strong><br />
<strong>cdc8080c</strong></p></blockquote>
<p>Once we have CRC information, we need to enter new value to <strong>validinfo.txt</strong> file:<em><br />
</em><br />
gomez@gomez-laptop:/media/Data_/T-RBYDEU/image$ <strong>cat validinfo.txt </strong><br />
*007_exe.img_<strong>663430d9</strong>*011_appdata.img_a485b538</p>
<p>Please note value 663430d9. We need to change that value with cdc8080c that we have got as output from <strong>crc32</strong> command. You can do that by using your favourite text editor. Once done with that, we are done with tweaking our Linux firmware. Your USB pen content should look like this:</p>
<blockquote><p>gomez@gomez-laptop:~/Desktop/USB$<strong> ls -la</strong><br />
total 3644<br />
drwxr-xr-x 6 gomez gomez    4096 2010-04-05 08:59 .<br />
drwx&#8212;&#8212; 8 gomez gomez    4096 2010-04-05 09:03 ..<br />
-rwxrwxrwx 1 gomez gomez  992084 2009-11-18 23:13 busybox<br />
-rwxrwxrwx 1 gomez gomez 2707316 2009-11-17 20:08 cifs.ko<br />
drwx&#8212;&#8212; 2 gomez gomez    4096 2009-12-28 09:12 mp3<br />
drwx&#8212;&#8212; 2 gomez gomez    4096 2009-12-28 09:12 photo<br />
drwx&#8212;&#8212; 3 gomez gomez    4096 2010-04-05 08:59 T-RBYDEU<br />
-rwxrwxrwx 1 gomez gomez    1026 2009-12-28 09:14 usb.sh<br />
drwx&#8212;&#8212; 2 gomez gomez    4096 2009-12-28 09:12 video</p></blockquote>
<p>If that is the case, you can put this USB to your TV, turn it on and you will be prompted to <strong>upgrade firmware</strong> with firmware version listed on your USB pen. Once you perform this upgrade, you will be able to telnet to your TV. Check your TV IP address from TV menus, and then using Linux shell, or if you are Windows user using Putty, telnet to your TV and enjoy power of your Linux shell. Also, using TV menus and Common Internet File System &#8211; CIFS, you can play some music, video or photos on your TV (as described above).</p>
<blockquote><p><em><strong>If you are lazy to give a check to this procedure, you can download fully operational USB image on <a href="http://www.sanjta.org/pics/Samsung/USB.tar.gz">this link</a>. You are doing that on your own risk and author of this blog post is not responsible for any damage that you might cause by some operation.</strong></em></p></blockquote>
<p>Enjoy power of Linux shell on your Samsung TV!</p>
<p>For more information please visit following links:</p>
<ol>
<li><a href="http://sourceforge.net/apps/mediawiki/samygo/index.php?title=Main_Page">SamyGo wiki pages</a></li>
<li><a href="http://sourceforge.net/apps/mediawiki/samygo/index.php?title=How_to_enable_Telnet_on_samsung_TV%27s">How to enable Telnet on Samsung TV&#8217;s</a></li>
<li><a href="http://sourceforge.net/apps/phpbb/samygo/viewtopic.php?f=2&amp;t=49&amp;start=30">Hacking T-RBYDEUC Firmware &#8211; LE40A756 and A856</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=356</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New logo for LUGZDK</title>
		<link>http://www.sanjta.org/?p=350</link>
		<comments>http://www.sanjta.org/?p=350#comments</comments>
		<pubDate>Wed, 31 Mar 2010 13:18:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[free software]]></category>
		<category><![CDATA[linux]]></category>
		<category><![CDATA[open source]]></category>

		<guid isPermaLink="false">http://www.sanjta.org/?p=350</guid>
		<description><![CDATA[LUGZDK finally has new logo. Logo is very simple and well designed, as per our wishes. Man that stands behind the project is Alem Sacak, experienced designer from Zenica, Bosnia and Hercegovina. We would like to thank Alem for this really good job and we are looking forward to work with him in the future [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter" src="http://www.sanjta.org/pics/LUGZDK/logo.JPG" alt="" width="500" height="229" /></p>
<p>LUGZDK finally has new logo. Logo is very simple and well designed, as per our wishes. Man that stands behind the project is Alem Sacak, experienced designer from Zenica, Bosnia and Hercegovina. We would like to thank Alem for this really good job and we are looking forward to work with him in the future on similar projects. If you are interested in his work, you can find his graphic design portfolio and contact details on <a href="http://issuu.com/alemovski85/docs/portofolio">this link</a>.</p>
<ol>
<li><a href="http://issuu.com/alemovski85/docs/portofolio">Alem Sacak</a></li>
<li><a href="http://www.lugzdk.org">Linux users group of ZDK</a></li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.sanjta.org/?feed=rss2&#038;p=350</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

