lwip单网卡多ip的实现

1、今天要实现lwip的多个ip配置,本来以为需要自己修改很多核心代码

2、查阅资料才发现,lwip已经把接口留出来了

/** Define this to 1 and define LWIP_ARP_FILTER_NETIF_FN(pbuf, netif, type)

* to a filter function that returns the correct netif when using multiple

* netifs on one hardware interface where the netif's low-level receive

* routine cannot decide for the correct netif (e.g. when mapping multiple

* IP addresses to one hardware interface).

*/

/** 将此定义为1,并将LWIP_ARP_FILTER_NETIF_FN(pbuf, netif, type)定义为一个过滤函数,该函数在使用单个硬件接口上的多个netif时返回正确的netif。当netif的低级接收例程无法确定正确的netif时(例如,当将多个IP地址映射到单个硬件接口时),需要使用此过滤函数。

*/

#ifndef LWIP_ARP_FILTER_NETIF

#define LWIP_ARP_FILTER_NETIF 0

#endif

3、所以我们只需要定义好宏

#define LWIP_ARP_FILTER_NETIF1 //多ip的支持

和写好

struct netif * LWIP_ARP_FILTER_NETIF_FN(struct pbuf *p, struct netif *netifIn, u16_t type)

函数即可

4、我的操作

4.1> 在lwipopt.h定义使能宏**LWIP_ARP_FILTER_NETIF ,**以支持多ip的操作

4.2、编写LWIP_ARP_FILTER_NETIF_FN函数,以能根据ip能找到对应的网卡

cpp 复制代码
/*
*********************************************************************************************************
* Function Name : LWIP_ARP_FILTER_NETIF_FN
* Description   : 多ip,识别正确的网卡
* Input         : None
* Output        : None
* Return        : None
*********************************************************************************************************
*/
#include  "lwip/prot/etharp.h"
struct netif * LWIP_ARP_FILTER_NETIF_FN(struct pbuf *p, struct netif *netifIn, u16_t type)
{
	struct netif *netif = NULL;
	struct etharp_hdr *hdr = NULL;
	struct ip_hdr *iphdr = NULL;
	ip_addr_t dest/*, src*/;
	switch (type)
	{
		/*ARP*/
	case	0x0806:
		hdr = (struct etharp_hdr *)((unsigned char*)p->payload + 14);
		memcpy(&dest, &(hdr->dipaddr), sizeof(ip4_addr_t));
		//memcpy(&src, &hdr->sipaddr, sizeof (ip4_addr_t));
		for (netif = netif_list; netif != NULL; netif = netif->next)
		{
			if (netif_is_up(netif))
			{
				if (ip4_addr_cmp(&dest,&(netif->ip_addr)))
				{
					break;
				}
			}
		}
		break;
		/*IP*/
	case	0x0800:
		iphdr = (struct ip_hdr *) ((unsigned char*)p->payload + 14);
		ip_addr_copy_from_ip4(dest, iphdr->dest);
		//ip_addr_copy_from_ip4(src, iphdr->src);
		for (netif = netif_list; netif != NULL; netif = netif->next)
		{
			if (netif_is_up(netif))
			{
				if (ip4_addr_cmp(&dest, &(netif->ip_addr)))
				{
					break;
				}
			}
		}
		break;

	default:
		netif = netif_list;
		break;
	}
	netifIn = netif;
    if(netif==NULL)
    {
        pbuf_free(p);
    }
	return netif;
    
}

根据ip去匹配netif,arp需要单独处理,因为ip通信首先都要发送arp去找物理地址,不加这个arp处理,会出现你ping不通ip。所以如果知道物理地址,不加这个arp处理也可以,直接自己填mac即可,加到你自己的静态arp表中。

大家注意:

这个一定要加上,我刚开始没加,结果刚开始通,运行一段时间导致不通了,就是因为这里没释放申请的内存,导致无法处理新的数据

4.3、增加多ip的设置

cpp 复制代码
	//开始虚拟多ip--1
	IP4_ADDR(&ipaddr_v[1], 192,168,20,48);
	IP4_ADDR(&netmask_v[1], 255,255,255,0);
	IP4_ADDR(&gw_v[1], 192, 168, 20,1);
	netif_add(&g_netif_v[1], &ipaddr_v[1], &netmask_v[1], &gw_v[1], NULL, &ethernetif_init, &tcpip_input);	//网卡初始化和网卡输入
	netif_set_up(&g_netif_v[1]);

	//开始虚拟多ip--2
	IP4_ADDR(&ipaddr_v[2], 192,168,30,48);
	IP4_ADDR(&netmask_v[2], 255,255,255,0);
	IP4_ADDR(&gw_v[2], 192, 168, 30,1);
	netif_add(&g_netif_v[2], &ipaddr_v[2], &netmask_v[2], &gw_v[2], NULL, &ethernetif_init, &tcpip_input);	//网卡初始化和网卡输入
	netif_set_up(&g_netif_v[2]);

4.4、然后运行测试,OK

5、测试结果

刚开始测试结果是这样,我没在意,以为是硬件还是那里问题,ping移植有超时,或者卡顿较大

有时,还会出现几十上百ms的延迟,特别是多个电脑同时ping时。

6、ping超时,卡顿较大原因

1> 原来多个neif_add时:

会每次都初始化网卡,这里网卡在初始化时,会创建解析网络中断数据包的任务,所以存在多个任务去读网卡数据,造成数据的竞争,从而导致可能出现超时,卡顿较大

2> 我们只有一个网卡,所以只需初始化1次解析网络中断数据包的任务

改了之后就OK了

像下面这篇文章这样:

相关推荐
qq1778036234 小时前
SCDN跟高防IP相比哪个更好
网络·tcp/ip·安全
治金的blog9 小时前
Http 响应状态码 前后端联调
网络·网络协议·http
Tic..10 小时前
网络学习记录2
网络
_不会dp不改名_10 小时前
HCIP笔记1--IP路由基础回顾、BFD单臂回声、OSPF基础
网络·笔记·hcip
Parrot 安全小子10 小时前
Wireshark 使用教程:网络分析从入门到精通
网络·测试工具·wireshark
深圳启明云端科技11 小时前
ESP32-C3物联网芯片方案,设备智能化交互联动,无线通信控制技术
网络·物联网·乐鑫·esp32-c3·芯片模组
Tic..12 小时前
网络学习记录6
网络·学习
南桥几晴秋12 小时前
【Linux网络编程】数据链路层 | MAC帧 | ARP协议
网络·mac·数据链路层·arp协议
fox081512 小时前
wsl2上mysql出现ip端口冲突问题
网络·数据库·tcp/ip·mysql·wsl