From owner-freebsd-current@FreeBSD.ORG Sat Jul 23 08:37:42 2005 Return-Path: X-Original-To: freebsd-current@freebsd.org Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 93FF016A41F for ; Sat, 23 Jul 2005 08:37:42 +0000 (GMT) (envelope-from discussion-lists@linnet.org) Received: from orb.pobox.com (orb.pobox.com [207.8.226.5]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41E4743D46 for ; Sat, 23 Jul 2005 08:37:42 +0000 (GMT) (envelope-from discussion-lists@linnet.org) Received: from orb (localhost [127.0.0.1]) by orb.pobox.com (Postfix) with ESMTP id 171F42214; Sat, 23 Jul 2005 04:39:45 -0400 (EDT) Received: from billdog.local.linnet.org (dsl-212-74-113-66.access.uk.tiscali.com [212.74.113.66]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (No client certificate requested) by orb.sasl.smtp.pobox.com (Postfix) with ESMTP id D871390; Sat, 23 Jul 2005 04:39:43 -0400 (EDT) Received: from lists by billdog.local.linnet.org with local (Exim 4.50 (FreeBSD)) id 1DwFX1-0000DQ-RC; Sat, 23 Jul 2005 09:38:51 +0100 Date: Sat, 23 Jul 2005 09:38:51 +0100 From: Brian Candler To: Tuc at T-B-O-H Message-ID: <20050723083851.GC760@uk.tiscali.com> References: <200507222258.j6MMwemi042819@himinbjorg.tucs-beachin-obx-house.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <200507222258.j6MMwemi042819@himinbjorg.tucs-beachin-obx-house.com> User-Agent: Mutt/1.4.2.1i Cc: freebsd-current@freebsd.org Subject: Re: Syslog not logging X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 23 Jul 2005 08:37:42 -0000 On Fri, Jul 22, 2005 at 06:58:40PM -0400, Tuc at T-B-O-H wrote: > I'm trying to get syslog to log output from a 7 machines and 4 > routers, all in the same subnet. My syslog is started as such : > > 301 ?? Ss 0:19.82 /usr/sbin/syslogd -l /var/run/log -l /var/named/var/run/log -a 192.168.3.0/24 > > > my syslog.conf has : > > *.debug /var/log/spool > > > For all the servers, everything is perfect. Its the routers that > are a problem. When I TCPDUMP it, I get : > > 18:50:56.736979 IP 192.136.64.2.8888 > 192.136.64.108.514: UDP, ... ^^^^ syslogd by default only accepts packets with source port 514. If the routers use the same static port then "-a 192.168.3.0/24:8888" will allow it; otherwise "-a 192.168.3.0/24:*" will allow from all ports. Regards, Brian.