0Pricing
Linux Networking & TCP/IP for Developers · Lekcja

Gniazda TCP klient-serwer

Zaimplementuj niezawodną, zorientowaną połączeniowo komunikację, tworząc podstawowe aplikacje klienta i serwera TCP w Pythonie.

Gniazda TCP klient-serwer to bezpłatna lekcja Linux Networking & TCP/IP for Developers na CoddyKit. To lekcja 2 z 4. Możesz przeczytać całą lekcję poniżej za darmo — a potem ćwiczyć ją interaktywnie w przeglądarce z wbudowanym edytorem kodu i tutorem AI dostępnym 24/7. To część ścieżki edukacyjnej Linux Networking & TCP/IP for Developers, a Twój postęp synchronizuje się między webem a aplikacją CoddyKit. Kurs Linux Networking & TCP/IP for Developers zawiera 4 lekcji w sumie.

Części tej lekcji nie zostały jeszcze przetłumaczone i są wyświetlane po angielsku.

TCP Sockets: Connection First

Welcome to building network applications with Python! This lesson focuses on TCP (Transmission Control Protocol) sockets, which are the backbone of reliable internet communication.

Unlike UDP, TCP is a connection-oriented protocol. This means a direct, stable link is established between two applications before any data is sent.

Why TCP is Reliable

TCP ensures your data arrives correctly and in order. It handles:

  • Guaranteed Delivery: Data segments are retransmitted if lost.
  • Ordered Data: Data arrives in the order it was sent.
  • Error Checking: Data integrity is verified.
  • Flow Control: Prevents a fast sender from overwhelming a slow receiver.

This makes TCP ideal for web browsing, email, and file transfers.

TCP Server: The Listener

A TCP server's role is to listen for incoming connections from clients. Here's the typical workflow for a server:

  1. Create a socket.
  2. Bind the socket to an IP address and port.
  3. Listen for client connections.
  4. Accept an incoming connection.
  5. Communicate (send/receive data).
  6. Close the sockets.

Creating a Python TCP Socket

In Python, we use the built-in socket module. To create a TCP socket, we specify socket.AF_INET for IPv4 addressing and socket.SOCK_STREAM for TCP.

Try running this basic example:

import socket

def main():
    # Create a TCP/IP socket
    # AF_INET for IPv4, SOCK_STREAM for TCP
    tcp_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    print("TCP socket created successfully!")
    tcp_socket.close()
    print("Socket closed.")

if __name__ == "__main__":
    main()

Server: Bind to Address & Port

After creating the socket, the server needs to bind it to a specific IP address and port number. This tells the operating system where the server will listen for connections.

.bind((HOST, PORT)) associates the socket. .listen(backlog) prepares it to accept connections, with backlog being the max queued connections.

import socket

def main():
    HOST = '127.0.0.1'  # Localhost
    PORT = 65432        # Port to listen on (non-privileged)

    server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    try:
        server_socket.bind((HOST, PORT))
        server_socket.listen(1) # Allow 1 pending connection
        print(f"Server listening on {HOST}:{PORT}")
    except Exception as e:
        print(f"Error binding or listening: {e}")
    finally:
        server_socket.close()
        print("Server socket closed.")

if __name__ == "__main__":
    main()

Server: Accepting a Client

The .accept() method is crucial for a server. It blocks execution until a client tries to connect. When a connection is made, it returns two values:

  • A new socket object (conn) for communicating with that specific client.
  • The client's address (addr), a (host, port) tuple.
import socket

def main():
    HOST = '127.0.0.1'
    PORT = 65432

    server_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    server_socket.bind((HOST, PORT))
    server_socket.listen(1)
    print(f"Server waiting for connection on {HOST}:{PORT}...")

    # This will block until a client connects
    conn, addr = server_socket.accept()
    with conn: # Use 'with' for auto-closing the client socket
        print(f"Connected by client from {addr}")
        # In a real app, send/recv would happen here
        conn.sendall(b"Hello from server!") # Send some bytes
        print("Sent greeting to client.")
    server_socket.close()
    print("Server socket closed.")

if __name__ == "__main__":
    main()

TCP Client: Initiating Connection

A TCP client's role is to initiate a connection to a server. Here's its typical workflow:

  1. Create a socket.
  2. Connect to the server's IP address and port.
  3. Communicate (send/receive data).
  4. Close the socket.

Client: Connecting to Server

The client uses the .connect((HOST, PORT)) method to establish a connection with the server. If successful, a virtual circuit is created. If the server isn't listening, you'll get a ConnectionRefusedError.

Run this. If no server is running, it will show an error:

import socket

def main():
    HOST = '127.0.0.1'  # Server's IP address
    PORT = 65432        # Server's port

    client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    try:
        print(f"Attempting to connect to server at {HOST}:{PORT}...")
        client_socket.connect((HOST, PORT))
        print("Successfully connected to the server!")
    except ConnectionRefusedError:
        print("Connection refused. Is the server running?")
    except Exception as e:
        print(f"Client connection error: {e}")
    finally:
        client_socket.close()
        print("Client socket closed.")

if __name__ == "__main__":
    main()

Sending & Receiving Data

Once connected, both client and server can send and receive data. Remember that network data is transmitted as bytes, so you'll often need to .encode() strings before sending and .decode() received bytes back into strings.

  • .sendall(data): Sends all data reliably.
  • .recv(buffer_size): Receives up to buffer_size bytes.
import socket

def main():
    HOST = '127.0.0.1'
    PORT = 65432

    client_socket = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
    try:
        client_socket.connect((HOST, PORT))
        message = "Hello from the client!"
        client_socket.sendall(message.encode('utf-8'))
        print(f"Client sent: '{message}'")

        data = client_socket.recv(1024) # Receive up to 1024 bytes
        if data:
            print(f"Client received: '{data.decode('utf-8')}'")
        else:
            print("Client received no data (server might have closed).")
    except ConnectionRefusedError:
        print("Connection refused. Please run the server example first!")
    except Exception as e:
        print(f"Client communication error: {e}")
    finally:
        client_socket.close()
        print("Client socket closed.")

if __name__ == "__main__":
    main()

TCP Communication Flow

Consider the typical steps for a Python TCP server to establish a connection and an echo client to communicate.

Recap: TCP Client-Server Sockets

Great job! You've learned the fundamentals of TCP client-server communication in Python:

  • TCP provides reliable, connection-oriented communication.
  • Servers bind to an address, listen for connections, and accept clients.
  • Clients connect to a server's address.
  • Both use .sendall() to send and .recv() to receive bytes.

These concepts are crucial for building robust networked applications!

Często zadawane pytania

Czy lekcja „Gniazda TCP klient-serwer” jest bezpłatna?

Tak — pełny tekst „Gniazda TCP klient-serwer” jest dostępny za darmo tutaj w sieci. Aby ćwiczyć ją interaktywnie (wbudowany edytor kodu i tutor AI dostępny 24/7) i odblokować resztę kursu Linux Networking & TCP/IP for Developers, przejdź na CoddyKit PRO. Kurs Linux Networking & TCP/IP for Developers zawiera 4 lekcji w sumie.

Co nauczysz się w „Gniazda TCP klient-serwer”?

Zaimplementuj niezawodną, zorientowaną połączeniowo komunikację, tworząc podstawowe aplikacje klienta i serwera TCP w Pythonie. Ćwiczysz Linux Networking & TCP/IP for Developers z praktycznym kodem, który uruchamiasz bezpośrednio w przeglądarce, a tutor AI dostępny 24/7 odpowiada na Twoje pytania podczas pracy nad lekcją.

Czy potrzebuję doświadczenia, aby zacząć Linux Networking & TCP/IP for Developers?

Nie wymagamy żadnego doświadczenia. Linux Networking & TCP/IP for Developers w CoddyKit jest strukturyzowany dla początkujących i zaawansowanych użytkowników, więc możesz zacząć tutaj lub od początku i uczyć się w swoim tempie. To lekcja 2 z 4.

Ile czasu zajmuje lekcja „Gniazda TCP klient-serwer”?

Większość lekcji CoddyKit trwa około 5–10 minut. Każda lekcja to mały, interaktywny krok, dzięki czemu robisz systematyczne postępy i zawsze wracasz dokładnie do tego samego miejsca — na webie i w aplikacji.

Czy mogę pisać i uruchamiać kod w tej lekcji Linux Networking & TCP/IP for Developers?

Tak. Każda lekcja Linux Networking & TCP/IP for Developers zawiera wbudowany edytor kodu, więc piszesz i uruchamiasz prawdziwy kod bezpośrednio w przeglądarce i od razu otrzymujesz sprzężenie zwrotne od AI — bez konfiguracji na komputerze.

Wszystkie lekcje w tym kursie

  1. Wprowadzenie do Socket API
  2. Gniazda TCP klient-serwer
  3. Gniazda UDP klient-serwer
  4. Nieblokujące gniazda i select()
← Powrót do Linux Networking & TCP/IP for Developers