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;
}

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

相关推荐
invicinble3 小时前
对linux形成认识
linux·运维·服务器
小Pawn爷3 小时前
14.VMmare安装ubuntu
linux·运维·ubuntu
郝学胜-神的一滴3 小时前
深入解析Python字典的继承关系:从abc模块看设计之美
网络·数据结构·python·程序人生
半桔3 小时前
【IO多路转接】高并发服务器实战:Reactor 框架与 Epoll 机制的封装与设计逻辑
linux·运维·服务器·c++·io
绵绵细雨中的乡音3 小时前
深入理解 ET 与 LT 模式及其在 Reactor 模型中的应用
服务器·网络·php
HABuo4 小时前
【linux文件系统】磁盘结构&文件系统详谈
linux·运维·服务器·c语言·c++·ubuntu·centos
Howrun7774 小时前
关于Linux服务器的协作问题
linux·运维·服务器
暖馒4 小时前
Modbus应用层协议的深度剖析
网络·网络协议·c#·wpf·智能硬件
小白同学_C5 小时前
Lab3-page tables && MIT6.1810操作系统工程【持续更新】
linux·c/c++·操作系统os
十年磨一剑~6 小时前
Linux程序接收到sigpipe信号崩溃处理
linux