<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments for </title>
	<atom:link href="http://edeguzman.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://edeguzman.wordpress.com</link>
	<description>&#34;Knowledge is not to keep but it is to share&#34;</description>
	<lastBuildDate>Wed, 22 Apr 2009 03:01:23 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Bug on STL Vector assignment operator by edeguzman</title>
		<link>http://edeguzman.wordpress.com/2009/04/21/bug-on-stl-vector-assignment-operator/#comment-27</link>
		<dc:creator>edeguzman</dc:creator>
		<pubDate>Wed, 22 Apr 2009 03:01:23 +0000</pubDate>
		<guid isPermaLink="false">http://edeguzman.wordpress.com/?p=111#comment-27</guid>
		<description>I get it now. Thanks for your response.  It was my mistake so far, I thought that vector doesn&#039;t provide for null at the last element just like the standard array does. 
From the way I see it that the error checking of vector for subscripts going outside of range is from the null itself at the last element.</description>
		<content:encoded><![CDATA[<p>I get it now. Thanks for your response.  It was my mistake so far, I thought that vector doesn&#8217;t provide for null at the last element just like the standard array does.<br />
From the way I see it that the error checking of vector for subscripts going outside of range is from the null itself at the last element.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Bug on STL Vector assignment operator by pizer</title>
		<link>http://edeguzman.wordpress.com/2009/04/21/bug-on-stl-vector-assignment-operator/#comment-26</link>
		<dc:creator>pizer</dc:creator>
		<pubDate>Tue, 21 Apr 2009 11:35:14 +0000</pubDate>
		<guid isPermaLink="false">http://edeguzman.wordpress.com/?p=111#comment-26</guid>
		<description>The C++ standard doesn&#039;t enforce array bounds checking for operator[] but it enforces array bounds checking for the function &quot;at&quot;. If you use &quot;at&quot; instead you&#039;ll notice that you&#039;re actually accessing the vector with an invalid index 2. The vector has size 2 and thus only the elements at(0) and at(1) are valid but at(2) is not.

What happened is that you wrote into the wild memory and got away with it but wondered why the vector didn&#039;t copy the &quot;last&quot; element. Well, it did copy the last element. But the last element was &quot;200&quot; because test.size()==2.</description>
		<content:encoded><![CDATA[<p>The C++ standard doesn&#8217;t enforce array bounds checking for operator[] but it enforces array bounds checking for the function &#8220;at&#8221;. If you use &#8220;at&#8221; instead you&#8217;ll notice that you&#8217;re actually accessing the vector with an invalid index 2. The vector has size 2 and thus only the elements at(0) and at(1) are valid but at(2) is not.</p>
<p>What happened is that you wrote into the wild memory and got away with it but wondered why the vector didn&#8217;t copy the &#8220;last&#8221; element. Well, it did copy the last element. But the last element was &#8220;200&#8243; because test.size()==2.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Wireless WPA Configuration in Freebsd by qatanah</title>
		<link>http://edeguzman.wordpress.com/2009/03/12/wireless-wpa-configuration-in-freebsd/#comment-19</link>
		<dc:creator>qatanah</dc:creator>
		<pubDate>Thu, 26 Mar 2009 10:49:29 +0000</pubDate>
		<guid isPermaLink="false">http://edeguzman.wordpress.com/?p=44#comment-19</guid>
		<description>Thanks dude, this really helps!</description>
		<content:encoded><![CDATA[<p>Thanks dude, this really helps!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Injecting IGP routes into BGP by edeguzman</title>
		<link>http://edeguzman.wordpress.com/2007/10/03/injecting-igp-routes-into-bgp/#comment-15</link>
		<dc:creator>edeguzman</dc:creator>
		<pubDate>Sun, 26 Oct 2008 00:05:13 +0000</pubDate>
		<guid isPermaLink="false">http://edeguzman.wordpress.com/2007/10/03/injecting-igp-routes-into-bgp/#comment-15</guid>
		<description>Hi, sorry for the late reply. From the way I picture out your problem is that you are experiencing two the same routes that is coming from the EIGRP and the other from BGP. But the BGP route was preferred rather than from EIGRP route? From your statements I can sense that your talking about external EIGRP and external BGP ? External BGP has a lower BGP AD than the EIGRP AD so it means that BGP routes will always be preferred. If you change the EIGRP AD into 10, the EIGRP route should be preferred because BGP AS is 20 (by default). Or try changing BGP AD using this cisco command distance bgp 200 200 20. You told me earlier that you use that command distance bgp 20 200 19, distance bgp command is defined as distance bgp (external) (internal) (local route)  , the external AS was still 20 that&#039;s why BGP routes will still be preferred in its process. 

Furthermore you also told me that you had injected the EIGRP route into BGP? So I&#039;m thinking that you had redistributed the EIGRP route into BGP. From doing it, the EIGRP route became part of BGP routes in which you should be seeing in BGP table. It will have origin attribute value of INCOMPLETE. Naturally that route will not be preferred if there exist the same route entry that was originated in BGP. That&#039;s the reason why that redistributed route will not be advertise out in BGP instead the other route (route originated in BGP) is being advertised. There&#039;s always a route selection process in BGP that is based on hierarchy.

That would be all....</description>
		<content:encoded><![CDATA[<p>Hi, sorry for the late reply. From the way I picture out your problem is that you are experiencing two the same routes that is coming from the EIGRP and the other from BGP. But the BGP route was preferred rather than from EIGRP route? From your statements I can sense that your talking about external EIGRP and external BGP ? External BGP has a lower BGP AD than the EIGRP AD so it means that BGP routes will always be preferred. If you change the EIGRP AD into 10, the EIGRP route should be preferred because BGP AS is 20 (by default). Or try changing BGP AD using this cisco command distance bgp 200 200 20. You told me earlier that you use that command distance bgp 20 200 19, distance bgp command is defined as distance bgp (external) (internal) (local route)  , the external AS was still 20 that&#8217;s why BGP routes will still be preferred in its process. </p>
<p>Furthermore you also told me that you had injected the EIGRP route into BGP? So I&#8217;m thinking that you had redistributed the EIGRP route into BGP. From doing it, the EIGRP route became part of BGP routes in which you should be seeing in BGP table. It will have origin attribute value of INCOMPLETE. Naturally that route will not be preferred if there exist the same route entry that was originated in BGP. That&#8217;s the reason why that redistributed route will not be advertise out in BGP instead the other route (route originated in BGP) is being advertised. There&#8217;s always a route selection process in BGP that is based on hierarchy.</p>
<p>That would be all&#8230;.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Injecting IGP routes into BGP by Nick Knatt</title>
		<link>http://edeguzman.wordpress.com/2007/10/03/injecting-igp-routes-into-bgp/#comment-13</link>
		<dc:creator>Nick Knatt</dc:creator>
		<pubDate>Sun, 12 Oct 2008 09:22:10 +0000</pubDate>
		<guid isPermaLink="false">http://edeguzman.wordpress.com/2007/10/03/injecting-igp-routes-into-bgp/#comment-13</guid>
		<description>hello ! so far so good ! 
i am experiencing a situation, where a perticular EIGRP route is also injected into BGP elsewhere into the network, making that other route more preferable because of BGP lower admin distance. how can i force the EIGRP route not only to be preferred in that specific router but also being advertised out thru BGP from there ? it seems that the box likes BGP routes much more than EIGRP ones :-). route-maps dont allow setting admin distance in EIGRP process, the  distance bgp 20 200 19  command in the bgp process did not help.
manipulating the route&#039;s local preference in the bgp network statement also did not make the box switch to eigrp preference.
IOS version: C3725-IS-M, Version 12.3(26)

any ideas ?
much apprechiated,
Nick</description>
		<content:encoded><![CDATA[<p>hello ! so far so good !<br />
i am experiencing a situation, where a perticular EIGRP route is also injected into BGP elsewhere into the network, making that other route more preferable because of BGP lower admin distance. how can i force the EIGRP route not only to be preferred in that specific router but also being advertised out thru BGP from there ? it seems that the box likes BGP routes much more than EIGRP ones <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> . route-maps dont allow setting admin distance in EIGRP process, the  distance bgp 20 200 19  command in the bgp process did not help.<br />
manipulating the route&#8217;s local preference in the bgp network statement also did not make the box switch to eigrp preference.<br />
IOS version: C3725-IS-M, Version 12.3(26)</p>
<p>any ideas ?<br />
much apprechiated,<br />
Nick</p>
]]></content:encoded>
	</item>
</channel>
</rss>
