免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 4490 | 回复: 0
打印 上一主题 下一主题

怎么用 socket(PF_PACKET,SOCK_RAW,htons(ETH_P_PPP_DISC)) 发送广播? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-08-21 14:47 |只看该作者 |倒序浏览
求教:
1,我想通过套接字在L2层发送广播,可我的ethernet包好像组的有问题,尤其是源地址和目的地址(广播),赋值不成功,总是出错,应该怎么做才好?最好不用自己手动填写本机的物理地址。
2,源地址和目的地址是不是应该转成网络字节序,可是我只知道怎么转IP地址,MAC地址改怎么转?

我的代码:
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <string.h>
#include <sys/socket.h>
#include <netpacket/packet.h>
#include <net/ethernet.h>

#define SEND_BUF_SIZE 256
char send_buf[SEND_BUF_SIZE];
u_int8_t LL_host[6] = { 0x00, 0x19, 0xb9, 0x2a, 0xa1, 0xfa };//本机地址
u_int8_t LL_dest[6] = { 0xff, 0xff, 0xff, 0xff, 0xff, 0xff };

int sockfd;

void send_PADI()
{
    struct ether_header *eth;
    eth=(struct ether_header*)&send_buf;
   
    //以太网组包:
    memcpy (&eth->ether_dhost, LL_host, ETH_ALEN);//总提示这两个地址赋值出错????
    memcpy (&eth->ether_shost, LL_dest, ETH_ALEN);
    eth->ether_type=htons(ETH_P_PPP_DISC);

    struct sockaddr_ll sa;
    memset (&sa, 0, sizeof (struct sockaddr_ll));
    sa.sll_family = AF_PACKET;
    sa.sll_halen = ETH_ALEN;//ETH_ALEN=6
    sa.sll_ifindex  = if_nametoindex("eth0");
    memcpy (&sa.sll_addr, LL_dest, ETH_ALEN);
    sendto(sockfd,send_buf,sizeof(eth),0,(struct sockaddr *)&sa,sizeof(struct sockaddr_ll));
    //验证sendto返回值>0
}

int main(int argc,char* argv[])
{
    sockfd=socket(PF_PACKET,SOCK_RAW,htons(ETH_P_PPP_DISC));
if(sockfd < 0) {
        perror("socket error");
        exit(1);
    }
send_PADI();
return 0;
}
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP