博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
IP TCP UDP 结构
阅读量:2149 次
发布时间:2019-04-30

本文共 850 字,大约阅读时间需要 2 分钟。

[come from:  ]
IP Header Format  :  

The IP header structure is as follows:

 

4
8
16
32 bits
Ver. IHL Type of service Total length
Identification Flags Fragment offset
Time to live Protocol Header checksum
Source address
Destination address
Option + Padding
Data
IP header structure
IPV6 :

 

The IPv6 header structure is as follows:

4
4
16
24
32 bits
Ver. Priority Flow label
Payload length Next header Hop limit
Source address
(128 Bits)
Destination address
(128 bits)
IPv6 header structure
         
TCP Header Format  :       

The TCP header structure is as follows:

16
32 bits
Source port Destination port
Sequence number
Acknowledgement number
Offset Resrvd U A P R S F Window
Checksum Urgent pointer
Option + Padding
Data
TCP header structure
  

 

The UDP header structure is shown as follows:

16
32 bits
Source port Destination port
Length Checksum
Data
UDP header structure

转载地址:http://dlfwb.baihongyu.com/

你可能感兴趣的文章
用 Doc2Vec 得到文档/段落/句子的向量表达
查看>>
使聊天机器人具有个性
查看>>
使聊天机器人的对话更有营养
查看>>
一个 tflearn 情感分析小例子
查看>>
attention 机制入门
查看>>
手把手用 IntelliJ IDEA 和 SBT 创建 scala 项目
查看>>
双向 LSTM
查看>>
GAN 的 keras 实现
查看>>
AI 在 marketing 上的应用
查看>>
Logistic regression 为什么用 sigmoid ?
查看>>
Logistic Regression 为什么用极大似然函数
查看>>
SVM 的核函数选择和调参
查看>>
LightGBM 如何调参
查看>>
用 TensorFlow.js 在浏览器中训练神经网络
查看>>
cs230 深度学习 Lecture 2 编程作业: Logistic Regression with a Neural Network mindset
查看>>
梯度消失问题与如何选择激活函数
查看>>
为什么需要 Mini-batch 梯度下降,及 TensorFlow 应用举例
查看>>
为什么在优化算法中使用指数加权平均
查看>>
什么是 Q-learning
查看>>
用一个小游戏入门深度强化学习
查看>>