<?xml version="1.0" encoding="UTF-8" ?>

<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Posteet: reseau,linux</title> 
    <link>http://www.posteet.com/</link> 
    <description>Recent posteets posted to Posteet</description>
    <ttl>60</ttl>

    
    <item>
        <title>Configuration réseau sous Fedora core 6</title>
        <link>http://www.posteet.com/view/830</link>
        <description>
        <![CDATA[<pre>fichier :  /etc/sysconfig/network-scripts/ifcfg-eth2
configuration :
DEVICE=eth2
BOOTPROTO=static
ONBOOT=yes
HWADDR=00:1a:20:6a:d8:a4
IPADDR=192.168.1.129
NETMASK=255.255.255.128

fichier : /etc/sysconfig/network
configuration :
NETWORKING=yes
HOSTNAME=toto.lan.fr
GATEWAY=192.168.1.254</pre> <a href="http://www.posteet.com/tags/bash">[bash]</a>  <a href="http://www.posteet.com/tags/configuration">[configuration]</a>  <a href="http://www.posteet.com/tags/fedora">[fedora]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/reseau">[reseau]</a> ]]>        </description>
        <dc:creator>neorom</dc:creator>
        <pubDate>Fri, 14 Mar 2008 14:17:37 +0000</pubDate>

            <category>bash</category>
            <category>configuration</category>
            <category>fedora</category>
            <category>linux</category>
            <category>reseau</category>
    
    </item>

  
    <item>
        <title>Récupérer l'adresse ip publique</title>
        <link>http://www.posteet.com/view/216</link>
        <description>
        <![CDATA[<pre>#L'appel à iconv n'est nécessaire que si votre système utilise utf8 comme jeu de caractères par défaut (ce qui devient de plus en plus courant) au lieu d'iso8859-1 (latin-1).
wget -q www.monip.org -O -  | iconv -f iso8859-1 -t utf8 | sed -nre 's/^.* (([0-9]{1,3}\.){3}[0-9]{1,3}).*$/\1/p'</pre> <a href="http://www.posteet.com/tags/bash">[bash]</a>  <a href="http://www.posteet.com/tags/ip">[ip]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/reseau">[reseau]</a>  <a href="http://www.posteet.com/tags/shell">[shell]</a> ]]>        </description>
        <dc:creator>bobuse</dc:creator>
        <pubDate>Mon, 05 Nov 2007 10:04:56 +0000</pubDate>

            <category>bash</category>
            <category>ip</category>
            <category>linux</category>
            <category>reseau</category>
            <category>shell</category>
    
    </item>

  
    <item>
        <title>Désactiver le window scaling ipv4 (règle des problèmes de connexion avec certain FAI type Alice)</title>
        <link>http://www.posteet.com/view/184</link>
        <description>
        <![CDATA[<pre>dans le fichier : 
/etc/sysctl.conf

net.ipv4.tcp_window_scaling = 0</pre> <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/reseau">[reseau]</a> ]]>        </description>
        <dc:creator>michubuntu</dc:creator>
        <pubDate>Sun, 04 Nov 2007 20:24:00 +0000</pubDate>

            <category>linux</category>
            <category>reseau</category>
    
    </item>

  
    <item>
        <title>Récupérer le nombre total d'octet transféré sur une interface</title>
        <link>http://www.posteet.com/view/135</link>
        <description>
        <![CDATA[<pre>#Remplacez &quot;eth0&quot; par l'interface concernée. 
#Octets reçus :
/sbin/ifconfig eth0 | grep bytes | sed -e &quot;s/TX.*//g&quot; | sed -e &quot;s/.*RX/RX/g&quot;
#Octets envoyés :
/sbin/ifconfig eth0 | grep bytes | sed -e &quot;s/.*TX/TX/g&quot;
#Les deux :
/sbin/ifconfig eth0 | grep bytes | sed -e &quot;s/.*RX/RX/g</pre> <a href="http://www.posteet.com/tags/Bash">[Bash]</a>  <a href="http://www.posteet.com/tags/Linux">[Linux]</a>  <a href="http://www.posteet.com/tags/Reseau">[Reseau]</a>  <a href="http://www.posteet.com/tags/shell">[shell]</a> ]]>        </description>
        <dc:creator>daneel</dc:creator>
        <pubDate>Sat, 03 Nov 2007 16:42:05 +0000</pubDate>

            <category>Bash</category>
            <category>Linux</category>
            <category>Reseau</category>
            <category>shell</category>
    
    </item>

  
    <item>
        <title>Récupérer l'adresse ip publique (vue depuis internet)</title>
        <link>http://www.posteet.com/view/134</link>
        <description>
        <![CDATA[<pre>#L'appel à iconv n'est nécessaire que si votre système utilise utf8 comme jeu de caractères par défaut (ce qui devient de plus en plus courant) au lieu d'iso8859-1 (latin-1).
wget -q www.monip.org -O ip.tmp &amp;&amp; cat ip.tmp | iconv -f iso8859-1 -t utf8 | sed -nre 's/^.* (([0-9]{1,3}\.){3}[0-9]{1,3}).*$/\1/p' &amp;&amp; rm -f ip.tmp</pre> <a href="http://www.posteet.com/tags/Bash">[Bash]</a>  <a href="http://www.posteet.com/tags/Linux">[Linux]</a>  <a href="http://www.posteet.com/tags/Reseau">[Reseau]</a>  <a href="http://www.posteet.com/tags/shell">[shell]</a> ]]>        </description>
        <dc:creator>daneel</dc:creator>
        <pubDate>Sat, 03 Nov 2007 16:40:14 +0000</pubDate>

            <category>Bash</category>
            <category>Linux</category>
            <category>Reseau</category>
            <category>shell</category>
    
    </item>

  
    <item>
        <title>Récupérer l'ip d'une interface réseau (ou son masque réseau)</title>
        <link>http://www.posteet.com/view/133</link>
        <description>
        <![CDATA[<pre>#Où eth0 est l'interface pour laquelle vous voulez l'ip.
#Remplacer -f2 du premier cut par -f3 pour obtenir le masque du réseau.
/sbin/ifconfig eth0 | head -n 2 | tail -n 1 | cut -d&quot;:&quot; -f2 | cut -d&quot; &quot; -f1</pre> <a href="http://www.posteet.com/tags/Bash">[Bash]</a>  <a href="http://www.posteet.com/tags/Linux">[Linux]</a>  <a href="http://www.posteet.com/tags/Reseau">[Reseau]</a>  <a href="http://www.posteet.com/tags/shell">[shell]</a> ]]>        </description>
        <dc:creator>daneel</dc:creator>
        <pubDate>Sat, 03 Nov 2007 16:37:59 +0000</pubDate>

            <category>Bash</category>
            <category>Linux</category>
            <category>Reseau</category>
            <category>shell</category>
    
    </item>

  
    <item>
        <title>Récupérer le nom de l'interface Wifi</title>
        <link>http://www.posteet.com/view/132</link>
        <description>
        <![CDATA[<pre>#Testé sous Fedora
grep -a2 Wireless /etc/sysconfig/hwconf | grep device | cut -d &quot; &quot; -f2</pre> <a href="http://www.posteet.com/tags/Bash">[Bash]</a>  <a href="http://www.posteet.com/tags/Linux">[Linux]</a>  <a href="http://www.posteet.com/tags/Reseau">[Reseau]</a>  <a href="http://www.posteet.com/tags/shell">[shell]</a> ]]>        </description>
        <dc:creator>daneel</dc:creator>
        <pubDate>Sat, 03 Nov 2007 16:36:44 +0000</pubDate>

            <category>Bash</category>
            <category>Linux</category>
            <category>Reseau</category>
            <category>shell</category>
    
    </item>

  
    <item>
        <title>gestion des routes sous Linux</title>
        <link>http://www.posteet.com/view/68</link>
        <description>
        <![CDATA[<pre>#ajouter une route par defaut
route add default gw 192.168.0.1

#afficher les routes
route -n

# supprimer une route
route del -net 192.168.0.1/24</pre> <a href="http://www.posteet.com/tags/administration">[administration]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/reseau">[reseau]</a>  <a href="http://www.posteet.com/tags/routage">[routage]</a> ]]>        </description>
        <dc:creator>neorom</dc:creator>
        <pubDate>Wed, 10 Oct 2007 06:18:23 +0000</pubDate>

            <category>administration</category>
            <category>linux</category>
            <category>reseau</category>
            <category>routage</category>
    
    </item>

  
    <item>
        <title>créer un interface réseau virtuel sous Linux</title>
        <link>http://www.posteet.com/view/67</link>
        <description>
        <![CDATA[<pre>ifconfig eth0:1 192.168.0.4
#ou 1 est le numéro de l'interface virtuel</pre> <a href="http://www.posteet.com/tags/astuces">[astuces]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/reseau">[reseau]</a> ]]>        </description>
        <dc:creator>neorom</dc:creator>
        <pubDate>Wed, 10 Oct 2007 05:57:04 +0000</pubDate>

            <category>astuces</category>
            <category>linux</category>
            <category>reseau</category>
    
    </item>

  
    <item>
        <title>renumérotation des interfaces réseau sous Debian</title>
        <link>http://www.posteet.com/view/60</link>
        <description>
        <![CDATA[<pre># accedez à ce fichier
/etc/udev/rules.d/z25_persistent-net.rules

# on trouve à l'interieur, l association adresse mac avec l'interface linux</pre> <a href="http://www.posteet.com/tags/adresse mac">[adresse mac]</a>  <a href="http://www.posteet.com/tags/linux">[linux]</a>  <a href="http://www.posteet.com/tags/reseau">[reseau]</a> ]]>        </description>
        <dc:creator>neorom</dc:creator>
        <pubDate>Tue, 09 Oct 2007 11:21:53 +0000</pubDate>

            <category>adresse mac</category>
            <category>linux</category>
            <category>reseau</category>
    
    </item>


</channel>
</rss>
