绑定套接字为IPv6地址(Binding Sockets to IPv6 Addresses)

2019-08-03 02:08发布

我试图写在IPv4和IPv6地址侦听的Web服务器。 然而,我原来写的代码没有工作。 后来我发现了IPv6结构工作了IPv4和IPv6。 所以,现在我使用IPv6结构然而,只有IPv4地址的工作。 这个帖子, 我为什么不能IPv6套接字绑定到一个链路本地地址 ,其中所说的添加server.sin6_scope_id = 5; 所以我这样做,但它仍然不接受IPv6的telnet连接。 任何帮助将不胜感激,因为我彻底难倒。
谢谢!

我的代码如下:

void initialize_server(int port, int connections, char* address)
{
        struct sockaddr_in6 socket_struct;
        /*Creates the socket*/
        if ((sock_fd = socket(AF_INET, SOCK_STREAM, 0)) < 0)
        {
                syslog(LOG_ERR, "%s\n", strerror(errno));
                exit(EXIT_FAILURE);
        }/*Ends the socket creation*/

        /*Populates the socket address structure*/
                socket_struct.sin6_family = AF_INET6;

        if(address == NULL)
                socket_struct.sin6_addr=in6addr_any;
        else
        {
                inet_pton(AF_INET6, "fe80::216:3eff:fec3:3c22", (void *)&socket_struct.sin6_addr.s6_addr);
        }
        socket_struct.sin6_port =htons(port);
        socket_struct.sin6_scope_id = 0;
        if (bind(sock_fd, (struct sockaddr*) &socket_struct, sizeof(socket_struct)) < 0)
        {
                syslog(LOG_ERR, "%s\n", strerror(errno));
                exit(EXIT_FAILURE);
        }//Ends the binding.

        if (listen(sock_fd, connections) <0)
        {
                syslog(LOG_ERR, "%s\n", strerror(errno));
                exit(EXIT_FAILURE);
        }//Ends the listening function

}//ends the initialize server function.

Answer 1:

您正在创建在一个插座AF_INET家庭,但随后试图将它绑定到一个地址AF_INET6家庭。 切换到使用AF_INET6在调用socket()



Answer 2:

说 “server.sin6_scope_id = 5;” 是任意的。 我这一段时间打自己,发现您需要使用您要绑定的实际接口的实际范围。 它可与语意含混的,但有用的小功能被发现。

#include <net/if.h>
server.sin6_scope_id=if_nametoindex("eth0");

当然,硬编码到一个特定适配器是坏的,短视的编码。 一个更完整的解决方案是通过所有这些循环和匹配上要绑定的IP地址。 以下是不完美的,因为它不占怪癖就像使用相同的IP不规范的地址和两个适配器等,但besoverall,这个样本函数的伟大工程,应该让你开始。

#include <string.h> // strcmp
#include <net/if.h> // if_nametoindex()
#include <ifaddrs.h> // getifaddrs()
#include <netdb.h> // NI_ constants

// returns 0 on error
unsigned getScopeForIp(const char *ip){
    struct ifaddrs *addrs;
    char ipAddress[NI_MAXHOST];
    unsigned scope=0;
    // walk over the list of all interface addresses
    getifaddrs(&addrs);
    for(ifaddrs *addr=addrs;addr;addr=addr->ifa_next){
        if (addr->ifa_addr && addr->ifa_addr->sa_family==AF_INET6){ // only interested in ipv6 ones
            getnameinfo(addr->ifa_addr,sizeof(struct sockaddr_in6),ipAddress,sizeof(ipAddress),NULL,0,NI_NUMERICHOST);
            // result actually contains the interface name, so strip it
            for(int i=0;ipAddress[i];i++){
                if(ipAddress[i]=='%'){
                    ipAddress[i]='\0';
                    break;
                }
            }
            // if the ip matches, convert the interface name to a scope index
            if(strcmp(ipAddress,ip)==0){
                scope=if_nametoindex(addr->ifa_name);
                break;
            }
        }
    }
    freeifaddrs(addrs);
    return scope;
}


文章来源: Binding Sockets to IPv6 Addresses