我试图在内核3.10中发送一个udp数据包,跟随这个问题: Sending UDP packets from the Linux Kernel
UDP数据包应从192.168.56.2发送到192.168.56.1(端口514) 我在192.168.56.2上检查了tcpdump,在192.168.56.1上检查了wireshark(在cygwin上的+ syslog-ng),但没看到数据包
有谁知道什么是错的?
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/netpoll.h>
static struct netpoll* np = NULL;
static struct netpoll np_t;
//see https://stackoverflow.com/questions/10499865/sending-udp-packets-from-the-linux-kernel
void init_netpoll(void)
{
np_t.name = "LRNG";
strlcpy(np_t.dev_name, "eth0", IFNAMSIZ);
np_t.local_ip.ip = htonl((unsigned long int)0xc0a83802); //192.168.56.2
np_t.local_ip.in.s_addr = htonl((unsigned long int)0xc0a83802); //192.168.56.2
np_t.remote_ip.ip = htonl((unsigned long int)0xc0a83801); //192.168.56.1
np_t.remote_ip.in.s_addr = htonl((unsigned long int)0xc0a83801); //192.168.56.1
np_t.ipv6 = 0;//no IPv6
np_t.local_port = 6666;
np_t.remote_port = 514;
memset(np_t.remote_mac, 0xff, ETH_ALEN);
netpoll_print_options(&np_t);
netpoll_setup(&np_t);
np = &np_t;
}
void clean_netpoll(void)
{
//nothing
}
void sendUdp(const char* buf)
{
int len = strlen(buf);
netpoll_send_udp(np,buf,len);
}
static int __init initmod(void)
{
printk(KERN_INFO "Hello world :)\n");
init_netpoll();
sendUdp("[55] testestestestestestestestest");
sendUdp("<55>Mar 17 21:57:57 frodo sshd[701]: blub");
//0 = module loaded
return 0;
}
static void __exit cleanmod(void)
{
printk(KERN_INFO "Goodbye world :(\n");
}
//Makros
module_init(initmod);
module_exit(cleanmod);
答案 0 :(得分:1)
您应该在目的地打开相应的端口进行侦听。您可以使用netcat执行此操作(在插入模块之前在终端中键入此内容)
nc -u -l 514 // u is for udp and -l for listening on particular port
您可以查看手册页以获取更多选项。