From owner-freebsd-net Mon Oct 15 9:36:58 2001 Delivered-To: freebsd-net@freebsd.org Received: from mail-green.research.att.com (H-135-207-30-103.research.att.com [135.207.30.103]) by hub.freebsd.org (Postfix) with ESMTP id 0D0F337B40D for ; Mon, 15 Oct 2001 09:36:54 -0700 (PDT) Received: from alliance.research.att.com (alliance.research.att.com [135.207.26.26]) by mail-green.research.att.com (Postfix) with ESMTP id 51DF31E028; Mon, 15 Oct 2001 12:36:53 -0400 (EDT) Received: from windsor.research.att.com (windsor.research.att.com [135.207.26.46]) by alliance.research.att.com (8.8.7/8.8.7) with ESMTP id MAA12805; Mon, 15 Oct 2001 12:36:52 -0400 (EDT) From: Bill Fenner Received: (from fenner@localhost) by windsor.research.att.com (8.8.8+Sun/8.8.5) id JAA16632; Mon, 15 Oct 2001 09:36:52 -0700 (PDT) Message-Id: <200110151636.JAA16632@windsor.research.att.com> MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII To: deepika_77@yahoo.com Subject: Re: mrouted 3.8(how to find multicast members??) Cc: freebsd-net@freebsd.org Date: Mon, 15 Oct 2001 09:36:52 -0700 Versions: dmail (solaris) 2.2j/makemail 2.9b Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org > But the definition of threshhold TTL says that a >incoming multicast packets will be forwarded out of an >interface only if it has the TTL value >= threshold >TTL of that interface. Am I right? No. Zero is special, and means do not forward. If you have the kernel source, check out the ip_mdq() function in /sys/netinet/ip_mroute.c; the check is: if ((rt->mfc_ttls[vifi] > 0) && (ip->ip_ttl > rt->mfc_ttls[vifi])) { (the threshold > 0 and the TTL > the threshold -- note, >, not >=.) Bill To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message