Misplaced Pages

In-band control

Article snapshot taken from Wikipedia with creative commons attribution-sharealike license. Give it a read and then ask your questions in the chat. We can research this topic together.
This article does not cite any sources. Please help improve this article by adding citations to reliable sources. Unsourced material may be challenged and removed.
Find sources: "In-band control" – news · newspapers · books · scholar · JSTOR (June 2019) (Learn how and when to remove this message)

In-band control is a characteristic of network protocols with which data control is regulated. In-band control passes control data on the same connection as main data. Protocols that use in-band control include HTTP and SMTP. This is as opposed to Out-of-band control used by protocols such as FTP.

Example

Here is an example of an SMTP client-server interaction:

Server: 220 example.com  
Client: HELO example.net  
Server: 250  Hello example.net, pleased to meet you  
Client: MAIL FROM: <jane.doe@example.net>  
Server: 250 jane.doe@example.net... Sender ok  
Client: RCPT TO: <john.doe@example.com>  
Server: 250 john.doe@example.com ... Recipient ok  
Client: DATA  
Server: 354 Enter mail, end with "." on a line by itself  
Client: Do you like ketchup?  
Client: How about pickles?  
Client: .  
Server: 250 Message accepted for delivery  
Client: QUIT  
Server: 221 example.com closing connection

SMTP is in-band because the control messages, such as "HELO" and "MAIL FROM", are sent in the same stream as the actual message content.

See also


Stub icon

This computer networking article is a stub. You can help Misplaced Pages by expanding it.

Categories:
In-band control Add topic