<?xml version="1.0" encoding="ISO-8859-1"?>
<!-- generator="aduarteRSS generator" -->
<rss version="0.92">
  <channel>
    <title>aduarte.net - Se vende un teclado</title>
    <link>http://www.aduarte.net</link>
    <description>Pagina personal Alfredo Duarte.</description>
    <language>es-mx</language>
    <docs>http://backend.userland.com/rss092</docs>
	<item>
	  <title>tcpdump advanced filters</title>
	  <description>&lt;p&gt;tcpdump basic syntax.&lt;/p&gt;
&lt;p&gt;All credits to: &lt;/p&gt;
&lt;p&gt;Sebastien Wains&lt;br /&gt;
http://www.wains.be&lt;/p&gt; &lt;pre&gt;
Basic syntax :
==============

Filtering hosts :
-----------------

- Match any traffic involving 192.168.1.1 as destination or source
# tcpdump -i eth1 host 192.168.1.1

- As soure only
# tcpdump -i eth1 src host 192.168.1.1

- As destination only
# tcpdump -i eth1 dst host 192.168.1.1


Filtering ports :
-----------------

- Match any traffic involving port 25 as source or destination
# tcpdump -i eth1 port 25

- Source
# tcpdump -i eth1 src port 25

- Destination
# tcpdump -i eth1 dst port 25


Network filtering :
-------------------

# tcpdump -i eth1 net 192.168
# tcpdump -i eth1 src net 192.168
# tcpdump -i eth1 dst net 192.168


Protocol filtering :
--------------------

# tcpdump -i eth1 arp
# tcpdump -i eth1 ip

# tcpdump -i eth1 tcp
# tcpdump -i eth1 udp
# tcpdump -i eth1 icmp


Let&apos;s combine expressions :
---------------------------

Negation    : ! or &amp;quot;not&amp;quot; (without the quotes)
Concatanate : &amp;amp;&amp;amp; or &amp;quot;and&amp;quot;
Alternate   : || or &amp;quot;or&amp;quot; 

- This rule will match any TCP traffic on port 80 (web) with 192.168.1.254 or 192.168.1.200 as destination host
# tcpdump -i eth1 &apos;((tcp) and (port 80) and ((dst host 192.168.1.254) or (dst host 192.168.1.200)))&apos;

- Will match any ICMP traffic involving the destination with physical/MAC address 00:01:02:03:04:05
# tcpdump -i eth1 &apos;((icmp) and ((ether dst host 00:01:02:03:04:05)))&apos;

- Will match any traffic for the destination network 192.168 except destination host 192.168.1.200
# tcpdump -i eth1 &apos;((tcp) and ((dst net 192.168) and (not dst host 192.168.1.200)))&apos;


Advanced header filtering :
===========================

Before we continue, we need to know how to filter out info from headers

proto[x:y] 		: will start filtering from byte x for y bytes. ip[2:2] would filter bytes 3 and 4 (first byte begins by 0)
proto[x:y] &amp;amp; z = 0 	: will match bits set to 0 when applying mask z to proto[x:y]
proto[x:y] &amp;amp; z !=0 	: some bits are set when applying mask z to proto[x:y]
proto[x:y] &amp;amp; z = z 	: every bits are set to z when applying mask z to proto[x:y]
proto[x:y] = z 		: p[x:y] has exactly the bits set to z


Operators : &amp;gt;, &amp;lt;, &amp;gt;=, &amp;lt;=, =, !=



Full document in the author&apos;s page.


&lt;/pre&gt;</description>
	  <link>http://aduarte.net/?item=tcpdump-advanced-filters</link>
	</item>
	<item>
	  <title>Dancing in the disco :P</title>
	  <description>&lt;embed type=&quot;application/x-shockwave-flash&quot; pluginspage=&quot;http://www.macromedia.com/go/getflashplayer&quot; src=&quot;http&quot; width=&quot;425&quot; height=&quot;355&quot;&gt;&lt;/embed&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt; </description>
	  <link>http://aduarte.net/?item=Dancing-in-the-disco-:P</link>
	</item>
	<item>
	  <title>Too much free time</title>
	  <description>&lt;p&gt;Llamese mucho tiempo libre, aburrimiento, mucha cafeina o simplemente demencia, el caso es que esto esta divertido cuando no hay mucho que hacer.&lt;/p&gt; &lt;object width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/9LSuyLyuUiM&amp;hl=en&amp;fs=1&quot;&gt;&lt;/param&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/param&gt;&lt;param name=&quot;allowFullScreen&quot; value=&quot;true&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/9LSuyLyuUiM&amp;hl=en&amp;fs=1&quot; type=&quot;application/x-shockwave-flash&quot; allowfullscreen=&quot;true&quot; wmode=&quot;transparent&quot; width=&quot;425&quot; height=&quot;344&quot;&gt;&lt;/embed&gt;&lt;/object&gt;</description>
	  <link>http://aduarte.net/?item=Too-much-free-time</link>
	</item>
	<item>
	  <title>Pixadus</title>
	  <description>Collection of photos </description>
	  <link>http://aduarte.net/?item=Pixadus</link>
	</item>
	<item>
	  <title>Rogue talents</title>
	  <description>&lt;p&gt;This is a set of rogue talents that i chosed for my rogue in wow&lt;/p&gt; &lt;p&gt;&lt;img alt=&quot;&quot; src=&quot;http://www.aduarte.net/images/upload/image/rogue.png&quot; /&gt;&lt;/p&gt;</description>
	  <link>http://aduarte.net/?item=Rogue-talents</link>
	</item>
	<item>
	  <title>Installing and setting TFTPD in Ubuntu</title>
	  <description>&lt;p&gt;This is a HOW-TO install a tftpd server in an ubuntu system that i&apos;ve found made by David Sudjiman that I want to keep on hand.&lt;/p&gt;
&lt;p&gt;The original document, corrections and comments are on the author&apos;s page.&lt;/p&gt; &lt;p&gt;&lt;b&gt;1. Install tftpd and related packages.&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;$ sudo apt-get install xinetd tftpd tftp&lt;/p&gt;
&lt;br /&gt;
&lt;p&gt;&lt;b&gt;2. Create /etc/xinetd.d/tftp and put this entry:&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;service tftp&lt;br /&gt;
{&lt;br /&gt;
protocol&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = udp&lt;br /&gt;
port&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 69&lt;br /&gt;
socket_type&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = dgram&lt;br /&gt;
wait&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = yes&lt;br /&gt;
user&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = nobody&lt;br /&gt;
server&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = /usr/sbin/in.tftpd&lt;br /&gt;
server_args&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = /tftpboot&lt;br /&gt;
disable&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = no&lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;3. Make /tftpboot directory&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;$ sudo mkdir /tftpboot&lt;br /&gt;
$ sudo chmod -R 777 /tftpboot&lt;br /&gt;
$ sudo chown -R nobody /tftpboot&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;4. Start tftpd through xinetd&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;$ sudo /etc/init.d/xinetd start&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;5. Testing. Tranfering file hda.txt from 192.168.1.100 (Client using tftp) to 192.168.1.100 (Server 192.168.1.100). Get an example file to transfer (eg. hda.txt)&lt;/b&gt;&lt;/p&gt;
&lt;p&gt;$ touch /tftpboot/hda.txt&lt;br /&gt;
$ chmod 777 /tftpboot/hda.txt&lt;br /&gt;
$ ls -l /tftpboot/&lt;br /&gt;
total 0&lt;br /&gt;
-rwxrwxrwx&amp;nbsp; 1 davids davids 0 2006-03-27 23:04 hda.txt&lt;br /&gt;
$ tftp 192.168.1.100&lt;br /&gt;
tftp&amp;gt; put hda.txt&lt;br /&gt;
Sent 722 bytes in 0.0 seconds&lt;br /&gt;
tftp&amp;gt; quit&lt;br /&gt;
$ ls -l /tftpboot/&lt;br /&gt;
total 4&lt;br /&gt;
-rwxrwxrwx&amp;nbsp; 1 davids davids 707 2006-03-27 23:07 hda.txt&lt;/p&gt;</description>
	  <link>http://aduarte.net/?item=Installing-and-setting-TFTPD-in-Ubuntu</link>
	</item>
	<item>
	  <title>PCMS</title>
	  <description>&lt;p&gt;PCMS es un sistema para manejo de contenido dinamico orientado al usuario individual enfocado en la facilidad de uso asi como en la flexibilidad de personalizacion, de tal manera que un usuario inexperto pueda instalarlo y personalizarlo en 5 minutos, esta disenado para ser modular, soporte multi-idioma, soporte para temas y taxonomia, aunque tambien se planea que soporte plug-ins estos aun no estan habilitados.&lt;/p&gt; &lt;p&gt;&lt;span style=&quot;font-size: large;&quot;&gt;FAQ&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;Que significa PCMS?&lt;/p&gt;
&lt;p&gt;Personal Content Management System.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Que es PCMS?&lt;/p&gt;
&lt;p&gt;PCMS es un manejador de contenido disenado para uso personal es decir, para manejar un blog o una pagina personal.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Que no es PCMS?&lt;/p&gt;
&lt;p&gt;PCMS no es ni esta disenado para ser un sistema avanzado para grupos.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Por que desarrollar otro CMS habiendo tantos?&lt;/p&gt;
&lt;p&gt;Probe practicamente todos los CMS que me encontre en internet y todos eran demasiado complejos de personalizar debido a que estan disenados para grupos de usuarios lo que complica su configuracion y mantenimiento, asi que al no encontrar un CMS que me convenciera para uso personal decidi desarrollar uno.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Como puedo obtener PCMS?&lt;/p&gt;
&lt;p&gt;En este momento no hay una version disponible para descarga directa, sin embargo si te interesa instalar la version inestable (la que esta funcionando en esta pagina) puedes solicitarmela por correo a alfredo@aduarte.net.&lt;/p&gt;</description>
	  <link>http://aduarte.net/?item=PCMS</link>
	</item>
	<item>
	  <title>Mujeres al volante</title>
	  <description>&lt;p&gt;Solo espero que las mujeres que lo vean no se ofendan.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;object width=&quot;425&quot; height=&quot;355&quot;&gt;&lt;param name=&quot;movie&quot; value=&quot;http://www.youtube.com/v/hIuprWXwTVk&amp;hl=en&quot;&gt;&lt;/param&gt;&lt;param name=&quot;wmode&quot; value=&quot;transparent&quot;&gt;&lt;/param&gt;&lt;embed src=&quot;http://www.youtube.com/v/hIuprWXwTVk&amp;hl=en&quot; type=&quot;application/x-shockwave-flash&quot; wmode=&quot;transparent&quot; width=&quot;425&quot; height=&quot;355&quot;&gt;&lt;/embed&gt;&lt;/object&gt; </description>
	  <link>http://aduarte.net/?item=Mujeres-al-volante</link>
	</item>
	<item>
	  <title>Cumbia de mario bros</title>
	  <description>&lt;p&gt;No doy mas preambulos, para que sea una verdadera sorpresa.&lt;/p&gt; &lt;p&gt;Debo confesar que esto hasta me indigna un poco, pero en fin, que le vamos a hacer.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description>
	  <link>http://aduarte.net/?item=Cumbia-de-mario-bros</link>
	</item>
  </channel></rss>