4359 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 111 / 218
Newer►
  • Inconsolata
    April 7, 2014 at 10:47:08 PM GMT+2 - permalink - archive.org - http://levien.com/type/myfonts/inconsolata.html
    font console
  • thumbnail
    tbaggery - A Note About Git Commit Messages

    conseils pour les messages de commit

    April 7, 2014 at 5:42:22 PM GMT+2 - permalink - archive.org - http://tbaggery.com/2008/04/19/a-note-about-git-commit-messages.html
    git
  • thumbnail
    github.com/dalen/dm-puppetdb-adapter

    ror adapter to query puppetdb

    April 7, 2014 at 5:23:35 PM GMT+2 - permalink - archive.org - https://github.com/dalen/dm-puppetdb-adapter
    ror puppet puppetdb
  • thumbnail
    Keynotes Recordings | Percona Live MySQL Conference & Expo 2014
    April 7, 2014 at 3:04:38 PM GMT+2 - permalink - archive.org - https://www.percona.com/live/mysql-conference-2014/keynotes-recordings
    mysql percona video
  • FlexGet
    • https://github.com/cantino/huginn
    April 7, 2014 at 11:45:33 AM GMT+2 - permalink - archive.org - http://flexget.com/
    torrent iftt
  • thumbnail
    Un Sequoia Géant de 3200 ans Photographié Pour la Première Fois en Une Seule Image -

    joli

    April 4, 2014 at 3:58:52 PM GMT+2 - permalink - archive.org - http://lefirago.info/2014/03/un-sequoia-geant-de-3200-ans-photographie-pour-la-premiere-fois-en-une-seule-image.html
    nature
  • thumbnail
    DPDK
    April 4, 2014 at 2:29:51 PM GMT+2 - permalink - archive.org - http://dpdk.org/
    network
  • thumbnail
    12 bonnes raisons d'être un administrateur systèmes fainéant - Framablog

    old mais vrai ;)

    April 4, 2014 at 2:00:18 PM GMT+2 - permalink - archive.org - http://www.framablog.org/index.php/post/2012/09/25/adminsys-paresseux
    sys devops sysadmin
  • thumbnail
    sysdig | Home

    Un outil pour monitorer son systeme qui a l'air bien + dev actif

    "Think of it as strace + tcpdump + lsof + awesome sauce."

    April 4, 2014 at 1:55:52 PM GMT+2 - permalink - archive.org - http://www.sysdig.org/
    sys monitoring tools strace lsof
  • thumbnail
    Popcorn Time - Watch torrent movies instantly

    nouvelle url de popcorn time

    April 4, 2014 at 1:24:31 PM GMT+2 - permalink - archive.org - http://popcorn-time.tv/
    popcorntime
  • Redis new data structure: the HyperLogLog - Antirez weblog

    D'après ce que j'ai compris, hyperloglog est un algo qui a été implémenté dans redis et qui permet de compter plus rapidement et à moindre cout le nombre d'objet unique

    April 4, 2014 at 10:20:09 AM GMT+2 - permalink - archive.org - http://antirez.com/news/75
    redis hyperloglog
  • thumbnail
    Phusion Passenger users guide, Apache version
    April 3, 2014 at 4:38:50 PM GMT+2 - permalink - archive.org - http://www.modrails.com/documentation/Users%20guide%20Apache.html#PassengerPoolIdleTime
    passenger
  • thumbnail
    Adding email reminders to Owncloud calendar with a bash script | T.T
    April 3, 2014 at 4:36:24 PM GMT+2 - permalink - archive.org - http://mhtechz.wordpress.com/2014/03/14/adding-email-reminders-to-owncloud-calendar-with-a-bash-script/
    owncloud
  • On the Bleeding Edge of Puppet: The Puppet Type System Blog Posts
    April 3, 2014 at 11:35:35 AM GMT+2 - permalink - archive.org - http://puppet-on-the-edge.blogspot.fr/2014/02/the-puppet-type-system-blog-posts.html
    puppet
  • thumbnail
    Top 10 des choses à ne pas oublier le Jour-J | Made in Mud
    April 2, 2014 at 4:50:59 PM GMT+2 - permalink - archive.org - http://madeinmud.com/2014/02/26/top-10-des-choses-a-ne-pas-oublier-le-jour-j/
    mudday course
  • /proc/sys/net/ipv4/conf/

    La doc des propriétés : https://github.com/torvalds/linux/blob/master/Documentation/networking/ip-sysctl.txt

    Ensuite on peut les définir dans le dossier spécifique à l'interface, exemple : /proc/sys/net/ipv4/conf/eth0/
    Ou dans le dossier all : /proc/sys/net/ipv4/conf/all

    Exemple :

    La valeur pour ehto concernant la propriété arp_filter ne dépend pas seulement de /proc/sys/net/ipv4/conf/eth0/arp_filter mais aussi de /proc/sys/net/ipv4/conf/all/arp_filter
    D'après la doc, arp_filter est un boolean (0 ou 1)

    D'après ces liens :
    http://marc.info/?l=linux-kernel&m=123606366021995&w=2
    https://github.com/torvalds/linux/blob/master/include/linux/inetdevice.h (ligne 123 : #define IN_DEV_ARPFILTER(in_dev) IN_DEV_ORCONF((in_dev), ARPFILTER))

    On utilise un OR pour déterminer la valeur finale : il suffit qu'un des deux arp_filter soit à 1.

    Si la propriété n'est pas un boolean mais un integer qui peut prendre 0,1,2,etc... la valeur choisie entre le "all" et le "eth0" sera la valeur MAX d'après ce que j'ai compris.

    On retrouve ce fonctionnement dans d'autres dossiers :
    /proc/sys/net # find . -type d -name eth0
    ./ipv4/neigh/eth0
    ./ipv4/conf/eth0
    ./ipv6/neigh/eth0
    ./ipv6/conf/eth0

    Pour consulter :
    sysctl -a | grep arp_filter
    Pour modifier :
    à la volée :
    echo "1" > /proc/sys/net/ipv4/conf/...
    ou sysctl -w net.ipv4.conf.eth1.arp_filter=1
    persistant au reboot :
    /etc/sysctl.conf
    /etc/init.d/procps restart

    à notre un truc vicieux :
    /etc/init.d/procps restart n'a pas le meme effet qu'un reboot complet
    si on set une propriété à la volée à 1 comme net.ipv4.conf.eth1.arp_filter par exemple
    elle va rester à 1 apres un /etc/init.d/procps restart
    par contre elle se remet bien à 0 apres un reboot

    April 2, 2014 at 3:22:09 PM GMT+2 * - permalink - archive.org - https://links.infomee.fr/shaare/ztr7EA
    linux sys sysctl ipv4
  • Manipulez les paquets réseau avec Scapy

    Pour forger des packet en python... mieux que hping3 ;)

    April 2, 2014 at 3:16:45 PM GMT+2 - permalink - archive.org - http://fr.openclassrooms.com/informatique/cours/manipulez-les-paquets-reseau-avec-scapy
    scapy network forge hping
  • thumbnail
    suckless.org dwm - dynamic window manager
    April 2, 2014 at 2:19:30 PM GMT+2 - permalink - archive.org - http://dwm.suckless.org/
    window_manager linux
  • thumbnail
    about - awesome window manager
    April 2, 2014 at 2:19:04 PM GMT+2 - permalink - archive.org - http://awesome.naquadah.org/
    window_manager linux
  • https://github.com/torvalds/linux/blob/master/Documentation/networking/ip-sysctl.txt

    Documentation sysctl

    April 2, 2014 at 2:12:49 PM GMT+2 - permalink - archive.org - https://github.com/torvalds/linux/blob/master/Documentation/networking/ip-sysctl.txt
    documentation sysctl linux kernel
Links per page: 20 50 100
◄Older
page 111 / 218
Newer►
Shaarli - The personal, minimalist, super fast, database-free, bookmarking service by the Shaarli community - Help/documentation