Apache question

2003-11-12 Thread Eduard Ballester
Hi We have a lot of strange log entry in our NetScreen FireWall: Nov 12 11:42:51 172.20.125.1 NSNAME: NetScreen device_id=NSNAME [MYISP]system-notification-00257(traffic): start_time="2003-11-12 11:42:10" duration=0 policy_id=51 service=tcp/port:2

Re: Apache question

2003-11-12 Thread Lukas Ruf
> Eduard Ballester <[EMAIL PROTECTED]> [2003-11-12 13:53]: > > Hi > > We have a lot of strange log entry in our NetScreen FireWall: > Nov 12 11:42:51 > 172.20.125.1 NSNAME: NetScreen device_id=NSNAME > [MYISP]system-notification-00257(traffic): start

Re: Apache question

2003-11-12 Thread Lars Ellenberg
/ 2003-11-12 13:48:40 +0100 \ Eduard Ballester: > Hi > > We have a lot of strange log entry in our NetScreen FireWall: > > Nov 12 11:42:51 172.20.125.1 NSNAME: NetScreen device_id=NSNAME > [MYISP]system-notification-00257(traffic): start_time="2003

Re: Apache question

2003-11-12 Thread François TOURDE
Le 12368ième jour après Epoch, Eduard Ballester écrivait: > Hi Hi. > Do you know why Apache has this behavior? Why Apache initiates the > connections with src_port 80 and random dst_port? Where can you see apache is initiating the connection? It seems that this is only a reply from apache to c

Re: Apache question

2003-11-12 Thread Jay Kline
On Wed, Nov 12, 2003 at 01:48:40PM +0100, Eduard Ballester ([EMAIL PROTECTED]) wrote: > Hi > > * 62.XX.YYY.ZZZ is a server with Apache1.3.x that it only serves static > pages. > * All the NICs have Public IP Address. > > > Internet > | > | > NetScreen > | > | > Alteon(load balance) >

authentication in ssh

2003-11-12 Thread Adam ENDRODI
How can I tell sshd to only accept a particular authentication method for some users, while letting others to use any methods they wish? One of our servers has two kinds of users: a group of low-privileged ones and a few power users. The former class may choose to log in by providing his passwor

Re: authentication in ssh

2003-11-12 Thread David Ehle
I don't know of any way to do it directly from sshd_config, but you can tell SSH to use PAM for auths. PAM might have a way to do that but I've never explored it deeply enough to tell you for sure. David. -- David Ehle Computing Systems Manager CAPP CSRRI rm 077 LS Bld. IIT Main Campus Chicago

Re: authentication in ssh

2003-11-12 Thread Anne Henmi
You're right. OpenSSH and SSH.com's Unix servers do not support this. You would have to do this in PAM. There's a lot information on various PAM modules and links here: http://www.kernel.org/pub/linux/libs/pam/modules.html -AnneYou're right. OpenSSH and SSH.com's Unix servers do not support th

apache+ssl+tomcat+jk+php

2003-11-12 Thread ilie.dumitru
hi I have a server apache2+ssl+tomcat+jk who works fine. 2 days I tried to add a php module but i am not able to do it. Why ??? (it works without tomcat , anyway) ! Can anybody help ? regards -- To UNSUBSCRIBE, email to [EMAIL PROTECTED] with a subject of "unsubscribe". Trouble? Contact [EMAI

Re: authentication in ssh

2003-11-12 Thread David Ehle
Hmm, just occured to me that you could do the following, though I think it would be considered a kludge. Run 2 sshd daemons on different ports. On the standard port 22 run one that needs password auth. Start a second custom sshd configured to use port xxx and use /etc/ssh/sshd_config.powerusers

Re: apache+ssl+tomcat+jk+php

2003-11-12 Thread Phillip Hofmeister
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 This topic might be best covered on the debian-apache list. On Wed, 12 Nov 2003 at 11:26:23AM -0500, ilie.dumitru wrote: > hi > > I have a server apache2+ssl+tomcat+jk who works fine. > 2 days I tried to add a php module but i am not able to do it. W

Apache question

2003-11-12 Thread Eduard Ballester
Hi We have a lot of strange log entry in our NetScreen FireWall: Nov 12 11:42:51 172.20.125.1 NSNAME: NetScreen device_id=NSNAME [MYISP]system-notification-00257(traffic): start_time="2003-11-12 11:42:10" duration=0 policy_id=51 service=tcp/port:

Re: Apache question

2003-11-12 Thread Lukas Ruf
> Eduard Ballester <[EMAIL PROTECTED]> [2003-11-12 13:53]: > > Hi > > We have a lot of strange log entry in our NetScreen FireWall: > Nov 12 11:42:51 > 172.20.125.1 NSNAME: NetScreen device_id=NSNAME > [MYISP]system-notification-00257(traffic): start

Re: Apache question

2003-11-12 Thread Lars Ellenberg
/ 2003-11-12 13:48:40 +0100 \ Eduard Ballester: > Hi > > We have a lot of strange log entry in our NetScreen FireWall: > > Nov 12 11:42:51 172.20.125.1 NSNAME: NetScreen device_id=NSNAME > [MYISP]system-notification-00257(traffic): start_time="2003

Re: Apache question

2003-11-12 Thread François TOURDE
Le 12368ième jour après Epoch, Eduard Ballester écrivait: > Hi Hi. > Do you know why Apache has this behavior? Why Apache initiates the > connections with src_port 80 and random dst_port? Where can you see apache is initiating the connection? It seems that this is only a reply from apache to c

Re: Apache question

2003-11-12 Thread Jay Kline
On Wed, Nov 12, 2003 at 01:48:40PM +0100, Eduard Ballester ([EMAIL PROTECTED]) wrote: > Hi > > * 62.XX.YYY.ZZZ is a server with Apache1.3.x that it only serves static > pages. > * All the NICs have Public IP Address. > > > Internet > | > | > NetScreen > | > | > Alteon(load balance) >

authentication in ssh

2003-11-12 Thread Adam ENDRODI
How can I tell sshd to only accept a particular authentication method for some users, while letting others to use any methods they wish? One of our servers has two kinds of users: a group of low-privileged ones and a few power users. The former class may choose to log in by providing his passwor

Re: authentication in ssh

2003-11-12 Thread David Ehle
I don't know of any way to do it directly from sshd_config, but you can tell SSH to use PAM for auths. PAM might have a way to do that but I've never explored it deeply enough to tell you for sure. David. -- David Ehle Computing Systems Manager CAPP CSRRI rm 077 LS Bld. IIT Main Campus Chicago

Re: authentication in ssh

2003-11-12 Thread Anne Henmi
You're right. OpenSSH and SSH.com's Unix servers do not support this. You would have to do this in PAM. There's a lot information on various PAM modules and links here: http://www.kernel.org/pub/linux/libs/pam/modules.html -AnneYou're right. OpenSSH and SSH.com's Unix servers do not support th

Re: authentication in ssh

2003-11-12 Thread David Ehle
Hmm, just occured to me that you could do the following, though I think it would be considered a kludge. Run 2 sshd daemons on different ports. On the standard port 22 run one that needs password auth. Start a second custom sshd configured to use port xxx and use /etc/ssh/sshd_config.powerusers

apache+ssl+tomcat+jk+php

2003-11-12 Thread ilie.dumitru
hi I have a server apache2+ssl+tomcat+jk who works fine. 2 days I tried to add a php module but i am not able to do it. Why ??? (it works without tomcat , anyway) ! Can anybody help ? regards

Re: apache+ssl+tomcat+jk+php

2003-11-12 Thread Phillip Hofmeister
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 This topic might be best covered on the debian-apache list. On Wed, 12 Nov 2003 at 11:26:23AM -0500, ilie.dumitru wrote: > hi > > I have a server apache2+ssl+tomcat+jk who works fine. > 2 days I tried to add a php module but i am not able to do it. W