我正在尝试通过UDP实现自己的协议。
正如互联网上的许多手册所建议的那样,最好通过发送大小小于MTU的数据包来避免IP碎片。
我想知道获得最佳邮件大小的最佳方法是什么?我应该以某种方式获得MTU值(例如this),还是应该将其设置为1300或1400,并希望它不会更少或随时间变化?
我听说获取MTU值(https://en.wikipedia.org/wiki/Path_MTU_Discovery)存在一些问题,据我所知,它在很大程度上取决于当前路线以及可能随时间变化的其他因素。
答案 0 :(得分:2)
要获取接口中的MTU,而不是路径MTU发现,请使用struct ifreq。其中一个字段是ifr_mtu,此字段将为您提供MTU。您可以使用ioctl,SIOCGIFMTU读取此字段以获取正确的接口。 (http://man7.org/linux/man-pages/man7/netdevice.7.html)
struct ifreq {
char ifr_name[IFNAMSIZ]; /* Interface name */
union {
struct sockaddr ifr_addr;
struct sockaddr ifr_dstaddr;
struct sockaddr ifr_broadaddr;
struct sockaddr ifr_netmask;
struct sockaddr ifr_hwaddr;
short ifr_flags;
int ifr_ifindex;
int ifr_metric;
int ifr_mtu;
struct ifmap ifr_map;
char ifr_slave[IFNAMSIZ];
char ifr_newname[IFNAMSIZ];
char *ifr_data;
};
};
示例:
#include <sys/socket.h>
#include <sys/types.h>
#include <net/if.h>
#include <sys/ioctl.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <stdlib.h>
#include <errno.h>
int main(void)
{
int sock;
char *name = "enp0s3";
struct ifreq ifr;
if ((sock = socket(AF_INET, SOCK_DGRAM, 0)) < 0) {
printf("Creating socket: %d\n", errno);
exit(-1);
}
ifr.ifr_addr.sa_family = AF_INET;
strcpy(ifr.ifr_name, name);
if (ioctl(sock, SIOCGIFMTU, (caddr_t)&ifr) < 0) {
printf("Error ioctl: %d\n", errno);
exit(-2);
}
printf("MTU is %d.\n", ifr.ifr_mtu);
close(sock);
return 0;
}
今天,除非您使用蓝牙或Zigbee等特定连接技术,否则您通常可以信任互联网上的1,500 MTU。您可以使用路径MTU发现并使用ACK实现基于UDP的协议,以检查对方是否已收到消息。现在,实现ACK和面向连接的协议的功能与使用TCP不同。如果你可以用UDP做任何事情,它比TCP更轻。
编辑: 要使用Path MTU Discovery,您还可以使用带有选项IP_PMTUDISC_DO的getsockopt:
IP_MTU_DISCOVER (since Linux 2.2)
Set or receive the Path MTU Discovery setting for a socket.
When enabled, Linux will perform Path MTU Discovery as defined
in RFC 1191 on SOCK_STREAM sockets. For non-SOCK_STREAM
sockets, IP_PMTUDISC_DO forces the don't-fragment flag to be
set on all outgoing packets. It is the user's responsibility
to packetize the data in MTU-sized chunks and to do the
retransmits if necessary. The kernel will reject (with
EMSGSIZE) datagrams that are bigger than the known path MTU.
IP_PMTUDISC_WANT will fragment a datagram if needed according
to the path MTU, or will set the don't-fragment flag
otherwise.
答案 1 :(得分:1)
IPv4 UDP的建议大小为576个八位字节。每个互联网路由器应该保证至少具有相同大小的IPv4 MTU,并且由于UDP是无连接,即发即弃,尽力而为,无保证的传送协议,因此每个数据包可能会带来更少的数据风险丢失了,将丢失数据包。
IPv6的最低MTU要求为1280个八位字节,路径中没有碎片。