[leaf-user] Cannot backup network configuration

2002-08-11 Thread Abjin M H

Hi,

I created a Bering cd and when I boot the cd after backing up all the configuration 
changes, I find that my network
configuration is not getting saved during backup. I made changes to network 
configuration several time, made backup and
every time when I reboot the network files default to the initial file. These are the 
files that I load from lrpkg.cfg.
root,etc,local,modules,shorwall,openssl,mawk,ipsec,ipsec509,dhcpd,dnscache,weblet,tcpdump,libpcap

Thanks for any help

Abjin



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



Re: [leaf-user] Cannot backup network configuration

2002-08-11 Thread Eric Wolzak


Hi Abjin
 
 Hi,
 
 I created a Bering cd and when I boot the cd after backing up all the 
configuration changes, I find that my network
 configuration is not getting saved during backup. I made changes to network 
configuration several time, made backup and
 every time when I reboot the network files default to the initial file. These are 
the files that I load from lrpkg.cfg.
 
root,etc,local,modules,shorwall,openssl,mawk,ipsec,ipsec509,dhcpd,dnscache,weblet,tcpdump,libpcap

How did you backup, on a floppy ? probably yes, are you sure that the 
backed up files are loaded during booting. 

To test if your etc.lrp is backed up correctly you should do the following:

mount /dev/fd0u1680  /mnt if you have a 1680 Kb floppy or
mount /dev/fd0u1440 /mnt if you have a 1440 Kb (normal) floppy

then 
cp /mnt/etc.lrp   /
cd  /
lrpkg -i etc.lrp 

now check the settings in interface etc. If they are now set to the correct 
value,  you have a good backup, but a problem with loading the correct 
package.
if etc.lrp doesn't exist, you possible tried to backup to the cdrom ( look 
at the destination option.)

Now look at the lrcfg backup menu 
after a new boot, what backup device is listed at the backup device for 
etc. 
if this is CD than the cdrom is loaded as the only one or as the last one.
Did you specify the F or R options in syslinux.cfg 
look at 
http://leaf.sourceforge.net/devel/jnilo/bubooting.html
in the section 9.5

Good Luck
regards

Eric Wolzak 
member of the Bering Crew




---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



[leaf-user] Flash disk problem

2002-08-11 Thread S Mohan

I'm trying to load bering on a PC ATA Flash card. I've a Adtron drive
and a Sandisk 8MB card. It is getting recognised as a drive and I'm able
to fdisk and format the drive. It is secondary master. I'm able to mount
it as /dev/hdc1 in bering too. However, I'm not able to boot! I
initially tried syslinux and it gave an error :unable to lock drive for
exclusive access. I did a lock c: and then tried syslinux. Same error. I
then booted up the system with a Win98 DOS floppy, did a sys c: and
copied the floppy contents to the flash card. It did not boot up in DOS
too. Sys did not give an error unlike syslinux.

Any pointers? Is it that I'm up the wrong alley and ATA Flash disks are
not bootable?

Mohan




---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



Re: [leaf-user] IPSec doesn't found public interface

2002-08-11 Thread Chad Carr

On Sun, 11 Aug 2002 13:47:20 +0200
Francois BERGERET [EMAIL PROTECTED] wrote:

 Hi Chad,
 
 Thanks to spend your time to help me (and others).
 
 I have understood that you have trieve a bug in the IPSec package,
 but I don't know how correct it by myself, due to my lack of competence
 with Linux.
 
 I have tempted an idiot editing with ae without success, of course.
 
 How can I proceed ?
 
 Could you, please, correct this bug for me (and the community) and
 post the file to replace ?

Sorry about that.  Attached inline below.  Please excuse the bug.  It will be fixed in 
the next release.

 After this bug correction, how can I start correctly IPSec tunnels
 between my two boxes ? As described by Jacques Nilo's user manual ?

Yes.  The users manual has a section on ipsec.  If you have additional questions, 
please post to the list.

http://leaf.sourceforge.net/devel/jnilo/buipsec.html

-- 

Chad Carr  [EMAIL PROTECTED]


# BEGIN /usr/lib/ipsec/_startklips #
#!/bin/sh
# KLIPS startup script
# Copyright (C) 1998, 1999, 2001, 2002  Henry Spencer.
# 
# This program is free software; you can redistribute it and/or modify it
# under the terms of the GNU General Public License as published by the
# Free Software Foundation; either version 2 of the License, or (at your
# option) any later version.  See http://www.fsf.org/copyleft/gpl.txt.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
# or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
# for more details.
#
# RCSID $Id: _startklips,v 1.6.2.6 2002/06/21 05:05:01 mcr Exp $

me='ipsec _startklips'  # for messages

# KLIPS-related paths
sysflags=/proc/sys/net/ipsec
modules=/proc/modules
# full rp_filter path is $rpfilter1/interface/$rpfilter2
rpfilter1=/proc/sys/net/ipv4/conf
rpfilter2=rp_filter
ipsecversion=/proc/net/ipsec_version
moduleplace=/lib/modules/`uname -r`/kernel/net/ipsec
bareversion=`uname -r | sed -e 's/\([0-9]*\)\.\([0-9]*\)\.\([0-9-]*\).*/\1.\2.\3/'`
moduleinstplace=/lib/modules/$bareversion/kernel/net/ipsec
modulename=ipsec.o

info=/dev/null
log=daemon.error
for dummy
do
case $1 in
--log)  log=$2 ; shift;;
--info) info=$2 ; shift   ;;
--debug)debug=$2 ; shift  ;;
--omtu) omtu=$2 ; shift   ;;
--fragicmp) fragicmp=$2 ; shift   ;;
--hidetos)  hidetos=$2 ; shift;;
--default)  packetdefault=$2 ; shift  ;;
--) shift ; break   ;;
-*) echo $me: unknown option \`$1' 2 ; exit 2   ;;
*)  break   ;;
esac
shift
done



# some shell functions, to clarify the actual code

# set up a system flag based on a variable
# sysflag value shortname default flagname
sysflag() {
case $1 in
'') v=$3  ;;
*)  v=$1  ;;
esac
if test ! -f $sysflags/$4
then
if test  $v !=  $3
then
echo cannot do $2=$v, $sysflags/$4 does not exist
exit 1
else
return  # can't set, but it's the default anyway
fi
fi
case $v in
yes|no) ;;
*)  echo unknown (not yes/no) $2 value \`$1'
exit 1
;;
esac
case $v in
yes)echo 1 $sysflags/$4;;
no) echo 0 $sysflags/$4;;
esac
}

# set up a Klips interface
klipsinterface() {
# pull apart the interface spec
# Bering
#   virt=`expr $1 : '\([^=]*\)=.*'`
#   phys=`expr $1 : '[^=]*=\(.*\)'`
virt=`echo $1 | sed 's/=.*//g'`
phys=`echo $1 | sed 's/[^=]*=//g'`
# /Bering
case $virt in
ipsec[0-9]) ;;
*)  echo invalid interface \`$virt' in \`$1' ; exit 1 ;;
esac
# figure out ifconfig for interface
addr=
#Bering
#   eval `ifconfig $phys |
#   awk '$1 == inet  $2 ~ /^addr:/  $NF ~ /^Mask:/ {
#   gsub(/:/,  , $0)
#   print addr= $3
#   other = $5
#   if ($4 == Bcast)
#   print type=broadcast
#   else if ($4 == P-t-P)
#   print type=pointopoint
eval `ip addr show $phys |
awk '$1 == inet {
print addr= $2
other = $4
if ($3 == brd)
print type=broadcast
else if ($3 == peer)
print type=pointopoint
else if (NF 

Re: [leaf-user] WISP and DiskOnChip

2002-08-11 Thread gart

Sorry, I'm still kind of new to this whole thing.

Where do I put the files necessary to load the doc? before I believe it 
was soemthing like /boot/etc/modules and there was another file in /boot 
that had to be edited to declare them.

On WISP, there's no such directory. looking at initrd.list it has an entry 
of boot but without a / so I'm not sure where it's looking.

--Pat

 On Fri, 9 Aug 2002, Vladimir I. 
wrote:

 
 You need to add modules for DOC into initrd, and modify location of packages in 
 syslinux.cfg.
 
 [EMAIL PROTECTED] wrote:
  Hello all,
   In my never-ending battle to get DOC support in EVERYTHING, I'm 
  attempting to use WISP on a DOC.
  
   To get dachstein to boot, Charles custom compiled a kernel for me (I 
  think)
   I never did get Bering to boot from DOC
  
   WISP generates a kernel panic due to it's inability to load any packages.
  
   What's the correct procedure for getting WISP to boot from a DOC?  Load a 
  driver at boot time? How?  It should be supported by the MTD Driver as a 
  /dev/fla device.
  
   I have one system running wisp, but that has a hard drive in it.
  
  
  Thanks for any assistance,
  Pat
  
  
  
  
  ---
  This sf.net email is sponsored by:ThinkGeek
  Welcome to geek heaven.
  http://thinkgeek.com/sf
  
  leaf-user mailing list: [EMAIL PROTECTED]
  https://lists.sourceforge.net/lists/listinfo/leaf-user
  SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html
  
 
 
 



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



Re: [leaf-user] Flash disk problem

2002-08-11 Thread Manfred Schuler

Most PC BIOS can only boot from primary master device.

You should connect your flash disk to the primary connector and retry.

S Mohan schrieb:
 
 I'm trying to load bering on a PC ATA Flash card. I've a Adtron drive
 and a Sandisk 8MB card. It is getting recognised as a drive and I'm able
 to fdisk and format the drive. It is secondary master. I'm able to mount
 it as /dev/hdc1 in bering too. However, I'm not able to boot! I
 initially tried syslinux and it gave an error :unable to lock drive for
 exclusive access. I did a lock c: and then tried syslinux. Same error. I
 then booted up the system with a Win98 DOS floppy, did a sys c: and
 copied the floppy contents to the flash card. It did not boot up in DOS
 too. Sys did not give an error unlike syslinux.
 
 Any pointers? Is it that I'm up the wrong alley and ATA Flash disks are
 not bootable?
 
 Mohan
 
 ---
 This sf.net email is sponsored by:ThinkGeek
 Welcome to geek heaven.
 http://thinkgeek.com/sf
 
 leaf-user mailing list: [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/leaf-user
 SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html

-- 
Manfred Schuler
E_Mail: mailto:[EMAIL PROTECTED]


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



Re: [leaf-user] WISP and DiskOnChip

2002-08-11 Thread Vladimir I.

[EMAIL PROTECTED] wrote about Re: [leaf-user] WISP and DiskOnChip:
 Sorry, I'm still kind of new to this whole thing.
 
 Where do I put the files necessary to load the doc? before I believe it 
 was soemthing like /boot/etc/modules and there was another file in /boot 
 that had to be edited to declare them.
 
 On WISP, there's no such directory. looking at initrd.list it has an entry 
 of boot but without a / so I'm not sure where it's looking.

This directory exists. ungzip initrd.lrp and mount it as 
minix image, you will find the /boot/etc/modules there. There are 
scripts to make WISP-Dist images on LEAF's website.

 
 --Pat
 
  On Fri, 9 Aug 2002, Vladimir I. 
 wrote:
 
  
  You need to add modules for DOC into initrd, and modify location of packages in 
  syslinux.cfg.
  
  [EMAIL PROTECTED] wrote:
   Hello all,
In my never-ending battle to get DOC support in EVERYTHING, I'm 
   attempting to use WISP on a DOC.
   
To get dachstein to boot, Charles custom compiled a kernel for me (I 
   think)
I never did get Bering to boot from DOC
   
WISP generates a kernel panic due to it's inability to load any packages.
   
What's the correct procedure for getting WISP to boot from a DOC?  Load a 
   driver at boot time? How?  It should be supported by the MTD Driver as a 
   /dev/fla device.
   
I have one system running wisp, but that has a hard drive in it.
   
   
   Thanks for any assistance,
   Pat
   
   
   
   
   ---
   This sf.net email is sponsored by:ThinkGeek
   Welcome to geek heaven.
   http://thinkgeek.com/sf
   
   leaf-user mailing list: [EMAIL PROTECTED]
   https://lists.sourceforge.net/lists/listinfo/leaf-user
   SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html
   
  
  
  

-- 
Best Regards,
Vladimir
Systems Engineer (RHCE)


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



Re: [leaf-user] WISP and DiskOnChip

2002-08-11 Thread guitarlynn

On Sunday 11 August 2002 10:01, [EMAIL PROTECTED] wrote:
 Sorry, I'm still kind of new to this whole thing.

 Where do I put the files necessary to load the doc? before I believe
 it was soemthing like /boot/etc/modules and there was another file in
 /boot that had to be edited to declare them.

 On WISP, there's no such directory. looking at initrd.list it has an
 entry of boot but without a / so I'm not sure where it's looking.

The necessary modules will go into /boot/lib/modules and are called
from /boot/etc/modules. The /boot directory is the directory that
initrd works exclusively from. 

I can't say off the top of my head from Bering, but this user has a
webpage that lists the steps he found necessary to get a DOC to 
fun with Dachstein from you can likely use this as a guide for 
bering as well.

http://mullan.dns2go.com/


-- 

~Lynn Avants
aka Guitarlynn

guitarlynn at users.sourceforge.net
http://leaf.sourceforge.net

If linux isn't the answer, you've probably got the wrong question!


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



Re: [leaf-user] Bering 1.0rc3 - RoadRunnerCable, connection suddenly fails

2002-08-11 Thread guitarlynn

On Saturday 10 August 2002 00:07, lbilyeu wrote:
  RE: Harry Kitt
  What NIC driver are you using?

 realtek8019/NE2000 compatible cards
 I'm using the modules included on the stock Bering Floppy image.
  8390.o
  ne.o

  driver appeared to work, but would randomly drop the connection.
  Probably not recompiled for the Bering's kernel/compiler.

What exact model/make card are you using a lot of compatible 
cards aren't even compatible at all. I've had luck with some of the 
real realtek cards, but even these are pretty much POS cards 
under ideal conditions. If I remember correctly, you will also need
to load the mii module as well.
-- 

~Lynn Avants
aka Guitarlynn

guitarlynn at users.sourceforge.net
http://leaf.sourceforge.net

If linux isn't the answer, you've probably got the wrong question!


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



Re: AW: [leaf-user] Insane Dachstein problem

2002-08-11 Thread guitarlynn

On Saturday 10 August 2002 09:44, Harald Krause wrote:

 Also this problem only occurs when kazaa is running a few hours...

 Thats why I call it a insane problem

With what information you have provided (pretty thorough info), I'd
have to guess that kazaa is adding tons of connections or sucking
your bandwidth to nothing. The only thing I could think that might 
help (assuming these guesses are correct) would be to implement
QOS and limit the resources that each client is allowed from the 
router.

I hope this helps,
-- 

~Lynn Avants
aka Guitarlynn

guitarlynn at users.sourceforge.net
http://leaf.sourceforge.net

If linux isn't the answer, you've probably got the wrong question!


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



Re: [leaf-user] Flash disk problem

2002-08-11 Thread guitarlynn

On Sunday 11 August 2002 08:47, S Mohan wrote:
 I'm trying to load bering on a PC ATA Flash card. I've a Adtron drive
 and a Sandisk 8MB card. It is getting recognised as a drive and I'm
 able to fdisk and format the drive. It is secondary master. I'm able
 to mount it as /dev/hdc1 in bering too. However, I'm not able to
 boot! I initially tried syslinux and it gave an error :unable to lock
 drive for exclusive access. I did a lock c: and then tried syslinux.
 Same error. I then booted up the system with a Win98 DOS floppy, did
 a sys c: and copied the floppy contents to the flash card. It did not
 boot up in DOS too. Sys did not give an error unlike syslinux.

 Any pointers? Is it that I'm up the wrong alley and ATA Flash disks
 are not bootable?

Nope, ATA Flash disks are bootable. Using a Win9x boot disk, you will
need to fix the lock problem following the advice in the harddisk
howto in the LEAF /doc/howto section or use a MSDOS 6.x boot disk
instead. You will also need to made the flash disk a primary disk and
flag it bootable during fdisk. Also, make sure you don't exceed a
25Meg partition (DOS limitation per partition). ATA flash disks work
pretty much exactly like a hard-drive.
-- 

~Lynn Avants
aka Guitarlynn

guitarlynn at users.sourceforge.net
http://leaf.sourceforge.net

If linux isn't the answer, you've probably got the wrong question!


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



Re: [leaf-user] Flash disk problem

2002-08-11 Thread Cass Tolken

Hi S Mohan,

--- S Mohan [EMAIL PROTECTED] wrote:
 I'm trying to load bering on a PC ATA Flash card. I've a Adtron drive
 and a Sandisk 8MB card. It is getting recognised as a drive and I'm able
 to fdisk and format the drive. It is secondary master. I'm able to mount
 it as /dev/hdc1 in bering too. However, I'm not able to boot! I
 initially tried syslinux and it gave an error :unable to lock drive for
 exclusive access. I did a lock c: and then tried syslinux. Same error. I
 then booted up the system with a Win98 DOS floppy, did a sys c: and
 copied the floppy contents to the flash card. It did not boot up in DOS
 too. Sys did not give an error unlike syslinux.

I had the same unable to lock drive for exclusive access. error message
when I tried using the dos version of syslinux.  It worked great with the
linux version.  I first tried using the syslinux binary from my RH box but
that didn't work with either Bering or Tom's Root Boot floppies.  What I
wound up doing is downloading the source for syslinux to my full linux box
and compiling it statically linked.  IIRC, I think I just added a -static
as a compiler option in the Makefile.

 Any pointers? Is it that I'm up the wrong alley and ATA Flash disks are
 not bootable?

Also for booting dos, have you tried fdisk /mbr before the sys c: ?  Other
than that... I don't know if it'll make a difference but maybe try it as
primary master?

Hope this helps.

-- Cass

__
Do You Yahoo!?
HotJobs - Search Thousands of New Jobs
http://www.hotjobs.com


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



Re: [leaf-user] DSL connection problems: LCP terminated by peer No response to 3 echo-requests

2002-08-11 Thread guitarlynn

On Thursday 08 August 2002 01:53, Mark Ivey wrote:
 I'm running Bering rc3, with an ADSL connection from PacBell (SBC?)
 and two days ago it started disconnecting  reconnecting more often
 than I remember. It also managed to not reconnect once, which is odd.

  Aug 6 15:37:36 firewall pppd[32056]: LCP terminated by peer

It sounds like the error is on the ISP's end. You might call them and
see if they can shed any light on this, since it wasn't doing it before.
They may have also instigated a connection time limit and are 
dropping connections when this TTL is exceeded. Personally, with
my experience with SBC, they all need a thorough spanking and 
possibly a few classes on setting up networking protocols IMHO,
their ignorance in setting up their network and phone-support have
costs them more customers than any ISP I have ever dealt with.

It took me several months to convice them that PPPoE wasn't supported
with the Novell login clients (or Novell period) before they would even
acknowledge the fact. I do remeber something about a TTL on the PPPoE
connections, but I don't know how this was implemented with their 
system.
-- 

~Lynn Avants
aka Guitarlynn

guitarlynn at users.sourceforge.net
http://leaf.sourceforge.net

If linux isn't the answer, you've probably got the wrong question!


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



AW: AW: [leaf-user] Insane Dachstein problem

2002-08-11 Thread Harald Krause


kazaa is only consuming about 10% of the bandwith.
it maybe opens a lot of connections but this shouldnt bother DACHSTEIN
either...
The funny thing is also that, when the PC which is running kazaa
opens a http connection to any website from time to time, everything works
fine
It only happens when kazaa is the only programm connected to the
internet via the LEAF box for a few hours, and no other pc in the network
do a connection.



-Ursprüngliche Nachricht-
Von: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]Im Auftrag von guitarlynn
Gesendet: Sonntag, 11. August 2002 19:11
An: Harald Krause
Cc: [EMAIL PROTECTED]
Betreff: Re: AW: [leaf-user] Insane Dachstein problem


On Saturday 10 August 2002 09:44, Harald Krause wrote:

 Also this problem only occurs when kazaa is running a few hours...

 Thats why I call it a insane problem

With what information you have provided (pretty thorough info), I'd
have to guess that kazaa is adding tons of connections or sucking
your bandwidth to nothing. The only thing I could think that might
help (assuming these guesses are correct) would be to implement
QOS and limit the resources that each client is allowed from the
router.

I hope this helps,
--

~Lynn Avants
aka Guitarlynn

guitarlynn at users.sourceforge.net
http://leaf.sourceforge.net

If linux isn't the answer, you've probably got the wrong question!


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



Re: [leaf-user] DSL connection problems: LCP terminated by peer No response to 3 echo-requests

2002-08-11 Thread Ray Olszewski

I missed this one first time around, but as an erstwhile SBC-PPPoE user, 
let me suggest two things:

1. You report the termination of the connection in a log excerpt, but you 
don't say how old the connection was. There is a lot of difference between 
a termination that occurs after 2 minutes (or 30 seconds) and one that 
occurs after an hour or more of operation. If you want help at the level of 
analyging failure, please post the complete set of log entries (deleting 
only your password, otherwise intact) for a connection attempt. LCP 
terminated by peer is the way about any connection failure ends; we need 
tos ee what comes ahead of that.

2. Consider the possibility that your DSL modem is flaky. This happened to 
me once (the symptom was very slow line speeds, not disconnects), and all 
it took to fix was power cycling the modem.

At 12:33 PM 8/11/02 -0500, guitarlynn wrote:
On Thursday 08 August 2002 01:53, Mark Ivey wrote:
  I'm running Bering rc3, with an ADSL connection from PacBell (SBC?)
  and two days ago it started disconnecting  reconnecting more often
  than I remember. It also managed to not reconnect once, which is odd.

   Aug 6 15:37:36 firewall pppd[32056]: LCP terminated by peer

It sounds like the error is on the ISP's end. You might call them and
see if they can shed any light on this, since it wasn't doing it before.
They may have also instigated a connection time limit and are
dropping connections when this TTL is exceeded. Personally, with
my experience with SBC, they all need a thorough spanking and
possibly a few classes on setting up networking protocols IMHO,
their ignorance in setting up their network and phone-support have
costs them more customers than any ISP I have ever dealt with.
[...]


--
---Never tell me the odds!
Ray Olszewski   -- Han Solo
Palo Alto, California, USA[EMAIL PROTECTED]
---



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



Re: AW: [leaf-user] Insane Dachstein problem

2002-08-11 Thread Charles Steinkuehler

 kazaa is only consuming about 10% of the bandwith.
 it maybe opens a lot of connections but this shouldnt bother DACHSTEIN
 either...
 The funny thing is also that, when the PC which is running kazaa
 opens a http connection to any website from time to time, everything
works
 fine
 It only happens when kazaa is the only programm connected to the
 internet via the LEAF box for a few hours, and no other pc in the
network
 do a connection.

While the problem is occuring, could you try adding some packet tracing
rules to ipchains and posting the results?  Run the following commands
at a command prompt:

ipchains -I input -l
ipchains -I forward -l
ipchains -I output -l

This will cause packet info for *EVERYTHING* to be logged, so don't try
this when you've got lots of internet activity going on.  Once the rules
are in place, try connecting to a website from one of the systems that
is temporarily disconnected, then do a connection from the kazza box
that should fix the problem (IIRC), and finally, repeat the connection
attempt from the disconnected/broken system (which should work now, if
I'm remembering your problem description correctly).

Provide the log files, and details of exactly what you tried (ie website
URL's and internal system IP addresses for help in decoding the log
files), and I'll see if I can spot anything out of the ordinary.  If
there's some sort of problem with the kernel's masquerading of packets
(happens in the forward ipchain), there should be records of packets
hitting the input chain, possibly hitting the forward chain, and not
making it to the output chain.  Conversly, if everything looks OK going
through ipchains, the problem is likely somewhere else.  Is your ISP
maybe doing some sort of masquerading or NAT on your connection?  I
can't off-hand think of anything the ISP would do that would break your
connection from some internal machines but not other, but I suppose it
could be possible...

Charles Steinkuehler
http://lrp.steinkuehler.net
http://c0wz.steinkuehler.net (lrp.c0wz.com mirror)



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



Re: AW: AW: [leaf-user] Insane Dachstein problem

2002-08-11 Thread Ray Olszewski

At 07:36 PM 8/11/02 +0200, Harald Krause wrote:

kazaa is only consuming about 10% of the bandwith.
it maybe opens a lot of connections but this shouldnt bother DACHSTEIN
either...

I think I suggested earlier in this thread that it may be using up ALL the 
available MASQ ports. If so, then that would bother Dachstein.

The 2.2.x kernel can be checked for this with netstat -M. I can't get 
that to work with 2.4.x, though ... I get netstat: no support for 
`ip_masquerade' on this system, which is pretty silly on a NAT'ing router. 
Does anyone know the right command for checking iptables-NAT'd connections?

The funny thing is also that, when the PC which is running kazaa
opens a http connection to any website from time to time, everything works
fine
It only happens when kazaa is the only programm connected to the
internet via the LEAF box for a few hours, and no other pc in the network
do a connection.
[...]



--
---Never tell me the odds!
Ray Olszewski   -- Han Solo
Palo Alto, California, USA[EMAIL PROTECTED]
---



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



RE: [leaf-user] IPSec doesn't found public interface

2002-08-11 Thread François BERGERET

Hi again Dear Chad,

Thanks for your effort for servicing Bering distro.

I am very found of it, and all of you who works on this project are
very gentlemen and your quick replies welcome ! Thanks for sharing.
Very, very cool !

I use a windows box for Internet mailing, and I have some doubt if
I do a simple copy/paste with your text script to feel the
/usr/lib/ipsec/_startklips file with an intermediate relay floppy
for transfert from windows box to Bearing box...

Is it possible for you to send me the complete file as attachment ?
I will copy it directly on the floppy without change anything in it.

Thanks again.
Best Regards,
Francois BERGERET,
France.


-Message d'origine-
De : [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]De la part de Chad Carr
Envoye : dimanche 11 aout 2002 16:47
A : [EMAIL PROTECTED]; [EMAIL PROTECTED]
Objet : Re: [leaf-user] IPSec doesn't found public interface


On Sun, 11 Aug 2002 13:47:20 +0200
Francois BERGERET [EMAIL PROTECTED] wrote:

 Hi Chad,

 Thanks to spend your time to help me (and others).

 I have understood that you have trieve a bug in the IPSec package,
 but I don't know how correct it by myself, due to my lack of competence
 with Linux.

 I have tempted an idiot editing with ae without success, of course.

 How can I proceed ?

 Could you, please, correct this bug for me (and the community) and
 post the file to replace ?

Sorry about that.  Attached inline below.  Please excuse the bug.  It will
be fixed in the next release.

 After this bug correction, how can I start correctly IPSec tunnels
 between my two boxes ? As described by Jacques Nilo's user manual ?

Yes.  The users manual has a section on ipsec.  If you have additional
questions, please post to the list.

http://leaf.sourceforge.net/devel/jnilo/buipsec.html

--

Chad Carr  [EMAIL PROTECTED]


# BEGIN /usr/lib/ipsec/_startklips #

...SNIP SNIP SNIP...




---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



[leaf-user] [ leaf-Support Requests-593730 ] wisp-dist hard drive

2002-08-11 Thread noreply

Support Requests item #593730, was opened at 2002-08-11 11:49
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=213751aid=593730group_id=13751

Category: Release/Branch: Bering
Group: None
Status: Open
Priority: 5
Submitted By: Nobody/Anonymous (nobody)
Assigned to: Mike Noyes (mhnoyes)
Summary: wisp-dist hard drive

Initial Comment:
Can't I install wisp-dist on a regular hard drive?  When I 
try to I get an init not found kernel panic.  Try passing 
init= .
I would like to add more features to the system and try it 
out before going through the steps of a flashdisk.

Thank you,

Tom Johnson


--

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detailatid=213751aid=593730group_id=13751


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



[leaf-user] TURNE ORGANiZASYONLARI iCiN KAMPANYA.. 11.08.2002 23:15:35

2002-08-11 Thread leaf-user

=3CHTML=3E
=3CHEAD=3E
=3CTITLE=3EBirfidan2002=3C=2FTITLE=3E
=3CMETA HTTP-EQUIV=3D=22Content-Type=22 CONTENT=3D=22text=2Fhtml=3B 
charset=3Diso-8859-9=22=3E
=3C=2FHEAD=3E
=3CBODY BGCOLOR=3D#FF=3E
=3Cdiv align=3D=22center=22=3E
  =3Ccenter=3E
  =3Ctable border=3D=220=22 cellpadding=3D=220=22 cellspacing=3D=220=22 
style=3D=22border-collapse=3A collapse=22 width=3D=22610=22 id=3D=22AutoNumber1=22=3E
=3Ctr=3E
  =3Ctd width=3D=22610=22 bgcolor=3D=22#00=22=3E
  =3Cp class=3D=22MsoNormal=22 align=3D=22center=22=3E=3Cfont face=3D=22Verdana=22 
size=3D=224=22=3E=3Cbr=3E
  =DDNANILMAZ KAMPANYA !=2E=2E=3Cbr=3E
  =3C=2Ffont=3E=3Cbr=3E
  =3Cfont face=3D=22Verdana=22=3EKURUM VE KURULU=DELARIMIZA =D6NEMLE 
DUYURULUR=2E=2E=2E=3Cbr=3E
  =3Cbr=3E
  KONSER=2C FEST=DDVAL=2C =DEENL=DDK VB=2E ETK=DDNL=DDK 
ORGAN=DDZASYONLARINIZ=3Cbr=3E
  KAMPANYA TURNEM=DDZ SAYES=DDNDE=3Cbr=3E
  P=DDYASA STANDARTLARININ 1=2F3 ORANINDA =DDND=DDR=DDML=DD OLARAK =3Cbr=3E
  GER=C7EKLE=DET=DDR=DDL=DDR=2E=3Cbr=3E
  =3Cbr=3E
  =3Cbr=3E
  =3Ci=3E2002 KAMPANYA TURNEM=DDZE KATILAN SANAT=C7ILAR=3Cbr=3E
nbsp=3B=3C=2Fi=3E=3C=2Ffont=3E=3C=2Fp=3E
  =3C=2Ftd=3E
=3C=2Ftr=3E
  =3C=2Ftable=3E
  =3C=2Fcenter=3E
=3C=2Fdiv=3E
=3Cdiv align=3D=22center=22=3E
  =3Ccenter=3E
=3CTABLE WIDTH=3D606 BORDER=3D0 CELLPADDING=3D0 CELLSPACING=3D0 height=3D=22169=22 
style=3D=22border-collapse=3A collapse=22 bordercolor=3D=22#11=22 
bgcolor=3D=22#00=22=3E
=09=3CTR=3E
=09=09=3CTD ROWSPAN=3D2 width=3D=2279=22 height=3D=22109=22=3E
=09=09=09=3Cp align=3D=22center=22=3E
=09=09=09=3CIMG 
SRC=3D=22http=3A=2F=2Fturneorganizasyon=2E8m=2Ecom=2FBir-fidan-2002=5F044d=2Ejpg=22 
WIDTH=3D79 HEIGHT=3D109 alt=3D=22Co=FEkun SABAH=22=3E=3C=2FTD=3E
=09=09=3CTD ROWSPAN=3D2 width=3D=2290=22 height=3D=22109=22=3E
=09=09=09=3Cp align=3D=22center=22=3E
=09=09=09=3CIMG 
SRC=3D=22http=3A=2F=2Fturneorganizasyon=2E8m=2Ecom=2FBir-fidan-2002=5F055e=2Ejpg=22 
WIDTH=3D90 HEIGHT=3D109 alt=3D=22EGE=22=3E=3C=2FTD=3E
=09=09=3CTD ROWSPAN=3D2 width=3D=2286=22 height=3D=22109=22=3E
=09=09=09=3Cp align=3D=22center=22=3E
=09=09=09=3CIMG 
SRC=3D=22http=3A=2F=2Fturneorganizasyon=2E8m=2Ecom=2FBir-fidan-2002=5F066f=2Ejpg=22 
WIDTH=3D86 HEIGHT=3D109 alt=3D=22Hamiyet=22=3E=3C=2FTD=3E
=09=09=3CTD COLSPAN=3D2 width=3D=2291=22 height=3D=22108=22=3E
=09=09=09=3Cp align=3D=22center=22=3E
=09=09=09=3CIMG 
SRC=3D=22http=3A=2F=2Fturneorganizasyon=2E8m=2Ecom=2FBir-fidan-2002=5F077g=2Ejpg=22 
WIDTH=3D84 HEIGHT=3D108 alt=3D=22Ozan ORHON=22=3E=3C=2FTD=3E
=09=09=3CTD width=3D=2289=22 height=3D=22108=22=3E
=09=09=09=3Cp align=3D=22center=22=3E
=09=09=09=3CIMG 
SRC=3D=22http=3A=2F=2Fturneorganizasyon=2E8m=2Ecom=2FBir-fidan-2002=5F088h=2Ejpg=22 
WIDTH=3D89 HEIGHT=3D108 alt=3D=22LERZAN MUTLU=22=3E=3C=2FTD=3E
=09=09=3CTD width=3D=2278=22 height=3D=22108=22=3E
=09=09=09=3Cp align=3D=22center=22=3E
=09=09=09=3CIMG 
SRC=3D=22http=3A=2F=2Fturneorganizasyon=2E8m=2Ecom=2FBir-fidan-2002=5F099i=2Ejpg=22 
WIDTH=3D78 HEIGHT=3D108 alt=3D=22K=DDBAR=DDYE=22=3E=3C=2FTD=3E
=09=09=3CTD COLSPAN=3D2 ROWSPAN=3D2 width=3D=22103=22 height=3D=22109=22=3E
=09=09=09=3Cp align=3D=22center=22=3E
=09=09=09=3CIMG 
SRC=3D=22http=3A=2F=2Fturneorganizasyon=2E8m=2Ecom=2FBir-fidan-2002=5F1010j=2Ejpg=22 
WIDTH=3D98 HEIGHT=3D109 alt=3D=22ATiLLA ARCAN=22=3E=3C=2FTD=3E
=09=3C=2FTR=3E
=09=3CTR=3E
=09=09=3CTD width=3D=2283=22 height=3D=221=22=3E
=09=09=09=3Cp align=3D=22center=22=3E
=09=09=09=3CIMG 
SRC=3D=22http=3A=2F=2Fturneorganizasyon=2E8m=2Ecom=2FBir-fidan-2002=5F0711k=2Ejpg=22 
WIDTH=3D83 HEIGHT=3D1=3E=3C=2FTD=3E
=09=09=3CTD COLSPAN=3D2 ROWSPAN=3D2 width=3D=2297=22 height=3D=221=22=3E
=09=09=09=3Cp align=3D=22center=22=3E
=09=09=09=3CIMG 
SRC=3D=22http=3A=2F=2Fturneorganizasyon=2E8m=2Ecom=2FBir-fidan-2002=5F1212l=2Ejpg=22 
WIDTH=3D90 HEIGHT=3D116 alt=3D=22SEN=DDHA=22=3E=3C=2FTD=3E
=09=09=3CTD ROWSPAN=3D2 width=3D=2278=22 height=3D=221=22=3E
=09=09=09=3Cp align=3D=22center=22=3E
=09=09=09=3CIMG 
SRC=3D=22http=3A=2F=2Fturneorganizasyon=2E8m=2Ecom=2FBir-fidan-2002=5F1313m=2Ejpg=22 
WIDTH=3D78 HEIGHT=3D116 alt=3D=22AHMET SEL=C7UK =DDLKAN=22=3E=3C=2FTD=3E
=09=3C=2FTR=3E
=09=3CTR=3E
=09=09=3CTD width=3D=2279=22 height=3D=221=22=3E
=09=09=09=3Cp align=3D=22center=22=3E
=09=09=09=3CIMG 
SRC=3D=22http=3A=2F=2Fturneorganizasyon=2E8m=2Ecom=2FBir-fidan-2002=5F1514n=2Ejpg=22 
WIDTH=3D79 HEIGHT=3D113 alt=3D=22NAD=DDDE SULTAN=22=3E=3C=2FTD=3E
=09=09=3CTD width=3D=2290=22 height=3D=221=22=3E
=09=09=09=3Cp align=3D=22center=22=3E
=09=09=09=3CIMG 
SRC=3D=22http=3A=2F=2Fturneorganizasyon=2E8m=2Ecom=2FBir-fidan-2002=5F1615o=2Ejpg=22 
WIDTH=3D90 HEIGHT=3D113 alt=3D=22BORA GENCER=22=3E=3C=2FTD=3E
=09=09=3CTD width=3D=2286=22 height=3D=221=22=3E
=09=09=09=3Cp align=3D=22center=22=3E
=09=09=09=3CIMG 
SRC=3D=22http=3A=2F=2Fturneorganizasyon=2E8m=2Ecom=2FBir-fidan-2002=5F1716p=2Ejpg=22 
WIDTH=3D86 HEIGHT=3D114 alt=3D=22H=DDLAL =D6ZDEM=DDR=22=3E=3C=2FTD=3E
=09=09=3CTD width=3D=2283=22 height=3D=221=22=3E
=09=09=09=3Cp 

Checking Re: AW: AW: [leaf-user] Insane Dachstein problem

2002-08-11 Thread Jeff Newmiller

On Sun, 11 Aug 2002, Ray Olszewski wrote:

 At 07:36 PM 8/11/02 +0200, Harald Krause wrote:
 
 kazaa is only consuming about 10% of the bandwith.
 it maybe opens a lot of connections but this shouldnt bother DACHSTEIN
 either...
 
 I think I suggested earlier in this thread that it may be using up ALL the 
 available MASQ ports. If so, then that would bother Dachstein.
 
 The 2.2.x kernel can be checked for this with netstat -M. I can't get 
 that to work with 2.4.x, though ... I get netstat: no support for 
 `ip_masquerade' on this system, which is pretty silly on a NAT'ing router. 
 Does anyone know the right command for checking iptables-NAT'd connections?

Personally, I think netstat -M ought to work, but it doesn't appear to.

I have made do so far with cat /proc/net/ip_conntrack.

---
Jeff NewmillerThe .   .  Go Live...
DCN:[EMAIL PROTECTED]Basics: ##.#.   ##.#.  Live Go...
  Live:   OO#.. Dead: OO#..  Playing
Research Engineer (Solar/BatteriesO.O#.   #.O#.  with
/Software/Embedded Controllers)   .OO#.   .OO#.  rocks...2k
---



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



Re: [leaf-user] TURNE ORGANiZASYONLARI iCiN KAMPANYA.. 11.08.2002 23:15:35

2002-08-11 Thread guitarlynn

Hey, is sprint allowing them to spoof the leaf domain-name???


 Received: from cpe-66-87-139-137.co.sprintbbd.net 
 ([66.87.139.137]:3182 helo=www.mynet.com)
   by panoramix.vasoftware.com with smtp (Exim 4.05-VA-mm1 #1 (Debian))
   id 17dz6C-0007cg-00
   for [EMAIL PROTECTED]; Sun, 11 Aug 2002 13:14:06 -0700


-- 

~Lynn Avants
aka Guitarlynn

guitarlynn at users.sourceforge.net
http://leaf.sourceforge.net

If linux isn't the answer, you've probably got the wrong question!


---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html



RE: [leaf-user] recent spam

2002-08-11 Thread Jack Coates

Worse than that... it's Sprint Wireless
(http://www.sprintbroadband.com/). I have a machine on their network,
and man does it suck. I signed the longer contract to get the gear for
free because DSL and cable weren't available at that time. Now that DSL
is finally available, I can't wait for Sprint to finally give up the
ghost. Short outages are very frequent (two per day), loss is bad, and
latency is rotten.

[jack@felix jack]$ ping -c 25 -q bob
PING bob.monkeynoodle.org (66.1.155.123) from 198.144.201.9 : 56(84)
bytes of data.

--- bob.monkeynoodle.org ping statistics ---
25 packets transmitted, 21 packets received, 16% packet loss
round-trip min/avg/max/mdev = 60.125/200.918/535.759/127.716 ms

Their network is also Nimda hell, with a number of hosts still infected.

[11/Aug/2002:17:20:08 +0700] request from 66.1.13.76 GET
/scripts/..%252f../winnt/system32/cmd.exe?/c+dir HTTP/1.0
(/usr/local/boa/www/scripts/..%2f../winnt/system32/cmd.exe): document
open: No such file or directory

Sigh.

On Sun, 2002-08-11 at 16:43, Steven Peck wrote:
 Sprintbbd is Sprints DSL network.
 Received: from cpe-66-87-139-137.co.sprintbbd.net ([66.87.139.137]:3182
 helo=www.mynet.com)
 
 The IP address is on several Open Relay lists
 http://www.dnsstuff.com/tools/ip4r.ch?ip=66.87.139.137
 This is either a misconfigured mail server of some spammers mail server.  It
 is unlikely that it is an actual spam server in and of itself.
 
 The joy of Open Relay.
 
 Leaf-project.org currently has no MX record.
 
 -sp
 
 
  -Original Message-
  From: guitarlynn [mailto:[EMAIL PROTECTED]] 
  Sent: Sunday, August 11, 2002 2:54 PM
  To: leaf-user
  Subject: Re: [leaf-user] TURNE ORGANiZASYONLARI iCiN 
  KAMPANYA.. 11.08.2002 23:15:35
  
  
  Hey, is sprint allowing them to spoof the leaf domain-name???
  
  
   Received: from cpe-66-87-139-137.co.sprintbbd.net
   ([66.87.139.137]:3182 helo=www.mynet.com)
 by panoramix.vasoftware.com with smtp (Exim 4.05-VA-mm1 
  #1 (Debian))
 id 17dz6C-0007cg-00
 for [EMAIL PROTECTED]; Sun, 11 Aug 2002 
  13:14:06 -0700
  
  
  -- 
  
  ~Lynn Avants
  aka Guitarlynn
  
  guitarlynn at users.sourceforge.net
  http://leaf.sourceforge.net
  
  If linux isn't the answer, you've probably got the wrong question!
  
  
  ---
  This sf.net email is sponsored by:ThinkGeek
  Welcome to geek heaven.
  http://thinkgeek.com/sf
  --
  --
  leaf-user mailing list: [EMAIL PROTECTED]
  https://lists.sourceforge.net/lists/listinfo/leaf-user
  SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html
  
 
 
 ---
 This sf.net email is sponsored by:ThinkGeek
 Welcome to geek heaven.
 http://thinkgeek.com/sf
 
 leaf-user mailing list: [EMAIL PROTECTED]
 https://lists.sourceforge.net/lists/listinfo/leaf-user
 SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html
 
-- 
Jack Coates
Monkeynoodle: A Scientific Venture...



---
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf

leaf-user mailing list: [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user
SR FAQ: http://leaf-project.org/pub/doc/docmanager/docid_1891.html