On Tue, Jul 01, 2003 at 11:47:57AM +0300, Alexander Yeremenko wrote:
On Tue, Jul 01, 2003 at 10:59:40AM +0300, Sergey A. Smitienko wrote:
On Tue, Jul 01, 2003 at 10:53:34AM +0300, Sergey A. Smitienko wrote:
On Mon, Jun 30, 2003 at 11:04:19PM +0300, Alexander Yeremenko wrote:
ospfd: can't setsockopt IP_ADD_MEMBERSHIP (AllDRouters) : Adress already in use
А что еще запущено на машине ?
А так же netstat -gn Virtual interface table is empty Multicast routing table is empty No IPv6 routing compiled in this system
Ну а кто собственно просит ipv6 ? Зерба компилилась с --no-ipv6 или как там его. Без этого она вообще не пускалась
ipv6 тут не причем. Ошибка появляется в ospfd/ospf_network.c функция ospf_if_add_alldrouters когда твою зебру выбирают Designated routerом. наверное было бы интересно дописать в нее пару строчек и посмотреть точно на что ospfd ругается. /* Join to the OSPF ALL Designated ROUTERS multicast group. */ int ospf_if_add_alldrouters (struct ospf *top, struct prefix *p, unsigned int ifindex) { int ret; + + zlog_warn("ospf_if_add_alldrouters: fd %d, prefix %x, ifindex %d, %x", + top->fd, p->u.prefix4, ifindex, htonl (OSPF_ALLDROUTERS)); + ret = setsockopt_multicast_ipv4 (top->fd, IP_ADD_MEMBERSHIP, p->u.prefix4, htonl (OSPF_ALLDROUTERS), ifindex); if (ret < 0) zlog_warn ("can't setsockopt IP_ADD_MEMBERSHIP: %s", strerror (errno)); zlog_info ("interface %s join AllDRouters Multicast group.", inet_ntoa (p->u.prefix4)); return ret; } -- The Emperor wants to control the outer space, Yoda wants to explore the inner space.That's the fundamental difference between the good and the bad sides of the Force. =================================================================== uanog mailing list. To Unsubscribe: send mail to majordomo@uanog.kiev.ua with "unsubscribe uanog" in the body of the message