<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/atom10full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><feed xmlns="http://www.w3.org/2005/Atom" xmlns:openSearch="http://a9.com/-/spec/opensearch/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:gd="http://schemas.google.com/g/2005" xmlns:thr="http://purl.org/syndication/thread/1.0" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" gd:etag="W/&quot;CE8NQXozcCp7ImA9WhRUGE8.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320</id><updated>2012-01-29T02:41:30.488-05:00</updated><category term="linux" /><category term="C#" /><category term="lvs" /><category term="hack" /><category term="ccna" /><category term="UNI" /><category term="java" /><category term="wireless" /><category term="cluster" /><category term="ids" /><category term="servidores" /><category term="seguridad" /><category term="latex" /><category term="microsoft" /><category term="programacion" /><category term="ccnp" /><category term="ocio" /><category term="networking" /><category term="base de datos" /><category term="ipv6" /><title>El blog de Christian ..</title><subtitle type="html" /><link rel="http://schemas.google.com/g/2005#feed" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/posts/default" /><link rel="alternate" type="text/html" href="http://cquispe.blogspot.com/" /><link rel="next" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default?start-index=26&amp;max-results=25&amp;redirect=false&amp;v=2" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><generator version="7.00" uri="http://www.blogger.com">Blogger</generator><openSearch:totalResults>45</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>25</openSearch:itemsPerPage><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/atom+xml" href="http://feeds.feedburner.com/ElBlogDeChristian" /><feedburner:info uri="elblogdechristian" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><entry gd:etag="W/&quot;CkIHRHc7fCp7ImA9WxJaF0w.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-421860498476127845</id><published>2009-08-07T00:36:00.001-05:00</published><updated>2009-08-08T00:48:55.904-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-08T00:48:55.904-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ccna" /><category scheme="http://www.blogger.com/atom/ns#" term="ccnp" /><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="seguridad" /><category scheme="http://www.blogger.com/atom/ns#" term="networking" /><title>GNS3/Linux: Creando una VPN site to site usando CLI</title><content type="html">Topologia:&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_rzwYxlt7UYk/Sns1ls--c8I/AAAAAAAAAIs/8fo6EF7OUWY/s1600-h/ccnasec_vpn_cli.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_rzwYxlt7UYk/Sns1ls--c8I/AAAAAAAAAIs/8fo6EF7OUWY/s320/ccnasec_vpn_cli.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
R0 &lt;br /&gt;
&lt;blockquote&gt;interface FastEthernet0/0&lt;br /&gt;
&amp;nbsp;ip address 192.168.169.2 255.255.255.0&lt;br /&gt;
&amp;nbsp;duplex auto&lt;br /&gt;
&amp;nbsp;speed auto&lt;br /&gt;
!&lt;br /&gt;
interface FastEthernet0/1&lt;br /&gt;
&amp;nbsp;ip address 192.168.1.2 255.255.255.0&lt;br /&gt;
&amp;nbsp;duplex auto&lt;br /&gt;
&amp;nbsp;speed auto&lt;br /&gt;
&lt;br /&gt;
router rip&lt;br /&gt;
&amp;nbsp;network 192.168.1.0&lt;br /&gt;
&amp;nbsp;network 192.168.169.0&lt;br /&gt;
&lt;br /&gt;
line con 0&lt;br /&gt;
&amp;nbsp;logging synchronous&lt;/blockquote&gt;&lt;br /&gt;
R1&lt;br /&gt;
&lt;blockquote&gt;crypto isakmp policy 1&lt;br /&gt;
&amp;nbsp;encr aes&lt;br /&gt;
&amp;nbsp;authentication pre-share&lt;br /&gt;
&amp;nbsp;group 2&lt;br /&gt;
crypto isakmp key s3cr3t address 192.168.1.1&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
crypto ipsec transform-set TRANSFORM_VPN_TEST esp-aes esp-sha-hmac &lt;br /&gt;
!&lt;br /&gt;
crypto map VPN_R1_TO_R2 10 ipsec-isakmp &lt;br /&gt;
&amp;nbsp;set peer 192.168.1.1&lt;br /&gt;
&amp;nbsp;set transform-set TRANSFORM_VPN_TEST &lt;br /&gt;
&amp;nbsp;match address 101&lt;br /&gt;
&lt;br /&gt;
interface FastEthernet0/0&lt;br /&gt;
&amp;nbsp;ip address 10.10.2.1 255.255.255.0&lt;br /&gt;
&amp;nbsp;duplex auto&lt;br /&gt;
&amp;nbsp;speed auto&lt;br /&gt;
!&lt;br /&gt;
interface FastEthernet0/1&lt;br /&gt;
&amp;nbsp;ip address 192.168.169.1 255.255.255.0&lt;br /&gt;
&amp;nbsp;duplex auto&lt;br /&gt;
&amp;nbsp;speed auto&lt;br /&gt;
&amp;nbsp;crypto map VPN_R1_TO_R2&lt;br /&gt;
!&lt;br /&gt;
router rip&lt;br /&gt;
&amp;nbsp;network 192.168.169.0&lt;br /&gt;
&lt;br /&gt;
ip route 10.10.3.0 255.255.255.0 192.168.1.1&lt;br /&gt;
access-list 101 permit ip 10.10.2.0 0.0.0.255 10.10.3.0 0.0.0.255&lt;br /&gt;
line con 0&lt;br /&gt;
&amp;nbsp;logging synchronous&lt;/blockquote&gt;&lt;br /&gt;
R2&lt;br /&gt;
&lt;blockquote&gt;!&lt;br /&gt;
crypto isakmp policy 1&lt;br /&gt;
&amp;nbsp;encr aes&lt;br /&gt;
&amp;nbsp;authentication pre-share&lt;br /&gt;
&amp;nbsp;group 2&lt;br /&gt;
crypto isakmp key s3cr3t address 192.168.169.1&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
crypto ipsec transform-set TRANSFORM_VPN_TEST esp-aes esp-sha-hmac &lt;br /&gt;
!&lt;br /&gt;
crypto map VPN_R2_TO_R1 10 ipsec-isakmp &lt;br /&gt;
&amp;nbsp;set peer 192.168.169.1&lt;br /&gt;
&amp;nbsp;set transform-set TRANSFORM_VPN_TEST &lt;br /&gt;
&amp;nbsp;match address 101&lt;br /&gt;
&lt;br /&gt;
interface FastEthernet0/0&lt;br /&gt;
&amp;nbsp;ip address 10.10.3.1 255.255.255.0&lt;br /&gt;
&amp;nbsp;duplex auto&lt;br /&gt;
&amp;nbsp;speed auto&lt;br /&gt;
!&lt;br /&gt;
interface FastEthernet0/1&lt;br /&gt;
&amp;nbsp;ip address 192.168.1.1 255.255.255.0&lt;br /&gt;
&amp;nbsp;duplex auto&lt;br /&gt;
&amp;nbsp;speed auto&lt;br /&gt;
&amp;nbsp;crypto map VPN_R2_TO_R1&lt;br /&gt;
!&lt;br /&gt;
router rip&lt;br /&gt;
&amp;nbsp;network 192.168.1.0&lt;br /&gt;
&lt;br /&gt;
ip route 10.10.2.0 255.255.255.0 192.168.169.1&lt;br /&gt;
access-list 101 permit ip 10.10.3.0 0.0.0.255 10.10.2.0 0.0.0.255&lt;br /&gt;
line con 0&lt;br /&gt;
&amp;nbsp;logging synchronous&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-421860498476127845?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/_XRixUUWtWYOZtPB9bSLxchjCsY/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_XRixUUWtWYOZtPB9bSLxchjCsY/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/_XRixUUWtWYOZtPB9bSLxchjCsY/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_XRixUUWtWYOZtPB9bSLxchjCsY/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/qpAdHMNyBZk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/421860498476127845/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2009/08/gns3linux-creando-una-vpn-site-to-site.html#comment-form" title="2 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/421860498476127845?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/421860498476127845?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/qpAdHMNyBZk/gns3linux-creando-una-vpn-site-to-site.html" title="GNS3/Linux: Creando una VPN site to site usando CLI" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_rzwYxlt7UYk/Sns1ls--c8I/AAAAAAAAAIs/8fo6EF7OUWY/s72-c/ccnasec_vpn_cli.png" height="72" width="72" /><thr:total>2</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2009/08/gns3linux-creando-una-vpn-site-to-site.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CkICRHczcSp7ImA9WxJaF0w.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-2735725682991796407</id><published>2009-08-01T01:04:00.004-05:00</published><updated>2009-08-08T00:49:25.989-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-08T00:49:25.989-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ccna" /><category scheme="http://www.blogger.com/atom/ns#" term="ccnp" /><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="seguridad" /><category scheme="http://www.blogger.com/atom/ns#" term="networking" /><title>GNS3/Linux: Instalacion de Cisco SDM desde Linux</title><content type="html">Estar familiarizado con el uso del Cisco SDM (Security Device Manager) es necesario para rendir el examen 640-553 CCNA Security. Instalarlo desde windows es relativamente sencillo ya que dispone de un instalador. Sin embargo, desde Linux no lo es tanto; estos son los pasos que segui para instalarlo usando GNS3.&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_rzwYxlt7UYk/SnPbz3E6KDI/AAAAAAAAAIk/PQGNLsarPZY/s1600-h/ccnasec_sdm_topology.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_rzwYxlt7UYk/SnPbz3E6KDI/AAAAAAAAAIk/PQGNLsarPZY/s320/ccnasec_sdm_topology.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Creamos la Interfaz tap0 y le asignamos una direccion IP&lt;br /&gt;
&lt;blockquote&gt;tunctl&lt;br /&gt;
ifconfig tap0 10.10.2.2 netmask 255.255.255.0 up&lt;/blockquote&gt;&lt;br /&gt;
Descargamos una version de java antigua&lt;br /&gt;
&lt;br /&gt;
http://java.sun.com/products/archive/&lt;br /&gt;
&lt;br /&gt;
Instalamos un servidor tftp&lt;br /&gt;
&lt;blockquote&gt;aptitude install atftpd&lt;/blockquote&gt;&lt;br /&gt;
Descargamos el SDM v2.5 y copiamoslos siguientes archivos a /var/lib/tftpboot&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;cp 128MB.sdf /var/lib/tftpboot&lt;br /&gt;
cp attack-drop.sdf /var/lib/tftpboot&lt;br /&gt;
cp es.tar /var/lib/tftpboot&lt;br /&gt;
cp home.tar /var/lib/tftpboot&lt;br /&gt;
cp sdm.tar /var/lib/tftpboot&lt;br /&gt;
cp sslclient-win-1.1.4.176.pkg /var/lib/tftpboot&lt;br /&gt;
cp 256MB.sdf /var/lib/tftpboot&lt;br /&gt;
cp common.tar /var/lib/tftpboot&lt;br /&gt;
cp home.shtml /var/lib/tftpboot&lt;br /&gt;
cp sdmconfig-36xx-37xx.cfg /var/lib/tftpboot&lt;br /&gt;
cp securedesktop-ios-3.1.1.45-k9.pkg /var/lib/tftpboot&lt;br /&gt;
cp wlanui.tar /var/lib/tftpboot&lt;/blockquote&gt;&lt;br /&gt;
Iniciamos elgns3 y abrimos una consola:&lt;br /&gt;
&lt;br /&gt;
Formateamos la flash:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;Router#erase flash:&lt;br /&gt;
Router#format flash:&lt;br /&gt;
Router#conf t&lt;/blockquote&gt;&lt;br /&gt;
Logging syncronizado&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;Router(config)#hostname R0&lt;br /&gt;
R0(config)#line console 0&lt;br /&gt;
R0(config-line)#logging synchronous &lt;br /&gt;
R0(config-line)#exit&lt;br /&gt;
R0(config)#end&lt;/blockquote&gt;&lt;br /&gt;
Habilitamos ssh&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;R0(config)#ip domain-name ccnasec&lt;br /&gt;
R0(config)#crypto key generate rsa general-keys modulus 1024&lt;/blockquote&gt;&lt;br /&gt;
Habilitamos el servidor https&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;R0(config)#ip http server&lt;br /&gt;
R0(config)#ip http secure-server&lt;br /&gt;
R0(config)#ip http authentication local&lt;br /&gt;
R0(config)#ip http timeout-policy idle 600 life 86400 requests 10000&lt;br /&gt;
R0(config)#username cquispe privilege 15 secret 0 cquispe&lt;br /&gt;
R0(config)#do wr&lt;/blockquote&gt;&lt;br /&gt;
Habilitamos el acceso mediante vty&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;R0(config)# line vty 0 4&lt;br /&gt;
R0(config-line)# privilege level 15&lt;br /&gt;
R0(config-line)# login local&lt;br /&gt;
R0(config-line)# transport input telnet ssh&lt;br /&gt;
R0(config-line)# end&lt;br /&gt;
R0#wr&lt;/blockquote&gt;&lt;br /&gt;
Configuramos la interfaz&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;R0(config)#int fa0/0&lt;br /&gt;
R0(config-if)#ip addr 10.10.2.3 255.255.255.0&lt;br /&gt;
R0(config-if)#no shu&lt;/blockquote&gt;&lt;br /&gt;
Copiamos los archivos del sdm a la memoria flash del router&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;R0#copy tftp://10.10.2.2:/128MB.sdf flash:&lt;br /&gt;
R0#copy tftp://10.10.2.2:/attack-drop.sdf flash:&lt;br /&gt;
R0#copy tftp://10.10.2.2:/es.tar flash:&lt;br /&gt;
R0#copy tftp://10.10.2.2:/home.tar flash:&lt;br /&gt;
R0#copy tftp://10.10.2.2:/sdm.tar flash:&lt;br /&gt;
R0#copy tftp://10.10.2.2:/sslclient-win-1.1.4.176.pkg flash:&lt;br /&gt;
R0#copy tftp://10.10.2.2:/256MB.sdf flash:&lt;br /&gt;
R0#copy tftp://10.10.2.2:/common.tar flash:&lt;br /&gt;
R0#copy tftp://10.10.2.2:/home.shtml flash:&lt;br /&gt;
R0#copy tftp://10.10.2.2:/sdmconfig-36xx-37xx.cfg flash:&lt;br /&gt;
R0#copy tftp://10.10.2.2:/securedesktop-ios-3.1.1.45-k9.pkg flash:&lt;br /&gt;
R0#copy tftp://10.10.2.2:/wlanui.tar flash:&lt;/blockquote&gt;&lt;br /&gt;
Abrimos el navegador en https://10.10.2.3&lt;br /&gt;
&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_rzwYxlt7UYk/SnPXgmHbCiI/AAAAAAAAAH8/szjXqrATTio/s1600-h/ccnasec_sdm.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_rzwYxlt7UYk/SnPXgmHbCiI/AAAAAAAAAH8/szjXqrATTio/s320/ccnasec_sdm.png" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;Cargando el SDM&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&lt;a href="http://2.bp.blogspot.com/_rzwYxlt7UYk/SnPXnA9EA6I/AAAAAAAAAIE/1VnhXNnBk58/s1600-h/ccnasec_sdm1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_rzwYxlt7UYk/SnPXnA9EA6I/AAAAAAAAAIE/1VnhXNnBk58/s320/ccnasec_sdm1.png" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;Login&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&lt;a href="http://3.bp.blogspot.com/_rzwYxlt7UYk/SnPXr2d2j9I/AAAAAAAAAIM/_yrMuiNypEM/s1600-h/ccnasec_sdm2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_rzwYxlt7UYk/SnPXr2d2j9I/AAAAAAAAAIM/_yrMuiNypEM/s320/ccnasec_sdm2.png" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;Aceptamos&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_rzwYxlt7UYk/SnPXyCFGlfI/AAAAAAAAAIU/jGAZGks801s/s1600-h/ccnasec_sdm3.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_rzwYxlt7UYk/SnPXyCFGlfI/AAAAAAAAAIU/jGAZGks801s/s320/ccnasec_sdm3.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;Cargando la interfaz&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_rzwYxlt7UYk/SnPX4TYdOUI/AAAAAAAAAIc/izHDye9yCgQ/s1600-h/ccnasec_sdm4.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_rzwYxlt7UYk/SnPX4TYdOUI/AAAAAAAAAIc/izHDye9yCgQ/s320/ccnasec_sdm4.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;La interfaz del SDM &lt;/b&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-2735725682991796407?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/sWxvYuAqPfSZKf-NWMFnZXW-pY8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sWxvYuAqPfSZKf-NWMFnZXW-pY8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/sWxvYuAqPfSZKf-NWMFnZXW-pY8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sWxvYuAqPfSZKf-NWMFnZXW-pY8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/4ytbXZcPbnY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/2735725682991796407/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2009/08/gns3-instalacion-de-cisco-sdm-desde.html#comment-form" title="2 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/2735725682991796407?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/2735725682991796407?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/4ytbXZcPbnY/gns3-instalacion-de-cisco-sdm-desde.html" title="GNS3/Linux: Instalacion de Cisco SDM desde Linux" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_rzwYxlt7UYk/SnPbz3E6KDI/AAAAAAAAAIk/PQGNLsarPZY/s72-c/ccnasec_sdm_topology.png" height="72" width="72" /><thr:total>2</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2009/08/gns3-instalacion-de-cisco-sdm-desde.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEUMRHo8cCp7ImA9WxJbFEQ.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-7809178651478911877</id><published>2009-07-24T22:24:00.000-05:00</published><updated>2009-07-24T22:24:45.478-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-07-24T22:24:45.478-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ccna" /><category scheme="http://www.blogger.com/atom/ns#" term="seguridad" /><category scheme="http://www.blogger.com/atom/ns#" term="networking" /><title>Enlaces utiles para el CCNA Security</title><content type="html">El libro oficial, me a gustado bastante y el cdrom viene con un banco de preguntas:&lt;br /&gt;
http://www.amazon.com/Security-Official-Certification-Guide-640-553/dp/1587202204&lt;br /&gt;
&lt;br /&gt;
Videos recomendados, requiere registrarse pero es gratuito:&lt;br /&gt;
https://cisco.hosted.jivesoftware.com/community/certifications/security_ccna/iins?tab=studylearn&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-7809178651478911877?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/S2qyxYUxxh510l4gjQv_sxuUcFE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/S2qyxYUxxh510l4gjQv_sxuUcFE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/S2qyxYUxxh510l4gjQv_sxuUcFE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/S2qyxYUxxh510l4gjQv_sxuUcFE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/VAoCCiZAIBY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/7809178651478911877/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2009/07/enlaces-utiles-para-el-ccna-security.html#comment-form" title="1 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/7809178651478911877?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/7809178651478911877?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/VAoCCiZAIBY/enlaces-utiles-para-el-ccna-security.html" title="Enlaces utiles para el CCNA Security" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>1</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2009/07/enlaces-utiles-para-el-ccna-security.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0MARXw-fSp7ImA9WxJXGUg.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-7089698915509685202</id><published>2009-06-14T01:04:00.000-05:00</published><updated>2009-06-14T01:04:04.255-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-14T01:04:04.255-05:00</app:edited><title>Congreso Internacional de Tecnología     IEEE - UPAO</title><content type="html">&lt;div style="line-height: normal; margin-bottom: 0.0001pt; text-align: center;"&gt;&lt;b&gt;&lt;span style="font-size: 10pt;"&gt;CALL FOR PAPERS - &lt;span style="color: red;"&gt;LLAMADO PARA TRABAJO TÉCNICOS&lt;/span&gt;&lt;br /&gt;
&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt;"&gt;&lt;span style="font-size: medium;"&gt;&lt;br /&gt;
&lt;/span&gt; &lt;b&gt;&lt;a href="http://ewh.ieee.org/sb/peru/upao/index.php?option=com_content&amp;amp;task=view&amp;amp;id=41&amp;amp;Itemid=66&amp;amp;lang=spanish" target="_blank"&gt;&lt;span style="font-size: medium;"&gt;Congreso Internacional de Tecnología, COINTEC I, PERÚ 2009&lt;/span&gt;&lt;/a&gt;&lt;br /&gt;
&lt;/b&gt;Trujillo, Perú – del 26 al 30 de noviembre de 2009&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: normal; margin-bottom: 0.0001pt; text-align: justify;"&gt;&lt;span style="font-size: 10pt;"&gt;&lt;br /&gt;
&lt;b&gt;COINTEC&lt;/b&gt; es un &lt;i&gt;congreso internacional de&lt;/i&gt;&lt;b&gt;&lt;i&gt; investigadores, profesionales &lt;/i&gt;&lt;/b&gt;&lt;i&gt;y &lt;/i&gt;&lt;b&gt;&lt;i&gt;estudiantes de ingeniería eléctrica, electrónica &lt;/i&gt;&lt;/b&gt;&lt;i&gt;y&lt;/i&gt;&lt;b&gt;&lt;i&gt; ramas afines&lt;/i&gt; &lt;/b&gt;que comparten sus conocimientos e investigaciones.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;&lt;i&gt;COINTEC &lt;/i&gt;&lt;/b&gt;&lt;i&gt;representa una&lt;/i&gt;&lt;b&gt;&lt;i&gt; excelente oportunidad para &lt;/i&gt;&lt;/b&gt;&lt;i&gt;la&lt;/i&gt;&lt;b&gt;&lt;i&gt; actualización de conocimientos, &lt;/i&gt;&lt;/b&gt;&lt;i&gt;establecer&lt;/i&gt;&lt;b&gt;&lt;i&gt; relaciones profesionales, de negocios &lt;/i&gt;&lt;/b&gt;&lt;i&gt;y&lt;/i&gt;&lt;b&gt;&lt;i&gt; fortalecer lazos de amistad.&lt;/i&gt;&lt;/b&gt; La Universidad Privada Antenor Orrego y su Rama IEEE se complacen en invitarle a participar con sus trabajos técnicos o como asistente, en conferencias, tutoriales, talleres, visitas técnicas, feria tecnológica, etc. Desde ya agradecemos sus contribuciones.&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: normal; margin-bottom: 0.0001pt;"&gt;&lt;span style="font-size: 10pt;"&gt;&lt;br /&gt;
&lt;b style="color: black;"&gt;FECHAS IMPORTANTES:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Recepción de trabajos técnicos: &amp;nbsp; Hasta el 31 de julio de 2009.&lt;br /&gt;
Confirmación de aceptación:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 9 de setiembre de 2009.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;ENVÍO DE TRABAJOS TÉCNICOS:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
Formato:&amp;nbsp;Disponible en &lt;/span&gt;&lt;span style="font-size: 9pt;"&gt;&lt;a href="http://www.ewh.ieee.org/sb/peru/upao/images/ARCHIVOS/callforpappercointec.pdf" target="_blank"&gt;www.ewh.ieee.org/sb/peru/upao/&lt;wbr&gt;&lt;/wbr&gt;images/ARCHIVOS/&lt;wbr&gt;&lt;/wbr&gt;callforpappercointec.pdf&lt;/a&gt;&lt;/span&gt;&lt;span style="font-size: 10pt;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: normal; margin-bottom: 0.0001pt;"&gt;&lt;span style="font-size: 10pt;"&gt;Idioma:&amp;nbsp;&amp;nbsp;&amp;nbsp; Español, inglés, francés, portugués , italiano y alemán.&lt;br /&gt;
Correos de envío: &lt;a href="mailto:azabachef@upao.edu.pe" target="_blank"&gt;azabachef@upao.edu.pe&lt;/a&gt; &lt;span&gt;&amp;nbsp;&lt;/span&gt;y &lt;span&gt;&amp;nbsp;&lt;/span&gt;&lt;a href="mailto:comtec_cointec@upao.edu.pe" target="_blank"&gt;comtec_cointec@upao.edu.pe&lt;/a&gt;&lt;br /&gt;
Indicar:&amp;nbsp;&amp;nbsp; Título del trabajo, nombre de autor(es), país, y contactos &lt;br /&gt;
&lt;br /&gt;
* Mas información disponible en la web &lt;b style="color: black;"&gt;&lt;a href="http://www.ewh.ieee.org/sb/peru/upao/index.php" target="_blank"&gt;COINTEC &lt;/a&gt;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: normal; margin-bottom: 0.0001pt;"&gt;&lt;span style="font-size: 10pt;"&gt;&lt;br /&gt;
&lt;b&gt;ÁREAS DE INTERÉS:&lt;/b&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;- &lt;span style="font-size: 10pt;"&gt;Sistemas de Control Industrial y Automatización&lt;br /&gt;
- Redes de Comunicación de Datos&lt;br /&gt;
- Procesamiento de Señales e Imágenes&lt;br /&gt;
- Sistemas de Telecomunicaciones Avanzados&lt;br /&gt;
- Electrónica de Potencia&lt;br /&gt;
- Micro Electrónica y Nano Electrónica&lt;br /&gt;
- Inteligencia Artificial y Robótica&lt;br /&gt;
- Sistemas de Información&lt;br /&gt;
- Bases de Datos&lt;br /&gt;
- Generación, Transmisión y Distribución de Energía&lt;br /&gt;
- Fabricas de Software&lt;br /&gt;
- Desarrollo de Aplicaciones para Móviles&lt;br /&gt;
- Seguridad en Sistemas de Información&lt;br /&gt;
- Fuentes no Convencionales de Generación de la Energía&amp;nbsp; Eléctrica&lt;br /&gt;
&lt;br /&gt;
** Para mayor información, dirigirse al Comité Técnico al correo: &lt;a href="mailto:comtec_cointec@upao.edu.pe" target="_blank"&gt;comtec_cointec@upao.edu.pe&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style="font-size: 10pt; line-height: 115%;"&gt;COMITÉ DE PROGRAMA&lt;/span&gt;&lt;/b&gt;&lt;span style="font-size: 10pt; line-height: 115%;"&gt;&lt;br /&gt;
&lt;br /&gt;
- Dr. Carlos Silva, Pontificia Universidad Católica del Perú – &lt;b&gt;PERÚ&lt;/b&gt;&lt;br /&gt;
- Dr. José Emilio Vargas Soto, Universidad Anahúac de México del Sur - &lt;b&gt;MÉXICO &lt;/b&gt;&lt;br /&gt;
- Dr. Nicolás Kemper Valverde, Universidad Nacional Autónoma de México&lt;span&gt;&amp;nbsp; &lt;/span&gt;- &lt;b&gt;MÉXICO&lt;/b&gt; &lt;br /&gt;
- Dr. Jaime Meléndez Rodríguez, Universidad Politécnica de Madrid - &lt;b&gt;ESPAÑA&lt;/b&gt; &lt;br /&gt;
-&amp;nbsp;Dr. Marco Alayo Chávez, Escola Politécnica da Universidade de São Paulo -&lt;b&gt; BRASIL&lt;/b&gt; &lt;br /&gt;
-&amp;nbsp;Dr. Jorge Salazar Cerreño, University of Massachusetts Amherst - &lt;b&gt;EE.UU&lt;/b&gt;. &lt;br /&gt;
-&amp;nbsp;Dr. Carlos Villacorta Cardoso, Universidad Rio Grande do Sul -&lt;b&gt;BRASIL &lt;/b&gt;&lt;br /&gt;
-&amp;nbsp;Ms. Luis Iván Ruiz Flores, Instituto de Investigaciones Eléctricas IIE - &lt;b&gt;MÉXICO &lt;/b&gt;&lt;a href="mailto:%3Cscript%20language=%27JavaScript%27%20type=%27text/javascript%27%3E%20%3C%21--%20var%20prefix%20=%20%27ma%27%20+%20%27il%27%20+%20%27to%27;%20var%20path%20=%20%27hr%27%20+%20%27ef%27%20+%20%27=%27;%20var%20addy1729%20=%20%27jlroelortiz%27%20+%20%27@%27;%20addy1729%20=%20addy1729%20+%20%27yahoo%27%20+%20%27.%27%20+%20%27com%27%20+%20%27.%27%20+%20%27br%27;%20document.write%28%20%27%3Ca%20%27%20+%20path%20+%20%27%5C%27%27%20+%20prefix%20+%20%27:%27%20+%20addy1729%20+%20%27%5C%27%3E%27%20%29;%20document.write%28%20addy1729%20%29;%20document.write%28%20%27%3C%5C/a%3E%27%20%29;%20//--%3E%20%3C/script%3E%3Cnoscript%3E%20Esta%20direcci%C3%B3n%20de%20correo%20electr%C3%B3nico%20est%C3%A1%20protegida%20contra%20los%20robots%20de%20spam,%20necesita%20tener%20Javascript%20activado%20para%20poder%20verla%3C/noscript%3E" target="_blank"&gt;&lt;span style="color: windowtext; text-decoration: none;"&gt;&lt;/span&gt;&lt;/a&gt; &lt;br /&gt;
-&amp;nbsp;Dr. Daniel Díaz Ataucuri, Universidad Nacional Mayor de San Marcos - &lt;b&gt;PERÚ &lt;/b&gt;&lt;br /&gt;
-&amp;nbsp;Dr. Jorge Luis Alva Alarcón - Universidad Politécnica de Madrid - &lt;b&gt;ESPAÑA&lt;/b&gt; &lt;br /&gt;
-&amp;nbsp;Ms. José Guadalupe Torres y Ortega, Instituto Politécnico Nacional - &lt;b&gt;MEXICO&lt;/b&gt; &lt;br /&gt;
-&amp;nbsp;Ms. Filiberto Azabache Fernández, Universidad Privada Antenor Orrego – &lt;b&gt;PERÚ&lt;/b&gt;&lt;/span&gt;&lt;br /&gt;
&lt;div style="line-height: normal;"&gt;&lt;span style="font-size: 10pt;"&gt;&lt;br /&gt;
*** Si desea información acerca de cómo adquirir exhibidores (stands) para la gran exposición técnica-comercial, puede escribir al correo: &lt;a href="mailto:feriatecno_cointec@upao.edu.pe" target="_blank"&gt;feriatecno_cointec@upao.edu.pe&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="line-height: normal;"&gt;&lt;span style="font-size: 10pt;"&gt;**** Si desea mayor información sobre inscripciones, puede escribir al correo: &lt;a href="mailto:inscrip_cointec@upao.edu.pe" target="_blank"&gt;inscrip_cointec@upao.edu.pe&lt;/a&gt;&lt;/span&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-7089698915509685202?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/YrJovqnlen5l-NhW-a7_hCpw3xw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YrJovqnlen5l-NhW-a7_hCpw3xw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/YrJovqnlen5l-NhW-a7_hCpw3xw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/YrJovqnlen5l-NhW-a7_hCpw3xw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/fOyy3gyEi7U" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/7089698915509685202/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2009/06/congreso-internacional-de-tecnologia.html#comment-form" title="0 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/7089698915509685202?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/7089698915509685202?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/fOyy3gyEi7U/congreso-internacional-de-tecnologia.html" title="Congreso Internacional de Tecnología     IEEE - UPAO" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2009/06/congreso-internacional-de-tecnologia.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D04DQ3s8eCp7ImA9WxJXGU4.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-4394001477047780728</id><published>2009-06-13T18:32:00.000-05:00</published><updated>2009-06-13T18:32:52.570-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-13T18:32:52.570-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ccna" /><category scheme="http://www.blogger.com/atom/ns#" term="networking" /><title>Enlaces utiles para el CCNA</title><content type="html">Bueno, despues de enterarme que habia quienes me leian !! ( jejeej) .. y respondiendo al pedido de uno de ellos por material para el examen CCNA, empezare a publicar enlaces, articulos y tutoriales sobre algunos de los temas que se incluyen en la curricula para obtener esta certificacion. En un post diferente tambien empezare a poner enlaces para el CCNA Security, una de las certificaciones que tengo como objetivo conseguir este año, aparte del BSCI.&lt;br /&gt;
&lt;br /&gt;
Frame Relay:&lt;br /&gt;
http://www.cisco.com/en/US/tech/tk713/tk237/technologies_tech_note09186a008014f8a7.shtml&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-4394001477047780728?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/sRVqCtTrvkElE-B37_OF5EbI7MU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sRVqCtTrvkElE-B37_OF5EbI7MU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/sRVqCtTrvkElE-B37_OF5EbI7MU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/sRVqCtTrvkElE-B37_OF5EbI7MU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/tUye3o7FvDY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/4394001477047780728/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2009/06/enlaces-utiles-para-el-ccna.html#comment-form" title="0 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/4394001477047780728?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/4394001477047780728?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/tUye3o7FvDY/enlaces-utiles-para-el-ccna.html" title="Enlaces utiles para el CCNA" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2009/06/enlaces-utiles-para-el-ccna.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEYDQH8zeip7ImA9WxJXF0U.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-4173048262934174952</id><published>2009-06-11T23:49:00.000-05:00</published><updated>2009-06-11T23:49:31.182-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-06-11T23:49:31.182-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ccnp" /><category scheme="http://www.blogger.com/atom/ns#" term="ipv6" /><category scheme="http://www.blogger.com/atom/ns#" term="networking" /><title>Estudiando para el BSCI</title><content type="html">Aqui estare posteando los links que considere utiles para rendir el examen 640-901 (BSCI)&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Cisco Enterprise Architecture, IIN y SONA&lt;/b&gt;&lt;br /&gt;
http://www.cisco.com/web/about/ciscoitatwork/network_systems/cisco_sona_and_unified_comm_web.html&lt;br /&gt;
http://www.cisco.com/web/about/ciscoitatwork/downloads/ciscoitatwork/pdf/Cisco_IT_Case_Study_SONA.pdf&lt;br /&gt;
http://www.ciscopress.com/articles/article.asp?p=1073230&lt;br /&gt;
http://www.cisco.com/web/about/ciscoitatwork/downloads/ciscoitatwork/pdf/Cisco_IT_Case_Study_SONA_UC.pdf&lt;br /&gt;
http://www.cisco.com/en/US/solutions/collateral/ns340/ns629/sonaTOGAFwp072308.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;BGP&lt;/b&gt;&lt;br /&gt;
http://lacnic.net/documentos/lacnicxii/presentaciones/08_bgp.pdf&lt;br /&gt;
http://lacnic.net/documentos/lacnicxii/presentaciones/10_Seguridad_en_BGP.pdf&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;IPv6&lt;/b&gt;&lt;br /&gt;
http://www.6deploy.eu/e-learning/english/&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-4173048262934174952?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/mn157L1GY3V5cr8ulSikYfXYbD8/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mn157L1GY3V5cr8ulSikYfXYbD8/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/mn157L1GY3V5cr8ulSikYfXYbD8/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/mn157L1GY3V5cr8ulSikYfXYbD8/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/4IeaQc9T3wI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/4173048262934174952/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2009/06/estudiando-para-el-bsci.html#comment-form" title="0 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/4173048262934174952?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/4173048262934174952?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/4IeaQc9T3wI/estudiando-para-el-bsci.html" title="Estudiando para el BSCI" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2009/06/estudiando-para-el-bsci.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEMAQnk_fSp7ImA9WxVVEE8.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-8362426924677727974</id><published>2009-03-02T14:34:00.000-05:00</published><updated>2009-03-02T14:34:03.745-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-03-02T14:34:03.745-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="wireless" /><category scheme="http://www.blogger.com/atom/ns#" term="networking" /><title>DLT IEEE COMSOC PERÚ: Evolución de las Tecnologías Inalámbricas</title><content type="html">&lt;table border="1" bordercolor="#003399" cellpadding="0" height="92" style="border-collapse: collapse; width: 734px;"&gt;&lt;tbody&gt;
&lt;tr&gt;   &lt;td height="85" valign="middle" width="195"&gt;   &lt;div align="center"&gt;   &lt;img border="0" height="71" src="http://es.geocities.com/frecamagu/figuras/Logo_ComSoc.Official.Peru-color_200807_mini.jpg" width="200" /&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td bgcolor="#003399" bordercolor="#003399" height="85" width="322"&gt;   &lt;div align="center"&gt;&lt;span style="color: white;"&gt;&lt;span style="font-family: Arial;"&gt;&lt;strong&gt;SECCION    PERU DEL IEEE&lt;/strong&gt;&lt;/span&gt;&lt;span style="font-family: Arial; font-size: x-small;"&gt;&lt;b&gt;&lt;br /&gt;
&lt;/b&gt;&lt;/span&gt;&lt;strong&gt;   &lt;span style="font-family: Arial; font-size: 9pt;"&gt;The Institute Of Electrical    and Electronics Engineers Inc.&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;   &lt;span style="font-family: Arial; font-size: x-small;"&gt;CAPITULO DE COMUNICACIONES&lt;/span&gt;&lt;span style="font-family: Arial; font-size: 9pt;"&gt;   &lt;/span&gt;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td bordercolor="#003399" height="85" width="213"&gt;   &lt;div align="center"&gt;   &lt;img border="0" height="43" src="http://www.comsoc.org/images/MBblue.gif" width="137" /&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td colspan="3" height="208" valign="middle"&gt;   &lt;div align="center"&gt;   &lt;img align="left" border="0" height="205" src="http://es.geocities.com/frecamagu/figuras/Cabecera_Wireless.Tech.Evo.Conf_200902.jpg" width="725" /&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;table bordercolor="#003399" cellpadding="5" height="1344" style="border-left-style: solid; border-right-style: solid; border-width: 1px; width: 734px;"&gt;&lt;tbody&gt;
&lt;tr&gt;   &lt;td bgcolor="#ccffff" height="1058" valign="top" width="191"&gt;      &lt;div align="left"&gt;      &lt;strong&gt;&lt;span style="color: navy; font-family: verdana; font-size: x-small;"&gt;      Expositor&lt;/span&gt;&lt;/strong&gt;&lt;span style="color: navy; font-family: verdana; font-size: x-small;"&gt;&lt;strong&gt;: &lt;/strong&gt;&lt;/span&gt;      &lt;/div&gt;&lt;div align="center"&gt;   &lt;img border="0" height="234" src="http://es.geocities.com/frecamagu/figuras/Foto_DLT_Javan.Erfanian_20090202.jpg" width="203" /&gt;&lt;br /&gt;
&lt;b&gt;&lt;span style="font-family: Verdana; font-size: x-small;"&gt;Dr. &lt;/span&gt;&lt;/b&gt;   &lt;span style="font-family: Verdana; font-size: x-small;"&gt;&lt;b&gt;Javan Erfanian&lt;/b&gt;&lt;/span&gt;&lt;span style="color: #666666; font-family: Verdana; font-size: 8pt;"&gt;&lt;br /&gt;
&lt;/span&gt;&lt;span style="font-family: Verdana; font-size: 8pt;"&gt;   Bell Canadá &lt;br /&gt;
&lt;b&gt;Distinguished Lecturer IEEE Communications Society &lt;/b&gt; &lt;br /&gt;
&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify"&gt;      &lt;span style="font-family: Arial; font-size: x-small;"&gt;El doctor Javan Erfanian cuenta       con cerca de 20 años de experiencia en el campo de       investigación y aplicación en telecomunicaciones, con muchas       publicaciones y artículos. Realizó sus estudios en las       universidades de Calgary y Toronto en Canadá. &lt;br /&gt;
&lt;br /&gt;
Ha sido expositor distinguido en la universidad de Toronto,       dando diversos seminarios alrededor el mundo y organizando       diversas conferencias internacionales. Javan ha sido un       miembro y colaborador activo del IEEE Communications Society       por muchos años, teniendo como roles principales:       presidencia del capítulo de comunicaciones de Canadá (ComSoc       Canadá), autor y editor de " wireless technology book of       knowledge", expositor distinguido, asesor del concejo       industrial para la certificación WCET (Wireless       Communication Engineering Technologies), y receptor de       diversas premiaciones y reconocimientos.&lt;br /&gt;
&lt;br /&gt;
En su rol dentro de la industria de las comunicaciones       inalámbricas, Javan formula la dirección estratégica       trabajando con la comunidad global en los estándares,       investigación y visiones a futuro.&lt;/span&gt;&lt;span style="font-family: Verdana; font-size: xx-small;"&gt;&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td height="1340" rowspan="2" valign="top" width="515"&gt;                     &lt;div align="center"&gt;&lt;span style="color: #666666; font-family: verdana; font-size: x-small;"&gt;El Capítulo de Comunicaciones de la Sección Perú del IEEE y       la Facultad de Ingeniería Ingeniería de Telecomunicaciones - UTP,      tienen el agrado de invitarlo a la: &lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;span style="color: maroon; font-family: arial; font-size: medium;"&gt;      Conferencia Internacional sobre:&lt;br /&gt;
&lt;br /&gt;
&lt;/span&gt;&lt;span style="color: navy; font-family: Arial; font-size: small;"&gt;&lt;strong&gt;"EVOLUCIÓN DE LAS TECNOLOGÍAS INALÁMBRICAS"&lt;br /&gt;
&amp;nbsp;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center" style="margin-bottom: 0pt; margin-top: 0pt;"&gt;   &lt;img border="0" height="313" src="http://es.geocities.com/frecamagu/figuras/Wireless.Evol.Tech.jpg" width="369" /&gt;&lt;/div&gt;&lt;div align="center" style="margin-bottom: 0pt; margin-top: 0pt;"&gt;&lt;/div&gt;&lt;div align="left" style="margin-bottom: 0pt; margin-top: 0pt;"&gt;      &lt;strong&gt;&lt;span style="color: navy; font-family: verdana; font-size: x-small;"&gt;      Dirigido a&lt;/span&gt;&lt;/strong&gt;&lt;span style="color: navy; font-family: verdana; font-size: x-small;"&gt;&lt;strong&gt;: &lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="justify" style="margin-bottom: 0pt; margin-top: 0pt;"&gt;      &lt;span style="color: #003399; font-family: Verdana; font-size: x-small;"&gt;Docentes, profesionales,       estudiantes de postgrado y pregrado interesados en el       diseño, prospección y tecnologías relacionadas al       a las tecnologías inalámbricas. Igualmente, público en general interesado       en el tema de comunicaciones inalámbricas. &lt;br /&gt;
&lt;/span&gt;&lt;strong&gt;      &lt;span style="color: navy; font-family: verdana; font-size: x-small;"&gt;      &lt;br /&gt;
Resumen&lt;/span&gt;&lt;/strong&gt;&lt;span style="color: navy; font-family: verdana; font-size: x-small;"&gt;&lt;strong&gt;:       &lt;br /&gt;
&lt;/strong&gt;&lt;/span&gt;      &lt;span style="color: #003399; font-family: Verdana; font-size: x-small;"&gt;&lt;br /&gt;
En esta       presentación se discutirá la evolución de la tecnología       inalámbrica en todos sus niveles, delineación de los       servicios móviles, evolución de la red IP de core,       tecnologías de acceso basadas en radio para 3G y 4G,       requerimientos del espectro y alineamiento y finalmente       terminales de usuario. En este contexto, la presentación       cubrirá los estándares, tiempos de vida de las tecnologías y       actividades en la industria global. &lt;br /&gt;
Así también se revisarán aspectos de la tendencia de los       próximos 5-10 años, y los paradigmas e innovaciones de la       tecnología emergente y futura que sirven a la nueva sociedad       móvil. Con esta consideración, los requerimientos de       usuarios, la necesidad por una mejor experiencia y       eficiencia, así como las áreas claves de investigación son       bosquejadas.&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Programa:&lt;br /&gt;
&lt;br /&gt;
&lt;/b&gt;1.- &lt;u&gt;Presentación preliminar:&lt;/u&gt;&amp;nbsp; &lt;br /&gt;
Taller Wireless-Linux, ComSoc UNI y ComSoc UTP&lt;br /&gt;
Inicio: 4:30pm, demostración: 5:30 pm- 6:15 pm&lt;br /&gt;
&lt;br /&gt;
2.- &lt;u&gt;Conferencia central "Evolución de Tecnologías       Inalámbricas"&lt;/u&gt;&lt;br /&gt;
Registro: 6:30 pm &lt;/span&gt;&lt;/div&gt;&lt;div align="left" style="margin-bottom: 0pt; margin-top: 0pt;"&gt;   &lt;span style="color: #003399; font-family: Verdana; font-size: x-small;"&gt;Inicio: 7:00 pm , Fin:    10:00 pm.&lt;br /&gt;
Duración: 3 horas.&lt;/span&gt;&lt;/div&gt;&lt;div align="justify" style="margin-bottom: 0pt; margin-top: 0pt;"&gt;      &amp;nbsp;&lt;/div&gt;&lt;div align="center" style="margin-bottom: 0pt; margin-top: 0pt;"&gt;      &lt;span style="font-size: medium;"&gt;&lt;b&gt;&lt;span style="font-family: arial;"&gt;JUEVES 05 DE MARZO       DEL&lt;/span&gt;&lt;/b&gt;&lt;/span&gt;&lt;span style="color: black; font-family: arial; font-size: medium;"&gt;&lt;b&gt;       2009&lt;/b&gt;&lt;/span&gt;&lt;span style="color: black; font-family: arial; font-size: x-small;"&gt;&lt;strong&gt;&lt;br /&gt;
&amp;nbsp;&lt;/strong&gt;&lt;/span&gt;&lt;/div&gt;&lt;div align="center" style="margin-bottom: 0pt; margin-top: 0pt;"&gt;      &lt;b&gt;&lt;span style="color: black; font-family: arial; font-size: x-small;"&gt;INVERSIÓN:       (*)&lt;/span&gt;&lt;/b&gt;&lt;span style="color: black; font-family: arial; font-size: x-small;"&gt;&lt;b&gt;:&lt;br /&gt;
&amp;nbsp;&lt;/b&gt;&lt;/span&gt;&lt;/div&gt;&lt;table border="1" id="table2"&gt;&lt;tbody&gt;
&lt;tr&gt;        &lt;td bgcolor="#eae8ea" width="216"&gt;        &lt;div style="margin-bottom: 0pt; margin-top: 0pt;"&gt;        &lt;span style="font-family: arial; font-size: x-small;"&gt;&lt;b&gt;Miembros IEEE: &lt;br /&gt;
&lt;/b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;Estudiantes:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;         S/.&amp;nbsp;&amp;nbsp;&amp;nbsp; 10.00&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0pt; margin-top: 0pt;"&gt;        &lt;span style="font-family: arial; font-size: x-small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Profesionales:&amp;nbsp;&amp;nbsp; S/.&amp;nbsp;&amp;nbsp;&amp;nbsp;         40.00&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;        &lt;td bgcolor="#eae8ea"&gt;        &lt;div style="margin-bottom: 0pt; margin-top: 0pt;"&gt;        &lt;b&gt;&lt;span style="font-family: arial; font-size: x-small;"&gt;Público en general&lt;/span&gt;&lt;/b&gt;&lt;span style="font-family: arial; font-size: x-small;"&gt;&lt;b&gt;: &lt;br /&gt;
&lt;/b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;Estudiantes:&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;         S/.&amp;nbsp;&amp;nbsp;&amp;nbsp; 20.00&lt;/span&gt;&lt;/div&gt;&lt;div style="margin-bottom: 0pt; margin-top: 0pt;"&gt;        &lt;span style="font-family: arial; font-size: x-small;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;         Profesionales:&amp;nbsp;&amp;nbsp; S/.&amp;nbsp;&amp;nbsp;&amp;nbsp;         80.00&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;       &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;div align="left" style="margin-bottom: 0pt; margin-top: 0pt;"&gt;      &lt;span style="color: #003399; font-family: Verdana; font-size: x-small;"&gt;&lt;br /&gt;
&lt;/span&gt;      &lt;span style="font-family: Verdana; font-size: 9pt;"&gt;(*) Valores vigentes únicamente para reservas vía web       y pago en depósito (No incl IGV). &lt;b&gt;Incluye: certificación&lt;/b&gt;&lt;br /&gt;
(**) Los miembros IEEE deben estar debidamente acreditados       con carné y pre-registrados vía web&lt;/span&gt;&lt;span style="color: #003399; font-family: Verdana; font-size: x-small;"&gt;&lt;br /&gt;
&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;div align="center" style="margin-bottom: 0pt; margin-top: 0pt;"&gt;      &lt;b&gt;&lt;span style="font-family: Arial;"&gt;      &lt;a href="http://www.uni.comsoc-peru.org/charla/FichaInscripcion.php"&gt;CLICK AQUÍ PARA RESERVA GENERAL&lt;/a&gt;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div align="left" style="margin-bottom: 0pt; margin-top: 0pt;"&gt;      &lt;span style="font-family: Arial; font-size: x-small;"&gt;&lt;br /&gt;
&lt;b&gt;- Cuenta bancaria en soles : 193-16674338-0-64, BANCO DE       CRÉDITO DEL PERÚ &lt;br /&gt;
&lt;/b&gt;(&lt;b&gt;enviar el voucher por email a la dirección      &lt;a href="mailto:comnews@comsoc-peru.org"&gt;      comnews@comsoc-peru.org&lt;/a&gt; )&lt;/b&gt;&lt;br /&gt;
- Los pagos realizados en sitio estarán sujetos a       disponibilidad de vacantes.&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&lt;/span&gt;&lt;span style="color: red; font-family: Arial;"&gt;&lt;b&gt;CUPOS LIMITADOS!!&lt;/b&gt;&lt;/span&gt;&lt;b&gt;&lt;span style="font-family: Verdana; font-size: 9pt;"&gt;&lt;br /&gt;
&amp;nbsp;&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td bgcolor="#ccffff" height="305" valign="top" width="191"&gt;      &lt;div style="margin-bottom: 0pt; margin-top: 0pt;"&gt;      &lt;strong&gt;      &lt;span style="color: #003399; font-family: Verdana; font-size: x-small;"&gt;FECHA Y       LUGAR (*):&lt;/span&gt;&lt;span style="color: #003399; font-family: Verdana; font-size: 9pt;"&gt;&lt;br /&gt;
&lt;/span&gt;                               &lt;/strong&gt;      &lt;span style="font-family: Verdana; font-size: 9pt;"&gt;&lt;br /&gt;
Jueves 5 de       Marzo del 2009.    &lt;/span&gt;&lt;/div&gt;&lt;div align="left" style="margin-bottom: 0pt; margin-top: 0pt;"&gt;   &lt;span style="font-family: Verdana; font-size: 9pt;"&gt;   &lt;br /&gt;
&lt;b&gt;Auditorio    Elizabeth Gallegos&lt;br /&gt;
&lt;br /&gt;
&lt;/b&gt; &lt;/span&gt;&lt;b&gt;&lt;span style="font-family: Verdana; font-size: 10pt;"&gt;Universidad Tecnológica del Perú    (UTP)&lt;/span&gt;&lt;/b&gt;&lt;/div&gt;&lt;div align="left" style="margin-bottom: 0pt; margin-top: 0pt;"&gt;   &lt;span style="font-family: Verdana; font-size: 9pt;"&gt;Esq. Av. Pethit Tours vs Av    28 de Julio (&lt;a href="http://es.geocities.com/frecamagu/figuras/Mapa_UTP-MALI.jpg"&gt;ver    mapa&lt;/a&gt;)&lt;/span&gt;&lt;/div&gt;&lt;div align="left" style="margin-bottom: 0pt; margin-top: 0pt;"&gt;   &amp;nbsp;&lt;/div&gt;&lt;div align="left" style="margin-bottom: 0pt; margin-top: 0pt;"&gt;   &lt;span style="font-family: Verdana; font-size: 9pt;"&gt;&lt;br /&gt;
&lt;br /&gt;
(*) Estacionamientos cercanos disponibles en el MALI.&amp;nbsp; (&lt;a href="http://es.geocities.com/frecamagu/figuras/Mapa_UTP-MALI.jpg"&gt;ver    mapa&lt;/a&gt;)&lt;br /&gt;
&lt;br /&gt;
&amp;nbsp;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;table cellpadding="0" cellspacing="0" height="188" style="border: 1px solid rgb(0, 51, 153); width: 734px;"&gt;&lt;tbody&gt;
&lt;tr&gt;   &lt;td bordercolordark="#003399" bordercolorlight="#003399" height="19" style="border-bottom-style: none; border-bottom-width: 1px;" width="197"&gt;   &lt;strong&gt;&lt;span style="font-family: Verdana; font-size: x-small;"&gt;&amp;nbsp; Organizan&lt;/span&gt;&lt;/strong&gt;&lt;/td&gt;   &lt;td bordercolordark="#003399" bordercolorlight="#003399" height="19" style="border-bottom-style: none; border-bottom-width: 1px;" width="293"&gt;   &amp;nbsp;&lt;/td&gt;   &lt;td bordercolordark="#003399" bordercolorlight="#003399" height="19" style="border-bottom-style: none; border-bottom-width: 1px;" width="242"&gt;   &amp;nbsp;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td bordercolordark="#003399" bordercolorlight="#003399" height="91" style="border-bottom-style: solid; border-bottom-width: 1px;" width="197"&gt;   &lt;div align="center"&gt;                               &lt;span style="color: #666666; font-family: Verdana; font-size: x-small;"&gt;   &lt;img height="55" src="http://es.geocities.com/frecamagu/figuras/Logo_UTP_1.jpg" width="139" /&gt;&lt;/span&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td bordercolordark="#003399" bordercolorlight="#003399" height="91" style="border-bottom-style: solid; border-bottom-width: 1px;" width="293"&gt;   &lt;div align="center"&gt;   &lt;a href="http://www.comsoc-peru.org/"&gt;   &lt;img border="0" src="http://es.geocities.com/frecamagu/figuras/Logo_ComSoc.Official.Peru-color_200807_mini.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;   &lt;td bordercolordark="#003399" bordercolorlight="#003399" height="91" style="border-bottom-style: solid; border-bottom-width: 1px;" width="242"&gt;   &lt;div align="center"&gt;   &lt;a href="http://www.comsoc-peru.org/"&gt;   &lt;img border="0" height="83" src="http://es.geocities.com/frecamagu/figuras/Logo._FITT-UTP.jpg" width="198" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td bordercolordark="#003399" bordercolorlight="#003399" colspan="3" height="55" style="border-bottom-style: solid; border-bottom-width: 1px;"&gt;   &lt;div align="center"&gt;&lt;span style="color: #003399; font-family: Arial; font-size: x-small;"&gt;Av. Republica de Chile 284 Of. 204 Jesús Maria &lt;br /&gt;
Teléfono: 3327776. E-mail:    &lt;a href="mailto:comnews@comsoc-peru.org"&gt;comnews@comsoc-peru.org&lt;/a&gt;&lt;br /&gt;
Visite nuestra página Web:   &lt;a href="http://www.comsoc-peru.org/"&gt;http://www.comsoc-peru.org&lt;/a&gt; &lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;tr&gt;   &lt;td colspan="3" height="21" style="border-top-style: solid; border-top-width: 1px;" valign="middle"&gt;   &lt;div align="center"&gt;&lt;span style="font-family: Arial; font-size: xx-small;"&gt;©  &lt;a href="http://www.ieee.org/about/documentation/copyright/"&gt;Copyright&lt;/a&gt; 2007, IEEE.  &lt;a href="http://www.ieee.org/about/documentation/copyright/legal.htm"&gt;Términos &amp;amp; Condiciones&lt;/a&gt; -  &lt;a href="http://www.ieee.org/about/documentation/copyright/privacy.htm"&gt;Privacidad &amp;amp;  Seguridad&lt;/a&gt; &lt;/span&gt;&lt;/div&gt;&lt;/td&gt;  &lt;/tr&gt;
&lt;/tbody&gt;&lt;/table&gt;&lt;span style="color: #999999; font-family: verdana; font-size: xx-small;"&gt;Por favor comparta esta información reenviando este correo a sus contactos.       Si &lt;strong&gt;no desea&lt;/strong&gt; recibir nuevamente esta información &lt;br /&gt;
escribir &lt;strong&gt;REMOVER&lt;/strong&gt; respondiendo el mensaje a &lt;a href="mailto:comnews@comsoc-peru.org"&gt;comnews@comsoc-peru.org&lt;/a&gt; &lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-8362426924677727974?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/_3AwXnTGU1WuXoS8JHcSWZ28JIg/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_3AwXnTGU1WuXoS8JHcSWZ28JIg/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/_3AwXnTGU1WuXoS8JHcSWZ28JIg/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/_3AwXnTGU1WuXoS8JHcSWZ28JIg/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/Iri3lfPV2xg" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/8362426924677727974/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2009/03/dlt-ieee-comsoc-peru-evolucion-de-las.html#comment-form" title="0 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/8362426924677727974?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/8362426924677727974?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/Iri3lfPV2xg/dlt-ieee-comsoc-peru-evolucion-de-las.html" title="DLT IEEE COMSOC PERÚ: Evolución de las Tecnologías Inalámbricas" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2009/03/dlt-ieee-comsoc-peru-evolucion-de-las.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CEAHSX85eSp7ImA9WxVREkQ.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-5335613781756580825</id><published>2009-01-18T10:24:00.001-05:00</published><updated>2009-01-18T10:32:18.121-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-01-18T10:32:18.121-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ccnp" /><category scheme="http://www.blogger.com/atom/ns#" term="networking" /><title>Configuracion de Cisco 878 para acceso ADSL de Telefonica</title><content type="html">Por si le es util a alguien, aqui les pego la configuracion basica de un router cisco 878, configurado para reemplazar el router adsl que normalmente entrega telefonica.&lt;br /&gt;
La configuracion de adsl es un tema que viene en los examenes para obtener la certificacion CCNP(en el ISCW), asi que me e divertido bastante aprendiendo a hacerlo con la documentacion, google y prueba y error.&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;NOC#sh run&lt;br /&gt;
Building configuration...&lt;br /&gt;
&lt;br /&gt;
Current configuration : 1955 bytes&lt;br /&gt;
!&lt;br /&gt;
version 12.4&lt;br /&gt;
no service pad&lt;br /&gt;
service timestamps debug datetime msec&lt;br /&gt;
service timestamps log datetime msec&lt;br /&gt;
service password-encryption&lt;br /&gt;
!&lt;br /&gt;
hostname NOC&lt;br /&gt;
!&lt;br /&gt;
boot-start-marker&lt;br /&gt;
boot-end-marker&lt;br /&gt;
!&lt;br /&gt;
enable password 7 14141B180F0B&lt;br /&gt;
!&lt;br /&gt;
no aaa new-model&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
ip cef&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
no ip dhcp use vrf connected&lt;br /&gt;
ip dhcp excluded-address 192.168.1.1&lt;br /&gt;
!&lt;br /&gt;
ip dhcp pool MyPool&lt;br /&gt;
   network 192.168.1.0 255.255.255.0&lt;br /&gt;
   default-router 192.168.1.1&lt;br /&gt;
   dns-server 200.48.225.130 200.48.225.146&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
ip name-server 200.48.225.130&lt;br /&gt;
ip name-server 200.48.225.146&lt;br /&gt;
ip auth-proxy max-nodata-conns 3&lt;br /&gt;
ip admission max-nodata-conns 3&lt;br /&gt;
!&lt;br /&gt;
multilink bundle-name authenticated&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
archive&lt;br /&gt;
 log config&lt;br /&gt;
  hidekeys&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
interface ATM0&lt;br /&gt;
 no ip address&lt;br /&gt;
 no atm ilmi-keepalive&lt;br /&gt;
 pvc 8/60&lt;br /&gt;
  encapsulation aal5snap&lt;br /&gt;
  pppoe-client dial-pool-number 1&lt;br /&gt;
 !&lt;br /&gt;
 dsl operating-mode auto&lt;br /&gt;
!&lt;br /&gt;
interface FastEthernet0&lt;br /&gt;
!&lt;br /&gt;
interface FastEthernet1&lt;br /&gt;
!&lt;br /&gt;
interface FastEthernet2&lt;br /&gt;
!&lt;br /&gt;
interface FastEthernet3&lt;br /&gt;
!&lt;br /&gt;
interface Vlan1&lt;br /&gt;
 ip address 192.168.1.1 255.255.255.0&lt;br /&gt;
 ip nat inside&lt;br /&gt;
 ip virtual-reassembly&lt;br /&gt;
 ip tcp adjust-mss 1452&lt;br /&gt;
!&lt;br /&gt;
interface Dialer0&lt;br /&gt;
 ip address negotiated&lt;br /&gt;
 ip mtu 1492&lt;br /&gt;
 ip nat outside&lt;br /&gt;
 ip virtual-reassembly&lt;br /&gt;
 encapsulation ppp&lt;br /&gt;
 no ip mroute-cache&lt;br /&gt;
 dialer pool 1&lt;br /&gt;
 dialer remote-name MyISP&lt;br /&gt;
 dialer-group 1&lt;br /&gt;
 no cdp enable&lt;br /&gt;
 ppp authentication chap pap callin&lt;br /&gt;
 ppp chap hostname myuser@speedy&lt;br /&gt;
 ppp chap password 7 0294D7751A1EDC1A&lt;br /&gt;
 ppp pap sent-username myuser@speedy password 7 0294D7751A1EDC1A&lt;br /&gt;
 ppp ipcp dns request&lt;br /&gt;
 ppp ipcp route default&lt;br /&gt;
 ppp ipcp address accept&lt;br /&gt;
 hold-queue 224 in&lt;br /&gt;
!&lt;br /&gt;
ip forward-protocol nd&lt;br /&gt;
ip route 0.0.0.0 0.0.0.0 Dialer0&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
no ip http server&lt;br /&gt;
no ip http secure-server&lt;br /&gt;
ip nat inside source list 101 interface Dialer0 overload&lt;br /&gt;
!&lt;br /&gt;
access-list 23 permit 192.168.1.0 0.0.0.255&lt;br /&gt;
access-list 101 permit ip 192.168.1.0 0.0.0.255 any&lt;br /&gt;
no cdp run&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
control-plane&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
line con 0&lt;br /&gt;
 no modem enable&lt;br /&gt;
line aux 0&lt;br /&gt;
line vty 0 4&lt;br /&gt;
 access-class 23 in&lt;br /&gt;
 password 7 045802150C2E&lt;br /&gt;
 login&lt;br /&gt;
!&lt;br /&gt;
scheduler max-task-time 5000&lt;br /&gt;
end&lt;br /&gt;
&lt;br /&gt;
&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-5335613781756580825?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/9UFmUIAM7qIzLqWv_pL9EtuN9DE/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9UFmUIAM7qIzLqWv_pL9EtuN9DE/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/9UFmUIAM7qIzLqWv_pL9EtuN9DE/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/9UFmUIAM7qIzLqWv_pL9EtuN9DE/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/PPnVbOlDGXA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/5335613781756580825/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2009/01/configuracion-de-cisco-878-para-acceso.html#comment-form" title="10 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/5335613781756580825?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/5335613781756580825?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/PPnVbOlDGXA/configuracion-de-cisco-878-para-acceso.html" title="Configuracion de Cisco 878 para acceso ADSL de Telefonica" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>10</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2009/01/configuracion-de-cisco-878-para-acceso.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0MERn8yfSp7ImA9WxVTF04.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-2556634458324836372</id><published>2008-12-31T10:42:00.001-05:00</published><updated>2008-12-31T11:03:27.195-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-12-31T11:03:27.195-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="seguridad" /><title>Seguridad en 2008 y predicciones para el 2009</title><content type="html">Resumen de Seguridad 2008&lt;br /&gt;
&lt;a href="http://www.hispasec.com/unaaldia/3719/resumen-seguridad"&gt;http://www.hispasec.com/unaaldia/3719/resumen-seguridad&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://www.hispasec.com/unaaldia/3720/resumen-seguridad"&gt;http://www.hispasec.com/unaaldia/3720/resumen-seguridad&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Security in 2009&lt;br /&gt;
&lt;a href="http://www.eweek.com/c/a/Security/Security-In-2009/"&gt;http://www.eweek.com/c/a/Security/Security-In-2009/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Looking ahead at security trends for 2009&lt;br /&gt;
&lt;a href="http://news.cnet.com/8301-1009_3-10128133-83.html"&gt;http://news.cnet.com/8301-1009_3-10128133-83.html&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Where the Jobs Are: 5 Hot Career Tips for 2009&lt;br /&gt;
&lt;a href="http://www.bankinfosecurity.com/articles.php?art_id=1111&amp;amp;opg=1"&gt;http://www.bankinfosecurity.com/articles.php?art_id=1111&amp;amp;opg=1&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
GUIDE TO INFORMATION SECURITY TESTING AND ASSESSMENT&lt;br /&gt;
&lt;a href="http://csrc.nist.gov/publications/nistbul/Dec2008_Testing-Assessment-SP800-115.pdf"&gt;http://csrc.nist.gov/publications/nistbul/Dec2008_Testing-Assessment-SP800-115.pdf&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-2556634458324836372?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ONj8koNTQHZdHyWlAWerceRqx78/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ONj8koNTQHZdHyWlAWerceRqx78/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ONj8koNTQHZdHyWlAWerceRqx78/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ONj8koNTQHZdHyWlAWerceRqx78/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/8xRyJL0l2JY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/2556634458324836372/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/12/seguridad-en-2008-y-predicciones-para.html#comment-form" title="0 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/2556634458324836372?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/2556634458324836372?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/8xRyJL0l2JY/seguridad-en-2008-y-predicciones-para.html" title="Seguridad en 2008 y predicciones para el 2009" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/12/seguridad-en-2008-y-predicciones-para.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUYNRXozfyp7ImA9WxRbF0Q.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-1665458751127673901</id><published>2008-12-08T22:13:00.003-05:00</published><updated>2008-12-08T22:26:34.487-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-12-08T22:26:34.487-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ocio" /><category scheme="http://www.blogger.com/atom/ns#" term="UNI" /><title>Discurso Steve Jobs en Standford 2005</title><content type="html">Discurso de Steve Jobs en la Universidad de Standford, es del año 2005. Está en ingles pero subtitulado.&lt;br /&gt;
&lt;br /&gt;
&lt;embed allowfullscreen="true" allowscriptaccess="always" id="VideoPlayback" src="http://video.google.com/googleplayer.swf?docid=3014637678488153340&amp;amp;hl=es&amp;amp;fs=true" style="height: 326px; width: 400px;" type="application/x-shockwave-flash" &gt;&lt;/embed&gt; &lt;br /&gt;
&lt;br /&gt;
Esta es la transcripcion.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;&lt;div style="text-align: justify;"&gt;Tengo el honor de estar hoy aquí presente en la ceremonia de graduación de una de las más prestigiosas universidades en el mundo. A decir verdad, esto es lo más cerca que estuve jamás de una graduación universitaria. Hoy deseo contarles tres relatos acerca de mi vida. Eso es todo. Nada del otro mundo. Simplemente tres relatos.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br/&gt;&lt;br /&gt;
El primer relato es acerca de unir los distintos puntos.&lt;/div&gt;&lt;br/&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;Abandoné los estudios en Reed College después de los primeros 6 meses, pero luego permanecí como oyente por otros 18 meses aproximadamente antes de dejarlos completamente. Así que, ¿por qué abandoné?&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Todo comenzó antes de que yo naciera. Mi madre biológica era una joven soltera, graduada universitaria, que decidió colocarme en adopción. Creía enérgicamente que debía ser adoptado por universitarios graduados, de modo tal que todo se organizó para que fuese adoptado al nacer por un abogado y su esposa. Excepto que cuando emergí ellos decidieron a último momento que deseaban una niña. Así que mis padres, que estaban en una lista de espera, recibieron una llamada en el medio de la noche que decía: “Tenemos un varoncito inesperado, ¿lo quieren?” Dijeron: “Por supuesto.” Mi madre biológica averiguó más tarde que mi madre adoptiva nunca se había graduado de la universidad y que mi padre nunca había terminado el colegio secundario. Se rehusó a firmar los papeles definitivos de adopción. Solo se avino a hacerlo unos meses después, cuando mis padres le prometieron que algún día yo iría a la universidad.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Y 17 años más tarde fui a la universidad. Pero ingenuamente elegí una universidad que era casi tan cara como Stanford, y todos los ahorros de mis padres de clase trabajadora se estaban destinando a mis aranceles universitarios. Luego de seis meses, no le encontraba sentido a esto. No tenía idea de lo que quería hacer con mi vida y tampoco de qué manera la universidad me ayudaría a resolverlo. Y aquí me encontraba desperdiciando todo el dinero que mis padres habían ahorrado durante toda su vida. Así que decidí abandonar los estudios y confiar que todo se arreglaría eventualmente. Era una decisión bastante temerosa en ese momento, pero a la distancia fue una de las mejores decisiones que pude haber tomado. En el momento en que abandonara la universidad podía dejar de asistir a las clases que no me interesaban, y sí participar como oyente de aquellas que parecían interesantes.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;No todo fue romántico. No tenía un dormitorio, así que dormía en el piso en las habitaciones de amigos, devolvía las botellas de gaseosa para obtener los 5 centavos de depósito para comprar comida, y caminaba las 7 millas a través de la ciudad cada domingo por la noche para recibir una buena comida una vez por semana en el templo Hare Krishna. Me encantaba. Y mucho con lo que tropecé más adelante como consecuencia de hacerle caso a mi curiosidad e intuición resultó no tener precio después.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Déjenme darles un ejemplo: Reed College en ese momento ofrecía quizás el mejor aprendizaje de caligrafía del país. En toda la ciudad universitaria cada cartel, cada etiqueta en cada cajón, era caligrafiado a mano de una manera bellísima. Dado que había abandonado los estudios y no tenía que asistir a las clases normales, decidí tomar un curso de caligrafía para aprender cómo se hace eso. Aprendí acerca de los tipos de letra con trazos de pie, cómo variar la cantidad de espacio entre diferentes combinaciones de letras, todo aquello que hace que la admirable tipografía sea grandiosa. Era hermoso, histórico, artísticamente sutil de un modo que la ciencia no puede captar, y yo lo consideraba fascinante.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Nada de esto albergaba siquiera la mínima esperanza de alguna aplicación práctica en mi vida. Pero diez años más tarde, cuando estábamos diseñando la primera computadora Macintosh, todo volvió a mi mente. Y lo volcamos todo en la Mac. Era la primera computadora con bellísima tipografía. De no haber asistido a ese único curso universitario, la Mac no hubiera tenido nunca tipos de letras múltiples o fuentes espaciadas proporcionalmente. Y dado que Windows simplemente copió a Mac, es posible que ninguna computadora personal las hubiera tenido. De haber proseguido mis estudios universitarios, no hubiera asistido a ese curso de caligrafía, y las computadoras personales no tendrían la maravillosa tipografía que tienen.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Por supuesto que era imposible haber unido los diferentes puntos mirando hacia el futuro cuando estaba en la universidad. Pero fue muy, muy claro al mirar para atrás diez años más tarde.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Nuevamente, no se pueden unir los distintos puntos mirando para adelante; se pueden unir únicamente mirando hacia atrás. Así que deben confiar que de alguna manera los puntos se unirán en el futuro. Deben confiar en algo sus agallas, el destino, la vida, el karma, lo que sea. Este enfoque no me ha traicionado nunca, e hizo toda la diferencia en mi vida.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;br/&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;Mi segundo relato es acerca del amor y la pérdida.&lt;/div&gt;&lt;br/&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;Yo tuve suerte – descubrí lo que realmente quería hacer temprano en mi vida. Woz y yo comenzamos con Apple en el garaje de mis padres cuando tenía 20 años. Trabajamos duro, y en 10 años Apple creció de ser una empresa compuesta por nosotros dos en un garaje a una empresa de $2 mil millones con más de 4000 empleados. Habíamos lanzado nuestra creación más refinada – Macintosh – un año antes, y yo acababa de cumplir 30. Y después me despidieron. ¿Cómo se puede ser despedido de la empresa que uno inició?&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Pués, a medida que Apple crecía contratamos a alguien que yo pensaba que era sumamente talentoso para dirigir la empresa conmigo, y durante el primer año o más las cosas anduvieron bien. Pero luego nuestras visiones acerca del futuro comenzaron a diferir y eventualmente tuvimos una disputa.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Al tenerla, nuestro Directorio lo apoyó a él. Así que a los 30 estuve afuera. Y bien afuera. Aquello en lo que me había concentrado durante toda mi vida adulta había desaparecido, y fue devastador.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Realmente no supe qué hacer durante unos pocos meses. Sentía que había decepcionado a la anterior generación de emprendedores – que había soltado la batuta mientras que me la estaban pasando. Me reuní con David Packard y Bob Noyce y traté de disculparme por haber echado a perder las cosas de tal manera. Yo representaba un fracaso público muy importante, y hasta pensé en retirarme del valle.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Pero poco a poco empecé a darme cuenta que todavía amaba lo que estaba haciendo. El curso de los acontecimientos en Apple no había cambiado eso para nada. Había sido rechazado, pero aún amaba lo mío. Así que decidí empezar de nuevo.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;No me dí cuenta entonces, pero resultó que el hecho de haber sido despedido de Apple fue lo mejor que me pudo haber pasado. El peso del éxito fue reemplazado por la facilidad de convertirme en un principiante una vez más, con menor certidumbre acerca de todo. Me dio rienda suelta para ingresar en uno de los períodos más creativos de mi vida.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Durante los próximos cinco años, inicié una empresa llamada NeXT, otra empresa llamada Pixar y, me enamoré de una maravillosa mujer que se convertiría en mi esposa. Pixar llegó a crear el primer largometraje animado por computadora en el mundo, Toy Story, y en la actualidad es el estudio de animación más exitoso a nivel mundial. En un giro destacado de acontecimientos, Apple adquirió NeXT, volví a Apple, y la tecnología que desarrollamos en NeXT está en lo más recóndito del renacimiento actual de Apple. Y tenemos, Laurene y yo, una maravillosa familia juntos. Estoy seguro de que nada de esto hubiera pasado de no haber sido despedido de Apple. Fue un trago amargo, pero creo que el paciente lo necesitaba.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;A veces la vida golpea en la cabeza con un ladrillo. No pierdan la fe. Estoy convencido de que lo único que me mantenía en curso era que amaba lo que hacía. Deben encontrar lo que realmente les apasiona. Y esto es tan cierto respecto del trabajo como lo es respecto del amor. El trabajo les llenará una parte importante de sus vidas, y la única manera de sentirse realmente satisfecho es realizar lo que consideran un gran trabajo. Y el único modo de realizar un gran trabajo es amar lo que uno hace. Si no lo han encontrado aún, sigan buscando. No se conformen. Así como sucede con todos los asuntos del corazón, sabrán cuando lo hayan encontrado. Y, así como sucede en cualquier gran relación, mejora más y más a medida que transcurren los años. Así que sigan buscando hasta que lo encuentren. No se conformen.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br/&gt;&lt;br /&gt;
Mi tercer relato es acerca de la muerte.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;br/&gt;&lt;br /&gt;
Cuando tenía 17, leí una cita que decía más o menos lo siguiente: “Si vives cada día como si fuera el último, algún día seguramente tendrás razón.” Me impresionó, y desde entonces, por los últimos 33 años, he mirado en el espejo cada mañana y me he preguntado: “¿Si hoy fuese el último día de mi vida, querría hacer lo que estoy por hacer hoy?” Y cada vez que la respuesta ha sido “No” durante demasiados días seguidos, sé que debo cambiar algo.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;El recordar que estaré muerto pronto es la herramienta más importante que he encontrado para ayudarme a tomar las grandes decisiones en la vida. Porque casi todo – todas las expectativas externas, todo el orgullo, todo temor a la vergüenza o al fracaso – todas estas cosas simplemente desaparecen al enfrentar la muerte, dejando sólo lo que es verdaderamente importante. Recordar que uno va a morir es la mejor manera que conozco para evitar la trampa de pensar que hay algo por perder. Ya se está indefenso. No hay razón alguna para no seguir los consejos del corazón.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Me diagnosticaron un cáncer hace un año aproximadamente. Me practicaron una tomografía computada a las 7:30 de la mañana, y claramente mostraba un tumor en mi páncreas. Yo ni sabía lo que era el páncreas. Los médicos me dijeron que éste era seguramente un tipo de cáncer incurable, y que no llegaría a vivir más de tres a seis meses. Mi médico me aconsejó ir a casa y arreglar mis asuntos, que es el código médico para prepararse para morir.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Quiere decir que hay que tratar de explicarles a los hijos todo aquello que pensaba que iba a tener diez años para contarles, en pocos meses. Significa asegurarse de tener todo puntualmente arreglado de modo que sea lo más fácil posible para la familia. Significa empezar a decir adiós.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Pasé el día entero con ese diagnóstico. Luego por la tarde me realizaron una biopsia, en la que introdujeron un endoscopio por la garganta, a través del estómago y hasta los intestinos, pusieron una aguja en mi páncreas y retiraron algunas pocas células del tumor. Estaba sedado, pero mi esposa, que estaba allí, me dijo que cuando vieron las células bajo el microscopio los médicos comenzaron a gritar porque resultó que era una forma muy rara de cáncer pancréatico que se cura mediante cirugía. Me realizaron la cirugía y estoy bien ahora.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Fue lo más cerca que me encontré de la muerte, y espero que sea lo más cerca que me encuentre por varias décadas. Habiendo pasado esto, les puedo decir lo siguiente con un poco más de seguridad que cuando la muerte era un concepto útil pero puramente intelectual: Nadie quiere morir. Aún la gente que quiere ir al cielo no quiere morir para llegar allí. Y sin embargo la muerte es el destino que todos compartimos. Nadie ha logrado escapar. Y así es como debiera ser, porque la muerte es muy probablemente la única mejor invención de la vida. Es el agente de cambio de la Vida. Retira del camino lo viejo para dar paso a lo nuevo. En este momento lo nuevo son ustedes, pero algún día no demasiado lejano, gradualmente se convertirán en lo viejo y se los sacará del camino. Lamento ser tan dramático, pero es realmente cierto.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Su tiempo es limitado, así que no lo malgasten viviendo la vida de otro. No se dejen atrapar por el dogma – que implica vivir con los resultados de las creencias de otros. No permitan que el ruido de otras opiniones ahogue vuestra voz interior. Y lo que es más importante, tengan el coraje de seguir a sus corazones e intución. De algún modo ellos ya saben lo que ustedes realmente quieren llegar a ser.Todo lo demás es secundario.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Cuando era joven, existía una publicación maravillosa llamada The Whole Earth Catalog, que era una de las biblias de mi generación. La había creado un sujeto llamado Steward Brand no demasiado lejos de aquí en Menlo Park, y le transmitió su toque poético. Esto sucedía en los últimos años de la década de 1960, con anterioridad a la publicación mediante computadoras personales y de escritorio, así que todo se llevaba a cabo con máquinas de escribir, tijeras, y cámaras polaroid. Era una clase de Google en edición rústica, 35 años antes de la aparición de Google: era idealista, y desbordante de herramientas prolijas e ideas importantes. Stewart y su equipo publicaron varias ediciones de The Whole Earth Catalog, y luego cuando había cumplido su ciclo, publicaron una edición final.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Esto sucedía a mediados de la década de 1970, y yo tenía la edad de ustedes. En la tapa de la edición final había una fotografía de un camino rural a primeras horas de la mañana, del tipo de ruta que ustedes caminarían si fueran tan aventureros. Debajo de la foto aparecían las siguientes palabras: “Si no se tiene avidez por el conocimiento, no se conocerá el éxito”. Era su mensaje de despedida al anunciar el fin de la publicación.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Si no se tiene avidez por el conocimiento, no se conocerá el éxito. Y siempre he deseado eso para mí. Y ahora, que ustedes se gradúan para empezar de cero, deseo eso para ustedes&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;br/&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;Si no se tiene avidez por el conocimiento, no se conocerá el éxito.&lt;/div&gt;&lt;div style="text-align: justify;"&gt;” (Steve Jobs) &lt;/div&gt;&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-1665458751127673901?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/K9W2CFYvVz0RvlZ6sJ5TD_ecbKo/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/K9W2CFYvVz0RvlZ6sJ5TD_ecbKo/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/K9W2CFYvVz0RvlZ6sJ5TD_ecbKo/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/K9W2CFYvVz0RvlZ6sJ5TD_ecbKo/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/0YEIfa8dFNw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/1665458751127673901/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/12/discurso-steve-jobs-en-standford-2005.html#comment-form" title="0 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/1665458751127673901?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/1665458751127673901?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/0YEIfa8dFNw/discurso-steve-jobs-en-standford-2005.html" title="Discurso Steve Jobs en Standford 2005" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/12/discurso-steve-jobs-en-standford-2005.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A04EQnYzcSp7ImA9WxRbEEg.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-1588802443749119268</id><published>2008-11-30T10:39:00.000-05:00</published><updated>2008-11-30T10:45:03.889-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-11-30T10:45:03.889-05:00</app:edited><title>Escribiendo una presentacion con latex beamer</title><content type="html">Para crear la presentacion usé como entorno de desarrollo a Kile, un editor de latex que se incluye en Kde, estuve usando lynx pero kile me pareció mas flexible.&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://christian.quispe.googlepages.com/expo_comsoc.pdf"&gt;Aqui&lt;/a&gt; les dejo el enlace a una presentacion hecha usando latex-beamer y &lt;a href="http://christian.quispe.googlepages.com/expo_comsoc_srclatex.bz2"&gt;aqui&lt;/a&gt; el codigo latex.&lt;br /&gt;
&lt;a href="http://christian.quispe.googlepages.com/expo_comsoc.pdf"&gt;archivo pdf&lt;/a&gt;&lt;br /&gt;
&lt;a href="http://christian.quispe.googlepages.com/expo_comsoc_srclatex.bz2"&gt;codigo latex con las imagenes&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Este es el codigo fuente:&lt;br /&gt;
&lt;pre&gt;&lt;span style="color: maroon;"&gt;\documentclass&lt;/span&gt;&lt;span style="color: black;"&gt;[12pt,t]{beamer}&lt;/span&gt;
&lt;span style="color: grey; font-style: italic;"&gt;%CambridgeUS,Madrid,AnnArbor,Rochester&lt;/span&gt;
&lt;span style="color: grey; font-style: italic;"&gt;%usar \' para tildes y \~ para la eñe, por la laptop teclado ingles :(&lt;/span&gt;
&lt;span style="color: maroon;"&gt;\usetheme&lt;/span&gt;&lt;span style="color: black;"&gt;{CambridgeUS}&lt;/span&gt;
&lt;span style="color: maroon;"&gt;\usepackage&lt;/span&gt;&lt;span style="color: black;"&gt;[spanish]{babel}&lt;/span&gt;
&lt;span style="color: maroon;"&gt;\usepackage&lt;/span&gt;&lt;span style="color: black;"&gt;[utf8]{inputenc}&lt;/span&gt;
&lt;span style="color: maroon;"&gt;\usepackage&lt;/span&gt;&lt;span style="color: black;"&gt;[T1]{fontenc}&lt;/span&gt;
&lt;span style="color: maroon;"&gt;\usepackage&lt;/span&gt;&lt;span style="color: black;"&gt;{lmodern}&lt;/span&gt;
&lt;span style="color: maroon;"&gt;\usepackage&lt;/span&gt;&lt;span style="color: black;"&gt;{graphicx}&lt;/span&gt;

&lt;span style="color: grey; font-style: italic;"&gt;%&lt;/span&gt;
&lt;span style="color: grey; font-style: italic;"&gt;%Incidir seguridad y tecnologías inalámbricas, &lt;/span&gt;
&lt;span style="color: grey; font-style: italic;"&gt;%dejar preguntas para voip linux&lt;/span&gt;
&lt;span style="color: grey; font-style: italic;"&gt;%&lt;/span&gt;

&lt;span style="color: maroon;"&gt;\title&lt;/span&gt;&lt;span style="color: black;"&gt;[II Charla Telecomunicaciones]{Software Libre aplicada en el Campo de las Telecomunicaciones}&lt;/span&gt;
&lt;span style="color: maroon;"&gt;\subtitle&lt;/span&gt;&lt;span style="color: black;"&gt;{II Charlas de Telecomunicaciones ComSoc-UNI}&lt;/span&gt;
&lt;span style="color: maroon;"&gt;\author&lt;/span&gt;&lt;span style="color: black;"&gt;[Christian Quispe]{Christian Quispe Quispe &lt;/span&gt;&lt;span style="color: maroon;"&gt;\\&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\texttt&lt;/span&gt;&lt;span style="color: black;"&gt;{ christian.quispe@ieee.org}}&lt;/span&gt;
&lt;span style="color: maroon;"&gt;\institute&lt;/span&gt;&lt;span style="color: black;"&gt;[UNI]{Universidad Nacional de Ingeniería}&lt;/span&gt;
&lt;span style="color: maroon;"&gt;\date&lt;/span&gt;&lt;span style="color: black;"&gt;{29 de Noviembre del 2008}&lt;/span&gt;

&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;document&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: maroon;"&gt;\pgfdeclareimage&lt;/span&gt;&lt;span style="color: black;"&gt;[width=180pt,height=20pt]{test}{images/header.jpg}&lt;/span&gt;
&lt;span style="color: maroon;"&gt;\logo&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: maroon;"&gt;\pgfuseimage&lt;/span&gt;&lt;span style="color: black;"&gt;{test}}&lt;/span&gt;

&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;        &lt;/span&gt;&lt;span style="color: maroon;"&gt;\titlepage&lt;/span&gt;
&lt;span style="color: black;"&gt;        &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\includegraphics[width=45pt,height=50pt]{images/logo_debian.png}&lt;/span&gt;
&lt;span style="color: black;"&gt;        &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{figure}&lt;/span&gt;
&lt;span style="color: black;"&gt;        &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;         &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\includegraphics[width=300pt,height=40pt]{images/header.jpg}&lt;/span&gt;
&lt;span style="color: black;"&gt;         &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\includegraphics[width=45pt,height=50pt]{images/header.jpg}&lt;/span&gt;
&lt;span style="color: black;"&gt;        &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;        &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{figure}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;

&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;        &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Agenda}&lt;/span&gt;
&lt;span style="color: black;"&gt;        &lt;/span&gt;&lt;span style="color: maroon;"&gt;\tableofcontents&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;

&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\section&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: black; font-weight: bold;"&gt;Introduccion&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Introduccion}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;alertblock&lt;/span&gt;&lt;span style="color: black;"&gt;}{Aclaraci&lt;/span&gt;&lt;span style="color: maroon;"&gt;\'&lt;/span&gt;&lt;span style="color: black;"&gt;on...} &lt;/span&gt;
&lt;span style="color: black;"&gt;    En esta charla usaremos el termino linux para referirnos al sistema&lt;/span&gt;
&lt;span style="color: black;"&gt;    operativo en su totalidad GNU/Linux&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;alertblock&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=300pt,height=133pt]{images/gnulinux.jpg}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;

&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\section&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: black; font-weight: bold;"&gt;Servidores y Gestion de Redes&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Servidores}&lt;/span&gt;
&lt;span style="color: black;"&gt;   Soporta multiples servicios tales como:&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;columns&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;column&lt;/span&gt;&lt;span style="color: black;"&gt;}{5cm}&lt;/span&gt;
&lt;span style="color: black;"&gt;     &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;itemize&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;      &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; Apache&lt;/span&gt;
&lt;span style="color: black;"&gt;      &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; DNS&lt;/span&gt;
&lt;span style="color: black;"&gt;      &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; DHCP&lt;/span&gt;
&lt;span style="color: black;"&gt;      &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; OpenSSH&lt;/span&gt;
&lt;span style="color: black;"&gt;      &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; SQuid&lt;/span&gt;
&lt;span style="color: black;"&gt;     &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;itemize&lt;/span&gt;&lt;span style="color: black;"&gt;} &lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;column&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;column&lt;/span&gt;&lt;span style="color: black;"&gt;}{5cm}&lt;/span&gt;
&lt;span style="color: black;"&gt;     &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;itemize&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;      &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; OpenNMS&lt;/span&gt;
&lt;span style="color: black;"&gt;      &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; MRTG&lt;/span&gt;
&lt;span style="color: black;"&gt;      &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; Nagios&lt;/span&gt;
&lt;span style="color: black;"&gt;      &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; Cacti&lt;/span&gt;
&lt;span style="color: black;"&gt;     &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;itemize&lt;/span&gt;&lt;span style="color: black;"&gt;} &lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;column&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;columns&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Podemos instalar Linux en cualquier lugar de nuestras redes}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=288pt,height=183pt]{images/red_linux.png}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\vspace*&lt;/span&gt;&lt;span style="color: black;"&gt;{-1cm}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Apache}&lt;/span&gt;
&lt;span style="color: black;"&gt;   Servidor web ampliamente usado&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=238pt,height=133pt]{images/apache.png}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{DNS}&lt;/span&gt;
&lt;span style="color: black;"&gt;   Resolucion de nombres&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=238pt,height=133pt]{images/dns.png}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{DHCP}&lt;/span&gt;
&lt;span style="color: black;"&gt;   Asigna dinamicamente IP a host&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[height=183pt]{images/dhcp.png}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{OpenSSH}&lt;/span&gt;
&lt;span style="color: black;"&gt;   Acceso remoto seguro&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=188pt,height=133pt]{images/ssh.png}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Squid}&lt;/span&gt;
&lt;span style="color: black;"&gt;   Proxy Cache&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=188pt,height=133pt]{images/proxy.png}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt; &lt;/span&gt;
&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\section&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: black; font-weight: bold;"&gt;VoIP&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{VoIP}&lt;/span&gt;
&lt;span style="color: black;"&gt;   Voz sobre IP con linux IAX, SIP:&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;itemize&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; Asterisk&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; Freeswitch&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; Gnu Gatekeeper&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; OpenSER&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;itemize&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{El mas conocido, pero no el unico: Asterisk}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=288pt,height=183pt]{images/asterisk.jpg}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\vspace*&lt;/span&gt;&lt;span style="color: black;"&gt;{-1cm}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{VoIP}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;
&lt;span style="color: black;"&gt;   Es el tema de proxima semana, los esperamos ;)&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\left(&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=208pt,height=183pt]{images/expocomsoc.png}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\vspace*{-1cm}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\section&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: black; font-weight: bold;"&gt;Seguridad&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Seguridad}&lt;/span&gt;
&lt;span style="color: black;"&gt;   Una de las herramientas mas empleadas:&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;itemize&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; Wireshark&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; Nmap&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; Iptables&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;itemize&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Wireshark}&lt;/span&gt;
&lt;span style="color: black;"&gt;   Analisis de trafico&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\left(&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=288pt,height=183pt]{images/wireshark.png}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\vspace*{-1cm}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Nmap}&lt;/span&gt;
&lt;span style="color: black;"&gt;   Descubrimiento de puertos&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\left(&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=288pt,height=183pt]{images/nmap.png}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\vspace*{-1cm}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Iptables}&lt;/span&gt;
&lt;span style="color: black;"&gt;   Filtrado de paquetes&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\left(&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=288pt,height=183pt]{images/iptables.jpg}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\vspace*{-1cm}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;

&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\section&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: black; font-weight: bold;"&gt;Simulacion de Redes&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Simuladores de Redes}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;itemize&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; ns-2&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; ns-3&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\item&lt;/span&gt;&lt;span style="color: black;"&gt; nistnet&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;itemize&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{ns-2}&lt;/span&gt;
&lt;span style="color: black;"&gt;   Simulacion de redes 2:&lt;/span&gt;&lt;span style="color: maroon;"&gt;\\&lt;/span&gt;
&lt;span style="color: black;"&gt;   Escrito en C++ y Otcl&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\left(&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=238pt,height=133pt]{images/ns2.jpg}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\vspace*{-1cm}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{ns-3}&lt;/span&gt;
&lt;span style="color: black;"&gt;   Simulacion de redes 3&lt;/span&gt;&lt;span style="color: maroon;"&gt;\\&lt;/span&gt;
&lt;span style="color: black;"&gt;   Escrito en C++, soporte para python&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{nistnet}&lt;/span&gt;
&lt;span style="color: black;"&gt;   Desarrollado como m&lt;/span&gt;&lt;span style="color: maroon;"&gt;\'&lt;/span&gt;&lt;span style="color: black;"&gt;odulo para el kernel externo. Permite emular un amplio rango de de condiciones de red, performance, congeti&lt;/span&gt;&lt;span style="color: maroon;"&gt;\'&lt;/span&gt;&lt;span style="color: black;"&gt;on, etc.&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\left(&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=288pt,height=133pt]{images/nisnet.jpg}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\vspace*{-1cm}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;

&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\section&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: black; font-weight: bold;"&gt;Finalmente&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Finalmente}&lt;/span&gt;
&lt;span style="color: black;"&gt;   ¿Donde encontramos a Linux?&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\left(&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=158pt,height=103pt]{images/tux_preguntas.png}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\vspace*{-1cm}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{En casa}&lt;/span&gt;
&lt;span style="color: black;"&gt;   Routers con BusyBox &lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\left(&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=288pt,height=183pt]{images/router.jpg}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\vspace*{-1cm}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Inalambricos}&lt;/span&gt;
&lt;span style="color: black;"&gt;   DD-WRT Lynksys&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=70pt,height=50pt]{images/ddwrt.png}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=208pt,height=133pt]{images/WRT54GL.jpg}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{celulares}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\left(&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=288pt,height=183pt]{images/movil.jpg}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\vspace*{-1cm}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Clusters}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\left(&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=288pt,height=183pt]{images/top500.png}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\vspace*{-1cm}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{left}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\section&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: black; font-weight: bold;"&gt;Enlaces &lt;/span&gt;&lt;span style="color: maroon; font-weight: bold;"&gt;\'&lt;/span&gt;&lt;span style="color: black; font-weight: bold;"&gt;utiles&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}[allowframebreaks]{Enlaces &lt;/span&gt;&lt;span style="color: maroon;"&gt;\'&lt;/span&gt;&lt;span style="color: black;"&gt;utiles}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;thebibliography&lt;/span&gt;&lt;span style="color: black;"&gt;}{2}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\beamertemplatebookbibitems&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}Debian&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://www.debian.org}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}Documentacion en Ingles&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://tldp.org/}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}Documentacion en Español&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://es.tldp.org/}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}Documentacion Debian&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://www.debian.org/doc/index.es.html}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}NS 2&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://nsnam.isi.edu/nsnam/index.php/User&lt;/span&gt;&lt;span style="color: maroon;"&gt;\_&lt;/span&gt;&lt;span style="color: black;"&gt;{}Information}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}NS 3&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://www.nsnam.org/}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}Nistnet&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://snad.ncsl.nist.gov/nistnet/}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}Instalaci&lt;/span&gt;&lt;span style="color: maroon;"&gt;\'&lt;/span&gt;&lt;span style="color: black;"&gt;on de Nistnet es espa&lt;/span&gt;&lt;span style="color: maroon;"&gt;\~&lt;/span&gt;&lt;span style="color: black;"&gt;nol&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://www.etl.it.uc3m.es/Instalaci&lt;/span&gt;&lt;span style="color: maroon;"&gt;\'&lt;/span&gt;&lt;span style="color: black;"&gt;on&lt;/span&gt;&lt;span style="color: maroon;"&gt;\_&lt;/span&gt;&lt;span style="color: black;"&gt;{}NIST&lt;/span&gt;&lt;span style="color: maroon;"&gt;\_&lt;/span&gt;&lt;span style="color: black;"&gt;{}Net}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}Scientific Linux&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{https://www.scientificlinux.org/}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}Top 100 Network Security Tools&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://sectools.org/}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}TOP500 Project&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://www.top500.org}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}DD WRT Spported Devices&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://www.dd-wrt.com/wiki/index.php/Supported&lt;/span&gt;&lt;span style="color: maroon;"&gt;\_&lt;/span&gt;&lt;span style="color: black;"&gt;{}Devices}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}BusyBox products&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://www.busybox.net/products.html}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}C&lt;/span&gt;&lt;span style="color: maroon;"&gt;\'&lt;/span&gt;&lt;span style="color: black;"&gt;odigo fuente del DSL 320T&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{ftp://ftp.dlink.co.uk/dsl&lt;/span&gt;&lt;span style="color: maroon;"&gt;\_&lt;/span&gt;&lt;span style="color: black;"&gt;{}routers&lt;/span&gt;&lt;span style="color: maroon;"&gt;\_&lt;/span&gt;&lt;span style="color: black;"&gt;{}modems/dsl&lt;/span&gt;&lt;span style="color: maroon;"&gt;\-&lt;/span&gt;&lt;span style="color: black;"&gt;{}320t/gpl&lt;/span&gt;&lt;span style="color: maroon;"&gt;\_&lt;/span&gt;&lt;span style="color: black;"&gt;{}source&lt;/span&gt;&lt;span style="color: maroon;"&gt;\_&lt;/span&gt;&lt;span style="color: black;"&gt;{}code/}&lt;/span&gt;
&lt;span style="color: black;"&gt;     &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}Linux Devices&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://www.linuxdevices.com/}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}Gnome Mobile&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://www.gnome.org/mobile/}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}Moblin&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://moblin.org/node/179}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}OpenMoko&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://wiki.openmoko.org/wiki/Main&lt;/span&gt;&lt;span style="color: maroon;"&gt;\_&lt;/span&gt;&lt;span style="color: black;"&gt;{}Page}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}Grupo de Usuarios de Linux Peru PLUG&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://www.linux.org.pe/}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\bibitem&lt;/span&gt;&lt;span style="color: black;"&gt;{}Debian Peru&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\newblock&lt;/span&gt;&lt;span style="color: black;"&gt; &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{http://www.debianperu.org/}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;thebibliography&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;

&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Antes de Terminar}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;alertblock&lt;/span&gt;&lt;span style="color: black;"&gt;}{Grupo de Linux} &lt;/span&gt;
&lt;span style="color: black;"&gt;    Estan invitados a integrarse a nuestra lista&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\href&lt;/span&gt;&lt;span style="color: black;"&gt;{http://groups.google.com/group/reieee_linux}{http://groups.google.com/group/reieee&lt;/span&gt;&lt;span style="color: maroon;"&gt;\_&lt;/span&gt;&lt;span style="color: black;"&gt;{}linux}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\href&lt;/span&gt;&lt;span style="color: black;"&gt;{mailto:reieee_linux@googlegroups.com}{reieee&lt;/span&gt;&lt;span style="color: maroon;"&gt;\_&lt;/span&gt;&lt;span style="color: black;"&gt;{}linux@googlegroups.com}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;alertblock&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;center&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\emph&lt;/span&gt;&lt;span style="color: black;"&gt;{¿Preguntas?} &lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;center&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: maroon;"&gt;\frametitle&lt;/span&gt;&lt;span style="color: black;"&gt;{Gracias por su atencion}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\titlepage&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\begin&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\begin{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: maroon;"&gt;\includegraphics&lt;/span&gt;&lt;span style="color: black;"&gt;[width=250pt,height=150pt]{images/grupo_linux.jpg}&lt;/span&gt;
&lt;span style="color: black;"&gt;    &lt;/span&gt;&lt;span style="color: grey; font-style: italic;"&gt;%\end{center}&lt;/span&gt;
&lt;span style="color: black;"&gt;   &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;figure&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;span style="color: black;"&gt;  &lt;/span&gt;&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;frame&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;

&lt;span style="color: #f00000;"&gt;\end&lt;/span&gt;&lt;span style="color: black;"&gt;{&lt;/span&gt;&lt;span style="color: #0000d0;"&gt;document&lt;/span&gt;&lt;span style="color: black;"&gt;}&lt;/span&gt;
&lt;/pre&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-1588802443749119268?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/ORwIEzAsV8_m0pAYuPG7lR80JYc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ORwIEzAsV8_m0pAYuPG7lR80JYc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/ORwIEzAsV8_m0pAYuPG7lR80JYc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/ORwIEzAsV8_m0pAYuPG7lR80JYc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/Gbyn0Chzkhk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/1588802443749119268/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/11/escribiendo-una-presentacion-con-latex.html#comment-form" title="6 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/1588802443749119268?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/1588802443749119268?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/Gbyn0Chzkhk/escribiendo-una-presentacion-con-latex.html" title="Escribiendo una presentacion con latex beamer" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>6</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/11/escribiendo-una-presentacion-con-latex.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0IASH89cCp7ImA9WxRUE08.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-1257926468004732727</id><published>2008-11-21T23:51:00.001-05:00</published><updated>2008-11-21T23:52:29.168-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-11-21T23:52:29.168-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="cluster" /><category scheme="http://www.blogger.com/atom/ns#" term="servidores" /><category scheme="http://www.blogger.com/atom/ns#" term="networking" /><title>Virtualizacion con KVM y virt-manager</title><content type="html">Debemos asegurarnos si nuestra cpu soporta virtualizacion:&lt;br /&gt;
&lt;blockquote&gt;&lt;b&gt;Intel CPUs:&lt;/b&gt;&lt;br /&gt;
cat /proc/cpuinfo | grep vmx&lt;br /&gt;
&lt;b&gt;AMD CPUs:&lt;/b&gt;&lt;br /&gt;
cat /proc/cpuinfo | grep svm&lt;/blockquote&gt;Hay que entrar al BIOS de la PC y activar el soporte de virtualizacion.&lt;br /&gt;
Luego instalar &lt;br /&gt;
&lt;blockquote&gt;aptitude install virt-manager libvirt-bin kvm&lt;/blockquote&gt;Ejecutamos la herramienta grafica&lt;br /&gt;
&lt;blockquote&gt;virt-manager&lt;/blockquote&gt;Luego vamos a Archivo--&amp;gt;Abrir conexion&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_rzwYxlt7UYk/SSeON7WmBBI/AAAAAAAAAGI/uvEBgPjjpK8/s1600-h/kvma.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_rzwYxlt7UYk/SSeON7WmBBI/AAAAAAAAAGI/uvEBgPjjpK8/s320/kvma.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Y configuramos una maquina virtual para OpenBSD por ejemplo:&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_rzwYxlt7UYk/SSeOTamnXgI/AAAAAAAAAGQ/MK9cjbrG6nA/s1600-h/kvm1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_rzwYxlt7UYk/SSeOTamnXgI/AAAAAAAAAGQ/MK9cjbrG6nA/s320/kvm1.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_rzwYxlt7UYk/SSeOXlHZ8NI/AAAAAAAAAGY/8X4AFo8iMS4/s1600-h/kvm2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SSeOXlHZ8NI/AAAAAAAAAGY/8X4AFo8iMS4/s320/kvm2.jpg" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&lt;a href="http://3.bp.blogspot.com/_rzwYxlt7UYk/SSeOl6KuHPI/AAAAAAAAAGg/ecieVtJKHTU/s1600-h/kvm3.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_rzwYxlt7UYk/SSeOl6KuHPI/AAAAAAAAAGg/ecieVtJKHTU/s320/kvm3.jpg" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&lt;a href="http://3.bp.blogspot.com/_rzwYxlt7UYk/SSeOqQZYfAI/AAAAAAAAAGo/CaKTJOs3ou8/s1600-h/kvm4.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_rzwYxlt7UYk/SSeOqQZYfAI/AAAAAAAAAGo/CaKTJOs3ou8/s320/kvm4.jpg" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&lt;a href="http://3.bp.blogspot.com/_rzwYxlt7UYk/SSeOuJCpTWI/AAAAAAAAAGw/2LIk49TW_d8/s1600-h/kvm5.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_rzwYxlt7UYk/SSeOuJCpTWI/AAAAAAAAAGw/2LIk49TW_d8/s320/kvm5.jpg" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&lt;a href="http://3.bp.blogspot.com/_rzwYxlt7UYk/SSeOyA-1kGI/AAAAAAAAAG4/fHxT0AWJyOc/s1600-h/kvm6.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_rzwYxlt7UYk/SSeOyA-1kGI/AAAAAAAAAG4/fHxT0AWJyOc/s320/kvm6.jpg" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&lt;a href="http://2.bp.blogspot.com/_rzwYxlt7UYk/SSeO2uhCAdI/AAAAAAAAAHA/U8LT1cl259k/s1600-h/kvm7.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_rzwYxlt7UYk/SSeO2uhCAdI/AAAAAAAAAHA/U8LT1cl259k/s320/kvm7.jpg" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&lt;a href="http://4.bp.blogspot.com/_rzwYxlt7UYk/SSeO6e-xpdI/AAAAAAAAAHI/LJ48v8IA-lw/s1600-h/kvm8.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_rzwYxlt7UYk/SSeO6e-xpdI/AAAAAAAAAHI/LJ48v8IA-lw/s320/kvm8.jpg" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&lt;a href="http://4.bp.blogspot.com/_rzwYxlt7UYk/SSeO-g_0QUI/AAAAAAAAAHQ/udUQwHtJMf4/s1600-h/kvm9.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_rzwYxlt7UYk/SSeO-g_0QUI/AAAAAAAAAHQ/udUQwHtJMf4/s320/kvm9.jpg" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&lt;a href="http://4.bp.blogspot.com/_rzwYxlt7UYk/SSePCPdmAZI/AAAAAAAAAHY/B1egEW0lcpM/s1600-h/kvm10.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_rzwYxlt7UYk/SSePCPdmAZI/AAAAAAAAAHY/B1egEW0lcpM/s320/kvm10.jpg" /&gt;&lt;/a&gt;&amp;nbsp;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;Yluego seguir el procedimiento de instalacion y einstalar el SO de manera normal &lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&amp;nbsp;&lt;a href="http://4.bp.blogspot.com/_rzwYxlt7UYk/SSePG6LzCjI/AAAAAAAAAHg/P-36pIR-JHU/s1600-h/kvm11.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_rzwYxlt7UYk/SSePG6LzCjI/AAAAAAAAAHg/P-36pIR-JHU/s320/kvm11.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
&lt;br /&gt;
Y configuramos una maquina virtual&lt;br /&gt;
&lt;br /&gt;
PD: En el ejemplo de OpenBSD hay que hacer unos trucos para que no aparesca el mensaje "watchdog timeout."&lt;br /&gt;
editamos /etc/libvirt/qemu/OpenBSD.xm y agregamos la linea model&lt;br /&gt;
&lt;blockquote&gt;&amp;lt;interface type='bridge'&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;mac address='00:16:36:54:60:ed'/&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;source bridge='br0'/&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;model type='e1000'/&amp;gt;&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;/interface&amp;gt;&lt;/blockquote&gt;&lt;br /&gt;
Apagar la maquina virtual OpenBSD, aun no me funciona el apagado via ACPI:&lt;br /&gt;
&lt;blockquote&gt;halt -p&lt;/blockquote&gt;En un terminal hacer lo siguiente:&lt;br /&gt;
&lt;blockquote&gt;cd /etc/libvirt/qemu&lt;br /&gt;
virsh --connect qemu:///system&lt;br /&gt;
define OpenBSD.xml&lt;br /&gt;
start OpenBSD&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-1257926468004732727?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/OmJA3FSIP-34_Wg9aL11GSFkK9w/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OmJA3FSIP-34_Wg9aL11GSFkK9w/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/OmJA3FSIP-34_Wg9aL11GSFkK9w/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/OmJA3FSIP-34_Wg9aL11GSFkK9w/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/H7TS2VqfGCk" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/1257926468004732727/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/11/virtualizacion-con-kvm-y-virt-manager.html#comment-form" title="0 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/1257926468004732727?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/1257926468004732727?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/H7TS2VqfGCk/virtualizacion-con-kvm-y-virt-manager.html" title="Virtualizacion con KVM y virt-manager" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_rzwYxlt7UYk/SSeON7WmBBI/AAAAAAAAAGI/uvEBgPjjpK8/s72-c/kvma.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/11/virtualizacion-con-kvm-y-virt-manager.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CUEMSXY-eyp7ImA9WxRVGEU.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-7349392261470367775</id><published>2008-11-16T19:24:00.001-05:00</published><updated>2008-11-16T20:01:28.853-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-11-16T20:01:28.853-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="servidores" /><category scheme="http://www.blogger.com/atom/ns#" term="networking" /><title>Configuracion de ssmtp con gmail</title><content type="html">aptitude install ssmtp&lt;br /&gt;
&lt;br /&gt;
vi /etc/ssmtp/ssmtp.conf&lt;br /&gt;
&lt;blockquote&gt;#&lt;br /&gt;
# Config file for sSMTP sendmail&lt;br /&gt;
#&lt;br /&gt;
# The person who gets all mail for userids &amp;lt; 1000&lt;br /&gt;
# Make this empty to disable rewriting.&lt;br /&gt;
#root=postmaster&lt;br /&gt;
root=usuario@gmail.com&lt;br /&gt;
&lt;br /&gt;
# The place where the mail goes. The actual machine name is required no &lt;br /&gt;
# MX records are consulted. Commonly mailhosts are named mail.domain.com&lt;br /&gt;
#mailhub=mail&lt;br /&gt;
mailhub=smtp.gmail.com:587&lt;br /&gt;
&lt;br /&gt;
# Where will the mail seem to come from?&lt;br /&gt;
#rewriteDomain=&lt;br /&gt;
&lt;br /&gt;
# The full hostname&lt;br /&gt;
#hostname=host.localdomain&lt;br /&gt;
hostname=usuario@gmail.com&lt;br /&gt;
&lt;br /&gt;
UseTLS=YES&lt;br /&gt;
UseSTARTTLS=YES&lt;br /&gt;
AuthUser=usuario&lt;br /&gt;
AuthPass=password&lt;br /&gt;
&lt;br /&gt;
# Are users allowed to set their own From: address?&lt;br /&gt;
# YES - Allow the user to specify their own From: address&lt;br /&gt;
# NO - Use the system generated From: address&lt;br /&gt;
#FromLineOverride=NO&lt;br /&gt;
FromLineOverride=YES&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;br /&gt;
vi /etc/ssmtp/revaliases&lt;br /&gt;
&lt;blockquote&gt;&amp;nbsp;# sSMTP aliases&lt;br /&gt;
# &lt;br /&gt;
# Format:&amp;nbsp;&amp;nbsp; local_account:outgoing_address:mailhub&lt;br /&gt;
#&lt;br /&gt;
# Example: root:your_login@your.domain:mailhub.your.domain[:port]&lt;br /&gt;
# where [:port] is an optional port number that defaults to 25.&lt;br /&gt;
root:usuario@gmail.com:smtp.gmail.com:587&lt;br /&gt;
&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-7349392261470367775?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/aJ9FqFIrgQSosTt1iJWia1LRS9w/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aJ9FqFIrgQSosTt1iJWia1LRS9w/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/aJ9FqFIrgQSosTt1iJWia1LRS9w/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/aJ9FqFIrgQSosTt1iJWia1LRS9w/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/xD0UtzQwd9E" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/7349392261470367775/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/11/configuracion-de-ssmtp-con-gmail.html#comment-form" title="2 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/7349392261470367775?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/7349392261470367775?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/xD0UtzQwd9E/configuracion-de-ssmtp-con-gmail.html" title="Configuracion de ssmtp con gmail" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>2</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/11/configuracion-de-ssmtp-con-gmail.html</feedburner:origLink></entry><entry gd:etag="W/&quot;Ck4ARXs4eSp7ImA9WxRVFk4.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-6519722822989159646</id><published>2008-11-13T21:48:00.000-05:00</published><updated>2008-11-13T21:49:04.531-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-11-13T21:49:04.531-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="seguridad" /><category scheme="http://www.blogger.com/atom/ns#" term="hack" /><title>Configuracion de Ruby para ejecutar Metasploit framework</title><content type="html">&lt;div style="text-align: justify;"&gt;&lt;b&gt;Porque instalar a partir de codigo fuente y no a traves de los paquetes de la distribucion?&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;La distribucion que uso (Debian SID), viene con la version 1.8.7.72, la cual tiene varios problemas, tal como aparece en la imagen:&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://1.bp.blogspot.com/_rzwYxlt7UYk/SRzkg-vrOUI/AAAAAAAAAGA/T3BEnKGuyyY/s1600-h/img1.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SRzkg-vrOUI/AAAAAAAAAGA/T3BEnKGuyyY/s400/img1.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Una opcion es usar la version 1.8.6 que no esta disponible en debian sid o usar el ultimo snapshot stable, esto ultimo es lo que haremos:&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;Creamos nuestro directorio de trabajo&lt;/b&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div style="text-align: justify;"&gt;mkdir src&lt;/div&gt;cd src &lt;/blockquote&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;Instalamos las librerias necesarias para compilar ruby&lt;/b&gt;&lt;br /&gt;
&lt;blockquote&gt;apt-get build-dep ruby&lt;br /&gt;
apt-get build-dep gems&lt;/blockquote&gt;&lt;br /&gt;
&lt;b&gt;Descargar el metasploit framework&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Bajamos la version en desarrollo, se va actualizando casi a diario &lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div style="text-align: justify;"&gt;svn co http://metasploit.com/svn/framework3/trunk/ metasploit&lt;/div&gt;&lt;/blockquote&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;Instalacion de Ruby&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div style="text-align: justify;"&gt;wget ftp://ftp.ruby-lang.org/pub/ruby/stable-snapshot.tar.gz&lt;/div&gt;&lt;div style="text-align: justify;"&gt;tar zxvf stable-snapshot.tar.gz&lt;/div&gt;&lt;div style="text-align: justify;"&gt;cd ruby&lt;/div&gt;&lt;div style="text-align: justify;"&gt;./configure --prefix=/opt/ruby&lt;/div&gt;&lt;div style="text-align: justify;"&gt;make&lt;/div&gt;&lt;div style="text-align: justify;"&gt;make test&lt;/div&gt;&lt;div style="text-align: justify;"&gt;make install&lt;/div&gt;&lt;div style="text-align: justify;"&gt;cd ..&lt;/div&gt;&lt;/blockquote&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;rubygems&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div style="text-align: justify;"&gt;http://rubyforge.org/projects/rubygems/&lt;/div&gt;&lt;div style="text-align: justify;"&gt;tar zxvf rubygems-1.3.1.tgz&lt;/div&gt;&lt;div style="text-align: justify;"&gt;cd rubygems-1.3.1&lt;/div&gt;&lt;div style="text-align: justify;"&gt;export PATH=/opt/ruby/bin:$PATH&lt;/div&gt;&lt;div style="text-align: justify;"&gt;export GEM_HOME=/opt/ruby/lib/ruby/gems/1.8&lt;/div&gt;&lt;div style="text-align: justify;"&gt;export RUBYLIB=/opt/ruby/lib/ruby:/opt/ruby/lib/ruby/site_ruby/1.8:/opt/ruby/lib&lt;/div&gt;&lt;div style="text-align: justify;"&gt;/opt/ruby/bin/ruby setup.rb all --prefix=/opt/ruby&lt;/div&gt;&lt;div style="text-align: justify;"&gt;cd ..&lt;/div&gt;&lt;/blockquote&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;b&gt;Ejecutando Metasploit&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Podemos usarlo desde el navegador:&lt;/div&gt;&lt;blockquote&gt;&lt;div style="text-align: justify;"&gt;cd metasploit&lt;/div&gt;&lt;div style="text-align: justify;"&gt;./msfweb&lt;/div&gt;&lt;/blockquote&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Luego, abrimos el explorador en http://127.0.0.1:55555/&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_rzwYxlt7UYk/SRzkZoqLbNI/AAAAAAAAAF4/w5zpoPxJ80I/s1600-h/img2.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_rzwYxlt7UYk/SRzkZoqLbNI/AAAAAAAAAF4/w5zpoPxJ80I/s400/img2.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Tambien podemos ejecutarlo en el terminal&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div style="text-align: justify;"&gt;./msfcli&lt;/div&gt;&lt;/blockquote&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;enjoy !!!&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-6519722822989159646?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/R0zfdEsF_ylPD8SSWU0Pik4cODA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/R0zfdEsF_ylPD8SSWU0Pik4cODA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/R0zfdEsF_ylPD8SSWU0Pik4cODA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/R0zfdEsF_ylPD8SSWU0Pik4cODA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/9bX8xprtSK8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/6519722822989159646/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/11/configuracion-de-ruby-para-ejecutar.html#comment-form" title="1 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/6519722822989159646?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/6519722822989159646?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/9bX8xprtSK8/configuracion-de-ruby-para-ejecutar.html" title="Configuracion de Ruby para ejecutar Metasploit framework" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://1.bp.blogspot.com/_rzwYxlt7UYk/SRzkg-vrOUI/AAAAAAAAAGA/T3BEnKGuyyY/s72-c/img1.jpg" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/11/configuracion-de-ruby-para-ejecutar.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUEER3w4eyp7ImA9WxRVE0s.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-6819864519807460609</id><published>2008-11-10T13:40:00.001-05:00</published><updated>2008-11-10T20:40:06.233-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-11-10T20:40:06.233-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><title>Virtualizando en Linux con VirtualBox - configurando la red en modo bridge</title><content type="html">Luego del instalar VirtualBox, nos damos cuenta que las maquinas virtuales se crean con una IP distinta a la que poseemos, eso es porque por default, se crean en modo NAT, asi que si queremos poner nuestros host virtuales en el mismo segmento de red que la maquina anfitrion, hay que configurar un poco.&lt;br /&gt;
editamos el archivo /etc/network/interfaces y agregamos las siguientes linea:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;auto br0&lt;br /&gt;
iface br0 inet dhcp&lt;br /&gt;
bridge_ports eth0&lt;/blockquote&gt;&lt;br /&gt;
luego reiniciamos la red&lt;br /&gt;
/etc/ini.d/networking restart&lt;br /&gt;
&lt;br /&gt;
Luego creamos la interfaz virtual para el host.&lt;br /&gt;
&lt;blockquote&gt;VBoxAddIF vbox0 root br0&lt;/blockquote&gt;&lt;br /&gt;
Luego, abrimos la interfaz de configuracion del VirtualBox, seleccionamos una maquina virtual y cambiamos las opciones a:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;Attached to: Interface anfitrion&lt;br /&gt;
Interface name: vbox0&lt;/blockquote&gt;&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_rzwYxlt7UYk/SRh_51P60rI/AAAAAAAAAFg/IeYvbESz9fM/s1600-h/vbox_manager.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_rzwYxlt7UYk/SRh_51P60rI/AAAAAAAAAFg/IeYvbESz9fM/s320/vbox_manager.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Iniciamos la una maquina virtual para comprobar que obtiene una IP de nuestro segmento de red:&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_rzwYxlt7UYk/SRiADGzR4QI/AAAAAAAAAFo/meer-CWbYlQ/s1600-h/host_virtual.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_rzwYxlt7UYk/SRiADGzR4QI/AAAAAAAAAFo/meer-CWbYlQ/s320/host_virtual.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;br /&gt;
Si ejecutamos el comando ifconfig en el host anfitrion, veremos que se han creados nuevas interfaces:&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_rzwYxlt7UYk/SRiAKuvtlwI/AAAAAAAAAFw/GknJGqKMXQs/s1600-h/host_interfaces.jpg" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_rzwYxlt7UYk/SRiAKuvtlwI/AAAAAAAAAFw/GknJGqKMXQs/s320/host_interfaces.jpg" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-6819864519807460609?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/58PYuF4UodK79HumjoH395A7ARc/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/58PYuF4UodK79HumjoH395A7ARc/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/58PYuF4UodK79HumjoH395A7ARc/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/58PYuF4UodK79HumjoH395A7ARc/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/BgUI3g_P2BI" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/6819864519807460609/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/11/virtualizando-en-linux-con-virtualbox.html#comment-form" title="0 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/6819864519807460609?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/6819864519807460609?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/BgUI3g_P2BI/virtualizando-en-linux-con-virtualbox.html" title="Virtualizando en Linux con VirtualBox - configurando la red en modo bridge" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_rzwYxlt7UYk/SRh_51P60rI/AAAAAAAAAFg/IeYvbESz9fM/s72-c/vbox_manager.jpg" height="72" width="72" /><thr:total>0</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/11/virtualizando-en-linux-con-virtualbox.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0cDRH89cSp7ImA9WxRWGU4.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-5407398316571702368</id><published>2008-11-05T20:20:00.001-05:00</published><updated>2008-11-05T20:31:15.169-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-11-05T20:31:15.169-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ocio" /><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><title>Tips rapidos en Linux - II</title><content type="html">&lt;b&gt;Desactivar servicios de manera "grafica"&lt;/b&gt;&lt;br /&gt;
rcconf es una aplicacion basada en ncurses que nos permite activar y desactivar servicios que normalmente se inician durante el arranque.&lt;br /&gt;
&lt;blockquote&gt;aptitude install rcconf&lt;/blockquote&gt;&lt;br /&gt;
&lt;b&gt;Instalar desinstalar modulos&lt;/b&gt;&lt;br /&gt;
modconf, tambien basada en ncurses, nos permite navegar entre todos los modulos que se encuentren disponibles, para el kernel que estemos ejecutando&lt;br /&gt;
&lt;blockquote&gt;aptitude install modconf&lt;/blockquote&gt;&lt;br /&gt;
&lt;b&gt;Ver los puertos que estan usando las aplicaciones&lt;/b&gt;&lt;br /&gt;
&lt;blockquote&gt;netstat -utpan&lt;/blockquote&gt;&lt;br /&gt;
&lt;b&gt;Averiguar que programa esta accediendo al disco&lt;/b&gt;&lt;br /&gt;
iotop nos permite averiguarlo, por el momento solo esta en debian sid&lt;br /&gt;
&lt;blockquote&gt;aptitude install iotop&lt;/blockquote&gt;&lt;br /&gt;
&lt;b&gt;Agregar usuario a un grupo determinado&lt;/b&gt;&lt;br /&gt;
&lt;blockquote&gt;adduser usuario grupo&lt;/blockquote&gt;&lt;br /&gt;
&lt;b&gt;Ver todas las librerias que tenemos cargadas en memoria&lt;/b&gt;&lt;br /&gt;
&lt;blockquote&gt;aptitude install memstat&lt;/blockquote&gt;&lt;br /&gt;
&lt;b&gt; Hacer una captura de pantalla &lt;/b&gt;&lt;br /&gt;
&lt;blockquote&gt;import -window root screenshot.png&lt;/blockquote&gt;&lt;br /&gt;
&lt;b&gt; usar el mouse en los terminales &lt;/b&gt;&lt;br /&gt;
&lt;blockquote&gt;aptitude install gpm&lt;/blockquote&gt;&lt;br /&gt;
&lt;b&gt;Obtener la suma de comprocion md5 de un archivo&lt;/b&gt;&lt;br /&gt;
&lt;blockquote&gt;md5sum mi_archivo&lt;/blockquote&gt;&lt;br /&gt;
&lt;b&gt; Un cliente de correo ligero&lt;/b&gt;&lt;br /&gt;
&lt;blockquote&gt;aptitude install claws-mail&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-5407398316571702368?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/QWKcZSUWqhb3aMM8aZ2e4Ez_Jpw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QWKcZSUWqhb3aMM8aZ2e4Ez_Jpw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/QWKcZSUWqhb3aMM8aZ2e4Ez_Jpw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QWKcZSUWqhb3aMM8aZ2e4Ez_Jpw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/RJMcTv0PIEw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/5407398316571702368/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/11/tips-rapidos-en-linux-ii.html#comment-form" title="0 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/5407398316571702368?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/5407398316571702368?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/RJMcTv0PIEw/tips-rapidos-en-linux-ii.html" title="Tips rapidos en Linux - II" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/11/tips-rapidos-en-linux-ii.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0QGRXk_eCp7ImA9WxRWF0s.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-8518922894932180418</id><published>2008-11-03T20:43:00.000-05:00</published><updated>2008-11-03T21:22:04.740-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-11-03T21:22:04.740-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ocio" /><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><title>Tips rapidos en Linux</title><content type="html">Algunos cosas que siempre me preguntan, tips rapidos:&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Configurando ntfs-3g graficamente&lt;/b&gt;&lt;br /&gt;
aptitude install disk-manager ntfs-3g&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Habilitar los colores al hacer ls&lt;/b&gt;&lt;br /&gt;
vi ~/.bashrc&lt;br /&gt;
descomentar:&lt;br /&gt;
export LS_OPTIONS='--color=auto'&lt;br /&gt;
eval "`dircolors`"&lt;br /&gt;
alias ls='ls $LS_OPTIONS'&lt;br /&gt;
grabas y ejecutar:&lt;br /&gt;
source ~/.bashrc&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Entrar al msn&lt;/b&gt;&lt;br /&gt;
Hay para todos los gustos, kopete, pidgin, amsn:&lt;br /&gt;
aptitude install kopete&lt;br /&gt;
aptitude install pidgin&lt;br /&gt;
aptitude install amsn&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Configurar kopete/pidgin para entrar al gtalk (chat de gmail)&lt;/b&gt;&lt;br /&gt;
Eston son los datos que van a necesitar:&lt;br /&gt;
Agregar una cuenta Jabber&lt;br /&gt;
ID Jabber: tucorreo@gmail.com&lt;br /&gt;
servidor talk.google.com&lt;br /&gt;
puerto 5223&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Para navegar&lt;/b&gt;&lt;br /&gt;
pueden usar firefox (en debian se llama iceweasel), konqueror, epiphany,etc&lt;br /&gt;
aptitude install iceweasel&lt;br /&gt;
aptitude install konqueror&lt;br /&gt;
aptitude install epiphany&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Para navegar en consola, osea en texto&lt;/b&gt;&lt;br /&gt;
lynx o w3m&lt;br /&gt;
aptitude install lynx&lt;br /&gt;
aptitude install w3m&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Algo parecido al explorador de archivos ?&lt;/b&gt;&lt;br /&gt;
hay varios, dependiendo de que escritorio uses:&lt;br /&gt;
kde --&amp;gt; konqueror&lt;br /&gt;
gnome-&amp;gt; nautilus&lt;br /&gt;
LXDE--&amp;gt; pcmanfm&lt;br /&gt;
XFCE--&amp;gt; thunar&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Para aumentar o subir el volumen&lt;/b&gt;&lt;br /&gt;
alsamixer en modo texto y en modo grafico alsamixergui&lt;br /&gt;
aptitude install alsamixer&lt;br /&gt;
aptitude install alsamixergui&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Grabar CD o DVD&lt;/b&gt;&lt;br /&gt;
Una interfaz bastante intuitiva&lt;br /&gt;
aptitude install k3b&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Escuchar Musica&lt;/b&gt;&lt;br /&gt;
Reproductor de musica ligeros, &lt;br /&gt;
audacious --&gt; aptitude install audacious&lt;br /&gt;
&lt;br /&gt;
Integrado con el escritorio:&lt;br /&gt;
KDE--&gt; aptitude install amarok&lt;br /&gt;
GNOME--&gt; aptitude install rythmbox&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-8518922894932180418?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/vBiaF5jEj-9fkoMF6dXspB2FD_g/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vBiaF5jEj-9fkoMF6dXspB2FD_g/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/vBiaF5jEj-9fkoMF6dXspB2FD_g/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/vBiaF5jEj-9fkoMF6dXspB2FD_g/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/iqmStCyQ84s" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/8518922894932180418/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/11/tips-rapidos-en-linux.html#comment-form" title="0 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/8518922894932180418?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/8518922894932180418?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/iqmStCyQ84s/tips-rapidos-en-linux.html" title="Tips rapidos en Linux" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/11/tips-rapidos-en-linux.html</feedburner:origLink></entry><entry gd:etag="W/&quot;CU8BQH04fCp7ImA9WxRWFEQ.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-429648416231049481</id><published>2008-10-31T16:14:00.003-05:00</published><updated>2008-10-31T17:57:31.334-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-31T17:57:31.334-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="UNI" /><category scheme="http://www.blogger.com/atom/ns#" term="programacion" /><category scheme="http://www.blogger.com/atom/ns#" term="ipv6" /><category scheme="http://www.blogger.com/atom/ns#" term="networking" /><title>Instalando ns-3, Network Simulator Version 3</title><content type="html">Aqui podemos encontrar la descripcion completa, tutoriales. &lt;br /&gt;
http://www.nsnam.org/&lt;br /&gt;
&lt;br /&gt;
Una descripcion de ns-3&lt;br /&gt;
http://www.nsnam.org/docs/ns-3-overview.pdf&lt;br /&gt;
&lt;br /&gt;
Instalando los prerequisitos:&lt;br /&gt;
&lt;blockquote&gt;aptitude install gccxml sqlite3 build-essential libsqlite3-dev libgoocanvas-dev libgoocanvas3 unzip python-dev gcc-3.4 gcc-4.1 libgtk2.0-0 libgtk2.0-dev doxygen graphviz imagemagick texinfo dia flex bison tcpdump wireshark &lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
pygccxml&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;wget http://downloads.sourceforge.net/pygccxml/pygccxml-1.0.0.zip?modtime=1224497206&amp;amp;big_mirror=0&lt;br /&gt;
unzip pygccxml-1.0.0.zip &lt;br /&gt;
cd pygccxml-1.0.0&lt;br /&gt;
python setup.py install&lt;br /&gt;
cd ..&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
Descargamos e instalamos ns-3:&lt;br /&gt;
&lt;blockquote&gt;wget http://www.nsnam.org/releases/ns-3.2.tar.bz2&lt;br /&gt;
tar jxvf ns-3.2.tar.bz2&lt;br /&gt;
cd ns-3.2&lt;br /&gt;
./waf configure&lt;br /&gt;
./waf&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
Terminado de compilar podemos comprobar si a sido correcta la compilacion&lt;br /&gt;
&lt;blockquote&gt;./waf check&lt;br /&gt;
&lt;/blockquote&gt;Generamos la documentacion:&lt;br /&gt;
&lt;blockquote&gt;./waf --doxygen&lt;br /&gt;
&lt;/blockquote&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-429648416231049481?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/QMoxTTUc6fZ-5HW_nupzUBLQqfU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QMoxTTUc6fZ-5HW_nupzUBLQqfU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/QMoxTTUc6fZ-5HW_nupzUBLQqfU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/QMoxTTUc6fZ-5HW_nupzUBLQqfU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/UyRIcHa_pwY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/429648416231049481/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/10/instalando-ns-3-network-simulator.html#comment-form" title="1 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/429648416231049481?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/429648416231049481?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/UyRIcHa_pwY/instalando-ns-3-network-simulator.html" title="Instalando ns-3, Network Simulator Version 3" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>1</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/10/instalando-ns-3-network-simulator.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0QMR3w6fip7ImA9WxRWFE0.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-8927566766365505138</id><published>2008-10-30T17:20:00.000-05:00</published><updated>2008-10-30T17:23:06.216-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-30T17:23:06.216-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><title>[OT] BarCamp Lima 2008</title><content type="html">Este es un literal copy&amp;amp;paste de un mensaje de la lista del plug, está bastante interesante.&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;&lt;blockquote&gt;Desde hace algunos años en las principales ciudades y capitales del&lt;br /&gt;
mundo se vienen llevando acabo eventos denominados "Bar Camp" que básicamente son un encuentro auto-organizado de profesionales y entusiastas de la tecnologia, el desarrollo web, el software opensource, entre otros temas.&lt;br /&gt;
&lt;br /&gt;
Básicamente se trata de que unas 100 personas metidas en estas temas se encuentro un dia en un solo local y ahi mismo, sin previa&lt;br /&gt;
organización o selección se va llenando una pizarra con las charlas&lt;br /&gt;
que los mismos asistentes se apunta a ofrecer como voluntarios, se&lt;br /&gt;
arman mesas redondas, discusiones en grupo y se intercambia mucha información además de conocer buena gente, hacer nuevos amigos y mejorar la red de contactos profesionales y de negocios.&lt;br /&gt;
&lt;br /&gt;
http://es.wikipedia.org/wiki/Barcamp&lt;br /&gt;
&lt;br /&gt;
Algunos de nosotros estamos organizando un evento BarCamp en Lima para que tenga lugar muy pronto, posiblemente este mes o máximo en Diciembre y por la naturaleza del evento es totalmente posible. Si están interesados o conocen a gente a la que les puedan interesar estos temas de verdad avistan y pasen la voz porque promete ser un encuentro muy interesante.&lt;br /&gt;
&lt;br /&gt;
Puede revisar los temas de los que se planea hablar y apuntarse como asistentes en este wiki:&lt;br /&gt;
&lt;br /&gt;
http://barcamp.org/BarCampLimaI?edit=1&lt;br /&gt;
&lt;br /&gt;
Para editar ingresan con el "invitation key" (llave de invitación) que&lt;br /&gt;
es "c4mp" y agregan su información, idealmente apuntando a su propio blog.&lt;br /&gt;
&lt;br /&gt;
Para que se hagan una mejor idea de como va a ser este evento pueden leer estos articulos&amp;nbsp; y blog posts:&lt;br /&gt;
&lt;br /&gt;
http://www.maestrosdelweb.com/actualidad/barcamp-lima-2008/&lt;br /&gt;
http://www.microsoft.com/latam/technet/articulos/tn/2007/oct-18.mspx&lt;br /&gt;
http://anwmp.org/barcamp-lima-1&lt;br /&gt;
&lt;br /&gt;
Otros eventos en ciudades de la región que pueden ver como referencia son:&lt;br /&gt;
&lt;br /&gt;
http://www.barcamp.com.ar/&lt;br /&gt;
http://barcamp.org/BarCampMexico&lt;br /&gt;
&lt;br /&gt;
Asi que ya saben.. el tema de opensource va a salir definitivamente&lt;br /&gt;
entre las charlas pero es más que opensource: estándares de web, como hacer negocios en Internet, Web 2.0, tips de adsense, entre otras cosas.&lt;br /&gt;
&lt;br /&gt;
Espero verlos ahi, parece que es es ya ya el Sábado 8 de Noviembre y que sería en el local de HP de las Torres de Camino Real. Pasen la&lt;br /&gt;
voz! Ahorita lo importante es que se apunten en el wiki y coloquen su información..&lt;br /&gt;
&lt;br /&gt;
Nos vemos ahi! Varios de la lista ya estan interesados..&lt;/blockquote&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-8927566766365505138?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/15vxPJTge2SX4X89K7PP1TWZEKA/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/15vxPJTge2SX4X89K7PP1TWZEKA/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/15vxPJTge2SX4X89K7PP1TWZEKA/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/15vxPJTge2SX4X89K7PP1TWZEKA/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/JYdGu6PuHz8" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/8927566766365505138/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/10/ot-barcamp-lima-2008.html#comment-form" title="0 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/8927566766365505138?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/8927566766365505138?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/JYdGu6PuHz8/ot-barcamp-lima-2008.html" title="[OT] BarCamp Lima 2008" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/10/ot-barcamp-lima-2008.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A04AQX44cSp7ImA9WxRWE0o.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-9185014200789274225</id><published>2008-10-30T08:52:00.000-05:00</published><updated>2008-10-30T10:19:00.039-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-30T10:19:00.039-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ccna" /><category scheme="http://www.blogger.com/atom/ns#" term="ccnp" /><category scheme="http://www.blogger.com/atom/ns#" term="networking" /><title>dynamips y wireshark, capturando trafico</title><content type="html">Despues de pasarme largo rato buscando la manera de snifear el trafico entre 2 router simulados por dynamips, la solucion era bastante simple.&lt;br /&gt;
&lt;blockquote&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;;"&gt;capture R1 f0/0 r1.cap&lt;/span&gt;&lt;/blockquote&gt;y abrir ese archivo con wireshark&lt;br /&gt;
Para detener la captura:&lt;br /&gt;
&lt;blockquote&gt;&lt;span style="font-family: &amp;quot;Courier New&amp;quot;;"&gt;no capture R1 f0/0&lt;/span&gt;&lt;/blockquote&gt;Ejecutando estos comandos desde la consola de dynagen.&lt;br /&gt;
En fin, mas que un &lt;a href="http://es.wikipedia.org/wiki/STFW"&gt;STFW&lt;/a&gt; era un &lt;a href="http://es.wikipedia.org/wiki/RTFM"&gt;RTFM&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-9185014200789274225?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/gxavo2V-LHlfFS2ovpEpfWGrsD0/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/gxavo2V-LHlfFS2ovpEpfWGrsD0/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/gxavo2V-LHlfFS2ovpEpfWGrsD0/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/gxavo2V-LHlfFS2ovpEpfWGrsD0/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/7uTEHtgiQtw" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/9185014200789274225/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/10/dynamips-y-wireshark-capturando-trafico.html#comment-form" title="0 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/9185014200789274225?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/9185014200789274225?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/7uTEHtgiQtw/dynamips-y-wireshark-capturando-trafico.html" title="dynamips y wireshark, capturando trafico" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/10/dynamips-y-wireshark-capturando-trafico.html</feedburner:origLink></entry><entry gd:etag="W/&quot;DUEERX08fCp7ImA9WxRWFE0.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-3613777463869147006</id><published>2008-10-29T19:33:00.007-05:00</published><updated>2008-10-30T18:00:04.374-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-30T18:00:04.374-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="servidores" /><title>Virtualizando en Linux con VirtualBox</title><content type="html">&lt;div style="text-align: justify;"&gt;La version que se encuentra en debian es la version 1.6, si queremos usar la ultima version agregamos este link a nuestro sources.list&lt;/div&gt;&lt;blockquote style="font-family: inherit;"&gt;&lt;span style="font-size: small;"&gt;vi /etc/apt/sources.list &lt;/span&gt;&lt;br /&gt;
&lt;pre class="wiki" style="font-family: inherit;"&gt;&lt;span style="font-size: small;"&gt;deb http://download.virtualbox.org/virtualbox/debian lenny non-free&lt;/span&gt;&lt;/pre&gt;&lt;/blockquote&gt;&lt;pre class="wiki" style="font-family: inherit;"&gt;&lt;span style="font-size: small;"&gt;Luego agregar la llave de sun&lt;/span&gt;&lt;/pre&gt;&lt;blockquote&gt;wget http://download.virtualbox.org/virtualbox/debian/sun_vbox.asc&lt;br /&gt;
apt-key add sun_vbox.asc&lt;br /&gt;
aptitude update&lt;br /&gt;
aptitude install virtualbox-2.0 linux-headers-`uname -r` fuse-utils virtualbox-ose-source&lt;br /&gt;
&lt;/blockquote&gt;&lt;br /&gt;
&lt;div style="text-align: justify;"&gt;Nota: La version que instalamos de VirtualBox es la version no libre, estan bajo la licencia &lt;a href="http://www.virtualbox.org/wiki/VirtualBox_PUEL"&gt;VirtualBox Personal Use and Evaluation License (PUEL)&lt;/a&gt; mientras que la version que ofrece Debian es la OpenSource&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Luego ya podremos encontrar virtual box integrado a nuestro escritorio, solo hay que abrirlo, aceptar la licencia y listo.!!&lt;/div&gt;&lt;div style="text-align: justify;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;&lt;/div&gt;&lt;div class="separator" style="clear: both; text-align: justify;"&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;VirtualBox integrado en nuestro menu&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_rzwYxlt7UYk/SQkJ592QFDI/AAAAAAAAAEU/VKHIOYcx9jU/s1600-h/virtualbox0.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_rzwYxlt7UYk/SQkJ592QFDI/AAAAAAAAAEU/VPCyXAcgIlM/s320-R/virtualbox0.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;Aceptamos la licencia&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_rzwYxlt7UYk/SQkJ_tyG-YI/AAAAAAAAAEc/J6_MLsc1g50/s1600-h/virtualbox.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_rzwYxlt7UYk/SQkJ_tyG-YI/AAAAAAAAAEc/FdjgIRa4vek/s320-R/virtualbox.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;Nos registramos&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://3.bp.blogspot.com/_rzwYxlt7UYk/SQkKIba2eII/AAAAAAAAAEk/kqITSGOTjF0/s1600-h/virtualbox1.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://3.bp.blogspot.com/_rzwYxlt7UYk/SQkKIba2eII/AAAAAAAAAEk/EiBC6_TNVC4/s320-R/virtualbox1.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;b&gt;Y todo ok !!&lt;/b&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;a href="http://4.bp.blogspot.com/_rzwYxlt7UYk/SQkKLXOTlQI/AAAAAAAAAEs/62OLtMmdlg8/s1600-h/virtualbox2.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://4.bp.blogspot.com/_rzwYxlt7UYk/SQkKLXOTlQI/AAAAAAAAAEs/Y0yHSHuIXXM/s320-R/virtualbox2.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div style="text-align: center;"&gt;&lt;/div&gt;&lt;div style="text-align: justify;"&gt;Luego ya podemos empezar a crear nuestras maquinas virtuales. &lt;/div&gt;Luego de crear una maquina virtual nos puede salir el siguiente mensaje:&lt;br /&gt;
&lt;br /&gt;
&lt;blockquote&gt;Could not load the Host USB Proxy Service (VERR_FILE_NOT_FOUND). The service might be not installed on the host computer.&lt;br /&gt;
Código Resultado: &lt;br /&gt;
NS_ERROR_FAILURE (0x00004005)&lt;br /&gt;
Componente: &lt;br /&gt;
Host&lt;br /&gt;
Interface: &lt;br /&gt;
IHost {489fb370-c227-4d43-9761-ceb28484fd9f}&lt;br /&gt;
Receptor: &lt;br /&gt;
IMachine {1e509de4-d96c-4f44-8b94-860194f710ac}&lt;/blockquote&gt;Lo que debemos hacer es activar el soporte para USB,editamos estearchivo y agregamos una linea en el metodo do_start:&lt;br /&gt;
&lt;blockquote&gt;vi /etc/init.d/mountdevsubfs.sh&lt;br /&gt;
domount usbfs usbdevfs /proc/bus/usb usbfs -onodev,noexec,nosuid,devgid=25,devmode=664&lt;/blockquote&gt;Luego iniciamos lo servicio &lt;br /&gt;
&lt;blockquote&gt;/etc/init.d/mountdevsubfs.sh start&lt;/blockquote&gt;y volvemos a abrir VirtualBox&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-3613777463869147006?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/q4CsfbXhnA2UlogYQeeb_Pvzk6E/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/q4CsfbXhnA2UlogYQeeb_Pvzk6E/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/q4CsfbXhnA2UlogYQeeb_Pvzk6E/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/q4CsfbXhnA2UlogYQeeb_Pvzk6E/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/NFDFAAmwUa0" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/3613777463869147006/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/10/virtualizando-en-linux-con-virtualbox.html#comment-form" title="1 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/3613777463869147006?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/3613777463869147006?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/NFDFAAmwUa0/virtualizando-en-linux-con-virtualbox.html" title="Virtualizando en Linux con VirtualBox" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://3.bp.blogspot.com/_rzwYxlt7UYk/SQkJ592QFDI/AAAAAAAAAEU/VPCyXAcgIlM/s72-Rc/virtualbox0.png" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/10/virtualizando-en-linux-con-virtualbox.html</feedburner:origLink></entry><entry gd:etag="W/&quot;D0YBQn48fCp7ImA9WxRWE04.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-5383137915033015332</id><published>2008-10-27T20:49:00.002-05:00</published><updated>2008-10-29T21:52:33.074-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-29T21:52:33.074-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><title>Configurando Teclado Multimedia en Linux con lineakd</title><content type="html">En realidad no hay mucho que explicar, si tenemos teclado multimedia e instalamos Linux, de manera predeterminada no reconoce las teclas extra. Una manera de configurarlas es usando lineakd&lt;br /&gt;
&lt;blockquote&gt;aptitude install lineakd&lt;/blockquote&gt;Luego ejecutamos este comando, para listar los modelos de teclado soportados:&lt;br /&gt;
&lt;blockquote&gt;lineakd -l&lt;/blockquote&gt;En mi caso, mi teclado si se encuentra en esa lista, pero si no lo encontramos, podemos agregarlo a la lista.&lt;br /&gt;
Luego debemos crear un archivo lineakd.conf&lt;br /&gt;
&lt;blockquote&gt;vi ~/.lineak/lineakd.conf&lt;/blockquote&gt;Aqui especificamos las acciones a realizar cuando presionemos esas teclas. Mi archivo de configuracion queda asi:&lt;br /&gt;
&lt;blockquote&gt;MixerDevice = /dev/mixer&lt;br /&gt;
CdromDevice = /dev/cdrom&lt;br /&gt;
KeyboardType = MWEDKB&lt;br /&gt;
Bookmarks = "liferea"&lt;br /&gt;
Calculator = "xcalc"&lt;br /&gt;
Home = "pcmanfm /root/Documentos"&lt;br /&gt;
Mail = "claws-mail"&lt;br /&gt;
Media = "audacious"&lt;br /&gt;
Mute = amixer set Master toggle &amp;amp;&amp;amp; amixer set Headphone toggle&lt;br /&gt;
My Computer = "pcmanfm"&lt;br /&gt;
VolumeDown = amixer set Master 2- &amp;amp;&amp;amp; amixer set Headphone 2-&lt;br /&gt;
VolumeUp = amixer set Master 2+ &amp;amp;&amp;amp; amixer set Headphone 2+&lt;br /&gt;
Play|Pause = "audacious --play-pause"&lt;/blockquote&gt;Finalmente ejecutamos el comando lineakd y ya tenemos nuestras teclas multimedia funcionando.&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-5383137915033015332?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/UuBl0HBsO3tKS4fZxDainVJj2jk/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/UuBl0HBsO3tKS4fZxDainVJj2jk/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/UuBl0HBsO3tKS4fZxDainVJj2jk/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/UuBl0HBsO3tKS4fZxDainVJj2jk/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/KvTkMmnCNBA" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/5383137915033015332/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/10/configurando-teclado-multimedia-en.html#comment-form" title="0 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/5383137915033015332?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/5383137915033015332?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/KvTkMmnCNBA/configurando-teclado-multimedia-en.html" title="Configurando Teclado Multimedia en Linux con lineakd" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/10/configurando-teclado-multimedia-en.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0MFQ3k8cCp7ImA9WxJaFks.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-9060461933991462689</id><published>2008-10-25T20:26:00.003-05:00</published><updated>2009-08-07T11:10:12.778-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2009-08-07T11:10:12.778-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ccna" /><category scheme="http://www.blogger.com/atom/ns#" term="ccnp" /><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="networking" /><title>Configurando Dynamips / GNS3 para simular routers Cisco en  32 y 64 bits</title><content type="html">&lt;b&gt;Instalando Dynamips&lt;/b&gt; &lt;br /&gt;
En Debian testing y SID, estos 2 programas ya se encuentran en los repositorios, podemos instalarlo de la siguiente manera&lt;br /&gt;
&lt;blockquote&gt;aptitude install&amp;nbsp; gns3 dynamips&lt;/blockquote&gt;Sin embargo, dynamips consume bastantes recursos asi que sera mejor compilar una version optimizada para el procesador que tengamos.&lt;br /&gt;
Para compilar el codigo fuente:&lt;br /&gt;
&lt;blockquote&gt;apt-get build-dep gns3 dynamips&lt;/blockquote&gt;&lt;blockquote&gt;aptitude install libelf-dev libelf1 libpcap0.8 libpcap0.8-dev cdbs python-qt4-dev python-sip4-dev libasm1 elfutils python-qt4 python-sip4 &lt;/blockquote&gt;Bajamos el cofigo fuente de la pagina de dynamips:&lt;br /&gt;
&lt;blockquote&gt;&lt;a href="http://www.ipflow.utc.fr/dynamips/dynamips-0.2.8-RC2.tar.gz"&gt;http://www.ipflow.utc.fr/dynamips/dynamips-0.2.8-RC2.tar.gz &lt;/a&gt;&lt;br /&gt;
tar zxvf dynamips-0.2.8-RC2.tar.gz&lt;br /&gt;
cd dynamips-0.2.8-RC2&lt;/blockquote&gt;Editamos el siguiente archivo para ponerlo de acuerdo a la version:&lt;br /&gt;
&lt;blockquote&gt;vi debian/changelog&lt;br /&gt;
dynamips (&lt;b&gt;0.2.8-RC2-1&lt;/b&gt;) unstable; urgency=low --&amp;gt;lo cambiamos al texto que aparece en negrita&lt;/blockquote&gt;Damos permiso de ejecucion, creamos el binario .deb e instalamos&lt;br /&gt;
&lt;blockquote&gt;chmod +x debian/rules &lt;br /&gt;
fakeroot debian/rules binary&amp;nbsp; --&amp;gt; para 32bits&lt;br /&gt;
export DYNAMIPS_ARCH=amd64 &amp;amp;&amp;amp;&amp;nbsp; fakeroot debian/rules binary&amp;nbsp; --&amp;gt; para 64 bits&lt;br /&gt;
cd ..&lt;br /&gt;
dpkg -i dynamips_0.2.8-RC2-1_i386.deb --&amp;gt;32bits&lt;br /&gt;
dpkg -i dynamips_0.2.8-RC2-1_amd64.deb --&amp;gt;64bits&lt;/blockquote&gt;&lt;br /&gt;
&lt;b&gt;Instalando GNS3&lt;/b&gt;&lt;br /&gt;
Descargamos la ultima version de la pagina de GNS3, son archivos en python asi que no hay necesidad de instalar:&lt;br /&gt;
&lt;blockquote&gt;&lt;a href="http://www.gns3.net/download"&gt;http://www.gns3.net/download&lt;/a&gt;&lt;b&gt;&amp;nbsp;&lt;/b&gt; &lt;br /&gt;
tar jxvf GNS3-0.5-src.tar.bz2 &lt;br /&gt;
cd GNS3-0.5-src&lt;br /&gt;
./gns3&lt;/blockquote&gt;Una ves ejecutado GNS3, nos pedira la ubicacion de dynamips, se encuentra en/bin/dynamips&lt;br /&gt;
&lt;br /&gt;
&lt;b&gt;Descomprimiendo el IOS&lt;/b&gt; &lt;br /&gt;
La documentacion recomienda descomprimir la imagen de IOS que vayamos a usar, asi que manos a la obra&lt;br /&gt;
&lt;blockquote&gt;&lt;span style="font-size: small;"&gt;&lt;span style="font-family: inherit;"&gt;unzip -p mi_archivo_ios.bin &amp;gt; ios_descomprimido.bin&lt;/span&gt;&lt;/span&gt;&lt;/blockquote&gt;&lt;br /&gt;
&lt;b&gt;Estableciendo el parametro idlepc&lt;/b&gt;&lt;br /&gt;
Si no configuramos este parametro, dinamyps consumira toda la CPU, hay otra opcion usando el comando cpulimit pero no e tenido la necesidad de usarlo aun.&lt;br /&gt;
&lt;pre&gt;&lt;/pre&gt;De manera predeterminada, dynamips asume que queremos emular el modelo c7200, asi que si tenemos otra imagen debemos cambiarlo con el parametro &lt;b&gt;-P&lt;/b&gt; (actualmente estan soportados los modelos 7200, 3600, 2691, 3725, 3745).&lt;br /&gt;
Podemos determinar graficamente este valor usando GNS3, pero al menos en mi PC (que no es tan nueva) deja colgado la interfaz, asi que hagamoslo en modo texto. Asmumanos que una imagen c3725, entonces ejecutamos este comando:&lt;br /&gt;
&lt;blockquote&gt;dynamips -P 3725&amp;nbsp; c3725_descomprimido.bin&lt;/blockquote&gt;Esto va a poner muy lenta la PC ya que va a consumir el 100% de CPU, esperamos que arranque el IOS hasta que nos aparesca el mensaje "Press RETURN to get started!" ( si nos pregunta la autoconfiguracion le damos que no). Luego presionamos la siguiente combinacion de teclas: &lt;b&gt;Ctrl-] i &lt;/b&gt;(es decir, presionamos &lt;b&gt;Control&lt;/b&gt; y &lt;b&gt;]&lt;/b&gt; al mismo tiempo, soltamos las teclas y a continuacion &lt;b&gt;i&lt;/b&gt;). Esto nos va a mostrar una informacion como esta:&lt;br /&gt;
&lt;blockquote&gt;Please wait while gathering statistics...&lt;br /&gt;
Done. Suggested idling PC:&lt;br /&gt;
&amp;nbsp;&amp;nbsp; 0x602649b4 (count=75)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x60264a2c (count=40)&lt;br /&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 0x60bedba0 (count=51)&lt;br /&gt;
Restart the emulator with "--idle-pc=0x602649b4" (for example)&lt;/blockquote&gt;Matamos el proceso dynamips y empezamos a probar con esos valores hasta encontrar el valor que haga que el consumo de cpu disminuya.&lt;br /&gt;
&lt;blockquote&gt;dynamips -P 3725 --idle-pc=0x602649b4&amp;nbsp; c3725_descomprimido.bin &lt;/blockquote&gt;Puede haber mas de un valor optimo, en mi caso obtuve estos resultados de uso de cpu:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;0x602649b4 (count=75)&amp;nbsp; --&amp;gt; 25%&lt;/li&gt;
&lt;li&gt;0x60264a2c (count=40) --&amp;gt; 90%&lt;/li&gt;
&lt;li&gt;0x60bedba0 (count=51) --&amp;gt; 26%&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;Luego de encontrado el valor optimo, abrimos el GNS3 y establecemos los valores.&lt;br /&gt;
&lt;div class="separator" style="clear: both; text-align: center;"&gt;&lt;a href="http://2.bp.blogspot.com/_rzwYxlt7UYk/SQTFmFUPbzI/AAAAAAAAAEM/OjcnjK46B5I/s1600-h/gns3.png" imageanchor="1" style="margin-left: 1em; margin-right: 1em;"&gt;&lt;img border="0" src="http://2.bp.blogspot.com/_rzwYxlt7UYk/SQTFmFUPbzI/AAAAAAAAAEM/2Tt8jsJ1Um4/s400-R/gns3.png" /&gt;&lt;/a&gt;&lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-9060461933991462689?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/8MWXV_fi_wHIlp8xXF89WoX9naw/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8MWXV_fi_wHIlp8xXF89WoX9naw/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/8MWXV_fi_wHIlp8xXF89WoX9naw/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/8MWXV_fi_wHIlp8xXF89WoX9naw/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/YqDVj8Xrpck" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/9060461933991462689/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/10/configurando-dynamips-gns3-para-simular.html#comment-form" title="1 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/9060461933991462689?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/9060461933991462689?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/YqDVj8Xrpck/configurando-dynamips-gns3-para-simular.html" title="Configurando Dynamips / GNS3 para simular routers Cisco en  32 y 64 bits" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://2.bp.blogspot.com/_rzwYxlt7UYk/SQTFmFUPbzI/AAAAAAAAAEM/2Tt8jsJ1Um4/s72-Rc/gns3.png" height="72" width="72" /><thr:total>1</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/10/configurando-dynamips-gns3-para-simular.html</feedburner:origLink></entry><entry gd:etag="W/&quot;C0YGSHg6cSp7ImA9WxRXGUk.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-6360644245517926525</id><published>2008-10-24T15:27:00.009-05:00</published><updated>2008-10-25T08:25:29.619-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-25T08:25:29.619-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="latex" /><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="UNI" /><title>Escribiendo Latex en Linux, preparando el entorno</title><content type="html">Instalaremos los paquetes basicos:&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;b&gt;aptitude install texlive&lt;/b&gt;&lt;/div&gt;Si deseamos la instalacion completa, debemos instalar el paquete texlive-full. Si usas este paquete, se instalara el soporte para todos los idiomas disponibles, asi como las fuentes necesarias. Muy dificilmente necesitaras todo eso pero si quieres instalarlo lo haces con este comando:&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;b&gt;aptitude install  texlive-full&lt;/b&gt;&lt;/div&gt;Con eso es suficiente. Podemos crear archivos latex usando el editor que nos guste.&lt;br /&gt;
&lt;br /&gt;
Escribamos un documento latex bastante simple (holamundo.tex) y convirtamos nuestro documento latex a varios formatos:&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="prettyprint"&gt;\documentclass[12pt]{article}
\usepackage[spanish] {babel}
\title{\LaTeX}
\date{}
\begin{document}
  \maketitle Hola Mundo !!!!
  \begin{equation}
    x+y = z
  \end{equation}
\end{document}
&lt;/pre&gt;&lt;br /&gt;
Dependiendo el formato al que vayamos a convertirlo usaremos un comando distinto:&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;La forma clásica:&lt;/li&gt;

&lt;ul&gt;&lt;li&gt;latex holamundo.tex  --&amp;gt;Crea el archivo dvi, asi como un .aux y .log&lt;/li&gt;
&lt;li&gt;xdvi holamundo.dvi  --&amp;gt;Visualisamos nuestro documento latex&lt;/li&gt;
&lt;li&gt;dvipdf holamundo.dvi --&amp;gt;convierte el archivo dvi a pdf&lt;/li&gt;
&lt;li&gt;xpdf holamundo.pdf   --&amp;gt;visualizamos el pdf&lt;br /&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;Una forma mas rapida:&lt;/li&gt;

&lt;ul&gt;&lt;li&gt;pdflatex holamundo.tex  --&amp;gt; crea directamente el archivo pdf&lt;/li&gt;
&lt;/ul&gt;
&lt;li&gt;Tambien podemos convertirlo a HTML&lt;/li&gt;

&lt;ul&gt;&lt;li&gt;pdfhtml holamundo.tex  --&amp;gt; crea una carpeta holamundo y en el interior crea el documento&lt;/li&gt;
&lt;/ul&gt;&lt;/ul&gt;Disponemos de varias opciones para crear nuestros archivos .tex, desde usar vim o emacs con plugins, hasta entornos especializados como lyx, kile o texmacs. Personalmente prefiero lyx&lt;br /&gt;
&lt;br /&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href="http://vim-latex.sourceforge.net/"&gt;Vim&lt;/a&gt;             --&amp;gt;aptitude install vim-latexsuite&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.gnu.org/software/auctex/index.html"&gt;emacs&lt;/a&gt;          --&amp;gt;aptitude install auctex&lt;/li&gt;
&lt;li&gt;&lt;a href="http://kile.sourceforge.net/"&gt;Kile&lt;/a&gt;              --&amp;gt;aptitude install kile kdvi&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.lyx.org/"&gt;lyx&lt;/a&gt;               --&amp;gt;aptitude install lyx&lt;/li&gt;
&lt;li&gt;&lt;a href="http://www.xm1math.net/texmaker/"&gt;Texmaker&lt;/a&gt;  --&amp;gt;aptitude install texmaker&lt;/li&gt;
&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-6360644245517926525?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/G4wnaAHQl6aLE63aOnkO6RyAOxU/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/G4wnaAHQl6aLE63aOnkO6RyAOxU/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/G4wnaAHQl6aLE63aOnkO6RyAOxU/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/G4wnaAHQl6aLE63aOnkO6RyAOxU/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/6qYYL5FcIkY" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/6360644245517926525/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/10/escribiendo-latex-en-linux-preparando.html#comment-form" title="0 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/6360644245517926525?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/6360644245517926525?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/6qYYL5FcIkY/escribiendo-latex-en-linux-preparando.html" title="Escribiendo Latex en Linux, preparando el entorno" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><thr:total>0</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/10/escribiendo-latex-en-linux-preparando.html</feedburner:origLink></entry><entry gd:etag="W/&quot;A0MCQX49cSp7ImA9WxRXGEo.&quot;"><id>tag:blogger.com,1999:blog-2433909820614469320.post-1373659157384484326</id><published>2008-10-23T21:32:00.007-05:00</published><updated>2008-10-24T15:17:40.069-05:00</updated><app:edited xmlns:app="http://www.w3.org/2007/app">2008-10-24T15:17:40.069-05:00</app:edited><category scheme="http://www.blogger.com/atom/ns#" term="ccna" /><category scheme="http://www.blogger.com/atom/ns#" term="linux" /><category scheme="http://www.blogger.com/atom/ns#" term="networking" /><title>Instalando Packet Tracer 5 en  Linux</title><content type="html">La ultima versión de Packet Tracer trae una versión para linux, por lo que ya no es necesario instalar la versión de windows usando wine. Esta versión viene con un instalador especifico para ubuntu y fedora, así como el genérico que es el que vamos a usar.&lt;br /&gt;
Lo descargamos y descomprimimos:&lt;br /&gt;
&lt;div style="text-align: center;"&gt;&lt;div style="text-align: left;"&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;blockquote&gt;&lt;div style="text-align: left;"&gt;&lt;span style="font-weight: bold;"&gt;#tar zxvf PacketTracer5_generic.tar.gz&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span style="font-weight: bold;"&gt;#cd PacketTracer5&lt;/span&gt; &lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;/div&gt;&lt;div style="text-align: left;"&gt;&lt;span style="font-weight: bold;"&gt;#./installer&lt;/span&gt; &lt;/div&gt;&lt;/blockquote&gt;&lt;/div&gt;Presionamos Enter para leer la licencia y Bajamos hasta el final para aceptarla escribiendo Y&lt;br /&gt;
Luego debemos especificar la ubicación en donde se instalara, presionamos enter para dejarlo en la ubicación predeterminada:&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;Enter location to install Packet Tracer 5 or press enter for default [/opt/pt]:&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
Nos pregunta si queremos que cree enlaces simbolicos a /usr/local/bin, escribirmos Y&lt;br /&gt;
&lt;br /&gt;
&lt;span style="font-weight: bold;"&gt;Should we create a symbolic link "packettracer" in /usr/local/bin for easy Packet Tracer 5 startup? [Yn]Y&lt;/span&gt;&lt;br /&gt;
&lt;br /&gt;
y listo !!!, ya tenemos packet tracer en Linux. Ahora solo debemos abrir un terminal ( xterm, kconsole, gnome-terminal, ... cualquiera), escribir el comando &lt;span style="font-weight: bold;"&gt;packettracer&lt;/span&gt; y ya lo tendremos el software ejecutándose en nuestra PC.&lt;br /&gt;
&lt;br /&gt;
Nota: En caso de tener un sistema de 64 bits hay que instalar las librerías de compatibilidad de 32 bits.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://4.bp.blogspot.com/_rzwYxlt7UYk/SQE6rMlUlRI/AAAAAAAAADo/Dk2OmUsem14/s1600-h/captura.png" onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}"&gt;&lt;img alt="" border="0" id="BLOGGER_PHOTO_ID_5260550353531999506" src="http://4.bp.blogspot.com/_rzwYxlt7UYk/SQE6rMlUlRI/AAAAAAAAADo/Dk2OmUsem14/s320/captura.png" style="cursor: pointer; display: block; height: 192px; margin: 0px auto 10px; text-align: center; width: 320px;" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/2433909820614469320-1373659157384484326?l=cquispe.blogspot.com' alt='' /&gt;&lt;/div&gt;
&lt;p&gt;&lt;a href="http://feedads.g.doubleclick.net/~a/yMmofRqLgYONxzpmiaHYQixAi6k/0/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yMmofRqLgYONxzpmiaHYQixAi6k/0/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;br/&gt;
&lt;a href="http://feedads.g.doubleclick.net/~a/yMmofRqLgYONxzpmiaHYQixAi6k/1/da"&gt;&lt;img src="http://feedads.g.doubleclick.net/~a/yMmofRqLgYONxzpmiaHYQixAi6k/1/di" border="0" ismap="true"&gt;&lt;/img&gt;&lt;/a&gt;&lt;/p&gt;&lt;img src="http://feeds.feedburner.com/~r/ElBlogDeChristian/~4/5lHSpH_W2-w" height="1" width="1"/&gt;</content><link rel="replies" type="application/atom+xml" href="http://cquispe.blogspot.com/feeds/1373659157384484326/comments/default" title="Comentarios de la entrada" /><link rel="replies" type="text/html" href="http://cquispe.blogspot.com/2008/10/instalando-packet-tracer-5.html#comment-form" title="18 Comentarios" /><link rel="edit" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/1373659157384484326?v=2" /><link rel="self" type="application/atom+xml" href="http://www.blogger.com/feeds/2433909820614469320/posts/default/1373659157384484326?v=2" /><link rel="alternate" type="text/html" href="http://feedproxy.google.com/~r/ElBlogDeChristian/~3/5lHSpH_W2-w/instalando-packet-tracer-5.html" title="Instalando Packet Tracer 5 en  Linux" /><author><name>Christian</name><uri>http://www.blogger.com/profile/13305366387282888262</uri><email>noreply@blogger.com</email><gd:image rel="http://schemas.google.com/g/2005#thumbnail" width="32" height="32" src="http://1.bp.blogspot.com/_rzwYxlt7UYk/SQI06Kj0O1I/AAAAAAAAAD0/oYWe9qvuWsU/S220/sosoe222-smart-tux-3440.jpg" /></author><media:thumbnail xmlns:media="http://search.yahoo.com/mrss/" url="http://4.bp.blogspot.com/_rzwYxlt7UYk/SQE6rMlUlRI/AAAAAAAAADo/Dk2OmUsem14/s72-c/captura.png" height="72" width="72" /><thr:total>18</thr:total><feedburner:origLink>http://cquispe.blogspot.com/2008/10/instalando-packet-tracer-5.html</feedburner:origLink></entry></feed>

