4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 110 / 217
Newer►
  • 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
    puppet puppetdb ror
  • 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/
    iftt torrent
  • 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
  • DPDK
    April 4, 2014 at 2:29:51 PM GMT+2 - permalink - archive.org - http://dpdk.org/
    network
  • 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
    devops sys 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/
    lsof monitoring strace sys tools
  • 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
    hyperloglog redis
  • 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
  • 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
  • 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/
    course mudday
  • /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/?ztr7EA
    ipv4 linux sys sysctl
  • 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
    forge hping network scapy
  • suckless.org dwm - dynamic window manager
    April 2, 2014 at 2:19:30 PM GMT+2 - permalink - archive.org - http://dwm.suckless.org/
    linux window_manager
  • about - awesome window manager
    April 2, 2014 at 2:19:04 PM GMT+2 - permalink - archive.org - http://awesome.naquadah.org/
    linux window_manager
  • 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 kernel linux sysctl
  • Activer et configurer le server-status Apache (mod_status) - Blog de Florian Bogey
    March 31, 2014 at 6:16:57 PM GMT+2 - permalink - archive.org - http://www.blog.florian-bogey.fr/activer-et-configurer-le-server-status-apache-mod_status.html
    apache status
  • AuthorizedKeysCommand : quand OpenSSH devient CloudSSH. Nan j'déconne. / GLMF-161 / GNU/Linux Magazine / Connect - Edition Diamond

    alternatives à authorized_keys

    via Skunnyk

    March 31, 2014 at 11:19:48 AM GMT+2 - permalink - archive.org - http://connect.ed-diamond.com/GNU-Linux-Magazine/GLMF-161/AuthorizedKeysCommand-quand-OpenSSH-devient-CloudSSH.-Nan-j-deconne
    ssh sys
Links per page: 20 50 100
◄Older
page 110 / 217
Newer►
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation