While Working within LAN, open CMD and type "netstat" without quotes. You will be getting which connection using which port along with the protocol.
110
A single port can be configured to listen for UDP or TCP inbound connection requests (or both). Telnet uses TCP. So when you telnet to a specific IP:port, telnet will attempt to make a TCP connection. If there is no TCP listener on the port you specify, then the connection request will be refused. It matters not if you have a UDP listener on the port. Telnet will not be able to establish a connection to a UDP port.
s
69 is the port number of TCP. TCP is the connection reliable protocol which is used to transfer the data in the network.so that dns is not configured properly or tcp/ip settings are not properly.
To open a TCP connection, you can use the telnet command followed by the hostname or IP address and the port number. For example, telnet example.com 80 opens a TCP connection to port 80 on example.com. Alternatively, you can use nc (netcat) with a similar syntax, like nc example.com 80. These commands are commonly used for testing connectivity to a specific service.
TCP port 23
used TCP port 110.
TCP
Telnet use port number 23,and connected to TCP
Think about it:The objective of the question is to make you think about TCP connections. How does TCP establish a connection? Look at the flags that are set in the packet. (TCP part of the frame -- 4thin the list)Also identify the source and destination IPs and ports. Notice the port number and think about the protocol you are using.Answer:It shows the first Syn. It's the first one because the Syn doesn't have an acknowledgment with it. Therefor it's the first connection made.This is known as the 3 way handshakeFTP Client ......................................FTP Server-----------------SYN----------------------->
Telnet use port number 23,and connected to TCP
Telnet operates over TCP Port 23.