From owner-freebsd-net Mon Jun 15 09:09:35 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA06313 for freebsd-net-outgoing; Mon, 15 Jun 1998 09:09:35 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA06290 for ; Mon, 15 Jun 1998 09:09:22 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.8.8/8.8.8) id MAA25075; Mon, 15 Jun 1998 12:08:42 -0400 (EDT) (envelope-from wollman) Date: Mon, 15 Jun 1998 12:08:42 -0400 (EDT) From: Garrett Wollman Message-Id: <199806151608.MAA25075@khavrinen.lcs.mit.edu> To: Marc Slemko Cc: freebsd-net@FreeBSD.ORG Subject: Re: Fwd: NetBSD network code improvements In-Reply-To: References: <199805020641.XAA17167@implode.root.com> Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Following up on some more really old messages in my INBOX.... < said: > ie. keep minimal state for TIME_WAIT, optimize the timeout handling to > check less frequently for TIME_WAIT timers, etc. From what I have seen, > this can make a big difference on a system with a lot of TIME_WAITs. What we've discussed in the past is slightly changing the memory allocation in Justin's ``new'' (only a year old or so) timeout code so that we can statically allocate timeout structures as a part of the PCB. The ``callout wheel'' design makes it fairly cheap to change timers on the fly, provided we don't get shot down by memory allocation -- in fact, if I remember the discussion correctly, this is the original application which motivated the development of the ``callout wheel'' design. (All of the TCP timers could be reimplemented to use system timers -- the only reason the networking code currently doesn't is because system timeouts were too expensive on a VAX-11/780.) -GAWollman -- Garrett A. Wollman | O Siem / We are all family / O Siem / We're all the same wollman@lcs.mit.edu | O Siem / The fires of freedom Opinions not those of| Dance in the burning flame MIT, LCS, CRS, or NSA| - Susan Aglukark and Chad Irschick To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Tue Jun 16 05:20:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA26151 for freebsd-net-outgoing; Tue, 16 Jun 1998 05:20:04 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from arthur.axion.bt.co.uk (arthur.axion.bt.co.uk [132.146.5.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA26038 for ; Tue, 16 Jun 1998 05:19:33 -0700 (PDT) (envelope-from graeme.brown@bt-sys.bt.co.uk) Received: from rambo (actually rambo.futures.bt.co.uk) by arthur.axion.bt.co.uk (PP) with SMTP; Tue, 16 Jun 1998 13:13:08 +0100 Received: from maczebedee (actually macsmtp) by rambo with SMTP (PP); Tue, 16 Jun 1998 13:14:51 +0100 Message-ID: Date: 16 Jun 1998 13:14:08 +0100 From: Graeme Brown Subject: NFS Client hangs between FreeBSD Client and FreeBSD Server To: "FreeBSD-Net (FreeBSD.Org) List" X-Mailer: Mail*Link SMTP for Quarterdeck Mail; Version 4.0.0 Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear FreeBSD list I am having difficulties establishing NFS filesharing between a FreeBSD 2.2.5 NFS server and a FreeBSD 2.2.6 NFS client host. The server freeb1 is dual homed and has the following /etc/rc.conf configuration entries for NFS. -------------- BEGIN /etc/rc.conf for NFS server ---------------------- nfs_client_enable="YES" # This host is an NFS client (or NO) nfs_client_flags="-n 4" # Flags to nfsiod (if enabled). nfs_server_enable="YES" # This host is an NFS server (or NO). nfs_server_flags="-u -t 4" # Flags to nfsd (if enabled). mountd_flags="-r" # Flags to mountd (if NFS server enabled). nfs_reserved_port_only="NO" # Provide NFS only on secure port (or NO). rpc_lockd_enable="NO" # Run NFS rpc.lockd (*broken!*) if nfs_server. rpc_statd_enable="YES" # Run NFS rpc.statd if nfs_server (or NO). portmap_enable="YES" # Run the portmapper service (or NO). portmap_flags="" # Flags to portmap (if enabled). -------------- END /etc/rc.conf for NFS server --------------------- On one 100 BaseT Ethernet subnet, I can successfully mount the file-system freeb1:/home2 on HP workstation nomad running HP-UX 10.10. This seems to suggest the server side is working OK. The corresponding entry from /etc/exports on freeb1 is /home2 -alldirs -ro freeb2 freeb9 freeb4 nomad luther However on another subnet there is a FreeBSD 2.2.6 NFS client, freeb9. The NFS configuration entries from /etc/rc.conf on Freeb9 are :- -------------- BEGIN /etc/rc.conf for NFS client ---------------------- nfs_client_enable="YES" # This host is an NFS client (or NO). nfs_client_flags="-n 4" # Flags to nfsiod (if enabled). nfs_server_enable="NO" # This host is an NFS server (or NO). nfs_server_flags="-u -t 4" # Flags to nfsd (if enabled). mountd_flags="-r" # Flags to mountd (if NFS server enabled). nfs_reserved_port_only="NO" # Provide NFS only on secure port (or NO). rpc_lockd_enable="YES" # Run NFS rpc.lockd (*broken!*) if nfs_server. rpc_statd_enable="YES" # Run NFS rpc.statd if nfs_server (or NO). portmap_enable="YES" # Run the portmapper service (or NO). portmap_flags="" # Flags to portmap (if enabled). -------------- END /etc/rc.conf for NFS client ---------------------- When I execute a mount command on freeb9, it just seems to hang. I have read the FreeBSD Handbook 16.2 entry on NFS which describes client hang due to using slow Ethernet cards. I am using 100BaseT Intel Ether Express Pro/100+ NICs and also ENI 155 ATM adapters, neither of which seem likely to be likely culprits. Nevertheless I tried the recommendation from 16.5 (as root ) mount -t nfs -o -r=1024 freeb1:/home2 /mnt but this just seemed to hang as did other mount attempts. A system reboot was required to un-hang freeb9. freeb9 can ping freeb1 without a problems. Any suggestions/insights please ! TIA Graeme N Brown Internet Futures Team BT Laboratories, UK email: graeme.brown@bt-sys.bt.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Tue Jun 16 08:38:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA27271 for freebsd-net-outgoing; Tue, 16 Jun 1998 08:38:07 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from khavrinen.lcs.mit.edu (khavrinen.lcs.mit.edu [18.24.4.193]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA27229 for ; Tue, 16 Jun 1998 08:38:01 -0700 (PDT) (envelope-from wollman@khavrinen.lcs.mit.edu) Received: (from wollman@localhost) by khavrinen.lcs.mit.edu (8.8.8/8.8.8) id LAA29320; Tue, 16 Jun 1998 11:38:01 -0400 (EDT) (envelope-from wollman) Date: Tue, 16 Jun 1998 11:38:01 -0400 (EDT) From: Garrett Wollman Message-Id: <199806161538.LAA29320@khavrinen.lcs.mit.edu> To: net@FreeBSD.ORG Subject: [Olaf Menzel: TCP enhancements] Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ------- start of forwarded message (RFC 934 encapsulation) ------- From: Olaf Menzel To: FreeBSDNet Cc: question@FreeBSD.org Subject: TCP enhancements Date: Tue, 16 Jun 1998 13:26:41 +0200 Dear Garrett Wollman, - ------------------ I am a newcomer with a BSD system but I need a BSD system for my diplom. I have to test the performance of TCP over satellite channels. In one of the TCP mailing lists I read NetBSD supports some of the TCP enhancements like "large windows! - RFC1323, selective acks, fast recovery and fast retransmit....etc. I have innstalled NetBSD but I didn't have succes with NetBSD because there absolutely no documentation available and the "rial and error"method costs a lot of time. My question to you: Does FreeBSD supports the same TCP features like NetBSD does ? Then I would rather install FreeBSD because it is much more easier to administrate and there is dokumentation avaiable. Thank you for your help with regards Olaf Menzel satellite group of network dept. GMD ( www.gmd.de) ------- end ------- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Tue Jun 16 08:51:20 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id IAA29607 for freebsd-net-outgoing; Tue, 16 Jun 1998 08:51:20 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from dfw-ix11.ix.netcom.com (dfw-ix11.ix.netcom.com [206.214.98.11]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id IAA29595 for ; Tue, 16 Jun 1998 08:51:16 -0700 (PDT) (envelope-from dphi@ix.netcom.com) Received: (from smap@localhost) by dfw-ix11.ix.netcom.com (8.8.4/8.8.4) id KAA02498 for ; Tue, 16 Jun 1998 10:50:44 -0500 (CDT) Received: from mail.fosterfarms.com(208.1.117.20) by dfw-ix11.ix.netcom.com via smap (V1.3) id rma002485; Tue Jun 16 10:50:20 1998 Message-Id: <3.0.3.32.19980616084412.008fd418@popd.ix.netcom.com> X-Sender: dphi@popd.ix.netcom.com X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.3 (32) Date: Tue, 16 Jun 1998 08:44:12 -0700 To: freebsd-net@FreeBSD.ORG From: Dale Phillips Subject: unix98 Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org What is unix98? Pardon my dumb question but does the www.opengroup.org work with the *BSD and Linux camp at all? I heard a rumor that one of the bigger Linux dist's where going for unix98 ... I know this is off topic - sorry for stealing the bandwidth. -dp------------------------------------------------ Dale Phillips If ignorance is bliss how come dphi@ix.netcom.com more people aren't happy? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Tue Jun 16 20:35:33 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA27032 for freebsd-net-outgoing; Tue, 16 Jun 1998 20:35:33 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from localhost.zilker.net ([207.8.127.117]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA27027 for ; Tue, 16 Jun 1998 20:35:30 -0700 (PDT) (envelope-from marquard@zilker.net) Received: (from marquard@localhost) by localhost.zilker.net (8.8.8/8.8.3) id WAA12588; Tue, 16 Jun 1998 22:35:14 -0500 (CDT) To: freebsd-net@FreeBSD.ORG Subject: Re: unix98 References: <3.0.3.32.19980616084412.008fd418@popd.ix.netcom.com> From: Dave Marquardt Date: 16 Jun 1998 22:34:30 -0500 In-Reply-To: Dale Phillips's message of "Tue, 16 Jun 1998 08:44:12 -0700" Message-ID: <85vhq0g0qh.fsf@localhost.zilker.net> Lines: 14 X-Mailer: Quassia Gnus v0.22/XEmacs 19.16 - "Lille" Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dale Phillips writes: > What is unix98? Well, it's standard built on UNIX 95, which was built on XPG4, which was built on POSIX, which was built on ANSI C and existing UNIX practice. Whew! > Pardon my dumb question but does the www.opengroup.org > work with the *BSD and Linux camp at all? No, why should they? UNIX 98 branding is much more interesting to commercial UNIX vendors than to "free" UNIX vendors. -Dave (who did UNIX 95 sockets work for IBM's AIX) To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Jun 17 01:12:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA29793 for freebsd-net-outgoing; Wed, 17 Jun 1998 01:12:14 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from moving-stone.rutgers.edu (muthur@moving-stone.rutgers.edu [128.6.5.108]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA29786 for ; Wed, 17 Jun 1998 01:12:09 -0700 (PDT) (envelope-from muthur@moving-stone.rutgers.edu) Received: from localhost (muthur@localhost) by moving-stone.rutgers.edu (8.8.8/8.8.8) with SMTP id EAA07733 for ; Wed, 17 Jun 1998 04:12:09 -0400 (EDT) Date: Wed, 17 Jun 1998 04:12:08 -0400 (EDT) From: Muthukumar Ratty To: freebsd-net@FreeBSD.ORG Subject: Test message.... In-Reply-To: <199806170806.BAA29094@hub.freebsd.org> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org ...please ignore To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Jun 17 01:16:02 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA00613 for freebsd-net-outgoing; Wed, 17 Jun 1998 01:16:02 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from arthur.axion.bt.co.uk (arthur.axion.bt.co.uk [132.146.5.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA00449 for ; Wed, 17 Jun 1998 01:15:25 -0700 (PDT) (envelope-from graeme.brown@bt-sys.bt.co.uk) Received: from rambo (actually rambo.futures.bt.co.uk) by arthur.axion.bt.co.uk (PP) with SMTP; Wed, 17 Jun 1998 09:14:13 +0100 Received: from maczebedee (actually macsmtp) by rambo with SMTP (PP); Wed, 17 Jun 1998 09:15:51 +0100 Message-ID: Date: 17 Jun 1998 09:15:02 +0100 From: Graeme Brown Subject: RE: NFS Client hangs between FreeBSD Client and FreeBSD Server To: Freddijanto , "FreeBSD-Net (FreeBSD.Org) List" X-Mailer: Mail*Link SMTP for Quarterdeck Mail; Version 4.0.0 Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear Freddijanto Thanks for your reply. It fixed my problem straight away. Why on earth don't the default nfs client options set in /etc/rc.conf as shipped with FreeBSD specify that TCP mode is required for the client. I spent several frustrating days banging my head against an NFS brick-wall over this one ! Well I am enlightened now. Thanks Graeme _______________________________________________________________________________ To: Graeme Brown From: Freddijanto on Wed, Jun 17, 1998 7:05 am Subject: Re: NFS Client hangs between FreeBSD Client and FreeBSD Server RFC Header:Received: by maczebedee with ADMIN;17 Jun 1998 07:05:13 +0100 Received: from zaphod.axion.bt.co.uk by rambo with SMTP (PP); Wed, 17 Jun 1998 07:06:52 +0100 Received: from silo.elga.net.id by zaphod.axion.bt.co.uk with SMTP (PP); Wed, 17 Jun 1998 07:03:52 +0100 Received: from freddi (wek@TechCenter.intranet.elga.net.id [203.130.238.68]) by silo.elga.net.id (8.8.7/8.8.7) with SMTP id NAA22478 for ; Wed, 17 Jun 1998 13:04:37 +0700 (JAVT) (envelope-from freddi@elga.net.id) Message-Id: <3.0.5.32.19980617130253.00844100@pop.elga.net.id> X-Sender: freddi@pop.elga.net.id X-Mailer: QUALCOMM Windows Eudora Pro Version 3.0.5 (32) Date: Wed, 17 Jun 1998 13:02:53 +0700 To: Graeme Brown From: Freddijanto Subject: Re: NFS Client hangs between FreeBSD Client and FreeBSD Server In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" At 01:14 PM 6/16/98 +0100, you wrote: >Dear FreeBSD list > >I am having difficulties establishing NFS filesharing between >a FreeBSD 2.2.5 NFS server and a FreeBSD 2.2.6 NFS client host. >The server freeb1 is >dual homed and has the following /etc/rc.conf configuration >entries for NFS. > > >-------------- BEGIN /etc/rc.conf for NFS server ---------------------- >nfs_client_enable="YES" # This host is an NFS client (or NO) >nfs_client_flags="-n 4" # Flags to nfsiod (if enabled). >nfs_server_enable="YES" # This host is an NFS server (or NO). >nfs_server_flags="-u -t 4" # Flags to nfsd (if enabled). >mountd_flags="-r" # Flags to mountd (if NFS server enabled). >nfs_reserved_port_only="NO" # Provide NFS only on secure port (or NO). >rpc_lockd_enable="NO" # Run NFS rpc.lockd (*broken!*) if nfs_server. >rpc_statd_enable="YES" # Run NFS rpc.statd if nfs_server (or NO). >portmap_enable="YES" # Run the portmapper service (or NO). >portmap_flags="" # Flags to portmap (if enabled). >-------------- END /etc/rc.conf for NFS server --------------------- > > > >On one 100 BaseT Ethernet subnet, I can successfully mount the >file-system freeb1:/home2 on HP workstation nomad running HP-UX 10.10. >This seems to suggest the server side is working OK. > >The corresponding entry from /etc/exports on freeb1 is > >/home2 -alldirs -ro freeb2 freeb9 freeb4 nomad luther > > >However on another subnet there is a FreeBSD 2.2.6 NFS client, freeb9. >The NFS configuration entries from /etc/rc.conf on Freeb9 are :- > > >-------------- BEGIN /etc/rc.conf for NFS client ---------------------- >nfs_client_enable="YES" # This host is an NFS client (or NO). >nfs_client_flags="-n 4" # Flags to nfsiod (if enabled). >nfs_server_enable="NO" # This host is an NFS server (or NO). >nfs_server_flags="-u -t 4" # Flags to nfsd (if enabled). >mountd_flags="-r" # Flags to mountd (if NFS server enabled). >nfs_reserved_port_only="NO" # Provide NFS only on secure port (or NO). >rpc_lockd_enable="YES" # Run NFS rpc.lockd (*broken!*) if nfs_server. >rpc_statd_enable="YES" # Run NFS rpc.statd if nfs_server (or NO). >portmap_enable="YES" # Run the portmapper service (or NO). >portmap_flags="" # Flags to portmap (if enabled). >-------------- END /etc/rc.conf for NFS client ---------------------- > > >When I execute a mount command on freeb9, it just seems to hang. > >I have read the FreeBSD Handbook 16.2 entry on NFS which describes client >hang due to using slow Ethernet cards. I am using 100BaseT Intel Ether Express >Pro/100+ NICs and also ENI 155 ATM adapters, neither of which seem likely >to be likely culprits. Nevertheless I tried the recommendation from 16.5 > >(as root ) > >mount -t nfs -o -r=1024 freeb1:/home2 /mnt > >but this just seemed to hang as did other mount attempts. A system reboot >was required to un-hang freeb9. freeb9 can ping freeb1 without a problems. > >Any suggestions/insights please ! > Since you are using tcp nfs server (flag -u -t 4), you must use "mount_nfs -T ........" instead of "mount -t nfs ....." To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Jun 17 06:07:07 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA17852 for freebsd-net-outgoing; Wed, 17 Jun 1998 06:07:07 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: (from jmb@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA17824; Wed, 17 Jun 1998 06:07:03 -0700 (PDT) (envelope-from jmb) From: "Jonathan M. Bresler" Message-Id: <199806171307.GAA17824@hub.freebsd.org> Subject: Re: Test message.... In-Reply-To: from Muthukumar Ratty at "Jun 17, 98 04:12:08 am" To: muthur@moving-stone.rutgers.edu (Muthukumar Ratty) Date: Wed, 17 Jun 1998 06:07:02 -0700 (PDT) Cc: freebsd-net@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL32 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Muthukumar Ratty wrote: > > ...please ignore please never send test messages to the regular lists. use freebsd-test for this purpose. jmb To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Jun 17 13:33:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id NAA00425 for freebsd-net-outgoing; Wed, 17 Jun 1998 13:33:55 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from clutch.accrue.com (mail.accrue.com [207.86.139.194]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id NAA00401 for ; Wed, 17 Jun 1998 13:33:51 -0700 (PDT) (envelope-from andy@accrue.com) Received: from seatbelt.accrue.com (seatbelt.accrue.com [207.86.139.217]) by clutch.accrue.com (8.8.7/8.8.5) with ESMTP id NAA07200 for ; Wed, 17 Jun 1998 13:36:19 -0700 (PDT) Received: from accrue.com (localhost.accrue.com [127.0.0.1]) by seatbelt.accrue.com (8.8.5/8.8.5) with ESMTP id NAA03364 for ; Wed, 17 Jun 1998 13:30:17 -0700 (PDT) Message-ID: <35882759.73BE61C5@accrue.com> Date: Wed, 17 Jun 1998 13:30:17 -0700 From: Andrew Sharp Organization: Accrue Software X-Mailer: Mozilla 4.04 [en] (X11; I; FreeBSD 2.2.2-RELEASE i386) MIME-Version: 1.0 To: "FreeBSD-Net (FreeBSD.Org) List" Subject: Re: NFS Client hangs between FreeBSD Client and FreeBSD Server References: Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org I had a similar problem between two FreeBSD machines, except that there was no mismatch: both client and server were UDP. And it hung all over the place. It seems that two FreeBSD machines alone on a 100MB network had timing problems in the UDP NFS code. Finally figured out that it wasn't using TCP and switching to that fixed the hangs. The real problem is that reading the documentation cover to cover, it is easy to assume that the default must be TCP, because they say don't use UDP unless there is a gun to your head, blah blah, so there is no need to specifically specify that [using the available args]. I don't think the defaults are explicitly specified in the man pages and HOWTOs and what not. Perhaps in the NFS spec, but.... a Graeme Brown wrote: > > Dear Freddijanto > > Thanks for your reply. It fixed my problem straight away. > > Why on earth don't the default nfs client options set in /etc/rc.conf > as shipped with FreeBSD specify that TCP mode is required for the > client. I spent several frustrating days banging my head against an > NFS brick-wall over this one ! Well I am enlightened now. > > Thanks > > Graeme To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Wed Jun 17 20:52:31 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id UAA09006 for freebsd-net-outgoing; Wed, 17 Jun 1998 20:52:31 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from time.cdrom.com (root@time.cdrom.com [204.216.27.226]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id UAA08996 for ; Wed, 17 Jun 1998 20:52:29 -0700 (PDT) (envelope-from jkh@time.cdrom.com) Received: from time.cdrom.com (jkh@localhost.cdrom.com [127.0.0.1]) by time.cdrom.com (8.8.8/8.8.8) with ESMTP id UAA11261; Wed, 17 Jun 1998 20:49:30 -0700 (PDT) (envelope-from jkh@time.cdrom.com) To: Graeme Brown cc: Freddijanto , "FreeBSD-Net (FreeBSD.Org) List" Subject: Re: NFS Client hangs between FreeBSD Client and FreeBSD Server In-reply-to: Your message of "17 Jun 1998 09:15:02 BST." Date: Wed, 17 Jun 1998 20:49:29 -0700 Message-ID: <11258.898141769@time.cdrom.com> From: "Jordan K. Hubbard" Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Why on earth don't the default nfs client options set in /etc/rc.conf > as shipped with FreeBSD specify that TCP mode is required for the > client. I spent several frustrating days banging my head against an Because it *isn't* for all types of clients. NFS runs on more things than FreeBSD, you know. :) - Jordan To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Thu Jun 18 05:13:42 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA19703 for freebsd-net-outgoing; Thu, 18 Jun 1998 05:13:42 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from csnet.cs.technion.ac.il (csnet.cs.technion.ac.il [132.68.32.7]) by hub.freebsd.org (8.8.8/8.8.8) with SMTP id FAA19687 for ; Thu, 18 Jun 1998 05:13:35 -0700 (PDT) (envelope-from chen@csd.cs.technion.ac.il) Received: from csd.csa (csd [132.68.32.8]) by csnet.cs.technion.ac.il (8.6.11/8.6.10) with ESMTP id PAA20292; Thu, 18 Jun 1998 15:12:40 +0300 Received: from localhost by csd.csa (SMI-8.6/SMI-SVR4) id PAA17364; Thu, 18 Jun 1998 15:13:26 +0300 Date: Thu, 18 Jun 1998 15:13:26 +0300 (IDT) From: Genossar Chen X-Sender: chen@csd To: freebsd-net@FreeBSD.ORG Subject: ipfw - tee option Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi All, __ OO /||\ ___m____m___ Does anybody know if the "tee" action in the ipfw command works under 2.2.6 ? If not, do u know if the 3.0 support this action ? Maybe u can recomand me on different way to do the same as "tee" action (beside regular divert socket). Chen. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Thu Jun 18 12:33:27 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA29180 for freebsd-net-outgoing; Thu, 18 Jun 1998 12:33:27 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from whistle.com (s205m131.whistle.com [207.76.205.131]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA29175 for ; Thu, 18 Jun 1998 12:33:26 -0700 (PDT) (envelope-from archie@whistle.com) Received: (from smap@localhost) by whistle.com (8.7.5/8.6.12) id MAA19084; Thu, 18 Jun 1998 12:32:51 -0700 (PDT) Received: from bubba.whistle.com(207.76.205.7) by whistle.com via smap (V1.3) id sma019080; Thu Jun 18 12:32:36 1998 Received: (from archie@localhost) by bubba.whistle.com (8.8.7/8.6.12) id MAA13453; Thu, 18 Jun 1998 12:32:16 -0700 (PDT) From: Archie Cobbs Message-Id: <199806181932.MAA13453@bubba.whistle.com> Subject: Re: ipfw - tee option In-Reply-To: from Genossar Chen at "Jun 18, 98 03:13:26 pm" To: chen@csd.cs.technion.ac.il (Genossar Chen) Date: Thu, 18 Jun 1998 12:32:06 -0700 (PDT) Cc: freebsd-net@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Genossar Chen writes: > Does anybody know if the "tee" action in the > ipfw command works under 2.2.6 ? > > If not, do u know if the 3.0 support this action ? > Maybe u can recomand me on different way to do the > same as "tee" action (beside regular divert socket). It's not implemented in either 2.2.6 or 3.0-current yet. Right now, using "divert" instead and writing the packet back is the workaround. -Archie ___________________________________________________________________________ Archie Cobbs * Whistle Communications, Inc. * http://www.whistle.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Thu Jun 18 14:09:05 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA14520 for freebsd-net-outgoing; Thu, 18 Jun 1998 14:09:05 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from tesla.i-pi.com (1000@tesla.i-pi.com [198.49.217.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA14461 for ; Thu, 18 Jun 1998 14:08:49 -0700 (PDT) (envelope-from ingham@tesla.i-pi.com) Received: (from ingham@localhost) by tesla.i-pi.com (8.8.7/8.8.7) id PAA18485; Thu, 18 Jun 1998 15:08:23 -0600 (MDT) Message-ID: <19980618150823.29058@i-pi.com> Date: Thu, 18 Jun 1998 15:08:23 -0600 From: Kenneth Ingham To: Genossar Chen Cc: freebsd-net@FreeBSD.ORG Subject: Re: ipfw - tee option References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.84e In-Reply-To: ; from Genossar Chen on Thu, Jun 18, 1998 at 03:13:26PM +0300 Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Does anybody know if the "tee" action in the > ipfw command works under 2.2.6 ? Not yet implemented. You might be able to make bpf do what you want. Kenneth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Fri Jun 19 01:24:45 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id BAA20081 for freebsd-net-outgoing; Fri, 19 Jun 1998 01:24:45 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from muswell.demon.co.uk (muswell.demon.co.uk [158.152.10.120]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id BAA20060; Fri, 19 Jun 1998 01:24:37 -0700 (PDT) (envelope-from ruth@muswell.demon.co.uk) Received: (from ruth@localhost) by muswell.demon.co.uk (8.8.7/8.6.12) id JAA01172; Fri, 19 Jun 1998 09:19:25 +0100 (BST) Date: Fri, 19 Jun 1998 09:19:25 +0100 (BST) Message-Id: <199806190819.JAA01172@muswell.demon.co.uk> From: ruth moulton MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: freebsd-questions@FreeBSD.ORG, freebsd-net@FreeBSD.ORG Subject: connecting NT and FBSD via tcp/ip over ethernet X-Mailer: VM 6.22 under 19.15 XEmacs Lucid Cc: ruth@muswell.demon.co.uk Disposition-notification-to: ruth@muswell.demon.co.uk Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, I'm trying to connect an NT Workstation 4 Service Pack 3 pentium II to a FreeBSD 2.1 running on a Pentium, over BNC ethernet, using NE2000 compatable Kingston KT20 cards. I don't really mind what protocols I get going, but have a preference for tcp/ip to start with - I understand the protocols and it will allow me to let the FBSD box be a router to the Internet via my ppp dial in from there. But I cannot get it going. The symptom is that, having configured it all up, when I ping the NT machine from FBSD, arp -r on NT shows the correct ethernet address of FBSD arp -r on FBSD shows incomplete instead of ethernet address of NT and the ping itself reports 'sendto: Host is down' ping the FBSD machine from NT and it makes no difference to arp tables on either machine, the ping simply reports 'request times out'. some things about the setup: I'm using host tables on both machines, no DNS as yet on FBSD, the ifconfig command is ifconfig ed0 192.168.0.2 broadcast 255.255.255.0, giving ed0: flags=8863 mtu 1500 inet 192.168.0.1 netmask 0xffffff00 broadcast 255.255.255.0 I'm using the private net number 192.168.0 on NT I only have the 'tcp/ip protocol' configured on FBSD netstat -r shows Routing tables Internet: Destination Gateway Flags Refs Use Netif Expire localhost localhost UH 1 23 lo0 158.152.1.222 muswell UH 1 0 tun0 muswell localhost UGHS 1 0 lo0 192.168 link#1 UC 1 0 nt.home link#1 UHRLW 0 8 ed0 14 where nt.home is the nt machine on someone's reccomendation I've tried it with the ethernet board configured to both plug-and-play and NOT configured to PnP on the FBSD box the boards pass the receive/send hardware tests, and the appearance of the FBSD machine's address in the NT's arp table, lead me to believe the hardware and cabling are working. I've looked through the mail archives and it's obvious that some people have got this going, but not me!!! tcpdump can't run (yet) as /dev/bpf is not configured on FBSD, I presume that I need to remake the kernel, so will try doing this and looking at the packets on the net, but meanwhile I wondered if anyone had any suggestions - does this look like hardware (I'm not averse to buying a couple of other cards - they are cheaper than the time I'm spending on this!!!!!), or software or.... many thanks in advance ruth -- ================================================ Ruth Moulton ruth@muswell.demon.co.uk Consultant 65 Tetherdown, London N.10 1NH, UK Tel:+44 181 883 5823 -- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Fri Jun 19 04:41:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA22239 for freebsd-net-outgoing; Fri, 19 Jun 1998 04:41:39 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from arthur.axion.bt.co.uk (arthur.axion.bt.co.uk [132.146.5.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA22176 for ; Fri, 19 Jun 1998 04:41:10 -0700 (PDT) (envelope-from graeme.brown@bt-sys.bt.co.uk) Received: from rambo (actually rambo.futures.bt.co.uk) by arthur.axion.bt.co.uk (PP) with SMTP; Fri, 19 Jun 1998 12:03:17 +0100 Received: from maczebedee (actually macsmtp) by rambo with SMTP (PP); Fri, 19 Jun 1998 11:53:44 +0100 Message-ID: Date: 19 Jun 1998 11:53:24 +0100 From: Graeme Brown Subject: Looking for FreeBSD version of mrouted-3.8 (DVMRP) To: "FreeBSD-Net (FreeBSD.Org) List" X-Mailer: Mail*Link SMTP for Quarterdeck Mail; Version 4.0.0 Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Dear List Where can I find a pruning version of DVMRP (mrouted) for FreeBSD 2.2.6 ? I think this means I need mrouted-3.8 either binary or source distribution. What version of mrouted comes bundled with FreeBSD 2.2.x as shipped ? TIA Graeme N Brown Internet Futures BT Laboratories, UK email : graeme.brown@bt-sys.bt.co.uk To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Fri Jun 19 04:53:16 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id EAA24413 for freebsd-net-outgoing; Fri, 19 Jun 1998 04:53:16 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from sierrahill.com (sierrahill.com [207.8.11.162]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id EAA24394; Fri, 19 Jun 1998 04:53:11 -0700 (PDT) (envelope-from rjoe@sierrahill.com) Received: (from rjoe@localhost) by sierrahill.com (8.8.7/8.8.7) id GAA27678; Fri, 19 Jun 1998 06:53:17 -0500 (CDT) (envelope-from rjoe) From: Joe Schwartz Message-Id: <199806191153.GAA27678@sierrahill.com> Subject: calendaring To: freebsd-net@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Date: Fri, 19 Jun 1998 06:53:16 -0500 (CDT) X-Mailer: ELM [version 2.4 PL23] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Folks, I'm doing my best to ward off NT being replacing a FreeBSD machine at one of the sites I care for. What I'm running into is these users wanting calendaring and they're looking at using Exchange and then also using it for e-mail and then also web services ... and anything else NT is advertised as being able to do. My question is: Is there anything to use for calendaring, running under FreeBSD which I can present as an alternative to these people converting to NT and Exchange. Thanks, Joe Schwartz SierraHill Technologies To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Fri Jun 19 05:39:49 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id FAA01537 for freebsd-net-outgoing; Fri, 19 Jun 1998 05:39:49 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from magicnet.magicnet.net (root@magicnet.magicnet.net [204.96.116.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id FAA01515 for ; Fri, 19 Jun 1998 05:39:41 -0700 (PDT) (envelope-from bill@bilver.magicnet.net) Received: from bilver.magicnet.net (uucp@localhost) by magicnet.magicnet.net (8.8.6/8.8.8) with UUCP id IAA29606 for freebsd-net@freebsd.org; Fri, 19 Jun 1998 08:33:35 -0400 (EDT) Received: (from bill@localhost) by bilver.magicnet.net (8.8.5/8.7.3) id IAA14306 for freebsd-net@freebsd.org; Fri, 19 Jun 1998 08:24:17 -0400 (EDT) From: Bill Vermillion Message-Id: <199806191224.IAA14306@bilver.magicnet.net> Subject: Re: connecting NT and FBSD via tcp/ip over ethernet In-Reply-To: <199806190819.JAA01172@muswell.demon.co.uk> from ruth moulton at "Jun 19, 98 09:19:25 am" To: freebsd-net@FreeBSD.ORG Date: Fri, 19 Jun 1998 08:24:17 -0400 (EDT) X-Mailer: ELM [version 2.4ME+ PL31 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Recently ruth moulton said: > Hi, > I'm trying to connect an NT Workstation 4 Service Pack 3 pentium II > to a FreeBSD 2.1 running on a Pentium, over BNC ethernet, using > NE2000 compatable Kingston KT20 cards. .... > But I cannot get it going. The symptom is that, having configured it > all up, when I > ping the NT machine from FBSD, > arp -r on NT shows the correct ethernet address of FBSD > arp -r on FBSD shows incomplete instead of ethernet address of NT > and the ping itself reports 'sendto: Host is down' > > ping the FBSD machine from NT and it makes no difference to > arp tables on either machine, the ping simply reports > 'request times out'. I've seen this happen on an SCO <-> NT system - the exact symptoms. Replacing the NIC card fixed it. The NIC in the NT just wasn't 'right'. I say you might borrow a couple of other cards to try it out. Bill -- bill@bilver.magicnet.net | bill@bilver.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Fri Jun 19 06:32:36 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id GAA12072 for freebsd-net-outgoing; Fri, 19 Jun 1998 06:32:36 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from horton.iaces.com (horton.iaces.com [204.147.87.98]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id GAA12054; Fri, 19 Jun 1998 06:32:27 -0700 (PDT) (envelope-from proot@horton.iaces.com) Received: (from proot@localhost) by horton.iaces.com (8.8.7/8.8.7) id IAA18937; Fri, 19 Jun 1998 08:31:16 -0500 (CDT) From: "Paul T. Root" Message-Id: <199806191331.IAA18937@horton.iaces.com> Subject: Re: calendaring To: rjoe@sierrahill.com (Joe Schwartz) Date: Fri, 19 Jun 1998 08:31:16 -0500 (CDT) Cc: freebsd-net@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG In-Reply-To: <199806191153.GAA27678@sierrahill.com> from Joe Schwartz at "Jun 19, 98 06:53:16 am" X-Organization: USWEST !nterprise Networking - ACES X-Phone: (612) 664-3385 X-Fax: (612) 664-4779 X-Page: (800) SKY-PAGE PIN: 537-7270 X-Address: 600 Stinson Blvd, Fl 1S X-Address: Minneapolis, MN 55413 X-Mailer: ELM [version 2.4ME+ PL22 (25)] MIME-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org In a previous message, Joe Schwartz said: > Folks, > > I'm doing my best to ward off NT being replacing a FreeBSD machine > at one of the sites I care for. > > What I'm running into is these users wanting calendaring and > they're looking at using Exchange and then also using it for > e-mail and then also web services ... and anything else NT > is advertised as being able to do. > > My question is: > > Is there anything to use for calendaring, running under > FreeBSD which I can present as an alternative to these people > converting to NT and Exchange. I was using Plan a while ago (now I use a Palm III). It has the ability to share. There's also Netscape's, though I don't know if there is a server for FBSD. Applix Anywhere? Did that have calendaring? -- I'm as confused as a baby in a topless bar. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Fri Jun 19 09:16:17 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA11905 for freebsd-net-outgoing; Fri, 19 Jun 1998 09:16:17 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from compound.east.sun.com ([208.141.230.135]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA11787; Fri, 19 Jun 1998 09:15:35 -0700 (PDT) (envelope-from alk@compound.east.sun.com) Received: (from alk@localhost) by compound.east.sun.com (8.8.8/8.7.3) id LAA02421; Fri, 19 Jun 1998 11:12:33 -0500 (CDT) From: Tony Kimball X-Face: O9M"E%K;(f-Go/XDxL+pCxI5*gr[=FN@Y`cl1.Tn Reply-To: alk@pobox.com MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Fri, 19 Jun 1998 11:12:24 -0500 (CDT) X-Face: O9M"E%K;(f-Go/XDxL+pCxI5*gr[=FN@Y`cl1.Tn Reply-To: anthony.kimball@east.sun.com To: proot@horton.iaces.com Cc: rjoe@sierrahill.com, freebsd-net@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: calendaring References: <199806191153.GAA27678@sierrahill.com> <199806191331.IAA18937@horton.iaces.com> X-Mailer: VM 6.43 under 20.4 "Emerald" XEmacs Lucid Message-ID: <13706.36233.413519.547279@compound.east> Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Not haveing a clue as to what NT has, I don't know whether ical satisfies your user's need for "calendaring". It certainly satisfies mine. There is PalmPilot support for ical. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Fri Jun 19 09:16:21 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id JAA11929 for freebsd-net-outgoing; Fri, 19 Jun 1998 09:16:21 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from compound.east.sun.com ([208.141.230.135]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id JAA11764; Fri, 19 Jun 1998 09:15:27 -0700 (PDT) (envelope-from alk@compound.east.sun.com) Received: (from alk@localhost) by compound.east.sun.com (8.8.8/8.7.3) id LAA02440; Fri, 19 Jun 1998 11:16:07 -0500 (CDT) From: Tony Kimball MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Date: Fri, 19 Jun 1998 11:16:06 -0500 (CDT) X-Face: O9M"E%K;(f-Go/XDxL+pCxI5*gr[=FN@Y`cl1.Tn Reply-To: alk@pobox.com To: proot@horton.iaces.com Cc: rjoe@sierrahill.com, freebsd-net@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: calendaring References: <199806191153.GAA27678@sierrahill.com> <199806191331.IAA18937@horton.iaces.com> X-Mailer: VM 6.43 under 20.4 "Emerald" XEmacs Lucid Message-ID: <13706.36233.413519.547279@compound.east> Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Not haveing a clue as to what NT has, I don't know whether ical satisfies your user's need for "calendaring". It certainly satisfies mine. There is PalmPilot support for ical. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Fri Jun 19 11:39:25 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id LAA11378 for freebsd-net-outgoing; Fri, 19 Jun 1998 11:39:25 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from tesla.i-pi.com (1000@tesla.i-pi.com [198.49.217.4]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id LAA11306; Fri, 19 Jun 1998 11:39:03 -0700 (PDT) (envelope-from ingham@tesla.i-pi.com) Received: (from ingham@localhost) by tesla.i-pi.com (8.8.7/8.8.7) id MAA22643; Fri, 19 Jun 1998 12:38:33 -0600 (MDT) Message-ID: <19980619123832.11308@i-pi.com> Date: Fri, 19 Jun 1998 12:38:32 -0600 From: Kenneth Ingham To: Joe Schwartz Cc: freebsd-net@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: calendaring References: <199806191153.GAA27678@sierrahill.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii X-Mailer: Mutt 0.84e In-Reply-To: <199806191153.GAA27678@sierrahill.com>; from Joe Schwartz on Fri, Jun 19, 1998 at 06:53:16AM -0500 Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, Jun 19, 1998 at 06:53:16AM -0500, Joe Schwartz wrote: > Is there anything to use for calendaring, running under > FreeBSD which I can present as an alternative to these people > converting to NT and Exchange. At USENIX just a moment ago was a discussion of KDE (www.kde.org) and Gnome (www.gnome.org) and they have calendar support. Don't know if it matches what your users want.... Kenneth To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Fri Jun 19 12:11:53 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id MAA16852 for freebsd-net-outgoing; Fri, 19 Jun 1998 12:11:53 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from mercury.jorsm.com (mercury.jorsm.com [207.112.128.9]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id MAA16709; Fri, 19 Jun 1998 12:10:34 -0700 (PDT) (envelope-from jer@jorsm.com) Received: from localhost (jer@localhost) by mercury.jorsm.com (8.8.7/8.8.7) with SMTP id OAA20177; Fri, 19 Jun 1998 14:10:26 -0500 (CDT) Date: Fri, 19 Jun 1998 14:10:25 -0500 (CDT) From: Jeremy Shaffner To: ruth moulton cc: freebsd-questions@FreeBSD.ORG, freebsd-net@FreeBSD.ORG Subject: Re: connecting NT and FBSD via tcp/ip over ethernet In-Reply-To: <199806190819.JAA01172@muswell.demon.co.uk> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org On Fri, 19 Jun 1998, ruth moulton wrote: > Hi, > > I'm trying to connect an NT Workstation 4 Service Pack 3 pentium II > to a FreeBSD 2.1 running on a Pentium, over BNC ethernet, using > NE2000 compatable Kingston KT20 cards. > > I don't really mind what protocols I get going, but have a > preference for tcp/ip to start with - I understand the protocols and > it will allow me to let the FBSD box be a router to the Internet > via my ppp dial in from there. > > But I cannot get it going. The symptom is that, having configured it > all up, when I > > ping the NT machine from FBSD, > arp -r on NT shows the correct ethernet address of FBSD > arp -r on FBSD shows incomplete instead of ethernet address of NT > and the ping itself reports 'sendto: Host is down' > > ping the FBSD machine from NT and it makes no difference to > arp tables on either machine, the ping simply reports > 'request times out'. > > some things about the setup: > > I'm using host tables on both machines, no DNS as yet > > on FBSD, the ifconfig command is > ifconfig ed0 192.168.0.2 broadcast 255.255.255.0, > giving > ed0: flags=8863 mtu 1500 > inet 192.168.0.1 netmask 0xffffff00 broadcast 255.255.255.0 > That doesn't seem to make much sense. I assume you want FBSD to be .1 since you want to use it as a router. ifconfig ed0 inet 192.168.0.1 netmask 0xffffff00 broadcast 192.168.0.255 It can also be set in /etc/rc.conf. Look for ifconfig_ed0="" > I'm using the private net number 192.168.0 > > > on NT I only have the 'tcp/ip protocol' configured > > on FBSD netstat -r shows > > Routing tables > > Internet: > Destination Gateway Flags Refs Use Netif Expire > localhost localhost UH 1 23 lo0 > 158.152.1.222 muswell UH 1 0 tun0 > muswell localhost UGHS 1 0 lo0 > 192.168 link#1 UC 1 0 > nt.home link#1 UHRLW 0 8 ed0 14 > > where nt.home is the nt machine > > on someone's reccomendation I've tried it with the ethernet > board configured to both plug-and-play and NOT configured to PnP > on the FBSD box > > the boards pass the receive/send hardware tests, and the appearance > of the FBSD machine's address in the NT's arp table, lead me to > believe the hardware and cabling are working. > > I've looked through the mail archives and it's obvious that some > people have got this going, but not me!!! > > tcpdump can't run (yet) as /dev/bpf is not configured on FBSD, > I presume that I need to remake the kernel, so will try doing this > and looking at the packets on the net, Yup, remake with: pseudo-device bpfilter 4 in the kernel config file. > but meanwhile I wondered if anyone had any suggestions - does this > look like hardware (I'm not averse to buying a couple of other > cards - they are cheaper than the time I'm spending on this!!!!!), > or software or.... > > many thanks in advance > > ruth > -===================================================================- Jeremy Shaffner JORSM Internet Senior Technical Support Northwest Indiana's Premium jer@jorsm.com Internet Service Provider support@jorsm.com http://www.jorsm.com -===================================================================- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Fri Jun 19 14:23:39 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA08433 for freebsd-net-outgoing; Fri, 19 Jun 1998 14:23:39 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from elvis.vnet.net (elvis.vnet.net [166.82.1.5]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA08369; Fri, 19 Jun 1998 14:23:19 -0700 (PDT) (envelope-from rivers@dignus.com) Received: from dignus.com (ponds.vnet.net [166.82.177.48]) by elvis.vnet.net (8.8.8/8.8.4) with ESMTP id RAB06062; Fri, 19 Jun 1998 17:23:05 -0400 (EDT) Received: from lakes.dignus.com (lakes [10.0.0.3]) by dignus.com (8.8.5/8.8.5) with ESMTP id RAA00273; Fri, 19 Jun 1998 17:53:11 -0400 (EDT) Received: (from rivers@localhost) by lakes.dignus.com (8.8.7/8.6.9) id RAA09047; Fri, 19 Jun 1998 17:12:25 -0400 (EDT) Date: Fri, 19 Jun 1998 17:12:25 -0400 (EDT) From: Thomas David Rivers Message-Id: <199806192112.RAA09047@lakes.dignus.com> To: freebsd-net@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG, rjoe@sierrahill.com Subject: Re: calendaring Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > > Folks, > > I'm doing my best to ward off NT being replacing a FreeBSD machine > at one of the sites I care for. > > What I'm running into is these users wanting calendaring and > they're looking at using Exchange and then also using it for > e-mail and then also web services ... and anything else NT > is advertised as being able to do. > > My question is: > > Is there anything to use for calendaring, running under > FreeBSD which I can present as an alternative to these people > converting to NT and Exchange. > > Thanks, > > Joe Schwartz > SierraHill Technologies Point people at "plan" (it's in the ports). I use it myself for everything... and, I've never not been able to examine my schedule because the exchange server was done... - Dave Rivers - To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Fri Jun 19 14:58:04 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id OAA13356 for freebsd-net-outgoing; Fri, 19 Jun 1998 14:58:04 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from pohaku.hi.net (pohaku.hi.net [207.12.12.6]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id OAA13309; Fri, 19 Jun 1998 14:57:53 -0700 (PDT) (envelope-from ken@mui.net) From: ken@mui.net Received: from lihing.mui.net ([207.12.13.237]) by pohaku.hi.net (8.9.0/8.7.3) with SMTP id LAA10827; Fri, 19 Jun 1998 11:58:59 -1000 Message-Id: <199806192158.LAA10827@pohaku.hi.net> To: freebsd-net@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Date: Fri, 19 Jun 1998 11:57:13 -1000 MIME-Version: 1.0 Content-type: text/plain; charset=US-ASCII Content-transfer-encoding: 7BIT Subject: Re: calendaring In-reply-to: <19980619123832.11308@i-pi.com> References: <199806191153.GAA27678@sierrahill.com>; from Joe Schwartz on Fri, Jun 19, 1998 at 06:53:16AM -0500 X-mailer: Pegasus Mail for Win32 (v3.01a) Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > On Fri, Jun 19, 1998 at 06:53:16AM -0500, Joe Schwartz wrote: > > Is there anything to use for calendaring, running under > > FreeBSD which I can present as an alternative to these people > > converting to NT and Exchange. check out jann linder's page. he has a group calendar that allows u to share meetings, etc. it's a perl incarnation i believe. He has a free version, and one that cost just a little. ken To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Fri Jun 19 21:31:55 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id VAA07592 for freebsd-net-outgoing; Fri, 19 Jun 1998 21:31:55 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from ultra.ultra.net.au (root@ultra.ultra.net.au [203.20.237.5]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id VAA07572; Fri, 19 Jun 1998 21:31:47 -0700 (PDT) (envelope-from lbarton@ultra.net.au) Received: from lbarton.ultra.net.au (lithium.elemental.ultra.net.au [203.20.237.23]) by ultra.ultra.net.au (8.8.8/8.8.8) with SMTP id OAA10082; Sat, 20 Jun 1998 14:43:29 +1000 (EST) Message-Id: <1.5.4.32.19980620043909.006dd9e8@mail.ultra.net.au> X-Sender: lbarton@mail.ultra.net.au X-Mailer: Windows Eudora Light Version 1.5.4 (32) Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Date: Sat, 20 Jun 1998 14:39:09 +1000 To: freebsd-net@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG From: Lee-Ann Barton Subject: to log the logins Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org Hi, At our school the fbsd box is used as a gateway to our ISP which takes us out to the WWW. We wish to log the length they are connected to the fbsd box.So we can charge each department for on-line use. The user such as SCIENCE logs into the NOVELL network and the IP to the fbsd box takes the user to our ISP which gives access to the WWW using Netscape Navigator 4.04. Each department has an EMAIL account on the fsbd box. Is there a piece of software to allow us to do this. Lee-ANN lbarton@ultra.net.au Ryan Catholic Community School - Townsville Computer Co-ordinator **Life's a garden - get out and dig it** To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message From owner-freebsd-net Sat Jun 20 03:58:14 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id DAA10317 for freebsd-net-outgoing; Sat, 20 Jun 1998 03:58:14 -0700 (PDT) (envelope-from owner-freebsd-net@FreeBSD.ORG) Received: from awfulhak.org (awfulhak.force9.co.uk [195.166.136.63]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id DAA10300; Sat, 20 Jun 1998 03:58:07 -0700 (PDT) (envelope-from brian@Awfulhak.org) Received: from gate.lan.awfulhak.org (localhost [127.0.0.1]) by awfulhak.org (8.8.8/8.8.8) with ESMTP id IAA00795; Sat, 20 Jun 1998 08:58:28 +0100 (BST) (envelope-from brian@gate.lan.awfulhak.org) Message-Id: <199806200758.IAA00795@awfulhak.org> X-Mailer: exmh version 2.0.1 12/23/97 To: Lee-Ann Barton cc: freebsd-net@FreeBSD.ORG, freebsd-questions@FreeBSD.ORG Subject: Re: to log the logins In-reply-to: Your message of "Sat, 20 Jun 1998 14:39:09 +1000." <1.5.4.32.19980620043909.006dd9e8@mail.ultra.net.au> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Sat, 20 Jun 1998 08:58:27 +0100 From: Brian Somers Sender: owner-freebsd-net@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.org > Hi, > At our school the fbsd box is used as a gateway to our ISP which takes us > out to the WWW. > We wish to log the length they are connected to the fbsd box.So we can > charge each department for on-line use. > > The user such as SCIENCE logs into the NOVELL network and the IP to the fbsd > box takes the user to our ISP which gives access to the WWW using Netscape > Navigator 4.04. > Each department has an EMAIL account on the fsbd box. > > Is there a piece of software to allow us to do this. Have you tried ``man last'' ? > Lee-ANN > lbarton@ultra.net.au > Ryan Catholic Community School - Townsville > Computer Co-ordinator > > **Life's a garden - get out and dig it** -- Brian , , Don't _EVER_ lose your sense of humour.... To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-net" in the body of the message