Re: [Boston.pm] OT - cannot SSH into Redhat box

2004-04-20 Thread John Abreau
On Tue, 2004-04-20 at 21:32, Ranga Nathan wrote: I installed Redhat server (Enterprise) on a box but I can not SSH into the box. The sshd is running and I can ssh from within the box but not from outside. /etc/hosts.allow and /etc/hosts.deny are both empty. There is no other firewall I can

Re: [Boston.pm] OT - cannot SSH into Redhat box

2004-04-20 Thread Andrew M. Langmead
On Apr 20, 2004, at 9:32 PM, Ranga Nathan wrote: I installed Redhat server (Enterprise) on a box but I can not SSH into the box. I'd start with setting LogLevel DEBUG in /etc/sshd_config, restarting sshd, and then running the ssh client on the other machine with the -v flags. the ssh

Re: [Boston.pm] OT - cannot SSH into Redhat box

2004-04-20 Thread Kenneth A Graves
On Tue, 2004-04-20 at 21:32, Ranga Nathan wrote: I installed Redhat server (Enterprise) on a box but I can not SSH into the box. The sshd is running and I can ssh from within the box but not from outside. /etc/hosts.allow and /etc/hosts.deny are both empty. There is no other firewall I can

[Boston.pm] Non-matching regexp doesn't set $1 to undef. Should it?

2004-04-20 Thread Ron Newman
If I try to match a regular expression that contains parentheses, and the match fails, shouldn't $1 be set to undef rather than keeping whatever value it had before? The following program demonstrates what looks to me like very strange behavior. Adding local $1 = undef; in the position

Re: [Boston.pm] Non-matching regexp doesn't set $1 to undef. Should it?

2004-04-20 Thread Linda L. Julien
From: Ron Newman [EMAIL PROTECTED] Date: Tue, 20 Apr 2004 23:06:12 -0400 If I try to match a regular expression that contains parentheses, and the match fails, shouldn't $1 be set to undef rather than keeping whatever value it had before? Nope. It will still have its old