Net Client

Map Of Internet 1973

About

This page is about clients that send packet to a socket.

What can you do?

Talk to server

You can talk directly to a server that implements a protocol where the packet body is made of text such as:

Transfer data

This client can also act as a net server, therefore you can:

  • start a client
  • start a server
  • and transfer any kind of data

List

telnet localhost 25
nc localhost 25
openssl s_client -connect google.com:443 -cipher EXP-RC4-MD5

openssl s_client \
  -connect datacadamia.com:443 \
  -servername datacadamia.com # sni settings





Discover More
Map Of Internet 1973
Network - Connection

session in network are known as connection. A socket is the known network connection implementation. When referring to a network connection, most of the times, a text will refer to a TCP connection...
Map Of Internet 1973
Network - Server

A network server is a service that listens on a socket for inbound connections. This server receives packets and returns packets A Web/HTTP Server listens for TCP connection on the HTTP/HTTPS port...
Map Of Internet 1973
Network - netcat (nc, ncat)

netcat is a net client/server command line tool for TCP or UDP protocol. It can: reads and writes data across network connections acts as a client but also as a server You can see it as the equivalent...
Openssl

openssl is a command line tool that: * permits testing, managing, and seeing what happens in a TLS world (ie new name for SSL) * can act as a network client/server * Obtain a valid Certificate...
Telnet Installation Windows
Telnet (Protocol, Client)

TELNET (TELetype NETwork) is a net client used on the Internet or local area network LAN connections. It was developed in 1969. By extension, “telnet” also refers to the program that provides the...
Map Of Internet 1973
What is the Traffic or Wire in Network?

The network traffic or network wire is all network packet that goes through a certain interface in the network. The packets flow between: a NetWork Client and a NetWork Server For Network packets,...



Share this page:
Follow us:
Task Runner