Client-server applications using UDP and TCP with Wireshark packet analysis
This project demonstrates basic client-server communication using both UDP and TCP protocols. It includes Python scripts and Wireshark packet captures for analysis.
UDP server UDP client TCP server TCP client
- Open two terminals
- Run the server file first
- Run the corresponding client file
- Enter a message or number when prompted
Captures UDP traffic on port 2000 Captures TCP traffic on port 13000
- All communication is on localhost (
127.0.0.1) - Wireshark used the loopback adapter to capture packets
- Console output confirms successful message exchange
Adanma