arp--c语言实现

博客探讨了ARP欺骗的问题,包括为何在网关被欺骗后部分应用仍能上网,路由器缺乏防护措施。同时指出ARP请求广播时,局域网设备是否会更新ARP列表,并提到了在虚拟机桥接模式下和手机上的不同响应情况。
摘要由CSDN通过智能技术生成
//以太网头部
typedef struct ethernet_head
{
    u_char dst_mac[6];
    u_char src_mac[6];
    u_short eth_type;
}ethernet_head;
//arp头部
typedef struct arp_head
{
    u_char hardware_type[2];
    u_char protocol_type[2];
    u_char hardware_size;
    u_char protocol_size;
    u_char opcode[2];
    u_char  send_mac[6];
    u_char  send_ip[4];
    u_char  target_mac[6];
    u_char  target_ip[4];
 
}arp_head;
 
 
 
int main()
{
    pcap_if_t *alldevs;
    pcap_if_t *d;
    pcap_t * adhandler;
    char errbuf[PCAP_ERRBUF_SIZE];
    int num;
 
    ethernet_head  ether_data;
    arp_head       arp_data;
 
    u_char packet[100];
    //以太网头部
 
    *((unsigned long long*)&ether_data.dst_mac)=0xffffffffffff;
    *((unsigned long long*)&ether_data.src_mac)=0xaaaaaaaaaaaa;
 
 
    ether_data.eth_type=htons(0x0806);
    //arp头部
 
    *((u_short*)&arp_data.hardware_type)=htons(0x0001);
    *((u_short*)&arp_data.protocol_type)=
  • 1
    点赞
  • 13
    收藏
    觉得还不错? 一键收藏
  • 1
    评论
ARP(Address Resolution Protocol)是一种用于将IPv4地址解析为MAC地址的协议。以下是一段C语言代码,用于解析ARP数据包中的各个字段: ```c #include <stdio.h> #include <stdlib.h> #include <netinet/in.h> #include <arpa/inet.h> /* 定义ARP报文格式 */ struct arp_hdr { uint16_t hw_type; /* 硬件类型 */ uint16_t proto_type; /* 协议类型 */ uint8_t hw_len; /* 硬件地址长度 */ uint8_t proto_len; /* 协议地址长度 */ uint16_t op_code; /* 操作码 */ uint8_t src_hw_addr[6]; /* 源MAC地址 */ uint8_t src_ip_addr[4]; /* 源IP地址 */ uint8_t dst_hw_addr[6]; /* 目的MAC地址 */ uint8_t dst_ip_addr[4]; /* 目的IP地址 */ }; /* 解析ARP报文 */ void parse_arp_packet(const uint8_t* packet, size_t packet_len) { const struct arp_hdr* arp = (const struct arp_hdr*)packet; /* 打印各个字段的值 */ printf("Hardware type: %d\n", ntohs(arp->hw_type)); printf("Protocol type: %d\n", ntohs(arp->proto_type)); printf("Hardware address length: %d\n", arp->hw_len); printf("Protocol address length: %d\n", arp->proto_len); printf("Operation code: %d\n", ntohs(arp->op_code)); printf("Source MAC address: %02x:%02x:%02x:%02x:%02x:%02x\n", arp->src_hw_addr[0], arp->src_hw_addr[1], arp->src_hw_addr[2], arp->src_hw_addr[3], arp->src_hw_addr[4], arp->src_hw_addr[5]); printf("Source IP address: %s\n", inet_ntoa(*(struct in_addr*)arp->src_ip_addr)); printf("Destination MAC address: %02x:%02x:%02x:%02x:%02x:%02x\n", arp->dst_hw_addr[0], arp->dst_hw_addr[1], arp->dst_hw_addr[2], arp->dst_hw_addr[3], arp->dst_hw_addr[4], arp->dst_hw_addr[5]); printf("Destination IP address: %s\n", inet_ntoa(*(struct in_addr*)arp->dst_ip_addr)); } /* 主程序 */ int main() { /* 假设收到的ARP数据包保存在packet_buf中 */ uint8_t packet_buf[] = { 0x00, 0x01, 0x08, 0x00, 0x06, 0x04, 0x00, 0x01, /* ARP头部 */ 0x08, 0x00, 0x27, 0x1a, 0x67, 0x1b, 0xc0, 0xa8, /* 源MAC地址和IP地址 */ 0x01, 0x02, 0x03, 0x04, 0x05, 0x06, 0xc0, 0xa8, /* 目的MAC地址和IP地址 */ 0x01, 0x01, 0x01, 0x01 }; size_t packet_len = sizeof(packet_buf); parse_arp_packet(packet_buf, packet_len); return 0; } ``` 上述代码中,我们定义了一个`struct arp_hdr`类型,用于表示ARP报文的各个字段。然后,我们通过强制类型转换将收到的ARP数据包转换为该类型,然后打印各个字段的值。最后,我们可以通过修改`packet_buf`数组中的数据,来测试不同的ARP数据包。
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值