setsockopt調用IP_ADD_MEMBERSHIP出錯errno:19 no such device

 

 if (setsockopt(fd,IPPROTO_IP,IP_ADD_MEMBERSHIP,&mreq,sizeof(mreq)) < 0) {html

 

 

                printf("setsockopt fail, try again\n");
            usleep(200 * 1000);
                continue;

            }網絡

 

提示: setsockopt fail, try againhtm

此時,errno:19     --> no such device路由

 

這主要和當前的網絡配置有關,由於多播IP地址沒有加入到路由表中。it

 

解決方法:把須要用到的多播地址(如本例的224.0.0.88)加入到路由表中,命令以下:class

sudo route add -net 224.0.0.88 netmask 255.255.255.255 eth0配置

224.0.0.88:爲當前使用的多播IP地址route

eth0:爲當前使用的有效網卡方法

其它輔助命令:di

sudo route del -net 224.0.0.88 netmask 255.255.255.255 eth0 //把224.0.0.88從路由表中刪除

route -n //查看路由表信息

 

 route add default gw 192.168.1.1 

相關文章
相關標籤/搜索