Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Part I (85%): Write a SMTP client program and a SMTP server program to implement the following simplified SMTP protocol based on TCP service. Please

image text in transcribedimage text in transcribed

Part I (85%): Write a SMTP client program and a SMTP server program to implement the following simplified SMTP protocol based on TCP service. Please make sure your program supports multiple clients. You must use the port assigned to you and you may hard code it in both client and server programs. "Telnet " can be used to test your SMTP server program first (especially those "503" responses), then your SMTP client can be tested using your SMTP server program. SMTP Client Program (NOT a TELNET client!!!): 1. Display a message to ask the user to input the Host Name (or ip address) of your SMTP server. 2. Buildup the TCP connection to your SMTP server with the Host Name input by User at the given port. Catch the exception, terminate the program, and display error messages on the standard output if any. Wait for, read, and display the "220" response from the SMTP server. 3. Display prompt messages on the standard output to ask the user to input sender's email address, receiver's email address, subject, and email contents, respectively. Since there may be multiple lines in email contents, the prompt message displayed by your Client program MUST prompt the ending signature pattern like "." on a Use the user inputs collected above in Step 3 for the following 3-phase data transfer procedure (see step 3 on server side). In cach of the following steps a. through e., display the RTT (round-trip-time) of each conversation in millisecond (e.g., RTT = 212.08 ms). a. Send the "HELO " command (e.g., HELO xyz.com) to the SMTP server program, wait for server's response and display it on the standard output. b. Send the MAIL FROM: " command to SMTP server, wait for SMTP server's response and display it on the standard output. c. Send the RCPT TO: " command to the SMTP server program, wait for SMTP server's response and display it on the standard output. d. Send the "DATA" command to the SMTP server program, wait for SMTP server's response and display it on the standard output. c. Send the Mail message to the SMTP server. The format of this Mail message MUST follow the format detailed on the slide titled "Mail message format". Wait for SMTP server's response and display it on the standard output. 5. Display a prompt message to ask the User whether to continue. If yes, repeat steps 3 through 5. Otherwise, send a "QUIT" command to the SMTP server, display SMTP Server's response, close TCP connection, and terminate the Client program. SMTP Server Program: (server's ip or client's ip can be its dns name below.) 1. Listen to the given port and wait for a connection request from a SMTP Client. 2. Create a new thread for every incoming TCP connection request from a SMTP client. Send the "220" response including server's ip address or dns name to the SMTP client. 3. Implement the following 3-phase data transfer procedure (see step 4 on client side): a. Wait for, read, and display the HELO ..." command from the SMTP client. If the incoming command is NOT "HELO ...", sends "503 5.5.2 Send hello first response to the SMTP client and repeat step 3.a. b. Send the 250 Hello " response to the SMTP client. c. Wait for, read, and display the "MAIL FROM: ..." command from the SMTP client. If the incoming command is NOT "MAIL FROM: ...", sends "503 5.5.2 Need mail command" response to the SMTP client and repeat step 3.c. d. Send the 250 2.1.0 Sender OK" response to the SMTP client. e. Wait for, read, and display the RCPT TO: ..." command from the SMTP client. If the incoming command is NOT "RCPT TO: ...", send "503 5.5.2 Need rept command" response to the SMTP client and repeat step 3.e. f. Send the "250 2.1.5 Recipient OK response to the SMTP client. g. Wait for, read, and display the DATA" command from the SMTP client. If the incoming command is NOT "DATA", send "503 5.5.2 Need data command" response to the SMTP client and repeat step 3.g. h. Send the "354 Start mail input; end with ."response to the SMTP client. i. Wait for, read, and display the Mail message from the SMTP client line by line. (hint: "" is the ending signature.) j. Send the "250 Message received and to be delivered" response to the SMTP client. 4. Repeat Step 3 until the "QUIT" command is read. Upon receiving "QUIT", send the "221 closing connection" response to the SMTP client and go to Step 5. 5. Close all i/o streams and the TCP socket for THIS Client, and terminate the thread for THIS client. Part I (85%): Write a SMTP client program and a SMTP server program to implement the following simplified SMTP protocol based on TCP service. Please make sure your program supports multiple clients. You must use the port assigned to you and you may hard code it in both client and server programs. "Telnet " can be used to test your SMTP server program first (especially those "503" responses), then your SMTP client can be tested using your SMTP server program. SMTP Client Program (NOT a TELNET client!!!): 1. Display a message to ask the user to input the Host Name (or ip address) of your SMTP server. 2. Buildup the TCP connection to your SMTP server with the Host Name input by User at the given port. Catch the exception, terminate the program, and display error messages on the standard output if any. Wait for, read, and display the "220" response from the SMTP server. 3. Display prompt messages on the standard output to ask the user to input sender's email address, receiver's email address, subject, and email contents, respectively. Since there may be multiple lines in email contents, the prompt message displayed by your Client program MUST prompt the ending signature pattern like "." on a Use the user inputs collected above in Step 3 for the following 3-phase data transfer procedure (see step 3 on server side). In cach of the following steps a. through e., display the RTT (round-trip-time) of each conversation in millisecond (e.g., RTT = 212.08 ms). a. Send the "HELO " command (e.g., HELO xyz.com) to the SMTP server program, wait for server's response and display it on the standard output. b. Send the MAIL FROM: " command to SMTP server, wait for SMTP server's response and display it on the standard output. c. Send the RCPT TO: " command to the SMTP server program, wait for SMTP server's response and display it on the standard output. d. Send the "DATA" command to the SMTP server program, wait for SMTP server's response and display it on the standard output. c. Send the Mail message to the SMTP server. The format of this Mail message MUST follow the format detailed on the slide titled "Mail message format". Wait for SMTP server's response and display it on the standard output. 5. Display a prompt message to ask the User whether to continue. If yes, repeat steps 3 through 5. Otherwise, send a "QUIT" command to the SMTP server, display SMTP Server's response, close TCP connection, and terminate the Client program. SMTP Server Program: (server's ip or client's ip can be its dns name below.) 1. Listen to the given port and wait for a connection request from a SMTP Client. 2. Create a new thread for every incoming TCP connection request from a SMTP client. Send the "220" response including server's ip address or dns name to the SMTP client. 3. Implement the following 3-phase data transfer procedure (see step 4 on client side): a. Wait for, read, and display the HELO ..." command from the SMTP client. If the incoming command is NOT "HELO ...", sends "503 5.5.2 Send hello first response to the SMTP client and repeat step 3.a. b. Send the 250 Hello " response to the SMTP client. c. Wait for, read, and display the "MAIL FROM: ..." command from the SMTP client. If the incoming command is NOT "MAIL FROM: ...", sends "503 5.5.2 Need mail command" response to the SMTP client and repeat step 3.c. d. Send the 250 2.1.0 Sender OK" response to the SMTP client. e. Wait for, read, and display the RCPT TO: ..." command from the SMTP client. If the incoming command is NOT "RCPT TO: ...", send "503 5.5.2 Need rept command" response to the SMTP client and repeat step 3.e. f. Send the "250 2.1.5 Recipient OK response to the SMTP client. g. Wait for, read, and display the DATA" command from the SMTP client. If the incoming command is NOT "DATA", send "503 5.5.2 Need data command" response to the SMTP client and repeat step 3.g. h. Send the "354 Start mail input; end with ."response to the SMTP client. i. Wait for, read, and display the Mail message from the SMTP client line by line. (hint: "" is the ending signature.) j. Send the "250 Message received and to be delivered" response to the SMTP client. 4. Repeat Step 3 until the "QUIT" command is read. Upon receiving "QUIT", send the "221 closing connection" response to the SMTP client and go to Step 5. 5. Close all i/o streams and the TCP socket for THIS Client, and terminate the thread for THIS client

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Modern Database Management

Authors: Jeffrey A. Hoffer Fred R. McFadden

9th Edition

B01JXPZ7AK, 9780805360479

Students also viewed these Databases questions