Python Network Programming Cookbook - Second Edition.:
Discover practical solutions for a wide range of real-world network programming tasksAbout This Book* Solve real-world tasks in the area of network programming, system/networking administration, network monitoring, and more.* Familiarize yourself with the fundamentals and functionalities of SDN* Imp...
Gespeichert in:
1. Verfasser: | |
---|---|
Weitere Verfasser: | |
Format: | Elektronisch E-Book |
Sprache: | English |
Veröffentlicht: |
Birmingham :
Packt Publishing,
2017.
|
Ausgabe: | 2nd ed. |
Schlagworte: | |
Online-Zugang: | Volltext |
Zusammenfassung: | Discover practical solutions for a wide range of real-world network programming tasksAbout This Book* Solve real-world tasks in the area of network programming, system/networking administration, network monitoring, and more.* Familiarize yourself with the fundamentals and functionalities of SDN* Improve your skills to become the next-gen network engineer by learning the various facets of Python programmingWho This Book Is ForThis book is for network engineers, system/network administrators, network programmers, and even web application developers who want to solve everyday network-related problems. If you are a novice, you will develop an understanding of the concepts as you progress with this book. What You Will Learn* Develop TCP/IP networking client/server applications* Administer local machines' IPv4/IPv6 network interfaces* Write multi-purpose efficient web clients for HTTP and HTTPS protocols* Perform remote system administration tasks over Telnet and SSH connections* Interact with popular websites via web services such as XML-RPC, SOAP, and REST APIs* Monitor and analyze major common network security vulnerabilities* Develop Software-Defined Networks with Ryu, OpenDaylight, Floodlight, ONOS, and POX Controllers* Emulate simple and complex networks with Mininet and its extensions for network and systems emulations* Learn to configure and build network systems and Virtual Network Functions (VNF) in heterogeneous deployment environments* Explore various Python modules to program the InternetIn DetailPython Network Programming Cookbook - Second Edition highlights the major aspects of network programming in Python, starting from writing simple networking clients to developing and deploying complex Software-Defined Networking (SDN) and Network Functions Virtualization (NFV) systems. It creates the building blocks for many practical web and networking applications that rely on various networking protocols. It presents the power and beauty of Python to solve numerous real-world tasks in the area of network programming, network and system administration, network monitoring, and web-application development. In this edition, you will also be introduced to network modelling to build your own cloud network. You will learn about the concepts and fundamentals of SDN and then extend your network with Mininet. Next, you'll find recipes on Authentication, Authorization, and Accounting (AAA) and open and proprietary SDN approaches and frameworks. You will also learn to configure the Linux Foundation networking ecosystem and deploy and automate your networks with Python in the cloud and the Internet scale. By the end of this book, you will be able to analyze your network security vulnerabilities using advanced network packet capture and analysis techniques. Style and approachThis book follows a practical approach and covers major aspects of network programming in Python. It provides hands-on recipes combined with short and concise explanations on code snippets. This book will serve as a supplementary material to develop hands-on skills in any academic course on network programming. This book further elaborates network softwarization, including Software-Defined Networking (SDN), Network Functions Virtualization (NFV), and orchestration. We learn to configure and deploy enterprise network platforms, develop applications on top of them with Python. |
Beschreibung: | Extracting an IPv6 prefix from an IPv6 address. |
Beschreibung: | 1 online resource (442 pages) |
ISBN: | 1786468476 9781786468475 |
Internformat
MARC
LEADER | 00000cam a2200000Mu 4500 | ||
---|---|---|---|
001 | ZDB-4-EBA-on1001370021 | ||
003 | OCoLC | ||
005 | 20241004212047.0 | ||
006 | m o d | ||
007 | cr |n|---||||| | ||
008 | 170819s2017 enk o 000 0 eng d | ||
040 | |a EBLCP |b eng |e pn |c EBLCP |d NLE |d MERUC |d YDX |d COO |d VT2 |d OCLCO |d OCLCQ |d OCLCF |d WYU |d LVT |d UKAHL |d UKMGB |d OCLCQ |d N$T |d OCLCQ |d OCLCO |d K6U |d OCLCQ |d OCLCO |d OCLCL | ||
015 | |a GBB7E6559 |2 bnb | ||
016 | 7 | |a 018470390 |2 Uk | |
019 | |a 1001254991 |a 1125075987 | ||
020 | |a 1786468476 | ||
020 | |a 9781786468475 |q (electronic bk.) | ||
035 | |a (OCoLC)1001370021 |z (OCoLC)1001254991 |z (OCoLC)1125075987 | ||
037 | |a 9781786468475 |b Packt Publishing Pvt. Ltd | ||
050 | 4 | |a TK5105.5956.K384 2017 | |
082 | 7 | |a 005.133 |2 23 | |
049 | |a MAIN | ||
100 | 1 | |a Kathiravelu, Pradeeban. | |
245 | 1 | 0 | |a Python Network Programming Cookbook - Second Edition. |
250 | |a 2nd ed. | ||
260 | |a Birmingham : |b Packt Publishing, |c 2017. | ||
300 | |a 1 online resource (442 pages) | ||
336 | |a text |b txt |2 rdacontent | ||
337 | |a computer |b c |2 rdamedia | ||
338 | |a online resource |b cr |2 rdacarrier | ||
588 | 0 | |a Print version record. | |
505 | 0 | |a Cover ; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Customer Feedback; Table of Contents; Preface; Chapter 1: Sockets, IPv4, and Simple Client/Server Programming; Introduction; Printing your machine's name and IPv4 address; Getting ready; How to do it ... ; How it works ... ; Retrieving a remote machine's IP address; How to do it ... ; How it works ... ; Converting an IPv4 address to different formats; How to do it ... ; How it works ... ; Finding a service name, given the port and protocol; Getting ready; How to do it ... ; How it works ... | |
505 | 8 | |a Converting integers to and from host to network byte orderHow to do it ... ; How it works ... ; Setting and getting the default socket timeout; How to do it ... ; How it works ... ; Handling socket errors gracefully; How to do it ... ; How it works ... ; Modifying a socket's send/receive buffer sizes; How to do it ... ; How it works ... ; Changing a socket to the blocking/non-blocking mode; How to do it ... ; How it works ... ; Reusing socket addresses; How to do it ... ; How it works ... ; Printing the current time from the internet time server; Getting ready; How to do it ... ; How it works ... | |
505 | 8 | |a Writing an SNTP clientHow to do it ... ; How it works ... ; Writing a simple TCP echo client/server application; How to do it ... ; How it works ... ; Writing a simple UDP echo client/server application; How to do it ... ; How it works ... ; Chapter 2: Multiplexing Socket I/O for Better Performance; Introduction; Using ForkingMixIn in your socket server applications; How to do it ... ; How it works ... ; Using ThreadingMixIn in your socket server applications; Getting ready; How to do it ... ; How it works ... ; Writing a chat server using select.select; How to do it ... ; How it works ... | |
505 | 8 | |a Multiplexing a web server using select.epollHow to do it ... ; How it works ... ; Multiplexing an echo server using Diesel concurrent library; Getting ready; How to do it ... ; How it works ... ; Chapter 3: IPv6, Unix Domain Sockets, and Network Interfaces; Introduction; Forwarding a local port to a remote host; How to do it ... ; How it works ... ; Pinging hosts on the network with ICMP; Getting ready; How to do it ... ; How it works ... ; Waiting for a remote network service; How to do it ... ; How it works ... ; Enumerating interfaces on your machine; Getting ready; How to do it ... ; How it works ... | |
505 | 8 | |a Finding the IP address for a specific interface on your machineGetting ready; How to do it ... ; How it works ... ; Finding whether an interface is up on your machine; Getting ready; How to do it ... ; How it works ... ; Detecting inactive machines on your network; Getting ready; How to do it ... ; How it works ... ; Performing a basic IPC using connected sockets (socketpair); Getting ready; How to do it ... ; How it works ... ; Performing IPC using Unix domain sockets; How to do it ... ; How it works ... ; Finding out if your Python supports IPv6 sockets; Getting ready; How to do it ... ; How it works ... | |
500 | |a Extracting an IPv6 prefix from an IPv6 address. | ||
520 | 8 | |a Discover practical solutions for a wide range of real-world network programming tasksAbout This Book* Solve real-world tasks in the area of network programming, system/networking administration, network monitoring, and more.* Familiarize yourself with the fundamentals and functionalities of SDN* Improve your skills to become the next-gen network engineer by learning the various facets of Python programmingWho This Book Is ForThis book is for network engineers, system/network administrators, network programmers, and even web application developers who want to solve everyday network-related problems. If you are a novice, you will develop an understanding of the concepts as you progress with this book. What You Will Learn* Develop TCP/IP networking client/server applications* Administer local machines' IPv4/IPv6 network interfaces* Write multi-purpose efficient web clients for HTTP and HTTPS protocols* Perform remote system administration tasks over Telnet and SSH connections* Interact with popular websites via web services such as XML-RPC, SOAP, and REST APIs* Monitor and analyze major common network security vulnerabilities* Develop Software-Defined Networks with Ryu, OpenDaylight, Floodlight, ONOS, and POX Controllers* Emulate simple and complex networks with Mininet and its extensions for network and systems emulations* Learn to configure and build network systems and Virtual Network Functions (VNF) in heterogeneous deployment environments* Explore various Python modules to program the InternetIn DetailPython Network Programming Cookbook - Second Edition highlights the major aspects of network programming in Python, starting from writing simple networking clients to developing and deploying complex Software-Defined Networking (SDN) and Network Functions Virtualization (NFV) systems. It creates the building blocks for many practical web and networking applications that rely on various networking protocols. It presents the power and beauty of Python to solve numerous real-world tasks in the area of network programming, network and system administration, network monitoring, and web-application development. In this edition, you will also be introduced to network modelling to build your own cloud network. You will learn about the concepts and fundamentals of SDN and then extend your network with Mininet. Next, you'll find recipes on Authentication, Authorization, and Accounting (AAA) and open and proprietary SDN approaches and frameworks. You will also learn to configure the Linux Foundation networking ecosystem and deploy and automate your networks with Python in the cloud and the Internet scale. By the end of this book, you will be able to analyze your network security vulnerabilities using advanced network packet capture and analysis techniques. Style and approachThis book follows a practical approach and covers major aspects of network programming in Python. It provides hands-on recipes combined with short and concise explanations on code snippets. This book will serve as a supplementary material to develop hands-on skills in any academic course on network programming. This book further elaborates network softwarization, including Software-Defined Networking (SDN), Network Functions Virtualization (NFV), and orchestration. We learn to configure and deploy enterprise network platforms, develop applications on top of them with Python. | |
650 | 0 | |a Python (Computer program language) |0 http://id.loc.gov/authorities/subjects/sh96008834 | |
650 | 0 | |a Computer networks |x Programming. | |
650 | 0 | |a Client/server computing. |0 http://id.loc.gov/authorities/subjects/sh93000502 | |
650 | 6 | |a Python (Langage de programmation) | |
650 | 6 | |a Réseaux d'ordinateurs |x Programmation. | |
650 | 6 | |a Architecture client-serveur (Informatique) | |
650 | 7 | |a Client/server computing |2 fast | |
650 | 7 | |a Python (Computer program language) |2 fast | |
700 | 1 | |a Sarker, Dr. M. O. Faruque. | |
758 | |i has work: |a Python Network Programming Cookbook - Second Edition (Text) |1 https://id.oclc.org/worldcat/entity/E39PCYWgMKqt4w4R7jb8mR7XMP |4 https://id.oclc.org/worldcat/ontology/hasWork | ||
776 | 0 | 8 | |i Print version: |a Kathiravelu, Pradeeban. |t Python Network Programming Cookbook - Second Edition. |d Birmingham : Packt Publishing, ©2017 |
856 | 4 | 0 | |l FWS01 |p ZDB-4-EBA |q FWS_PDA_EBA |u https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1575653 |3 Volltext |
938 | |a Askews and Holts Library Services |b ASKH |n AH33078940 | ||
938 | |a EBL - Ebook Library |b EBLB |n EBL4943899 | ||
938 | |a EBSCOhost |b EBSC |n 1575653 | ||
938 | |a YBP Library Services |b YANK |n 14750132 | ||
994 | |a 92 |b GEBAY | ||
912 | |a ZDB-4-EBA | ||
049 | |a DE-863 |
Datensatz im Suchindex
DE-BY-FWS_katkey | ZDB-4-EBA-on1001370021 |
---|---|
_version_ | 1816882398114086913 |
adam_text | |
any_adam_object | |
author | Kathiravelu, Pradeeban |
author2 | Sarker, Dr. M. O. Faruque |
author2_role | |
author2_variant | d m o f s dmof dmofs |
author_facet | Kathiravelu, Pradeeban Sarker, Dr. M. O. Faruque |
author_role | |
author_sort | Kathiravelu, Pradeeban |
author_variant | p k pk |
building | Verbundindex |
bvnumber | localFWS |
callnumber-first | T - Technology |
callnumber-label | TK5105 |
callnumber-raw | TK5105.5956.K384 2017 |
callnumber-search | TK5105.5956.K384 2017 |
callnumber-sort | TK 45105.5956 K384 42017 |
callnumber-subject | TK - Electrical and Nuclear Engineering |
collection | ZDB-4-EBA |
contents | Cover ; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Customer Feedback; Table of Contents; Preface; Chapter 1: Sockets, IPv4, and Simple Client/Server Programming; Introduction; Printing your machine's name and IPv4 address; Getting ready; How to do it ... ; How it works ... ; Retrieving a remote machine's IP address; How to do it ... ; How it works ... ; Converting an IPv4 address to different formats; How to do it ... ; How it works ... ; Finding a service name, given the port and protocol; Getting ready; How to do it ... ; How it works ... Converting integers to and from host to network byte orderHow to do it ... ; How it works ... ; Setting and getting the default socket timeout; How to do it ... ; How it works ... ; Handling socket errors gracefully; How to do it ... ; How it works ... ; Modifying a socket's send/receive buffer sizes; How to do it ... ; How it works ... ; Changing a socket to the blocking/non-blocking mode; How to do it ... ; How it works ... ; Reusing socket addresses; How to do it ... ; How it works ... ; Printing the current time from the internet time server; Getting ready; How to do it ... ; How it works ... Writing an SNTP clientHow to do it ... ; How it works ... ; Writing a simple TCP echo client/server application; How to do it ... ; How it works ... ; Writing a simple UDP echo client/server application; How to do it ... ; How it works ... ; Chapter 2: Multiplexing Socket I/O for Better Performance; Introduction; Using ForkingMixIn in your socket server applications; How to do it ... ; How it works ... ; Using ThreadingMixIn in your socket server applications; Getting ready; How to do it ... ; How it works ... ; Writing a chat server using select.select; How to do it ... ; How it works ... Multiplexing a web server using select.epollHow to do it ... ; How it works ... ; Multiplexing an echo server using Diesel concurrent library; Getting ready; How to do it ... ; How it works ... ; Chapter 3: IPv6, Unix Domain Sockets, and Network Interfaces; Introduction; Forwarding a local port to a remote host; How to do it ... ; How it works ... ; Pinging hosts on the network with ICMP; Getting ready; How to do it ... ; How it works ... ; Waiting for a remote network service; How to do it ... ; How it works ... ; Enumerating interfaces on your machine; Getting ready; How to do it ... ; How it works ... Finding the IP address for a specific interface on your machineGetting ready; How to do it ... ; How it works ... ; Finding whether an interface is up on your machine; Getting ready; How to do it ... ; How it works ... ; Detecting inactive machines on your network; Getting ready; How to do it ... ; How it works ... ; Performing a basic IPC using connected sockets (socketpair); Getting ready; How to do it ... ; How it works ... ; Performing IPC using Unix domain sockets; How to do it ... ; How it works ... ; Finding out if your Python supports IPv6 sockets; Getting ready; How to do it ... ; How it works ... |
ctrlnum | (OCoLC)1001370021 |
dewey-full | 005.133 |
dewey-hundreds | 000 - Computer science, information, general works |
dewey-ones | 005 - Computer programming, programs, data, security |
dewey-raw | 005.133 |
dewey-search | 005.133 |
dewey-sort | 15.133 |
dewey-tens | 000 - Computer science, information, general works |
discipline | Informatik |
edition | 2nd ed. |
format | Electronic eBook |
fullrecord | <?xml version="1.0" encoding="UTF-8"?><collection xmlns="http://www.loc.gov/MARC21/slim"><record><leader>08964cam a2200625Mu 4500</leader><controlfield tag="001">ZDB-4-EBA-on1001370021</controlfield><controlfield tag="003">OCoLC</controlfield><controlfield tag="005">20241004212047.0</controlfield><controlfield tag="006">m o d </controlfield><controlfield tag="007">cr |n|---|||||</controlfield><controlfield tag="008">170819s2017 enk o 000 0 eng d</controlfield><datafield tag="040" ind1=" " ind2=" "><subfield code="a">EBLCP</subfield><subfield code="b">eng</subfield><subfield code="e">pn</subfield><subfield code="c">EBLCP</subfield><subfield code="d">NLE</subfield><subfield code="d">MERUC</subfield><subfield code="d">YDX</subfield><subfield code="d">COO</subfield><subfield code="d">VT2</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">OCLCF</subfield><subfield code="d">WYU</subfield><subfield code="d">LVT</subfield><subfield code="d">UKAHL</subfield><subfield code="d">UKMGB</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">N$T</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">OCLCO</subfield><subfield code="d">K6U</subfield><subfield code="d">OCLCQ</subfield><subfield code="d">OCLCO</subfield><subfield code="d">OCLCL</subfield></datafield><datafield tag="015" ind1=" " ind2=" "><subfield code="a">GBB7E6559</subfield><subfield code="2">bnb</subfield></datafield><datafield tag="016" ind1="7" ind2=" "><subfield code="a">018470390</subfield><subfield code="2">Uk</subfield></datafield><datafield tag="019" ind1=" " ind2=" "><subfield code="a">1001254991</subfield><subfield code="a">1125075987</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">1786468476</subfield></datafield><datafield tag="020" ind1=" " ind2=" "><subfield code="a">9781786468475</subfield><subfield code="q">(electronic bk.)</subfield></datafield><datafield tag="035" ind1=" " ind2=" "><subfield code="a">(OCoLC)1001370021</subfield><subfield code="z">(OCoLC)1001254991</subfield><subfield code="z">(OCoLC)1125075987</subfield></datafield><datafield tag="037" ind1=" " ind2=" "><subfield code="a">9781786468475</subfield><subfield code="b">Packt Publishing Pvt. Ltd</subfield></datafield><datafield tag="050" ind1=" " ind2="4"><subfield code="a">TK5105.5956.K384 2017</subfield></datafield><datafield tag="082" ind1="7" ind2=" "><subfield code="a">005.133</subfield><subfield code="2">23</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">MAIN</subfield></datafield><datafield tag="100" ind1="1" ind2=" "><subfield code="a">Kathiravelu, Pradeeban.</subfield></datafield><datafield tag="245" ind1="1" ind2="0"><subfield code="a">Python Network Programming Cookbook - Second Edition.</subfield></datafield><datafield tag="250" ind1=" " ind2=" "><subfield code="a">2nd ed.</subfield></datafield><datafield tag="260" ind1=" " ind2=" "><subfield code="a">Birmingham :</subfield><subfield code="b">Packt Publishing,</subfield><subfield code="c">2017.</subfield></datafield><datafield tag="300" ind1=" " ind2=" "><subfield code="a">1 online resource (442 pages)</subfield></datafield><datafield tag="336" ind1=" " ind2=" "><subfield code="a">text</subfield><subfield code="b">txt</subfield><subfield code="2">rdacontent</subfield></datafield><datafield tag="337" ind1=" " ind2=" "><subfield code="a">computer</subfield><subfield code="b">c</subfield><subfield code="2">rdamedia</subfield></datafield><datafield tag="338" ind1=" " ind2=" "><subfield code="a">online resource</subfield><subfield code="b">cr</subfield><subfield code="2">rdacarrier</subfield></datafield><datafield tag="588" ind1="0" ind2=" "><subfield code="a">Print version record.</subfield></datafield><datafield tag="505" ind1="0" ind2=" "><subfield code="a">Cover ; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Customer Feedback; Table of Contents; Preface; Chapter 1: Sockets, IPv4, and Simple Client/Server Programming; Introduction; Printing your machine's name and IPv4 address; Getting ready; How to do it ... ; How it works ... ; Retrieving a remote machine's IP address; How to do it ... ; How it works ... ; Converting an IPv4 address to different formats; How to do it ... ; How it works ... ; Finding a service name, given the port and protocol; Getting ready; How to do it ... ; How it works ...</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Converting integers to and from host to network byte orderHow to do it ... ; How it works ... ; Setting and getting the default socket timeout; How to do it ... ; How it works ... ; Handling socket errors gracefully; How to do it ... ; How it works ... ; Modifying a socket's send/receive buffer sizes; How to do it ... ; How it works ... ; Changing a socket to the blocking/non-blocking mode; How to do it ... ; How it works ... ; Reusing socket addresses; How to do it ... ; How it works ... ; Printing the current time from the internet time server; Getting ready; How to do it ... ; How it works ...</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Writing an SNTP clientHow to do it ... ; How it works ... ; Writing a simple TCP echo client/server application; How to do it ... ; How it works ... ; Writing a simple UDP echo client/server application; How to do it ... ; How it works ... ; Chapter 2: Multiplexing Socket I/O for Better Performance; Introduction; Using ForkingMixIn in your socket server applications; How to do it ... ; How it works ... ; Using ThreadingMixIn in your socket server applications; Getting ready; How to do it ... ; How it works ... ; Writing a chat server using select.select; How to do it ... ; How it works ...</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Multiplexing a web server using select.epollHow to do it ... ; How it works ... ; Multiplexing an echo server using Diesel concurrent library; Getting ready; How to do it ... ; How it works ... ; Chapter 3: IPv6, Unix Domain Sockets, and Network Interfaces; Introduction; Forwarding a local port to a remote host; How to do it ... ; How it works ... ; Pinging hosts on the network with ICMP; Getting ready; How to do it ... ; How it works ... ; Waiting for a remote network service; How to do it ... ; How it works ... ; Enumerating interfaces on your machine; Getting ready; How to do it ... ; How it works ...</subfield></datafield><datafield tag="505" ind1="8" ind2=" "><subfield code="a">Finding the IP address for a specific interface on your machineGetting ready; How to do it ... ; How it works ... ; Finding whether an interface is up on your machine; Getting ready; How to do it ... ; How it works ... ; Detecting inactive machines on your network; Getting ready; How to do it ... ; How it works ... ; Performing a basic IPC using connected sockets (socketpair); Getting ready; How to do it ... ; How it works ... ; Performing IPC using Unix domain sockets; How to do it ... ; How it works ... ; Finding out if your Python supports IPv6 sockets; Getting ready; How to do it ... ; How it works ...</subfield></datafield><datafield tag="500" ind1=" " ind2=" "><subfield code="a">Extracting an IPv6 prefix from an IPv6 address.</subfield></datafield><datafield tag="520" ind1="8" ind2=" "><subfield code="a">Discover practical solutions for a wide range of real-world network programming tasksAbout This Book* Solve real-world tasks in the area of network programming, system/networking administration, network monitoring, and more.* Familiarize yourself with the fundamentals and functionalities of SDN* Improve your skills to become the next-gen network engineer by learning the various facets of Python programmingWho This Book Is ForThis book is for network engineers, system/network administrators, network programmers, and even web application developers who want to solve everyday network-related problems. If you are a novice, you will develop an understanding of the concepts as you progress with this book. What You Will Learn* Develop TCP/IP networking client/server applications* Administer local machines' IPv4/IPv6 network interfaces* Write multi-purpose efficient web clients for HTTP and HTTPS protocols* Perform remote system administration tasks over Telnet and SSH connections* Interact with popular websites via web services such as XML-RPC, SOAP, and REST APIs* Monitor and analyze major common network security vulnerabilities* Develop Software-Defined Networks with Ryu, OpenDaylight, Floodlight, ONOS, and POX Controllers* Emulate simple and complex networks with Mininet and its extensions for network and systems emulations* Learn to configure and build network systems and Virtual Network Functions (VNF) in heterogeneous deployment environments* Explore various Python modules to program the InternetIn DetailPython Network Programming Cookbook - Second Edition highlights the major aspects of network programming in Python, starting from writing simple networking clients to developing and deploying complex Software-Defined Networking (SDN) and Network Functions Virtualization (NFV) systems. It creates the building blocks for many practical web and networking applications that rely on various networking protocols. It presents the power and beauty of Python to solve numerous real-world tasks in the area of network programming, network and system administration, network monitoring, and web-application development. In this edition, you will also be introduced to network modelling to build your own cloud network. You will learn about the concepts and fundamentals of SDN and then extend your network with Mininet. Next, you'll find recipes on Authentication, Authorization, and Accounting (AAA) and open and proprietary SDN approaches and frameworks. You will also learn to configure the Linux Foundation networking ecosystem and deploy and automate your networks with Python in the cloud and the Internet scale. By the end of this book, you will be able to analyze your network security vulnerabilities using advanced network packet capture and analysis techniques. Style and approachThis book follows a practical approach and covers major aspects of network programming in Python. It provides hands-on recipes combined with short and concise explanations on code snippets. This book will serve as a supplementary material to develop hands-on skills in any academic course on network programming. This book further elaborates network softwarization, including Software-Defined Networking (SDN), Network Functions Virtualization (NFV), and orchestration. We learn to configure and deploy enterprise network platforms, develop applications on top of them with Python.</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Python (Computer program language)</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh96008834</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Computer networks</subfield><subfield code="x">Programming.</subfield></datafield><datafield tag="650" ind1=" " ind2="0"><subfield code="a">Client/server computing.</subfield><subfield code="0">http://id.loc.gov/authorities/subjects/sh93000502</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Python (Langage de programmation)</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Réseaux d'ordinateurs</subfield><subfield code="x">Programmation.</subfield></datafield><datafield tag="650" ind1=" " ind2="6"><subfield code="a">Architecture client-serveur (Informatique)</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Client/server computing</subfield><subfield code="2">fast</subfield></datafield><datafield tag="650" ind1=" " ind2="7"><subfield code="a">Python (Computer program language)</subfield><subfield code="2">fast</subfield></datafield><datafield tag="700" ind1="1" ind2=" "><subfield code="a">Sarker, Dr. M. O. Faruque.</subfield></datafield><datafield tag="758" ind1=" " ind2=" "><subfield code="i">has work:</subfield><subfield code="a">Python Network Programming Cookbook - Second Edition (Text)</subfield><subfield code="1">https://id.oclc.org/worldcat/entity/E39PCYWgMKqt4w4R7jb8mR7XMP</subfield><subfield code="4">https://id.oclc.org/worldcat/ontology/hasWork</subfield></datafield><datafield tag="776" ind1="0" ind2="8"><subfield code="i">Print version:</subfield><subfield code="a">Kathiravelu, Pradeeban.</subfield><subfield code="t">Python Network Programming Cookbook - Second Edition.</subfield><subfield code="d">Birmingham : Packt Publishing, ©2017</subfield></datafield><datafield tag="856" ind1="4" ind2="0"><subfield code="l">FWS01</subfield><subfield code="p">ZDB-4-EBA</subfield><subfield code="q">FWS_PDA_EBA</subfield><subfield code="u">https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1575653</subfield><subfield code="3">Volltext</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">Askews and Holts Library Services</subfield><subfield code="b">ASKH</subfield><subfield code="n">AH33078940</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">EBL - Ebook Library</subfield><subfield code="b">EBLB</subfield><subfield code="n">EBL4943899</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">EBSCOhost</subfield><subfield code="b">EBSC</subfield><subfield code="n">1575653</subfield></datafield><datafield tag="938" ind1=" " ind2=" "><subfield code="a">YBP Library Services</subfield><subfield code="b">YANK</subfield><subfield code="n">14750132</subfield></datafield><datafield tag="994" ind1=" " ind2=" "><subfield code="a">92</subfield><subfield code="b">GEBAY</subfield></datafield><datafield tag="912" ind1=" " ind2=" "><subfield code="a">ZDB-4-EBA</subfield></datafield><datafield tag="049" ind1=" " ind2=" "><subfield code="a">DE-863</subfield></datafield></record></collection> |
id | ZDB-4-EBA-on1001370021 |
illustrated | Not Illustrated |
indexdate | 2024-11-27T13:27:58Z |
institution | BVB |
isbn | 1786468476 9781786468475 |
language | English |
oclc_num | 1001370021 |
open_access_boolean | |
owner | MAIN DE-863 DE-BY-FWS |
owner_facet | MAIN DE-863 DE-BY-FWS |
physical | 1 online resource (442 pages) |
psigel | ZDB-4-EBA |
publishDate | 2017 |
publishDateSearch | 2017 |
publishDateSort | 2017 |
publisher | Packt Publishing, |
record_format | marc |
spelling | Kathiravelu, Pradeeban. Python Network Programming Cookbook - Second Edition. 2nd ed. Birmingham : Packt Publishing, 2017. 1 online resource (442 pages) text txt rdacontent computer c rdamedia online resource cr rdacarrier Print version record. Cover ; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Customer Feedback; Table of Contents; Preface; Chapter 1: Sockets, IPv4, and Simple Client/Server Programming; Introduction; Printing your machine's name and IPv4 address; Getting ready; How to do it ... ; How it works ... ; Retrieving a remote machine's IP address; How to do it ... ; How it works ... ; Converting an IPv4 address to different formats; How to do it ... ; How it works ... ; Finding a service name, given the port and protocol; Getting ready; How to do it ... ; How it works ... Converting integers to and from host to network byte orderHow to do it ... ; How it works ... ; Setting and getting the default socket timeout; How to do it ... ; How it works ... ; Handling socket errors gracefully; How to do it ... ; How it works ... ; Modifying a socket's send/receive buffer sizes; How to do it ... ; How it works ... ; Changing a socket to the blocking/non-blocking mode; How to do it ... ; How it works ... ; Reusing socket addresses; How to do it ... ; How it works ... ; Printing the current time from the internet time server; Getting ready; How to do it ... ; How it works ... Writing an SNTP clientHow to do it ... ; How it works ... ; Writing a simple TCP echo client/server application; How to do it ... ; How it works ... ; Writing a simple UDP echo client/server application; How to do it ... ; How it works ... ; Chapter 2: Multiplexing Socket I/O for Better Performance; Introduction; Using ForkingMixIn in your socket server applications; How to do it ... ; How it works ... ; Using ThreadingMixIn in your socket server applications; Getting ready; How to do it ... ; How it works ... ; Writing a chat server using select.select; How to do it ... ; How it works ... Multiplexing a web server using select.epollHow to do it ... ; How it works ... ; Multiplexing an echo server using Diesel concurrent library; Getting ready; How to do it ... ; How it works ... ; Chapter 3: IPv6, Unix Domain Sockets, and Network Interfaces; Introduction; Forwarding a local port to a remote host; How to do it ... ; How it works ... ; Pinging hosts on the network with ICMP; Getting ready; How to do it ... ; How it works ... ; Waiting for a remote network service; How to do it ... ; How it works ... ; Enumerating interfaces on your machine; Getting ready; How to do it ... ; How it works ... Finding the IP address for a specific interface on your machineGetting ready; How to do it ... ; How it works ... ; Finding whether an interface is up on your machine; Getting ready; How to do it ... ; How it works ... ; Detecting inactive machines on your network; Getting ready; How to do it ... ; How it works ... ; Performing a basic IPC using connected sockets (socketpair); Getting ready; How to do it ... ; How it works ... ; Performing IPC using Unix domain sockets; How to do it ... ; How it works ... ; Finding out if your Python supports IPv6 sockets; Getting ready; How to do it ... ; How it works ... Extracting an IPv6 prefix from an IPv6 address. Discover practical solutions for a wide range of real-world network programming tasksAbout This Book* Solve real-world tasks in the area of network programming, system/networking administration, network monitoring, and more.* Familiarize yourself with the fundamentals and functionalities of SDN* Improve your skills to become the next-gen network engineer by learning the various facets of Python programmingWho This Book Is ForThis book is for network engineers, system/network administrators, network programmers, and even web application developers who want to solve everyday network-related problems. If you are a novice, you will develop an understanding of the concepts as you progress with this book. What You Will Learn* Develop TCP/IP networking client/server applications* Administer local machines' IPv4/IPv6 network interfaces* Write multi-purpose efficient web clients for HTTP and HTTPS protocols* Perform remote system administration tasks over Telnet and SSH connections* Interact with popular websites via web services such as XML-RPC, SOAP, and REST APIs* Monitor and analyze major common network security vulnerabilities* Develop Software-Defined Networks with Ryu, OpenDaylight, Floodlight, ONOS, and POX Controllers* Emulate simple and complex networks with Mininet and its extensions for network and systems emulations* Learn to configure and build network systems and Virtual Network Functions (VNF) in heterogeneous deployment environments* Explore various Python modules to program the InternetIn DetailPython Network Programming Cookbook - Second Edition highlights the major aspects of network programming in Python, starting from writing simple networking clients to developing and deploying complex Software-Defined Networking (SDN) and Network Functions Virtualization (NFV) systems. It creates the building blocks for many practical web and networking applications that rely on various networking protocols. It presents the power and beauty of Python to solve numerous real-world tasks in the area of network programming, network and system administration, network monitoring, and web-application development. In this edition, you will also be introduced to network modelling to build your own cloud network. You will learn about the concepts and fundamentals of SDN and then extend your network with Mininet. Next, you'll find recipes on Authentication, Authorization, and Accounting (AAA) and open and proprietary SDN approaches and frameworks. You will also learn to configure the Linux Foundation networking ecosystem and deploy and automate your networks with Python in the cloud and the Internet scale. By the end of this book, you will be able to analyze your network security vulnerabilities using advanced network packet capture and analysis techniques. Style and approachThis book follows a practical approach and covers major aspects of network programming in Python. It provides hands-on recipes combined with short and concise explanations on code snippets. This book will serve as a supplementary material to develop hands-on skills in any academic course on network programming. This book further elaborates network softwarization, including Software-Defined Networking (SDN), Network Functions Virtualization (NFV), and orchestration. We learn to configure and deploy enterprise network platforms, develop applications on top of them with Python. Python (Computer program language) http://id.loc.gov/authorities/subjects/sh96008834 Computer networks Programming. Client/server computing. http://id.loc.gov/authorities/subjects/sh93000502 Python (Langage de programmation) Réseaux d'ordinateurs Programmation. Architecture client-serveur (Informatique) Client/server computing fast Python (Computer program language) fast Sarker, Dr. M. O. Faruque. has work: Python Network Programming Cookbook - Second Edition (Text) https://id.oclc.org/worldcat/entity/E39PCYWgMKqt4w4R7jb8mR7XMP https://id.oclc.org/worldcat/ontology/hasWork Print version: Kathiravelu, Pradeeban. Python Network Programming Cookbook - Second Edition. Birmingham : Packt Publishing, ©2017 FWS01 ZDB-4-EBA FWS_PDA_EBA https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1575653 Volltext |
spellingShingle | Kathiravelu, Pradeeban Python Network Programming Cookbook - Second Edition. Cover ; Copyright; Credits; About the Author; About the Reviewers; www.PacktPub.com; Customer Feedback; Table of Contents; Preface; Chapter 1: Sockets, IPv4, and Simple Client/Server Programming; Introduction; Printing your machine's name and IPv4 address; Getting ready; How to do it ... ; How it works ... ; Retrieving a remote machine's IP address; How to do it ... ; How it works ... ; Converting an IPv4 address to different formats; How to do it ... ; How it works ... ; Finding a service name, given the port and protocol; Getting ready; How to do it ... ; How it works ... Converting integers to and from host to network byte orderHow to do it ... ; How it works ... ; Setting and getting the default socket timeout; How to do it ... ; How it works ... ; Handling socket errors gracefully; How to do it ... ; How it works ... ; Modifying a socket's send/receive buffer sizes; How to do it ... ; How it works ... ; Changing a socket to the blocking/non-blocking mode; How to do it ... ; How it works ... ; Reusing socket addresses; How to do it ... ; How it works ... ; Printing the current time from the internet time server; Getting ready; How to do it ... ; How it works ... Writing an SNTP clientHow to do it ... ; How it works ... ; Writing a simple TCP echo client/server application; How to do it ... ; How it works ... ; Writing a simple UDP echo client/server application; How to do it ... ; How it works ... ; Chapter 2: Multiplexing Socket I/O for Better Performance; Introduction; Using ForkingMixIn in your socket server applications; How to do it ... ; How it works ... ; Using ThreadingMixIn in your socket server applications; Getting ready; How to do it ... ; How it works ... ; Writing a chat server using select.select; How to do it ... ; How it works ... Multiplexing a web server using select.epollHow to do it ... ; How it works ... ; Multiplexing an echo server using Diesel concurrent library; Getting ready; How to do it ... ; How it works ... ; Chapter 3: IPv6, Unix Domain Sockets, and Network Interfaces; Introduction; Forwarding a local port to a remote host; How to do it ... ; How it works ... ; Pinging hosts on the network with ICMP; Getting ready; How to do it ... ; How it works ... ; Waiting for a remote network service; How to do it ... ; How it works ... ; Enumerating interfaces on your machine; Getting ready; How to do it ... ; How it works ... Finding the IP address for a specific interface on your machineGetting ready; How to do it ... ; How it works ... ; Finding whether an interface is up on your machine; Getting ready; How to do it ... ; How it works ... ; Detecting inactive machines on your network; Getting ready; How to do it ... ; How it works ... ; Performing a basic IPC using connected sockets (socketpair); Getting ready; How to do it ... ; How it works ... ; Performing IPC using Unix domain sockets; How to do it ... ; How it works ... ; Finding out if your Python supports IPv6 sockets; Getting ready; How to do it ... ; How it works ... Python (Computer program language) http://id.loc.gov/authorities/subjects/sh96008834 Computer networks Programming. Client/server computing. http://id.loc.gov/authorities/subjects/sh93000502 Python (Langage de programmation) Réseaux d'ordinateurs Programmation. Architecture client-serveur (Informatique) Client/server computing fast Python (Computer program language) fast |
subject_GND | http://id.loc.gov/authorities/subjects/sh96008834 http://id.loc.gov/authorities/subjects/sh93000502 |
title | Python Network Programming Cookbook - Second Edition. |
title_auth | Python Network Programming Cookbook - Second Edition. |
title_exact_search | Python Network Programming Cookbook - Second Edition. |
title_full | Python Network Programming Cookbook - Second Edition. |
title_fullStr | Python Network Programming Cookbook - Second Edition. |
title_full_unstemmed | Python Network Programming Cookbook - Second Edition. |
title_short | Python Network Programming Cookbook - Second Edition. |
title_sort | python network programming cookbook second edition |
topic | Python (Computer program language) http://id.loc.gov/authorities/subjects/sh96008834 Computer networks Programming. Client/server computing. http://id.loc.gov/authorities/subjects/sh93000502 Python (Langage de programmation) Réseaux d'ordinateurs Programmation. Architecture client-serveur (Informatique) Client/server computing fast Python (Computer program language) fast |
topic_facet | Python (Computer program language) Computer networks Programming. Client/server computing. Python (Langage de programmation) Réseaux d'ordinateurs Programmation. Architecture client-serveur (Informatique) Client/server computing |
url | https://search.ebscohost.com/login.aspx?direct=true&scope=site&db=nlebk&AN=1575653 |
work_keys_str_mv | AT kathiravelupradeeban pythonnetworkprogrammingcookbooksecondedition AT sarkerdrmofaruque pythonnetworkprogrammingcookbooksecondedition |