Re: CPU Utiliaztion on a ethernet bridge

2003-11-20 Thread Jeff S Wheeler
On Thu, 2003-11-20 at 22:34, Donovan Baarda wrote:
> Do you really mean poll-based, or DMA based? Traditionally polling is
> evil CPU wise... but there could be reasons why polling is better if
> that is the only thing you are doing. Possibly PC DMA is probably so old
> and crappy that it's not worth using?

It is my understanding that the modern e1000 driver polls the NIC to
find out when new frames are available. You may be correct that it just
looks in the DMA rx ring, though; I am a bit out of my league at this
point. In either case, the PRO/100 and PRO/1000 cards, using the Intel
e100/e1000 drivers, are superb. I suspect the 3c59x driver is not quite
so modern, and the kernel is preempted by NIC interrupts frequently when
new frames come in under your existing bridge configuration.

-- 
Jeff S Wheeler <[EMAIL PROTECTED]>
Five Elements, Inc.




Re: CPU Utiliaztion on a ethernet bridge

2003-11-20 Thread Jeff S Wheeler
On Thu, 2003-11-20 at 22:34, Donovan Baarda wrote:
> Do you really mean poll-based, or DMA based? Traditionally polling is
> evil CPU wise... but there could be reasons why polling is better if
> that is the only thing you are doing. Possibly PC DMA is probably so old
> and crappy that it's not worth using?

It is my understanding that the modern e1000 driver polls the NIC to
find out when new frames are available. You may be correct that it just
looks in the DMA rx ring, though; I am a bit out of my league at this
point. In either case, the PRO/100 and PRO/1000 cards, using the Intel
e100/e1000 drivers, are superb. I suspect the 3c59x driver is not quite
so modern, and the kernel is preempted by NIC interrupts frequently when
new frames come in under your existing bridge configuration.

-- 
Jeff S Wheeler <[EMAIL PROTECTED]>
Five Elements, Inc.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: CPU Utiliaztion on a ethernet bridge

2003-11-20 Thread Donovan Baarda
On Thu, 2003-11-20 at 16:46, Jeff S Wheeler wrote:
> On Wed, 2003-11-19 at 21:42, Simon Allard wrote:
> > I have replaced NIC's as I thought it might of been the drives also. I
> > moved to the eepro100 cards. Same problem.
> 
> You should be using NICs with a poll-based driver, as opposed to an
> interrupt-based driver. This will preempt the kernel less often, and
> allow it to service the NIC more efficiently.

Do you really mean poll-based, or DMA based? Traditionally polling is
evil CPU wise... but there could be reasons why polling is better if
that is the only thing you are doing. Possibly PC DMA is probably so old
and crappy that it's not worth using?

-- 
Donovan Baarda <[EMAIL PROTECTED]>
http://minkirri.apana.org.au/~abo/




Re: CPU Utiliaztion on a ethernet bridge

2003-11-20 Thread Donovan Baarda
On Thu, 2003-11-20 at 16:46, Jeff S Wheeler wrote:
> On Wed, 2003-11-19 at 21:42, Simon Allard wrote:
> > I have replaced NIC's as I thought it might of been the drives also. I
> > moved to the eepro100 cards. Same problem.
> 
> You should be using NICs with a poll-based driver, as opposed to an
> interrupt-based driver. This will preempt the kernel less often, and
> allow it to service the NIC more efficiently.

Do you really mean poll-based, or DMA based? Traditionally polling is
evil CPU wise... but there could be reasons why polling is better if
that is the only thing you are doing. Possibly PC DMA is probably so old
and crappy that it's not worth using?

-- 
Donovan Baarda <[EMAIL PROTECTED]>
http://minkirri.apana.org.au/~abo/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Jesus Help Me !

2003-11-20 Thread Patricia Leahy
Ivan,
I just saw your e-mail on the web.  I am praying that Jesus will help you.
I will put your name on my prayer list.  Please let me know how you are
doing.  thank you, Patty Leahy




Re: Why is Linux sending icmp redirects...

2003-11-20 Thread Donovan Baarda
On Thu, 2003-11-20 at 22:06, Christian Hammers wrote:
> Hello
> 
> It seems that my linux router is sending icmp redirect messages to a
> host telling him that it should use a gateway which is not on the same
> ip subnet. According to http://www.faqs.org/rfcs/rfc792.html this is
> not valid and so I'm wondering.  
> 
> The problem occured when two hosts (.66.54 and .77.18) from two different
> ip networks were connected on the same vlan on my linux router (.66.53).
> During this time both were reachable from the internet but not from eachother.
> One of the hosts received the following in its logfile:

I believe Linux will by default send ICMP redirects to hosts that are
forwarding via the same interface (ethernet only?). The theory is, if
the router got asked to forward a packet that came in and goes out the
same interface, there must be more direct route that can bypass this
router.

I think there is a /proc flag you can toggle to change this behaviour.

One complication you can hit with this behaviour is with state-full
firewalls; because the first packet does go via the firewall, but
subsequent packets use the ICMP redirected route, the connection
tracking gets confused. Even worse, if you have some hosts that ignore
the ICMP redirect (which some do by default), then you can have packets
in one direction bypassing the firewall, but not the replies. In this
case the firewall doesn't see the connection as established so doesn't
forward the reply packets. I know shorewall has an option to allow
"new-not-syn" packets through so that these replies do get forwarded.

-- 
Donovan Baarda <[EMAIL PROTECTED]>
http://minkirri.apana.org.au/~abo/




Re: Jesus Help Me !

2003-11-20 Thread Patricia Leahy
Ivan,
I just saw your e-mail on the web.  I am praying that Jesus will help you.
I will put your name on my prayer list.  Please let me know how you are
doing.  thank you, Patty Leahy


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



unsubscribe

2003-11-20 Thread afcio





Re: Why is Linux sending icmp redirects...

2003-11-20 Thread Donovan Baarda
On Thu, 2003-11-20 at 22:06, Christian Hammers wrote:
> Hello
> 
> It seems that my linux router is sending icmp redirect messages to a
> host telling him that it should use a gateway which is not on the same
> ip subnet. According to http://www.faqs.org/rfcs/rfc792.html this is
> not valid and so I'm wondering.  
> 
> The problem occured when two hosts (.66.54 and .77.18) from two different
> ip networks were connected on the same vlan on my linux router (.66.53).
> During this time both were reachable from the internet but not from eachother.
> One of the hosts received the following in its logfile:

I believe Linux will by default send ICMP redirects to hosts that are
forwarding via the same interface (ethernet only?). The theory is, if
the router got asked to forward a packet that came in and goes out the
same interface, there must be more direct route that can bypass this
router.

I think there is a /proc flag you can toggle to change this behaviour.

One complication you can hit with this behaviour is with state-full
firewalls; because the first packet does go via the firewall, but
subsequent packets use the ICMP redirected route, the connection
tracking gets confused. Even worse, if you have some hosts that ignore
the ICMP redirect (which some do by default), then you can have packets
in one direction bypassing the firewall, but not the replies. In this
case the firewall doesn't see the connection as established so doesn't
forward the reply packets. I know shorewall has an option to allow
"new-not-syn" packets through so that these replies do get forwarded.

-- 
Donovan Baarda <[EMAIL PROTECTED]>
http://minkirri.apana.org.au/~abo/


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: apt-get bcm5700-module-2.4.18

2003-11-20 Thread Alex Borges

> Allthough its things like this that break ones automatically
> kernelbuildingsystem for +25 debianservers :( I use to have script
> that did build an *.deb package based on config in .config but now i
> need to come up with something clever that compile the source against
> the running kernel... and im not really a kernel guy other that i know
> howto configure and compile and install a kernel?
> 

Well. It being a debian module, if all kernels are homogeneous, you just
need to build one deb among with your kernel and out it goes with it.

Like make-kpkg modules_image will make your deb for the same revission
of the kernel you are executing the command from. If youre in
/usr/src/kernel-source-2.4.18 it will build for that, be elsewere and it
will be for that other kernel.

I think kernel-package can solve most problems of that kind of
environment. Remember you can make it stamp revisions and all, and the
built modules will be stamped as well. THink about ti.





unsubscribe

2003-11-20 Thread afcio



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Exim store and forward

2003-11-20 Thread Adam Dawes
I tried Chris' approach below and that didn't seem to work either. But
following Dale's suggestion of using * instead of localhost. Just for the
future googlers, here's what I added to the top of my routers section to
store and forward for exim 3:

store_and_forward:
  driver = domainlist
  transport = remote_smtp
  route_list = "* smtp.myisp.net"

thanks for the help!

Adam

On Thu, 20 Nov 2003, Dale E Martin wrote:

> > If you don't want to upgrade to version 4, then try adding the
> > following as the very last router:
> >
> > smart_route:
> >   driver = domainlist
> >   transport = remote_smtp
> >   route_list = * smtp.myisp.net bydns_a
>
> If you make it the very last router, then you need to comment out the
> direct_remote: one that is (probably) currently the last one.  Basically
> what the original poster had was OK except that their route_list specified
> to use that route only for "localhost", not "*" iirc.
>
> Take care,
>  Dale
> --
> Dale E. Martin, Clifton Labs, Inc.
> Senior Computer Engineer
> [EMAIL PROTECTED]
> http://www.cliftonlabs.com
> pgp key available
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
>




Re: apt-get bcm5700-module-2.4.18

2003-11-20 Thread Alex Borges

> Allthough its things like this that break ones automatically
> kernelbuildingsystem for +25 debianservers :( I use to have script
> that did build an *.deb package based on config in .config but now i
> need to come up with something clever that compile the source against
> the running kernel... and im not really a kernel guy other that i know
> howto configure and compile and install a kernel?
> 

Well. It being a debian module, if all kernels are homogeneous, you just
need to build one deb among with your kernel and out it goes with it.

Like make-kpkg modules_image will make your deb for the same revission
of the kernel you are executing the command from. If youre in
/usr/src/kernel-source-2.4.18 it will build for that, be elsewere and it
will be for that other kernel.

I think kernel-package can solve most problems of that kind of
environment. Remember you can make it stamp revisions and all, and the
built modules will be stamped as well. THink about ti.



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Exim store and forward

2003-11-20 Thread Adam Dawes
I tried Chris' approach below and that didn't seem to work either. But
following Dale's suggestion of using * instead of localhost. Just for the
future googlers, here's what I added to the top of my routers section to
store and forward for exim 3:

store_and_forward:
  driver = domainlist
  transport = remote_smtp
  route_list = "* smtp.myisp.net"

thanks for the help!

Adam

On Thu, 20 Nov 2003, Dale E Martin wrote:

> > If you don't want to upgrade to version 4, then try adding the
> > following as the very last router:
> >
> > smart_route:
> >   driver = domainlist
> >   transport = remote_smtp
> >   route_list = * smtp.myisp.net bydns_a
>
> If you make it the very last router, then you need to comment out the
> direct_remote: one that is (probably) currently the last one.  Basically
> what the original poster had was OK except that their route_list specified
> to use that route only for "localhost", not "*" iirc.
>
> Take care,
>  Dale
> --
> Dale E. Martin, Clifton Labs, Inc.
> Senior Computer Engineer
> [EMAIL PROTECTED]
> http://www.cliftonlabs.com
> pgp key available
>
>
> --
> To UNSUBSCRIBE, email to [EMAIL PROTECTED]
> with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]
>


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: apt-get bcm5700-module-2.4.18

2003-11-20 Thread Thomas Kirk
On Thu, Nov 20, 2003 at 01:54:07PM -0600, Alex Borges wrote:

> Well, its a source module, so you will have to compile it for your
> running kernel. Other than that, ive a year and a half worth of uptime
> out of it on a woody install (gigabit and all) and it works well. 
> 
> This module is part of the standard woody release, no funny sources
> required as far as i know. 

Allthough its things like this that break ones automatically
kernelbuildingsystem for +25 debianservers :( I use to have script
that did build an *.deb package based on config in .config but now i
need to come up with something clever that compile the source against
the running kernel... and im not really a kernel guy other that i know
howto configure and compile and install a kernel?


-- 
Venlig hilsen/Kind regards
Thomas Kirk
ARKENA
tlf/phone +4570233456
thomas(at)arkena(dot)com
Http://www.arkena.com


"When will I learn? The answer to life's problems aren't at the
bottom of a bottle, they're on TV!" -- Homer Simpson




Re: E-Center in PHP and Payments per Credit-Cards

2003-11-20 Thread Michelle Konzack
Am 2003-11-20 12:22:51, schrieb Detelin Batchovski:
>Hello Michele,
>IMHO you have only 2 products, OpenSource and powerfull.
>http://www.icdevgroup.org  Interchange (Mod_Perl/MySQL/PostgreSQL, support 
>visa).Have good demo site.
>http://www.oscommerce.com (PHP/MySQL, support visa.).Have good demo site.

I will check out...

>Sorry, but they not suport PHP+PostgreSQL.Why not Interchange with Mod_Perl ?

I Program only in C, ASM, Tcl/Tk and PHP. 

I have not the Time to learn another Programming Language. 
(Need to programm some Enhancements which is in no regular Online-Shop) 

>HTH.
>Dido

Greetings
Michelle

-- 
Registered Linux-User #280138 with the Linux Counter, http://counter.li.org.




FW by MAILER-DAEMON@wanadoo.fr : Undelivered Mail Returned to Sender

2003-11-20 Thread Michelle Konzack
Hello Bao, 

I can not send you an E-Mail via my French ISP !!!
Look at the Following Message:

- Forwarded message from Mail Delivery System <[EMAIL PROTECTED]> -

Date: Thu, 20 Nov 2003 11:00:39 +0100 (CET)
Envelope-to: [EMAIL PROTECTED]
From: Mail Delivery System <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Undelivered Mail Returned to Sender

Content-Description: Notification
This is the SMTP Server program at host wanadoo.fr.

I'm sorry to have to inform you that the message returned
below could not be delivered to one or more destinations.

For further assistance, please send mail to 

If you do so, please include this problem report. You can
delete your own text from the message returned below.

The SMTP Server program
<[EMAIL PROTECTED]>: host mail.hacom.net[208.147.134.152] said: 451 Spam 
Received
See: http://www.dnsbl.sorbs.net/cgi-bin/lookup?IP=193.252.22.28

Content-Description: Delivery error report
Reporting-MTA: dns; wanadoo.fr
Arrival-Date: Wed, 19 Nov 2003 10:05:08 +0100 (CET)

Final-Recipient: rfc822; [EMAIL PROTECTED]
Action: failed
Status: 4.0.0
Diagnostic-Code: X-Postfix; host mail.hacom.net[208.147.134.152] said: 451 Spam
Received See: http://www.dnsbl.sorbs.net/cgi-bin/lookup?IP=193.252.22.28

Content-Description: Undelivered Message
Date: Wed, 19 Nov 2003 10:03:03 +0100
From: Michelle Konzack <[EMAIL PROTECTED]>
To: "Bao C. Ha" <[EMAIL PROTECTED]>
Subject: Re: DSL-Router (Server)
Organisation: Michelle's Selbstgebrautes
User-Agent: Mutt/1.5.4i

Hello Bao, 

Am 2003-11-18 20:53:09, schrieb Bao C. Ha:
>On Wed, Nov 19, 2003 at 02:04:26AM +0100, Michelle Konzack wrote:
>
>Hi Michelle,
>



- End forwarded message -




Re: apt-get bcm5700-module-2.4.18

2003-11-20 Thread Thomas Kirk
On Thu, Nov 20, 2003 at 01:54:07PM -0600, Alex Borges wrote:

> Well, its a source module, so you will have to compile it for your
> running kernel. Other than that, ive a year and a half worth of uptime
> out of it on a woody install (gigabit and all) and it works well. 
> 
> This module is part of the standard woody release, no funny sources
> required as far as i know. 

Allthough its things like this that break ones automatically
kernelbuildingsystem for +25 debianservers :( I use to have script
that did build an *.deb package based on config in .config but now i
need to come up with something clever that compile the source against
the running kernel... and im not really a kernel guy other that i know
howto configure and compile and install a kernel?


-- 
Venlig hilsen/Kind regards
Thomas Kirk
ARKENA
tlf/phone +4570233456
thomas(at)arkena(dot)com
Http://www.arkena.com


"When will I learn? The answer to life's problems aren't at the
bottom of a bottle, they're on TV!" -- Homer Simpson


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: apt-get bcm5700-module-2.4.18

2003-11-20 Thread Alex Borges
On Thu, 2003-11-20 at 08:38, Dan MacNeil wrote:
> Two questions:
> 
> 1) Has anyone done a:
> 
>   apt-get install bcm5700-module-2.4.18
> 

Well, its a source module, so you will have to compile it for your
running kernel. Other than that, ive a year and a half worth of uptime
out of it on a woody install (gigabit and all) and it works well. 

This module is part of the standard woody release, no funny sources
required as far as i know. 






Re: E-Center in PHP and Payments per Credit-Cards

2003-11-20 Thread Michelle Konzack
Am 2003-11-20 12:22:51, schrieb Detelin Batchovski:
>Hello Michele,
>IMHO you have only 2 products, OpenSource and powerfull.
>http://www.icdevgroup.org  Interchange (Mod_Perl/MySQL/PostgreSQL, support visa).Have 
>good demo site.
>http://www.oscommerce.com (PHP/MySQL, support visa.).Have good demo site.

I will check out...

>Sorry, but they not suport PHP+PostgreSQL.Why not Interchange with Mod_Perl ?

I Program only in C, ASM, Tcl/Tk and PHP. 

I have not the Time to learn another Programming Language. 
(Need to programm some Enhancements which is in no regular Online-Shop) 

>HTH.
>Dido

Greetings
Michelle

-- 
Registered Linux-User #280138 with the Linux Counter, http://counter.li.org.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



FW by MAILER-DAEMON@wanadoo.fr : Undelivered Mail Returned to Sender

2003-11-20 Thread Michelle Konzack
Hello Bao, 

I can not send you an E-Mail via my French ISP !!!
Look at the Following Message:

- Forwarded message from Mail Delivery System <[EMAIL PROTECTED]> -

Date: Thu, 20 Nov 2003 11:00:39 +0100 (CET)
Envelope-to: [EMAIL PROTECTED]
From: Mail Delivery System <[EMAIL PROTECTED]>
To: [EMAIL PROTECTED]
Subject: Undelivered Mail Returned to Sender

Content-Description: Notification
This is the SMTP Server program at host wanadoo.fr.

I'm sorry to have to inform you that the message returned
below could not be delivered to one or more destinations.

For further assistance, please send mail to 

If you do so, please include this problem report. You can
delete your own text from the message returned below.

The SMTP Server program
<[EMAIL PROTECTED]>: host mail.hacom.net[208.147.134.152] said: 451 Spam Received
See: http://www.dnsbl.sorbs.net/cgi-bin/lookup?IP=193.252.22.28

Content-Description: Delivery error report
Reporting-MTA: dns; wanadoo.fr
Arrival-Date: Wed, 19 Nov 2003 10:05:08 +0100 (CET)

Final-Recipient: rfc822; [EMAIL PROTECTED]
Action: failed
Status: 4.0.0
Diagnostic-Code: X-Postfix; host mail.hacom.net[208.147.134.152] said: 451 Spam
Received See: http://www.dnsbl.sorbs.net/cgi-bin/lookup?IP=193.252.22.28

Content-Description: Undelivered Message
Date: Wed, 19 Nov 2003 10:03:03 +0100
From: Michelle Konzack <[EMAIL PROTECTED]>
To: "Bao C. Ha" <[EMAIL PROTECTED]>
Subject: Re: DSL-Router (Server)
Organisation: Michelle's Selbstgebrautes
User-Agent: Mutt/1.5.4i

Hello Bao, 

Am 2003-11-18 20:53:09, schrieb Bao C. Ha:
>On Wed, Nov 19, 2003 at 02:04:26AM +0100, Michelle Konzack wrote:
>
>Hi Michelle,
>



- End forwarded message -


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: apt-get bcm5700-module-2.4.18

2003-11-20 Thread Alex Borges
On Thu, 2003-11-20 at 08:38, Dan MacNeil wrote:
> Two questions:
> 
> 1) Has anyone done a:
> 
>   apt-get install bcm5700-module-2.4.18
> 

Well, its a source module, so you will have to compile it for your
running kernel. Other than that, ive a year and a half worth of uptime
out of it on a woody install (gigabit and all) and it works well. 

This module is part of the standard woody release, no funny sources
required as far as i know. 




-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



apt-get bcm5700-module-2.4.18

2003-11-20 Thread Dan MacNeil

Two questions:

1) Has anyone done a:

apt-get install bcm5700-module-2.4.18

...with a stock 2.4.18 kernel or otherwise used this driver from without
the package system.

I would very much like to avoid custom compiling kernels so I can fix any
future kernel security holes with apt-get update/upgrade -s/upgrade ?

2) Has anyone gotten different apt-cache search results using the same
sources.list on different machines?

On machine (A) the broadcom package above shows up, On machine B it
does not.

sources.list below:

# See sources.list(5) for more information
deb http://debian.lcs.mit.edu/debian woody main contrib non-free
deb http://http.us.debian.org/debian woody main
deb http://security.debian.org/ woody/updates main contrib non-free
deb http://non-us.debian.org/debian-non-US stable/non-US main contrib
non-free
# deb http://tiefighter.et.tudelft.nl/~arthur/cvsd ./

# deb-src http://http.us.debian.org/debian testing main contrib non-free
deb-src http://debian.lcs.mit.edu/debian woody main contrib non-free
deb-src http://http.us.debian.org/debian woody main contrib non-free
deb-src http://security.debian.org/ woody/updates main contrib non-free
deb-src http://non-us.debian.org/debian-non-US stable/non-US main contrib
non-free





Re: Exim store and forward

2003-11-20 Thread Dale E Martin
> If you don't want to upgrade to version 4, then try adding the
> following as the very last router:
> 
> smart_route:
>   driver = domainlist
>   transport = remote_smtp
>   route_list = * smtp.myisp.net bydns_a

If you make it the very last router, then you need to comment out the
direct_remote: one that is (probably) currently the last one.  Basically
what the original poster had was OK except that their route_list specified
to use that route only for "localhost", not "*" iirc.

Take care,
 Dale
-- 
Dale E. Martin, Clifton Labs, Inc.
Senior Computer Engineer
[EMAIL PROTECTED]
http://www.cliftonlabs.com
pgp key available




Re: Mylex ExtremeRAID 1100

2003-11-20 Thread Michael Mahrhofer



Hi,
 
I'm using this beast on a Supermicro 370DL3. I used 
to test it on a MSI 815 Pro (MS-6326), standard ATX PIII board w/ Intel 815 
chipset. It runs also on a TYAN S1857 (Intel BX Chipset). You will have to try 
out all PCI slots since on some boards it works only in some slots.
HTH,
 
Michael


apt-get bcm5700-module-2.4.18

2003-11-20 Thread Dan MacNeil

Two questions:

1) Has anyone done a:

apt-get install bcm5700-module-2.4.18

...with a stock 2.4.18 kernel or otherwise used this driver from without
the package system.

I would very much like to avoid custom compiling kernels so I can fix any
future kernel security holes with apt-get update/upgrade -s/upgrade ?

2) Has anyone gotten different apt-cache search results using the same
sources.list on different machines?

On machine (A) the broadcom package above shows up, On machine B it
does not.

sources.list below:

# See sources.list(5) for more information
deb http://debian.lcs.mit.edu/debian woody main contrib non-free
deb http://http.us.debian.org/debian woody main
deb http://security.debian.org/ woody/updates main contrib non-free
deb http://non-us.debian.org/debian-non-US stable/non-US main contrib
non-free
# deb http://tiefighter.et.tudelft.nl/~arthur/cvsd ./

# deb-src http://http.us.debian.org/debian testing main contrib non-free
deb-src http://debian.lcs.mit.edu/debian woody main contrib non-free
deb-src http://http.us.debian.org/debian woody main contrib non-free
deb-src http://security.debian.org/ woody/updates main contrib non-free
deb-src http://non-us.debian.org/debian-non-US stable/non-US main contrib
non-free



-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Exim store and forward

2003-11-20 Thread Dale E Martin
> If you don't want to upgrade to version 4, then try adding the
> following as the very last router:
> 
> smart_route:
>   driver = domainlist
>   transport = remote_smtp
>   route_list = * smtp.myisp.net bydns_a

If you make it the very last router, then you need to comment out the
direct_remote: one that is (probably) currently the last one.  Basically
what the original poster had was OK except that their route_list specified
to use that route only for "localhost", not "*" iirc.

Take care,
 Dale
-- 
Dale E. Martin, Clifton Labs, Inc.
Senior Computer Engineer
[EMAIL PROTECTED]
http://www.cliftonlabs.com
pgp key available


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Mylex ExtremeRAID 1100

2003-11-20 Thread Michael Mahrhofer



Hi,
 
I'm using this beast on a Supermicro 370DL3. I used 
to test it on a MSI 815 Pro (MS-6326), standard ATX PIII board w/ Intel 815 
chipset. It runs also on a TYAN S1857 (Intel BX Chipset). You will have to try 
out all PCI slots since on some boards it works only in some slots.
HTH,
 
Michael


Why is Linux sending icmp redirects...

2003-11-20 Thread Christian Hammers
Hello

It seems that my linux router is sending icmp redirect messages to a
host telling him that it should use a gateway which is not on the same
ip subnet. According to http://www.faqs.org/rfcs/rfc792.html this is
not valid and so I'm wondering.  

The problem occured when two hosts (.66.54 and .77.18) from two different
ip networks were connected on the same vlan on my linux router (.66.53).
During this time both were reachable from the internet but not from eachother.
One of the hosts received the following in its logfile:

(addresses slightly anonymized and reformatted to ease reading)
Nov 12 07:23:46 xxx kernel: SuSE-FW-DROP-ICMP 
IN=eth2 OUT=

MAC=00:00:c0:96:98:fa : 00:02:b3:96:57:d7 : 08:00 (dst:src verified)
SRC=111.111.66.53 DST=111.111.66.54 

LEN=124 TOS=0x00 PREC=0xC0 TTL=64 ID=14493 

PROTO=ICMP TYPE=5 CODE=1 
GATEWAY=111.111.77.18 

[SRC=111.111.66.54 DST=111.111.77.18
LEN=96 TOS=0x00 PREC=0x00 TTL=64 ID=50043 
PROTO=ESP SPI=0x3e3556b ]

Any ideas?

bye,

-christian-




RE: E-Center in PHP and Payments per Credit-Cards

2003-11-20 Thread Detelin Batchovski
Hello Michele,
IMHO you have only 2 products, OpenSource and powerfull.
http://www.icdevgroup.org  Interchange (Mod_Perl/MySQL/PostgreSQL, support 
visa).Have good demo site.
http://www.oscommerce.com (PHP/MySQL, support visa.).Have good demo site.

Sorry, but they not suport PHP+PostgreSQL.Why not Interchange with Mod_Perl ?

HTH.
Dido



-Original Message-
From: Michelle Konzack [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 19, 2003 7:08 PM
To: debian-isp@lists.debian.org
Subject: E-Center in PHP and Payments per Credit-Cards

Hello, 

curently I am using 'Intershop 4' (90 days trial) but I think, 
it is a little bit too expensive 
(8 Shops with Credit-Card payment around 8000 €)

Is there a solution Open-Source written in PHP using postgresql 
and supports payments wit VISA dard ?

I like to start my Online-Store (Strasbourg) in January 2004...

Greetings
Michelle

-- 
Registered Linux-User #280138 with the Linux Counter, http://counter.li.org.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]




Why is Linux sending icmp redirects...

2003-11-20 Thread Christian Hammers
Hello

It seems that my linux router is sending icmp redirect messages to a
host telling him that it should use a gateway which is not on the same
ip subnet. According to http://www.faqs.org/rfcs/rfc792.html this is
not valid and so I'm wondering.  

The problem occured when two hosts (.66.54 and .77.18) from two different
ip networks were connected on the same vlan on my linux router (.66.53).
During this time both were reachable from the internet but not from eachother.
One of the hosts received the following in its logfile:

(addresses slightly anonymized and reformatted to ease reading)
Nov 12 07:23:46 xxx kernel: SuSE-FW-DROP-ICMP 
IN=eth2 OUT=

MAC=00:00:c0:96:98:fa : 00:02:b3:96:57:d7 : 08:00 (dst:src verified)
SRC=111.111.66.53 DST=111.111.66.54 

LEN=124 TOS=0x00 PREC=0xC0 TTL=64 ID=14493 

PROTO=ICMP TYPE=5 CODE=1 
GATEWAY=111.111.77.18 

[SRC=111.111.66.54 DST=111.111.77.18
LEN=96 TOS=0x00 PREC=0x00 TTL=64 ID=50043 
PROTO=ESP SPI=0x3e3556b ]

Any ideas?

bye,

-christian-


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



RE: E-Center in PHP and Payments per Credit-Cards

2003-11-20 Thread Detelin Batchovski
Hello Michele,
IMHO you have only 2 products, OpenSource and powerfull.
http://www.icdevgroup.org  Interchange (Mod_Perl/MySQL/PostgreSQL, support visa).Have 
good demo site.
http://www.oscommerce.com (PHP/MySQL, support visa.).Have good demo site.

Sorry, but they not suport PHP+PostgreSQL.Why not Interchange with Mod_Perl ?

HTH.
Dido



-Original Message-
From: Michelle Konzack [mailto:[EMAIL PROTECTED] 
Sent: Wednesday, November 19, 2003 7:08 PM
To: [EMAIL PROTECTED]
Subject: E-Center in PHP and Payments per Credit-Cards

Hello, 

curently I am using 'Intershop 4' (90 days trial) but I think, 
it is a little bit too expensive 
(8 Shops with Credit-Card payment around 8000 €)

Is there a solution Open-Source written in PHP using postgresql 
and supports payments wit VISA dard ?

I like to start my Online-Store (Strasbourg) in January 2004...

Greetings
Michelle

-- 
Registered Linux-User #280138 with the Linux Counter, http://counter.li.org.


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]


--
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]



Re: Exim store and forward

2003-11-20 Thread Chris Foote
On Wed, 19 Nov 2003, Adam Dawes wrote:

> I tried commenting out my snippet and adding yours in the beginning of the
> routers section. That ended up totally hosing my smtp. Pine gave me an
> error saying that the smtp server was unavailable when I tried testing it.
>
> Where exactly should I put your snippet in my exim file? And do I need to
> remove the snippet that I suggested below?

hmm... I know why it didn't; you're using version 3 (from your sent
mail headers):
Exim 3.35 #1 (Debian)
I was refering to version 4 which is a very different animal requiring
a different config.

If you don't want to upgrade to version 4, then try adding the
following as the very last router:

smart_route:
  driver = domainlist
  transport = remote_smtp
  route_list = * smtp.myisp.net bydns_a


Cheers,

Chris Foote <[EMAIL PROTECTED]>
  _  _ _Jabber: [EMAIL PROTECTED]
 (_)| |   | |   Director - INETD PTY LTD
  _   _ __ ___  | |___| |   Level 2, 132 Franklin St
 | | | '_ \   / _ \ | __|  / _` |   Adelaide SA 5000
 | | | | | | |  __/ | |_  | (_| |   Web:   http://www.inetd.com.au
 |_| |_| |_|  \___|  \__|  \__,_|   Phone: (08) 8410 4566

Inetd supports:
Linux.Conf.Au Adelaide Jan 12-17 2004
Australia's Premier Linux Conference
http://lca2004.linux.org.au