Search

SSH Packet Format

Following image shows the SSH packet format as explained by RFC 4253. Please refer page number 7 and 8 of RFC 4253 to get more clear picture about SSH packet format.

Descriptions given below are copied from RFC 4253

ssh-packet-format.gif

Packet Length : Packet Length is length of the packet in bytes, not including HMAC value or the Packet Length field itself.

Padding Length : Padding Length is the length of Random Padding in bytes.

Payload : Payload is the useful contents of the packet. If compression has been negotiated, this field is compressed.

Random Padding : Random Padding is the arbitrary-length padding, such that the total length of (packet_length || padding_length || payload || random padding) is a multiple of the cipher block size or 8, whichever is larger. There MUST be at least four bytes of padding. The padding SHOULD consist of random bytes. The maximum amount of padding is 255 bytes.

MAC (Message Authentication Code) : MAC (Message Authentication Code) field contains the MAC value, if the message authentication has been negotiated, this field contains the MAC bytes. Initially, the MAC algorithm MUST be "none".

SSH Captured Packet screenshot

Following image shows the screenshot a Wireshark captured packet of SSH. Note that Encrypted Packet Length, Encrypted Packet and HMAC are the three fields. The contents of Padding, Payload and Random Padding are inside the Encrypted packet field.

wireshark-captured-packet-of-ssh.gif

Related Tutorials
What is SSH (Secure Shell)
History of SSH protocol
What SSH can do
Versions of SSH Protocol
RFCs related with SSH protocol
SSH Protocols and Products
SSH Client and SSH Server
SSH Components
SSH Encryption Algorithms
Hash values, MAC and HMAC in SSH
What is SSH host key
How SSH works
How to install OpenSSH server in Windows Server
How to start OpenSSH Service in Windows Server
How to install OpenSSH Server in Windows Server using PowerShell
How to configure SSH server in Cisco Router
PuTTY login to Cisco Router using SSH protocol
How to install OpenSSH client in Windows 10
Port forwarding using SSH
How to configure SSH port forwarding