计算机网络篇之ARP包结构
ARP包格式
struct arp_hdr
{
uint16_t hwtype; //数据链路层的类型,若是以太网,值是0x0001
uint16_t protype; //通信协议类型,若是ipv4,值是0x0800
unsigned char hwsize; //硬件字段大小(单位字节),若是mac地址就是6
unsigned char prosize; //协议字段大小(单位字节),若是ip地址就是4
uint16_t opcode; //ARP消息的类型,ARP请求是1,ARP回复是2,RARP请求是3,RARP回复是4
unsigned char data[]; //ARP协议的数据负载
} __attribute__((packed));
ARP包里面的数据负载格式
若是ipv4, ARP协议的数据负载就是这个结构文章来源:https://www.toymoban.com/news/detail-718614.html
struct arp_ipv4
{
unsigned char smac[6];//发送方的6字节mac地址
uint32_t sip; //发送方的4字节ip地址
unsigned char dmac[6];//接受方的6字节mac地址
uint32_t dip; //接受方的4字节ip地址
} __attribute__((packed));
ok, 简单胜于复杂, 就聊这么多文章来源地址https://www.toymoban.com/news/detail-718614.html
到了这里,关于计算机网络篇之ARP包结构的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!