Re: [Leaf-user] CIPE/VPN for Windows Networking

2001-10-25 Thread Etienne Charlier
Hi, I managed to dig a crypted tunnel between 2 LEAF boxes . ( through a pppoe adsl connexion ) each box is giving internet access to a small lan ( a few windows machines). As far of tcp/ip is concerned, everything is in place ( routing, reconnexion if one one gets another dynamic external addres

[Leaf-user] RE: Dachstein-CD-rc2 available

2001-10-25 Thread Greg Morgan
Binh Do and Michael D. Schleif wrote: > > Binh Do wrote: > > > > Hi Charles, > > > > I would like to try the CD version so I burnt the ISO file (rc1 I think) but > > I cannot go to the login prompt. It stops in the middle asking something > > about "Run Level". I tried on two machines and got sa

[Leaf-user] syslinux VGA= syntax?

2001-10-25 Thread Matthew Schalit
Would someone post the syntax for the syslinux.cfg command VGA=? Thanks. I've tried VGA=auto<--- Works, sets default screen size, 80x25. VGA=ask <--- Works, asks you for the mode you want. VGA=1 <--- Broken: trying to set mode 1 = 0F01 = 80x50 VGA=0F01<--- Broken:

Re: [Leaf-user] Dachstein-CD-rc3 available: bash.lrp error

2001-10-25 Thread Michael D. Schleif
"Michael D. Schleif" wrote: > > Charles Steinkuehler wrote: > > > > The third release-candidate version of Dachstein-CD is now available. This > > version feels like it's getting pretty close to done. Lots of minor > > chagnges, none of them show-stoppers, just getting everything working the >

Re: [Leaf-user] Dachstein-CD-rc3 available: bash.lrp error

2001-10-25 Thread Michael D. Schleif
Charles Steinkuehler wrote: > > The third release-candidate version of Dachstein-CD is now available. This > version feels like it's getting pretty close to done. Lots of minor > chagnges, none of them show-stoppers, just getting everything working the > way it should. This version is the fir

Re: [Leaf-user] CIPE/VPN for Windows Networking

2001-10-25 Thread Greg Morgan
"DPG" wrote: > > Can anyone point me to resources for this? Is this feasible? > Yes. I have collected three books that I found informative: O'Reilly's "Virtual Private Networks" McGraw Hill's "Unix Secure Shell" O'Reilly's "Building Internet Firewalls" lrp.c0wz.com has links to CIPE. You may

Re: [Leaf-user] DNS flood?

2001-10-25 Thread Brad Fritz
On Thu, 25 Oct 2001 17:49:35 PDT Robert wrote: > This afternoon I received 292 log items in 6 seconds. There was a lot of discussion of these floods on the linux-router list in late April and May of this year. IIRC, they are response time measurement probes that are part of a global load-balan

[Leaf-user] DNS flood?

2001-10-25 Thread Robert Williams
This afternoon I received 292 log items in 6 seconds. I know that port 53 is related to DNS but beyond that I am fairly naive. The log analyzer at http://www.echogent.com/cgi-bin/fwlog.pl did not have any thin specific to say about these It is interesting to me that all 18 of the ips that sent

[Leaf-user] Squid for Dachstein/E2B?

2001-10-25 Thread Doug Sampson
Is there a squid.lrp for the Dachstein release or the Eigerstein2Beta release? I see there is one for Oxygen but using Oxygen is way over my head as I'm a Linux newbie. I have 30 users in this company and we're using a Pentium/90 with 32 MB of RAM. Will this be adequate to support this number o

[Leaf-user] Dachstein-CD-rc3 available

2001-10-25 Thread Charles Steinkuehler
The third release-candidate version of Dachstein-CD is now available. This version feels like it's getting pretty close to done. Lots of minor chagnges, none of them show-stoppers, just getting everything working the way it should. This version is the first release that has actually gotten *SMA

RE: [Leaf-user] snmp module for eigerstein

2001-10-25 Thread Madhu Kangara
Thanks for the link I have a basic question. Even if I install snmp daemon (snmpd.lrp) and is running on the LRP firewall, Should I change the settings SNMP_BLOCK =YES to NO I thought its use is to Block all SNMP traffic going through the firewall. If I am only interested in a snmp daemon runn

[Leaf-user] CIPE/VPN for Windows Networking

2001-10-25 Thread DPG
Can anyone point me to resources for this? Is this feasible? I am trying to develop a secure VPN between two small Windows-based LANs, such that for all intents and purposes, the users can't tell the difference between resources that are truly local vs. those that are on the remote network. The

Re: [Leaf-user] Script to send an email

2001-10-25 Thread Charles Steinkuehler
> My email servers answers with "Hello" but then answers with 2 : > > "500 Command not recognized." > "500 Command not recognized." > > How can we write or send a CRLF after each command ? Use the -e option with echo, and the \r (carriage return) escape character: echo -e "mycommand\r" I still S

Re: [Leaf-user] Remote access VPN -- from anywhere ???

2001-10-25 Thread Charles Steinkuehler
> A client of ours wants to take the plunge and VPN their way around their > corporate intranetwork from any old place on earth. > > OK, so they want remote access VPN and their poor DSL is going to really > show its limited bandwidth ;< > > Is IPSEC and FreeS/WAN the way to go? It's one way to g

RE: [Leaf-user] Script to send an email

2001-10-25 Thread Fabien . CALVEZ
Title: RE: [Leaf-user] Script to send an email Try to add a /f at the end of each line : echo "ehlo/f" > /tmp/tmplogs it could work. > -Message d'origine- > De : Blaise Lab [mailto:[EMAIL PROTECTED]] > Envoyé : jeudi 25 octobre 2001 09:22 > À : '[EMAIL PROTECTED]' > Objet : [Leaf

Re: [Leaf-user] Script to send an email

2001-10-25 Thread Patrick Benson
Blaise Lab wrote: > > I tried the following script from Patrick Benson <[EMAIL PROTECTED]> : > > #!/bin/sh > echo "ehlo" > /tmp/tmplogs Skip the line above , you don't need it if you're not saying "helo"... > echo "mail from: [EMAIL PROTECTED]" >> /tmp/tmplogs > echo "rcpt to: [EMAIL PROTECTED

Re: [Leaf-user] Script to send an email

2001-10-25 Thread Mark Plowman
Luis, > From: "Luis.F.Correia" <[EMAIL PROTECTED]> > Date: Thu, 25 Oct 2001 10:06:44 +0100 > > You could try to send the commands one by one to figure out which ones fail. > > Something like: > > echo "ehlo" | mnc host 25 > echo "mail from: [EMAIL PROTECTED]" | mnc host 25 > echo "rcpt to: [EM

RE: [Leaf-user] Script to send an email

2001-10-25 Thread Luis.F.Correia
You could try to send the commands one by one to figure out which ones fail. Something like: echo "ehlo" | mnc host 25 echo "mail from: [EMAIL PROTECTED]" | mnc host 25 echo "rcpt to: [EMAIL PROTECTED]" | mnc host 25 echo "data" | mnc host 25 cat /var/log/messages | mnc host 25 echo "." | mnc ho