Re: High Availability (Re: MAC takeover )

1999-09-08 Thread Papezik Milon
Mike Nowlin wrote:
> 
> > Another issue: I was recently involved in a project which required HA
> > solutions (that's why I asked]. I gathered a lot of ideas and materials
> > (and perhaps some code if that company agrees to release it). Is ther
> > someone else here who is interested in these issues, and using FreeBSD for
> > that? We could start some info pages, howto's, and perhaps a mailing
> > list...
> 
> Definitely...  

... the same situation here.

And I think that a lot of ISP would at appreciate
at least some basic HA support in FreeBSD.

Milon
--
pape...@pvt.net, but speaking on my own.


To Unsubscribe: send mail to majord...@freebsd.org
with "unsubscribe freebsd-hackers" in the body of the message



Re: High Availability (Re: MAC takeover )

1999-09-08 Thread Papezik Milon

Mike Nowlin wrote:
> 
> > Another issue: I was recently involved in a project which required HA
> > solutions (that's why I asked]. I gathered a lot of ideas and materials
> > (and perhaps some code if that company agrees to release it). Is ther
> > someone else here who is interested in these issues, and using FreeBSD for
> > that? We could start some info pages, howto's, and perhaps a mailing
> > list...
> 
> Definitely...  

... the same situation here.

And I think that a lot of ISP would at appreciate
at least some basic HA support in FreeBSD.

Milon
--
[EMAIL PROTECTED], but speaking on my own.


To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



Re: High Availability (Re: MAC takeover )

1999-09-08 Thread Mike Nowlin

> Another issue: I was recently involved in a project which required HA
> solutions (that's why I asked]. I gathered a lot of ideas and materials
> (and perhaps some code if that company agrees to release it). Is ther
> someone else here who is interested in these issues, and using FreeBSD for
> that? We could start some info pages, howto's, and perhaps a mailing
> list...

Definitely...  I use FreeBSD for critical medical applications (no life
support equipment, though.. :) )  Although the main DB server is running
on an Alpha under DEC Unix (for legal reasons, not by choice), the rest of
the network is "powered by FreeBSD".  Failures are rare, but when they
happen, my pager goes off immediately, and I get to drop whatever I'm
doing and head off to work.  HA capabilities like this would really help
out -- most of the software running is duplicated between machines so one
box can take over another's workload if necessary, but it's a manual job
doing all the switching... (IP aliasing, NATD/IPFW changes, etc. just to
move DNS and printing to another box, for example.)  Although our
switching equipment has an "understanding" of path redundancy and other HA
techniques, most of the other boxes don't...  

I suppose the first thing I'd make use of would be the ability to drop two
ethernet cards (fxp, probably) into each machine -- if one of them croaks
("network cable yanked -- you mean I can't plug a phone into this
jack???" is the most frequent problem), the other one would be brought
online automatically -- preferrably with the same ethernet address to
avoid confusing the rest of the network.

--mike




To Unsubscribe: send mail to majord...@freebsd.org
with "unsubscribe freebsd-hackers" in the body of the message



High Availability (Re: MAC takeover )

1999-09-07 Thread Andrzej Bialecki
On Tue, 7 Sep 1999, David Sharp wrote:

> 
> The i82559 (fxp) hardware supports it.  I imagine most previous 
> versions of the chipset are also capable.  For the software,
> add an ioctl to fxp_ether_ioctl that changes the 
> fxp_init(sc).  Add your new ioctl to ifconfig and you should be done.

Thanks a lot! That's indeed a good news - as it happens I have quite a few
fxp on the shelves here...

Another issue: I was recently involved in a project which required HA
solutions (that's why I asked]. I gathered a lot of ideas and materials
(and perhaps some code if that company agrees to release it). Is ther
someone else here who is interested in these issues, and using FreeBSD for
that? We could start some info pages, howto's, and perhaps a mailing
list...

Andrzej Bialecki

//   WebGiro AB, Sweden (http://www.webgiro.com)
// ---
// -- FreeBSD: The Power to Serve. http://www.freebsd.org 
// --- Small & Embedded FreeBSD: http://www.freebsd.org/~picobsd/ 



To Unsubscribe: send mail to majord...@freebsd.org
with "unsubscribe freebsd-hackers" in the body of the message



Re: High Availability (Re: MAC takeover )

1999-09-07 Thread Mike Nowlin


> Another issue: I was recently involved in a project which required HA
> solutions (that's why I asked]. I gathered a lot of ideas and materials
> (and perhaps some code if that company agrees to release it). Is ther
> someone else here who is interested in these issues, and using FreeBSD for
> that? We could start some info pages, howto's, and perhaps a mailing
> list...

Definitely...  I use FreeBSD for critical medical applications (no life
support equipment, though.. :) )  Although the main DB server is running
on an Alpha under DEC Unix (for legal reasons, not by choice), the rest of
the network is "powered by FreeBSD".  Failures are rare, but when they
happen, my pager goes off immediately, and I get to drop whatever I'm
doing and head off to work.  HA capabilities like this would really help
out -- most of the software running is duplicated between machines so one
box can take over another's workload if necessary, but it's a manual job
doing all the switching... (IP aliasing, NATD/IPFW changes, etc. just to
move DNS and printing to another box, for example.)  Although our
switching equipment has an "understanding" of path redundancy and other HA
techniques, most of the other boxes don't...  

I suppose the first thing I'd make use of would be the ability to drop two
ethernet cards (fxp, probably) into each machine -- if one of them croaks
("network cable yanked -- you mean I can't plug a phone into this
jack???" is the most frequent problem), the other one would be brought
online automatically -- preferrably with the same ethernet address to
avoid confusing the rest of the network.

--mike




To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message



High Availability (Re: MAC takeover )

1999-09-07 Thread Andrzej Bialecki

On Tue, 7 Sep 1999, David Sharp wrote:

> 
> The i82559 (fxp) hardware supports it.  I imagine most previous 
> versions of the chipset are also capable.  For the software,
> add an ioctl to fxp_ether_ioctl that changes the 
> fxp_init(sc).  Add your new ioctl to ifconfig and you should be done.

Thanks a lot! That's indeed a good news - as it happens I have quite a few
fxp on the shelves here...

Another issue: I was recently involved in a project which required HA
solutions (that's why I asked]. I gathered a lot of ideas and materials
(and perhaps some code if that company agrees to release it). Is ther
someone else here who is interested in these issues, and using FreeBSD for
that? We could start some info pages, howto's, and perhaps a mailing
list...

Andrzej Bialecki

//  <[EMAIL PROTECTED]> WebGiro AB, Sweden (http://www.webgiro.com)
// ---
// -- FreeBSD: The Power to Serve. http://www.freebsd.org 
// --- Small & Embedded FreeBSD: http://www.freebsd.org/~picobsd/ 



To Unsubscribe: send mail to [EMAIL PROTECTED]
with "unsubscribe freebsd-hackers" in the body of the message