Re: [Leaf-user] USB firewall

2001-11-24 Thread Jeff Newmiller

On Fri, 23 Nov 2001, Glenn A. Thompson wrote:

> Hey:
> My Bro-in-law just went up on 2-way dish.  His connection to the
> internet is handled via USB.  Any suggestions on firewalling?  He runs
> some software package on his WinDoze box for now.  Can LRP be configured
> with two USB connections instead of two NICs?

Not that I am aware of.

However, if this is Starband, at least one of their USB interfaces was
plugged internally into an Ethernet port, and someone on Slashdot showed
how it could be dismantled and the USB adapter bypassed to make a pure
ethernet connection.

---
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
---


___
Leaf-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user



RE: [Leaf-user] The script to send log files

2001-11-24 Thread Robert Williams

Hi Kevin,
Looking at the errors that you are getting it looks like a DNS 
problem to me. Try and ping your smtp mail server by name from your 
firewall
ping mail.atl.bellsouth.net
I tried to ping mail.atl.bellsouth.net and mail.alt.bellsouth.net 
from my computer and got a "couldn't resolve address" error. Make 
sure the spelling is correct in lrp.conf.  If the ping by name 
doesn't work substitute the ip address in the lrp_MAIL_SERVER 
variable in lrp.conf if you know it.
Good Luck,
Robert Williams


>I get this error message when issuing the mail command, and it takes ctrl-Z
>to stop.
>
>amberton: -root-
># mail -s "Logs" [EMAIL PROTECTED] hostname: Unknown host
>error: Unknown response.
>%1 Stopped
>
>When I tried the -d option I get the following error:
>
>amberton: -root-
># mail -s "Logs" -d bellsouth.net -h mail.atl.bellsouth.net
>[EMAIL PROTECTED] Illegal option -d
>hostname: Unknown host
>error: Unknown response.
>%2 Stopped
>
>Here is the output of mail:
>
>amberton: -root-
>/usr/sbin # mail
>Usage: /usr/sbin/mail [-s subject] [-c cc[,...]] [-b bcc[,...]] to[,...]
>
>Again, I do not have a file called POSIXness.conf in the /etc folder. This
>is all files listed using Putty:
>
>mtabnsswitch.conf   ae.rc   ipfilter.conf
>bootptabchecksecurity.conf  cron.daily  cron.monthly
>cron.weekly crontab default diphosts
>exports fstab   ftpusersiproute2
>group   gshadow host.conf   hostname
>hosts   hosts.allow hosts.deny  hosts.equiv
>inetd.conf  init.d  inittab ioctl.save
>issue   issue.net   multicron-p login.access
>localtime   motdnetworkspasswd
>pcnfsd.conf profile protocols   rc.boot
>rc0.d   rc1.d   rc2.d   rc3.d
>rc4.d   rc5.d   rc6.d   resolv.conf
>rpc securetty   servicesshadow
>shells  syslog.conf terminfowtmplock
>group-  gshadow-passwd- shadow-
>rcS.d   cron.d  network.conftzvalue
>lrp.confadjtime resolv.conf-bak psdevtab
>dns_floods  modules chatscripts ppp
>dhcpd.conf  dnscacheportsentry.conf psentryd.conf
>sh-httpd.conf   sh-httpd.mime   weblet.conf ssh
>junkbuster  oidentd.users
>
>I do have a mail file in /usr/sbin/mail, that starts out with:
>
>#!/bin/ash
>#
>#POSIXness v0.20 19990529
>#GPL2 -- Dave 'Kill a Cop' Cinege <[EMAIL PROTECTED]>
>[SNIP]
>mail () {   #usr/sbin
>
>data=$1
>fout="/tmp/smtpout.$$"
>fin="/tmp/smtpin.$$"
>fdata="/tmp/smtpdata.$$"
>fbody="/tmp/mailbody.$$"
>
>usage () { echo "Usage: $(basename) [-s subject] [-c cc[,...]] [-b
>bcc[,...]] to
>[,...]"; }
>
>[ -e $fin ]   && eecho "Bad in file"   && exit 1
>[ -e $fout ]  && eecho "Bad out file"  && exit 1
>[ -e $fdata ] && eecho "Bad temp file" && exit 1
>[ -e $fbody ] && eecho "Bad temp file" && exit 1
>
>mknod $fout p; mknod $fin p; : > $fdata; : > $fbody
>chmod 600 $fout $fin $fdata $fbody
>
> while getopts b:c:s: opt ; do
> case "$opt" in
> b) bcc="$OPTARG" ;;
> c) cc="$OPTARG"  ;;
>   esac
> done
>
> shift $(($OPTIND - 1))
>
> [ $# -lt 1 ] && usage && exit 1
>
> while read line; do
> echo $line
> done >$fbody
>
>to="$@"
>
>IFS=","
>
>allto="$to,$cc,$bcc"
>envelopes="$(   for str in $allto; do
> echo $str
> done | sed 's/^.*[< ]\(.*\)$/\1/;s/>$//' )"
>IFS=$OIFS
>
>fqdn="$(hostname -f)"
>
> {   echo "RSET"
> echo "HELO $fqdn"
> echo "MAIL FROM:<$USER@$fqdn>"
>
> for rcpt in $envelopes; do
> echo "RCPT TO:<$rcpt>"
> done
>
> echo "DATA"
>
> echo "From: $USER@$fqdn"
> echo "Subject: $subject"
> [ "$to" ] && echo "To: $to"
> [ "$cc" ] && echo "cc: $cc"
> [ ! "$to" ] && echo "Bcc: "
> echo ''
>
> cat $fbody
>
> echo '';echo '.'
> echo 'QUIT'
>
> } >$fdata
>
> smtp-out $fin $fdata > $fout &
>
> ( mnc ${lrp_MAIL_SERVER:-mail} $(getservbyname smtp) <$fout ) |
> while read nrep vrep; do
> echo "$nrep" >$fin
> done
>
> qt rm -f $fout; qt rm -f $fin; qt rm -f $fdata; qt rm -f $fbody
>
>}
>
>[SNIP]
>
>The mail code section was modified as Charles states on his web site.
>
>When I issue getservbyname smtp:
>
>amberton: -

RE: [Leaf-user] The script to send log files

2001-11-24 Thread Kevin

I get this when pinging from the firewall:

amberton: -root-
# ping mail.atl.bellsouth.net
PING mail.bellsouth.net (205.152.58.136): 56 data bytes
64 bytes from 205.152.58.136: icmp_seq=0 ttl=250 time=21.5 ms
64 bytes from 205.152.58.136: icmp_seq=1 ttl=250 time=22.6 ms
64 bytes from 205.152.58.136: icmp_seq=2 ttl=250 time=21.6 ms
64 bytes from 205.152.58.136: icmp_seq=3 ttl=250 time=21.8 ms
64 bytes from 205.152.58.136: icmp_seq=4 ttl=250 time=20.7 ms

I changed the DNS name to the listed IP in lrp.conf and will see what
happens in the morning.

I will let everyone know the outcome.

-Original Message-
From: Robert Williams [mailto:[EMAIL PROTECTED]]
Sent: Saturday, November 24, 2001 9:39 PM
To: [EMAIL PROTECTED]
Subject: RE: [Leaf-user] The script to send log files


Hi Kevin,
Looking at the errors that you are getting it looks like a DNS
problem to me. Try and ping your smtp mail server by name from your
firewall
ping mail.atl.bellsouth.net
I tried to ping mail.atl.bellsouth.net and mail.alt.bellsouth.net
from my computer and got a "couldn't resolve address" error. Make
sure the spelling is correct in lrp.conf.  If the ping by name
doesn't work substitute the ip address in the lrp_MAIL_SERVER
variable in lrp.conf if you know it.
Good Luck,
Robert Williams



___
Leaf-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user



Re: [Leaf-user] Geocrawler search not working?

2001-11-24 Thread John Desmond

Peter-
I also reported this several months ago. It looked
then like no message past about 11/15/2000 was
indexed. It removes a lot of the utility of having a
list if past info can't be searched. Like in
"Memento", we have no memory! Fortunately, we have
Charles.  ;-D
-John

--- Peter Nosko <[EMAIL PROTECTED]> wrote:
> pn] I can't get a single match on words I'm picking
> out of recent messages, like "dachstein".  I'm
> entering single words (without quotes) in the search
> field.  Would someone confirm this problem please?
> 
> =
> 
> -
> Peter Nosko ([EMAIL PROTECTED])
> This is a good place for a tagline.
> 
> __
> Do You Yahoo!?
> Yahoo! GeoCities - quick and easy web site hosting,
> just $8.95/month.
> http://geocities.yahoo.com/ps/info1
> 
> ___
> Leaf-user mailing list
> [EMAIL PROTECTED]
>
https://lists.sourceforge.net/lists/listinfo/leaf-user


__
Do You Yahoo!?
Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month.
http://geocities.yahoo.com/ps/info1

___
Leaf-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user



Re: [Leaf-user] Geocrawler search not working?

2001-11-24 Thread Peter Nosko

--- Matt Schalit <[EMAIL PROTECTED]> wrote:
> Peter, I don't know about you, but I've been getting nowhere
> with geocrawler searches.  Looking for an old post of mine
> with the words Sonic Man Pages in the subject, it couldn't
> find any of the posts searching for Sonic or sonic.  It's been 
> that way for months.

pn] Can we/how do we get this fixed?  I tried Geocrawler for the LRP (linux-router) 
list, and it
works just fine.

=

-
Peter Nosko ([EMAIL PROTECTED])
This is a good place for a tagline.

__
Do You Yahoo!?
Yahoo! GeoCities - quick and easy web site hosting, just $8.95/month.
http://geocities.yahoo.com/ps/info1

___
Leaf-user mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user



RE: [Leaf-user] The script to send log files

2001-11-24 Thread Brock Nanson

After watching this thread, I thought I'd give it a try too.

After having grief with the -d command (not known) I thought I'd go super
simple, as I have a mail server on my LAN.  So I've used the private IP
address for the mail server , i.e.:

lrp_MAIL_SERVER=192.168.1.252

lrp_MAIL_ADMIN="[EMAIL PROTECTED]"

After rebooting the system, I tried the 'mail -s "logs" [EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/leaf-user