From owner-freebsd-questions Tue Aug 19 10:57:32 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA22819 for questions-outgoing; Tue, 19 Aug 1997 10:57:32 -0700 (PDT) Received: (from jmb@localhost) by hub.freebsd.org (8.8.5/8.8.5) id KAA22813; Tue, 19 Aug 1997 10:57:26 -0700 (PDT) From: "Jonathan M. Bresler" Message-Id: <199708191757.KAA22813@hub.freebsd.org> Subject: Re: From WinNT to FreeBSD To: jasonm@barney.webace.com.au (Jason McKay) Date: Tue, 19 Aug 1997 10:57:25 -0700 (PDT) Cc: freebsd-questions@FreeBSD.ORG In-Reply-To: from "Jason McKay" at Aug 20, 97 00:20:47 am X-Mailer: ELM [version 2.4 PL24] Content-Type: text Sender: owner-freebsd-questions@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk Jason McKay wrote: > > We are currently operating an ISP under Windows NT Server 4, and are > seriously thinking about changing and running it under FreeBSD 2.2.2. > > There is only one thing holding us back, it is very important that we keep > track of our users, such as login times and length of login plus how much > they are downloading per call. > > Windows NT displays all this information easily, I have not yet found a > way to receive the same level of info from FreeBSD .. Can anyone please > suggest some ideas? As we _REALLY_ want to change over ASAP. if each user has their own ip address, you can use ipfw(8)'s accounting to keep track of how much data they download. man ipfw. something similar to "/sbin/ipfw add log any from any to " you will need one rule for each ip address. reset the counter when they logout. accounting will track when connect time and system usage (never used accounting myself). man sa and acct and lastcomm. jmb