Networking&K8S: A Layered Approach/1. Networking Introduction11 ICMP 2024. 12. 4. IP 2024. 12. 4. UDP 2024. 12. 4. TLS 2024. 12. 4. tcpdump 2024. 12. 4. L4 - TCP handshake 2024. 12. 4. L4 - TCP 2024. 12. 4. L7 - HTTP 1. HTTP Simple Webserver (python)코드# HttpWebserver.pyfrom http.server import HTTPServer, BaseHTTPRequestHandlerclass SimpleHTTPRequestHandler(BaseHTTPRequestHandler): def do_GET(self): # 1. First, set the response status code self.send_response(200) # 2. Set the response headers self.send_header('Content-Type', 'text/plain; charset=utf-8') self.send_header('.. 2024. 12. 4. 이전 1 2 다음