Personnaliser

OK

Informations importantes : Arrêt du Club R (13 août) et Cessation d'Activité (30 septembre)

En savoir plus.

TCP/IP Architecture, Design, and Implementation in Linux - Seth, Sameer

Note : 0

0 avis
  • Soyez le premier à donner un avis

303,99 €

Produit Neuf

  • Ou 76,00 € /mois

    • Livraison : 25,00 €
    • Livré entre le 4 et le 9 septembre
    Voir les modes de livraison

    Kelindo

    PRO Vendeur favori

    4,8/5 sur + de 1 000 ventes

    Apres acceptation de la commande, le delai moyen d'expedition depuis le Japon est de 48 heures. Le delai moyen de livraison est de 3 a 4 semaines. En cas de circonstances exceptionnelles, les delais peuvent s'etendre jusqu'à 2 mois.

    Publicité
     
    Vous avez choisi le retrait chez le vendeur à
    • Payez directement sur Rakuten (CB, PayPal, 4xCB...)
    • Récupérez le produit directement chez le vendeur
    • Rakuten vous rembourse en cas de problème

    Gratuit et sans engagement

    Félicitations !

    Nous sommes heureux de vous compter parmi nos membres du Club Rakuten !

    En savoir plus

    Retour

    Horaires

        Note :


        Avis sur Tcp / Ip Architecture, Design, And Implementation In Linux de Seth, Sameer Format Relié  - Livre

        Note : 0 0 avis sur Tcp / Ip Architecture, Design, And Implementation In Linux de Seth, Sameer Format Relié  - Livre

        Les avis publiés font l'objet d'un contrôle automatisé de Rakuten.


        Présentation Tcp / Ip Architecture, Design, And Implementation In Linux de Seth, Sameer Format Relié

         - Livre

        Livre - Seth, Sameer - 01/11/2008 - Relié - Langue : Anglais

        . .

      • Auteur(s) : Seth, Sameer - Venkatesulu, M Ajaykumar
      • Editeur : John Wiley & Sons
      • Langue : Anglais
      • Parution : 01/11/2008
      • Format : Moyen, de 350g à 1kg
      • Nombre de pages : 800
      • Expédition : 1617
      • Dimensions : 26.4 x 18.4 x 5.3
      • ISBN : 9780470147733



      • Résumé :
        This book provides thorough knowledge of Linux TCP/IP stack and kernel framework for its network stack, including complete knowledge of design and implementation. Starting with simple client-server socket programs and progressing to complex design and implementation of TCP/IP protocol in linux, this book provides different aspects of socket programming and major TCP/IP related algorithms. In addition, the text features netfilter hook framework, a complete explanation of routing sub-system, IP QOS implementation, and Network Soft IRQ. This book further contains elements on TCP state machine implementation,TCP timer implementation on Linux, TCP memory management on Linux, and debugging TCP/IP stack using lcrash...

        Biographie:
        Sameer Seth?works at Juniper Networks as Senior Staff Engineer for JUNOS Kernel Team. Previously, he was a senior engineer at Sun Microsystems, where he worked on the TCP/IP stack in Solaris, sockets, streams, NFS, and related kernel framework. He has ten years of experience working with Linux in research and commercial environments. He has also worked on embedded TCP/IP Linux stack as well as on X86 architectures. Additionally, he has worked on different communication protocols on Motorola MPC8260 processors. His community work includes blogging for opensolaris technology (blogs.sun.com/sameer) and he delivers technical talks on open solaris technology. In his spare time he enjoys writing and talking on technical topics related to networking and Unix.

        M. Ajaykumar Venkatesulu is currently working on networking and naming services. He has seven years of experience with Linux networking and kernel in research and commercial environments. His areas of interest include Linux kernel, embedded systems, IP routing, and IP QoS.

        ...

        Sommaire:
        Preface.

        Acknowledgments.

        1. INTRODUCTION.

        1.1 Overview of TCP/IP Stack.

        1.2 Source Code Organization for Linux 2.4.20.

        1.3 TCP/IP Stack and Kernel Control Paths.

        1.4 Linux Kernel Until Version 2.4 Is Non-preemptible.

        1.5 Linux Process and Thread.

        1.6 Kernel Synchronization Mechanism.

        1.7 Application Interfaces for TCP/IP Programming.

        1.8 Shutdown.

        1.9 I/O.

        1.10 TCP State.

        1.11 Summary.

        2. PROTOCOL FUNDAMENTALS.

        2.1 TCP.

        2.2 TCP Options (RFC 1323).

        2.3 TCP Data Flow.

        2.4 Delayed Acknowledgment.

        2.5 Nagle's Algorithm (RFC 896).

        2.6 TCP Sliding Window Protocol.

        2.7 Maximizing TCP Throughput.

        2.8 TCP Timers.

        2.9 TCP Congestion Control.

        2.10 TCP Performance and Reliability.

        2.11 IP (Internet Protocol).

        2.12 Routing.

        2.13 netstat.

        2.14 traceroute.

        2.15 ICMP.

        2.16 ping.

        2.17 ARP/RARP.

        2.18 Summary.

        3. KERNEL IMPLEMENTATION OF SOCKETS.

        3.1 Socket Layer.

        3.2 VFS and Socket.

        3.3 Protocol Socket Registration.

        3.4 struct inet_protosw.

        3.5 Socket Organization in the Kernel.

        3.6 Socket.

        3.7 inet_create.

        3.8 Flow Diagram for Socket Call.

        3.9 Summary.

        4. KERNEL IMPLEMENTATION OF TCP CONNECTION SETUP.

        4.1 Connection Setup.

        4.2 Bind.

        4.3 Listen.

        4.4 Connection Request Handling by Kernel.

        4.5 Accept.

        4.6 Client Side Setup.

        4.7 Summary.

        5. sk_buff AND PROTOCOL HEADERS.

        5.1 struct sk_buff.

        5.2 struct skb_shared_info.

        5.3 sk_buff and DMA-SKB_FRAG_STRUCT.

        5.4 Routines Operating on sk_buff.

        5.5 sk_buff Builds Protocol Headers as It Traverses Down the Protocol Layers.

        5.6 sk_buff Extracts Protocol Headers as It Traverses Up the Protocol Layers When a Packet Arrives.

        5.7 Summary.

        6. MOVEMENT OF sk_buff ACROSS PROTOCOL LAYERS.

        6.1 Packet Traversing Down the TCP/IP Stack.

        6.2 Routed Packet Ready for Transmission.

        6.3 Kernel Flow for a Packet Moving Down the Stack.

        6.4 Packet Traversing Up the TCP/IP Stack.

        6.5 Kernel Flow for a Packet Moving Up the Stack.

        6.6 Summary.

        7. TCP SEND.

        7.1 TCP Segmentation Unit for Sending Data.

        7.2 Segmentation with Scatter-Gather Technique.

        7.3 Sending OOB Data.

        7.4 Flow for TCP Segmentation Unit and Send Process.

        7.5 Functional Level Flow for Segmentation and Send Mechanism.

        7.6 Summary.

        8. TCP RECEIVE.

        8.1 Queuing Mechanism.

        8.2 Processing of TCP Data from the Receive Queue.

        8.3 TCP Urgent Byte Processing.

        8.4 DATA Flow Diagram for Receiving Data over the TCP Socket.

        8.5 Summary.

        9. TCP MEMORY MANAGEMENT.

        9.1 Transmit Side TCP Memory Management.

        9.2 Receive Side TCP Memory Management.

        9.3 Freeing of Memory Allocated to a Receive Buffer.

        9.4 System-Wide Control Parameters Are Worth Noticing When It Comes to TCP Memory Management.

        9.5 Summary.

        10. TCP TIMERS.

        10.2 TCP Retransmit Timer.

        10.3 Zero Window Probe Timer.

        10.4 Delay ACK Timer.

        10.5 Keepalive Timer.

        10.6 SYN-ACK Timer.

        10.7 TIME_WAIT Timer.

        10.7.8 __tcp_tw_hashdance().

        10.8 Summary.

        11. TCP CORE PROCESSING.

        11.1 TCP Incoming Segment Processing.

        11.2 Fast Path Pro...

        Détails de conformité du produit

        Consulter les détails de conformité de ce produit (

        Personne responsable dans l'UE

        )
        Le choixNeuf et occasion
        Le service clientsÀ votre écoute
        LinkedinFacebookTwitterInstagramYoutubePinterestTiktok
        visavisa
        mastercardmastercard
        klarnaklarna
        paypalpaypal
        floafloa
        americanexpressamericanexpress
        Rakuten Logo
        • Rakuten Kobo
        • Rakuten TV
        • Rakuten Viber
        • Rakuten Viki
        • Plus de services
        • À propos de Rakuten
        Rakuten.com