linux驱动.之 网络udp应用层测试工具demon(一)

绑定vlan,网卡的demon,如果有多个网卡,多个vlan,网卡的ip设置成一致,那就不能只简单绑定ip来创建socket,

需要绑定网卡设备

客户端udp_client.c

c 复制代码
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <net/if.h>
#include <linux/sockios.h>
#include <sys/ioctl.h>

#include <arpa/inet.h>
#include <errno.h>
#include <net/if.h>
#include <netinet/ether.h>
#include <netinet/in.h>
#include <netpacket/packet.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <time.h>
#include <unistd.h>
#include <fcntl.h>
#include <termios.h>

 
#define BUF_SIZE    1024
#define INTERFAXENAME "mgbe3_0.14"

int sock;

int main(int argc, char *argv[])
{
    int ret = 0;
	char buf[1024];
	memset(buf,1,1024);
	
	if ( (sock=socket(AF_INET, SOCK_DGRAM, 0)) <0)
	{
		perror("socket");
		exit(1);
	}

	struct ifreq interface;
	strncpy(interface.ifr_ifrn.ifrn_name, INTERFAXENAME, sizeof(INTERFAXENAME));
	if (setsockopt(sock, SOL_SOCKET, SO_BINDTODEVICE, (char *)&interface, sizeof(interface))  < 0) // 绑定vlan网卡设备
	{
		perror("SO_BINDTODEVICE failed");
	}

	struct sockaddr_in addr;
	memset(&addr, 0, sizeof(addr));
	addr.sin_family = AF_INET;
	addr.sin_port = htons(31004);
	addr.sin_addr.s_addr = inet_addr("198.18.36.3");

	ret = bind(sock, (struct sockaddr *)&addr, sizeof(addr));
	if (ret < 0) {
		printf("%s: bind 198.18.36.3 failed\n", __FUNCTION__);
		close(sock);
		return 0;
	}
	else
	printf("bind 198.18.36.3 success \r\n");
	
    struct sockaddr_in server_addr;
    memset(&server_addr, 0, sizeof(server_addr));
    server_addr.sin_family = AF_INET;
	server_addr.sin_port = htons(31004);
	server_addr.sin_addr.s_addr = inet_addr("198.18.36.1");
	
	while(1)
	{
		ret = sendto(sock, buf, 1024, 0,(struct sockaddr *)&server_addr, sizeof(server_addr));
		printf("sendto 198.18.36.1 ret:%d\n", ret);
		usleep(200000);
	}
	
	close(sock);
	return 0;
}

服务端udp_service.c

c 复制代码
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <sys/types.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <net/if.h>
#include <linux/sockios.h>
#include <sys/ioctl.h>

#include <arpa/inet.h>
#include <errno.h>
#include <net/if.h>
#include <netinet/ether.h>
#include <netinet/in.h>
#include <netpacket/packet.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <sys/ioctl.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <time.h>
#include <unistd.h>
#include <fcntl.h>
#include <termios.h>

 
#define BUF_SIZE    1024
#define INTERFAXENAME "mgbe3_0.14"

int sock;

int main(int argc, char *argv[])
{
    int ret = 0;
	char buf[1024];
	memset(buf,1,1024);

	if ( (sock=socket(AF_INET, SOCK_DGRAM, 0)) <0)
	{
		perror("socket");
		exit(1);
	}

	struct ifreq interface;
	strncpy(interface.ifr_ifrn.ifrn_name, INTERFAXENAME, sizeof(INTERFAXENAME));
	if (setsockopt(sock, SOL_SOCKET, SO_BINDTODEVICE, (char *)&interface, sizeof(interface))  < 0)  // 绑定vlan网卡设备
	{
		perror("SO_BINDTODEVICE failed");
	}

	struct sockaddr_in server_addr;
    memset(&server_addr, 0, sizeof(server_addr));
    server_addr.sin_family = AF_INET;
	server_addr.sin_port = htons(31004);
	server_addr.sin_addr.s_addr = inet_addr("198.16.37.4");
	
	ret = bind(sock, (struct sockaddr *)&server_addr, sizeof(server_addr));
	if (ret < 0) 
    {
		printf("%s: bind 198.16.37.4 failed\n", __FUNCTION__);
		close(sock);
		return 0;
	}
	else
	printf("bind 198.16.37.4 success \r\n");
	
	struct sockaddr_in client_addr;
	socklen_t	len;
	len = sizeof(client_addr);
	while(1)
	{
		ret = recvfrom(sock, buf, 1024, 0,(struct sockaddr *)&client_addr, &len);
		printf("recvfrom 198.16.37.3 ret:%d\n", ret);
	}
	
	close(sock);
	return 0;
}

将两个程序编译成二进制执行程序,放到开发板运行,就行测试。

相关推荐
orion571 天前
Missing Semester Class1:course overview and introduction of shell
linux
用户120487221611 天前
Linux驱动编译与加载
linux·嵌入式
用户805533698031 天前
Input 子系统架构:Core、Handler、Driver 三层是怎么协作的
linux·嵌入式
用户805533698031 天前
RK-Forge外设系列开篇 - 把板子从「能启动」变成「能用」:Ethernet/SPI/MMC 三个纯接线外设
linux·github·嵌入式
七歌杜金房2 天前
我终于又有了自己的 Linux 电脑
linux·debian·mac
tntxia3 天前
linux curl命令详解_curl详解
linux
扛枪的书生3 天前
Linux 网络管理器用法速查
linux
顺风尿一寸3 天前
Java Socket 内核之旅:从 SocketChannel.read() 到 tcp_recvmsg 与 epoll 的完整调用链路
linux
XIAOHEZIcode3 天前
Ubuntu 终端美化全栈指南:Bash 到 Kitty 踩坑实录
linux·ubuntu·命令行
唐青枫4 天前
别再只会用 cron:Linux systemd Timer 定时任务实战详解
linux