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

    7 avril 2014 à 17:23:35 UTC+2 - permalink - archive.org - https://github.com/dalen/dm-puppetdb-adapter
    puppet puppetdb ror
  • Keynotes Recordings | Percona Live MySQL Conference & Expo 2014
    7 avril 2014 à 15:04:38 UTC+2 - permalink - archive.org - https://www.percona.com/live/mysql-conference-2014/keynotes-recordings
    mysql percona video
  • FlexGet
    • https://github.com/cantino/huginn
    7 avril 2014 à 11:45:33 UTC+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

    4 avril 2014 à 15:58:52 UTC+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
    4 avril 2014 à 14:29:51 UTC+2 - permalink - archive.org - http://dpdk.org/
    network
  • 12 bonnes raisons d'être un administrateur systèmes fainéant - Framablog

    old mais vrai ;)

    4 avril 2014 à 14:00:18 UTC+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."

    4 avril 2014 à 13:55:52 UTC+2 - permalink - archive.org - http://www.sysdig.org/
    lsof monitoring strace sys tools
  • Popcorn Time - Watch torrent movies instantly

    nouvelle url de popcorn time

    4 avril 2014 à 13:24:31 UTC+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

    4 avril 2014 à 10:20:09 UTC+2 - permalink - archive.org - http://antirez.com/news/75
    hyperloglog redis
  • Phusion Passenger users guide, Apache version
    3 avril 2014 à 16:38:50 UTC+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
    3 avril 2014 à 16:36:24 UTC+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
    3 avril 2014 à 11:35:35 UTC+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
    2 avril 2014 à 16:50:59 UTC+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

    2 avril 2014 à 15:22:09 UTC+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 ;)

    2 avril 2014 à 15:16:45 UTC+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
    2 avril 2014 à 14:19:30 UTC+2 - permalink - archive.org - http://dwm.suckless.org/
    linux window_manager
  • about - awesome window manager
    2 avril 2014 à 14:19:04 UTC+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

    2 avril 2014 à 14:12:49 UTC+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
    31 mars 2014 à 18:16:57 UTC+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

    31 mars 2014 à 11:19:48 UTC+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