Picture 1 of 1

Gallery
Picture 1 of 1

Have one to sell?
TCP/IP & Linux Protocol Implementation : Systems Code for the Linux Internet
by Crowcroft, Jon; Phillips, Iain | HC | VeryGood
US $55.58
or 4 interest-free payments of $13.90 available with
Condition:
“May have limited writing in cover pages. Pages are unmarked. ~ ThriftBooks: Read More, Spend ”... Read moreabout condition
Very Good
A book that does not look new and has been read but is in excellent condition. No obvious damage to the cover, with the dust jacket (if applicable) included for hard covers. No missing or damaged pages, no creases or tears, and no underlining/highlighting of text or writing in the margins. May be very minimal identifying marks on the inside cover. Very minimal wear and tear. See the seller’s listing for full details and description of any imperfections.
Oops! Looks like we're having trouble connecting to our server.
Refresh your browser window to try again.
Shipping:
Free Economy Shipping.
Estimated between Mon, Aug 18 and Sat, Aug 23 to 94104
Located in: Aurora, Illinois, United States
Returns:
30 days returns. Seller pays for return shipping.
Payments:
.
4 interest-free payments of $13.90 available with Klarna.
Special financing available. See terms and apply now- for PayPal Credit, opens in a new window or tab
Earn up to 5x points when you use your eBay Mastercard®. Learn moreabout earning points with eBay Mastercard
Shop with confidence
Seller assumes all responsibility for this listing.
eBay item number:376080494557
Item specifics
- Condition
- Very Good
- Seller Notes
- Binding
- Hardcover
- Book Title
- TCP/IP & Linux Protocol Implementation
- Weight
- 4 lbs
- Product Group
- Book
- IsTextBook
- Yes
- ISBN
- 9780471408826
- Subject Area
- Computers
- Publication Name
- Tcp/IP and Linux Protocol Implementation : Systems Code for the Linux Internet
- Publisher
- Wiley & Sons, Incorporated, John
- Item Length
- 9.6 in
- Subject
- Operating Systems / Linux, Internet / General, Networking / General, Networking / Network Protocols
- Publication Year
- 2001
- Series
- Wiley Networking Council Ser.
- Type
- Textbook
- Format
- Hardcover
- Language
- English
- Item Height
- 2.3 in
- Item Weight
- 67 Oz
- Item Width
- 7.7 in
- Number of Pages
- 976 Pages
About this product
Product Identifiers
Publisher
Wiley & Sons, Incorporated, John
ISBN-10
0471408824
ISBN-13
9780471408826
eBay Product ID (ePID)
1913230
Product Key Features
Number of Pages
976 Pages
Publication Name
Tcp/IP and Linux Protocol Implementation : Systems Code for the Linux Internet
Language
English
Publication Year
2001
Subject
Operating Systems / Linux, Internet / General, Networking / General, Networking / Network Protocols
Type
Textbook
Subject Area
Computers
Series
Wiley Networking Council Ser.
Format
Hardcover
Dimensions
Item Height
2.3 in
Item Weight
67 Oz
Item Length
9.6 in
Item Width
7.7 in
Additional Product Features
Intended Audience
Scholarly & Professional
LCCN
2001-045453
Dewey Edition
21
Illustrated
Yes
Dewey Decimal
004.6/2
Table Of Content
List of Figures. List of Tables. Preface. 1. Overview of the Internet Protocols. 1.1 Roadmap. 1.2 Introduction. 1.3 Protocols. 1.3.1 A Note on Programming Languages and Methodologies. 1.4 Protocol Stacks. 1.4.1 The Basics. 1.4.2 IP. 1.4.3 Routes. 1.4.4 TCP. 1.4.5 Packet Exchange Patterns. 1.4.6 Performance Trends. 1.5 Security. 1.6 Performance. 1.6.1 Integrated Services. 1.6.2 Differentiated Services. 1.7 Summary. 2. Introduction to the Linux Operating System. 2.1 Roadmap. 2.2 What Is an Operating System? 2.2.1 MultiUser. 2.2.2 MultiTasking. 2.2.3 MultiDevice. 2.2.4 From Input/Output to Interprocess Communication. 2.2.5 Processor Independence. 2.2.6 Concurrency Control. 2.2.7 Memory Management. 2.3 What More Could You Ask For? 2.3.1 Reliability, Efficiency, Safety, Security. 2.4 The Source Code Organization. 2.5 A Day in the Life of a Process. 2.6 A Day in the Life of a File. 2.7 A Day in the Life of an Operating System. 2.7.1 The Start of Time. 2.7.2 As Time Goes By. 2.7.3 The End of Time. 2.8 A Day in the Life of a Device Driver. 2.9 A Day in the Life of a Kernel Module. 2.10 SMP. 2.10.1 Application Support. 2.11 A Day in the Life of Time. 2.12 Summary. 3. The Brief Life of a Packet. 3.1 Roadmap. 3.1.1 User, Application, and Protocol Viewpoints. 3.1.2 Source Code, Execution, and Wire Viewpoints. 3.1.3 State, Memory, and So On. 3.2 TCP Example. 3.2.1 Socket Level. 3.2.2 TCP Output. 3.2.3 IP Output Work. 3.2.4 Link-Level Output. 3.2.5 Link-Level Input. 3.2.6 IP Input Work. 3.2.7 TCP Input Work. 3.2.8 Socket Input Work. 3.2.9 On the Wire. 3.3 DNS/UDP Example. 3.3.1 UDP Output. 3.3.2 UDP Input. 3.3.3 On the Wire. 3.4 RTP/UDP (Multicast) Example. 3.4.1 On the Wire. 3.4.2 But with a Router in the Path... 3.5 Three Views of the Traces of Ping. 4. Interprocess Communication. 4.1 Roadmap. 4.2 Socket API. 4.3 The Actual Socket API. 4.4 Using the Socket API. 4.4.1 Polling a Socket. 4.4.2 Nonblocking I/O. 4.4.3 Asynchronous I/O. 4.4.4 System Include Files. 4.5 Summary. 5. Protocol Implementation Framework. 5.1 Roadmap. 5.2 A Day in the Life of a Software Interrupt. 5.2.1 Concurrency in the Linux Communications Stack. 5.2.2 Producer/Consumer Chain. 5.2.3 What about Real Multiprocessor Systems? 5.3 Bottom Up: Interrupts, DMA, and So On. 5.4 Device Level, Bottom Up, One Level Up. 5.4.1 Network Device Driver API. 5.4.2 Network Reception. 5.4.3 A Specific Device Driver-3c501. 5.4.4 Link Driver-Level Configuration. 5.5 Top Down: Socket Glue Level. 5.5.1 Virtual File System Socket Instance Functions. 5.6 Sideways: A Day in the Life of a Socket Buffer. 5.6.1 Allocating a Socket Buffer. 5.6.2 Allocating and Freeing a Socket Buffer from the Global Pool. 5.6.3 Manipulating Socket Buffers. 5.7 A Day in the Life of a Protocol Control Block. 5.7.1 Socket and Route-Related Transport State. 5.7.2 Future of the Socket Structure. 5.7.3 Reference Counting. 5.7.4 Sockets and Routes. 5.7.5 Socket Credentials Manager Interface. 5.7.6 A Brief Comparison with BSD Style Stack Infrastructure. 5.8 Summary. 6. Infrastructure Protocols. 6.1 Roadmap. 6.2 IP. 6.2.1 Internet Protocol Output. 6.2.2 Fragmentation. 6.2.3 Internet Protocol Input. 6.2.4 Internet Protocol Forwarding. 6.2.5 Internet Protocol Frag
Synopsis
A one-of-a-kind description about using the Linux operating system on a TCP/IP network Boasting high-performance, high availability, and open source code, Linux has emerged as an optimal choice for an operating system. Yet for Linux to be adopted by the mainstream of Unix-based corporate and ISP networks, it must be capable of supporting the TCP/IP Internet protocol, like any other network operating system. This book provides the rapidly growing audience of Linux site managers, as well as researchers and developers worldwide, with the information they need on how Linux TCP/IP keeps the network running. Internationally recognized expert on Internetworking, Jon Crowcroft walks readers through the Linux TCP/IP protocol stack, offering detailed explanations on how Linux implements its communications protocols. Vinton Cerf--co-inventor of TCP/IP--is the technical editor for this book., "This remarkable book ought to be titled 'TCP/IP illustrated'! In clear and concise language and figures, the authors take the reader on a programmer's dream guide to Linux on the 'Net. If you need to know how it works, this is the book that should be in your library."--Vinton Cerf TCP/IP and Linux Protocol Implementation Boasting high performance, high availability, and open source code, Linux has emerged as the optimal choice for an operating system. Yet for Linux to be adopted by the mainstream, it must be capable of supporting the TCP/IP Internet protocol. With this comprehensive book, you'll be taken step by step through the process of how Linux TCP/IP keeps the network running. Leading expert Jon Crowcroft explores the Linux TCP/IP protocol stack, offering detailed explanations of how Linux implements its communications protocols. The book begins by examining the life cycle of a single packet, from creation to transmission and from reception to consumption. You'll then find an overview of socket programming and learn about the kernel infrastructure support for communications in general. The authors also walk you through the implementation of the network layer code of support and describe the transport protocol implementations. Additionally, they examine network security, describing the various networking filtering techniques and applications. Complete with explanations and illustrations, this book shows you: Ways in which protocol state and packet data are stored How the format of packets are transmitted, forwarded, and received Rules for processing user, network, and timer events The progression of the set of tasks involved in communication The set of actions carried out by the system manager Networking Council Books put technology into perspective for decision-makers who need an implementation strategy, a vendor and outsourcing strategy, and a product and design strategy. The series advisors are three of the most influential leaders of the networking community: LYMAN CHAPIN-Chief Scientist at NextHop Technologies, former Chief Scientist at BBN, and founding trustee of the Internet Society SCOTT BRADNER-Senior Consultant for Harvard University, Transport Area Director IETF, trustee of the Internet Society, and ISOC VP of Standards VINTON CERF-Senior Vice President for Internet Architecture and Technology at MCI WorldCom, founding President of the Internet Society, and co-inventor of TCP/IP Wiley Computer Publishing Timely. Practical. Reliable. Visit our Web site at www.wiley.com/compbooks/ Visit the Networking Council Web site at www.wiley.com/networkingcouncil
LC Classification Number
TK5105.585.T34 2002
Item description from the seller
Seller feedback (5,705,101)
- c***m (426)- Feedback left by buyer.Past 6 monthsVerified purchaseWOW!; I cannot believe this 3 Days to Hawaii! ; AAA+++; Excellent Service; Great Pricing; Fast Delivery-Faster Than Expected to Hawaii!; Shipped 05/05, Mon, Received 05/08, Thu to Hawaii using free shipping; USPS Ground Mail, Book in Excellent Condition--Better Than Described ; TLC Packaging; Excellent Seller Communication, Sends updates . Highly Recommended!, Thank you very much!The Internment of Japanese Americans During World War II (#146005407795)
- v***v (2068)- Feedback left by buyer.Past monthVerified purchaseAlthough this book was not as described, with no picture of it in the listing, the seller communicated well and quickly gave me a full refund while letting me keep it. The minimal packaging left the book a bit vulnerable (typical for ThriftBooks), but it did arrive safely and timely. As usual, it’s hit or miss with this seller, but often times you can get great values, and their customer service is always very good. Many other sellers with millions of transactions don’t even communicate.
- 2***j (113)- Feedback left by buyer.Past monthVerified purchaseI've ordered several items from this vendor now and they've always been what they were advertised as. This was no exception. Both discs were in great shape as well as their jewel cases. Delivery is good, packaging is simple but effective for what you're paying and I haven't had any get damaged. Will keep buying from this vendor because of the results so far and good prices, too.
More to explore :
- Computers and Internet Education Textbooks,
- Nonfiction Internet Paperbacks Books,
- Nonfiction Internet Fiction & Nonfiction Books,
- Nonfiction Books in English Fiction & Internet,
- Nonfiction Internet Paperbacks Books in English,
- Medical Coding Books,
- Computer & IT Nonfiction Books Fiction & Operating Systems,
- Healthcare System Study Guides & Test Prep,
- Computer & IT Operating Systems Paperback Fiction & Nonfiction Books,
- Computer & IT Nonfiction Books Illustrated Fiction & Operating Systems