4337 links
  • Arnaud's links
  • Home
  • Login
  • RSS Feed
  • ATOM Feed
  • Tag cloud
  • Picture wall
  • Daily
Links per page: 20 50 100
◄Older
page 1 / 2
22 results tagged networking x
  • AWS - VPC Networking for Beginners - DZone Cloud

    So, an elastic ip and an igw in the routing table are two criterion for an instance to be available directly from the internet. Subnets with such routing tables attached to them are also known as public subnets (non-local traffic routed to internet gateway), as any instance with an elastic ip can be publicly available from this subnet.

    October 11, 2016 at 10:49:27 AM GMT+2 - permalink - archive.org - https://dzone.com/articles/aws-vpc-networking-beginners
    aws networking subnet
  • Get Detailed Information About Particular IP address Connections Using netstat Command - nixCraft
    January 18, 2015 at 2:29:36 PM GMT+1 - permalink - archive.org - http://www.cyberciti.biz/tips/netstat-command-tutorial-examples.html
    networking
  • query TCP buffer sizes for a socket on linux - Server Fault

    Hints

    January 18, 2015 at 1:31:47 PM GMT+1 - permalink - archive.org - http://serverfault.com/questions/247329/query-tcp-buffer-sizes-for-a-socket-on-linux
    networking tcp
  • Linux: See Bandwidth Usage Per Process With Nethogs Tool
    December 14, 2014 at 12:57:53 PM GMT+1 - permalink - archive.org - http://www.cyberciti.biz/faq/linux-find-out-what-process-is-using-bandwidth/
    bandwidth networking
  • Un peu de réseau et de debug udp
    Prenons une application ouvre une socket UDP : pour chaque paquet qui arrive, elle va le traiter et passer au suivant. Si le traitement est plus cours que la cadence de reception, tout va bien, on peut travailler en "flux tendu". Pour éviter de perdre des paquets si l'application est trop lente, le kernel entretien des buffers qui ont une taille par defaut et une taille max.

    Pour consulter :
    # sysctl net.core.rmem_default
    # sysctl net.core.rmem_max
    # sysctl net.ipv4.udp_mem
    # net.core.netdev_max_backlog


    En cas de probleme, on peut augmenter la taille de ce buffer. (temporairement avec commande ou /proc/... et définitivement avec /etc/systcl.d/
    sysctl -w net.core.rmem_default=20000000
    sysctl -w net.core.rmem_max=30000000
    sysctl -w net.ipv4.udp_mem='262144 327680 393216'
    sysctl -w net.core.netdev_max_backlog=2000



    Comment savoir qu'on a des drop udp ?

    netstat -su

    Sinon il y a /proc/net/udp qui contient une ligne par socket udp avec le port (attention en hexadecimal), la taille du buffer utilisé, (s'inquiéter si rxqueue est différent de zéro) et enfin la dernière colonne, les drops !

    alors si vous avez des drops, il faut revoir l'application,.
    Augmenter la taille du buffer est utile seulement si ces drops sont du à des "burst" (des pics d'activité qui n'arrivent pas souvent), un plus grand buffer permettra d'absorber ces pics !


    En encore plus interactif : netstat -c --udp -an

    todo : trouver les commandes équivalentes avec ss

    https://github.com/etsy/statsd/issues/318
    https://www.assembla.com/spaces/LogZillaWiki/wiki/UDP_Buffers
    http://answers.splunk.com/answers/7001/udp-drops-on-linux.html
    December 10, 2014 at 3:51:28 PM GMT+1 * - permalink - archive.org - https://links.infomee.fr/?AyHsGA
    drop kernel linux network networking reseau udp
  • What happens if you write a TCP stack in Python? - Julia Evans

    Pour le fun et le learning : faire du tcp avec python / scapy

    via sametmax

    August 12, 2014 at 9:18:00 PM GMT+2 - permalink - archive.org - http://jvns.ca/blog/2014/08/12/what-happens-if-you-write-a-tcp-stack-in-python/
    networking python scapy
  • Why TCP/IP is on the way out

    10 fois plus rapide! J'ai du mal à y croire..

    July 30, 2014 at 10:31:42 PM GMT+2 - permalink - archive.org - http://www.networkworld.com/article/2459286/why-tcp/why-tcp/ip-is-on-the-way-out.html#tk.rss_all
    networking
  • Domaine de diffusion — Wikipédia

    Petite révision du vocabulaire, ça fait pas de mal ;)

    • http://fr.wikipedia.org/wiki/Domaine_de_collision
    July 30, 2014 at 10:38:49 AM GMT+2 - permalink - archive.org - http://fr.wikipedia.org/wiki/Domaine_de_diffusion
    networking
  • Docker Networking - Jason Edelman's Blog
    July 11, 2014 at 10:26:23 AM GMT+2 - permalink - archive.org - http://www.jedelman.com/home/docker-networking
    docker networking
  • socat

    un netcat ++

    June 25, 2014 at 11:33:52 AM GMT+2 - permalink - archive.org - http://www.dest-unreach.org/socat/
    netcat networking socat
  • Docker Networking - Jason Edelman's Blog http://www.jedelman.com/home/docker-networking

    Via arnaudb

    June 15, 2014 at 7:49:26 PM GMT+2 - permalink - archive.org - http://Docker Networking - Jason Edelman's Blog http://www.jedelman.com/home/docker-networking
    docker networking
  • NetHogs: What program is using that bandwidth?

    not bad

    June 12, 2014 at 2:28:25 PM GMT+2 - permalink - archive.org - http://nethogs.sourceforge.net/
    analyze networking tcpdump trafic
  • thumbnail
    Deprecated Linux networking commands and their replacements | Doug Vitale Tech Blog
    June 5, 2014 at 8:22:32 AM GMT+2 - permalink - archive.org - http://dougvitale.wordpress.com/2011/12/21/deprecated-linux-networking-commands-and-their-replacements/
    ip linux networking
  • Performing UDP tunneling through an SSH connection
    • http://www.dest-unreach.org/socat/
    • http://superuser.com/questions/53103/udp-traffic-through-ssh-tunnel
    June 3, 2014 at 9:54:03 AM GMT+2 - permalink - archive.org - http://zarb.org/~gc/html/udp-in-ssh-tunneling.html
    dns networking ssh udp
  • Nmap Cheat Sheet: From Discovery to Exploits, Part 2: Advance Port Scanning with Nmap And Custom Idle Scan - InfoSec Institute

    jme garde ça pour plus tard

    • part1 : http://resources.infosecinstitute.com/nmap-cheat-sheet/

    via arnaudb

    May 21, 2014 at 12:56:26 PM GMT+2 - permalink - archive.org - http://resources.infosecinstitute.com/nmap-cheat-sheet-discovery-exploits-part-2-advance-port-scanning-nmap-custom-idle-scan/
    networking nmap
  • Puppet et nexus3000

    Puppet qui sattaque au monde du reseau avec le nuxus3000 :o
    Clin d'oeil à ubiqube

    March 22, 2014 at 2:15:30 PM GMT+1 - permalink - archive.org - http://youtu.be/QExKz-iIpYc
    networking puppet
  • http://openvswitch.org/releases/NEWS-2.1.0

    Release d'ovs 2.1.0

    March 20, 2014 at 8:10:59 AM GMT+1 - permalink - archive.org - http://openvswitch.org/releases/NEWS-2.1.0
    networking tweetit
  • Ncat - Netcat for the 21st Century

    Alternative plus évoluée à netcat : ncat

    via ArnaudB

    November 13, 2013 at 5:28:03 PM GMT+1 - permalink - archive.org - http://nmap.org/ncat/
    nc netcat networking tool
  • Blog Stéphane Bortzmeyer: Le bitsquatting menace-t-il les utilisateurs de l'Internet ?

    Article intéressant sur le "bitsquatting"
    Notion à connaitre

    May 25, 2013 at 1:13:49 PM GMT+2 - permalink - archive.org - http://www.bortzmeyer.org/bitsquatting.html
    networking
  • Apache MINA — Apache MINA

    Apache MINA is a network application framework which helps users develop high performance and high scalability network applications easily. It provides an abstract event-driven asynchronous API over various transports such as TCP/IP and UDP/IP via Java NIO.

    May 13, 2013 at 10:12:18 PM GMT+2 - permalink - archive.org - http://mina.apache.org/
    dev game networking
Links per page: 20 50 100
◄Older
page 1 / 2
Shaarli - The personal, minimalist, super-fast, database free, bookmarking service by the Shaarli community - Help/documentation