1 | initial version |
This is SYN packet destined to port 80 (most likely HTTP).
So, you're most likely to see: or SYN,ACK
packet (if the port is opened) or RST
packet (if the port is closed). But these are not "requests", but a part of TCP-conversation.
As for "request" if I understand correctly the question (BTW looks like this is some assignment) I'd expect HTTP GET
or HTTP POST
.
2 | No.2 Revision |
This is SYN packet destined to port 80 (most likely HTTP).
So, you're most likely to see: see:
SYN,ACK
packet (if the port RST
packet (if the But these are not "requests", but a part of TCP-conversation.
As for "request" if I understand correctly the question (BTW looks like this is some assignment) I'd expect HTTP GET
or HTTP POST
.
3 | No.3 Revision |
This is SYN packet destined to port 80 (most likely HTTP).
So, you're most likely to see:
SYN,ACK
packet (if the port is
opened)RST
packet (if the port
is closed).But these are not "requests", but a part of TCP-conversation.TCP-conversation (TCP 3-way handshake or service refusal process).
As for "request" if I understand correctly the question (BTW looks like this is some assignment) I'd expect HTTP GET
or HTTP POST
.