Re: multiple definitions of ROUNDUP macro

2004-04-13 Thread Brooks Davis
On Tue, Apr 13, 2004 at 01:47:20AM -0700, Luigi Rizzo wrote: > The ROUNDUP macro, used to account for the space occupied by a sockaddr > when passed through a routing socket, is defined in a zillion places: > > src/usr.sbin/IPXrouted/startup.c:#define ROUNDUP(a) \ > src/usr.sbin/arp/arp.c:#defi

Re: Double ISP Links

2004-04-13 Thread Per Engelbrecht
Hi Eicke What you're talking about is a multi-homed router. My best advice to you is Zebra (/usr/ports/net/zebra [v. 0.94]) and also have a look at www.zebra.org Zebra is a routing tool that can handle RIP, OSPF and BGP It shares the same (almost) syntax as Cisco's IOS. Zebra is build in modules,

NAT issue - answer packets not sent to default gateway

2004-04-13 Thread Emre Bastuz
Hi, I have a FreeBSD box with four interfaces (actually four VLAN interfaces over one trunk). Packets from arbitrary IP addresses are supposed to arrive through interfaces 1-3 and the answer to those requests is supposed to be sent out on interface 4 (which is the default gateway). Main goal is

Double ISP Links

2004-04-13 Thread Eicke Felipe
Hi folks, I have a server configured with one ISP link. The server runs IPFW and NATD. I need to attach a new ethernet card and configure another ISP link in this server. How can I make this and, if possible, configure it with load balance. Thanks and regards. Eicke.

Re: multiple definitions of ROUNDUP macro

2004-04-13 Thread Ruslan Ermilov
On Tue, Apr 13, 2004 at 01:47:20AM -0700, Luigi Rizzo wrote: > The ROUNDUP macro, used to account for the space occupied by a sockaddr > when passed through a routing socket, is defined in a zillion places: > > src/usr.sbin/IPXrouted/startup.c:#define ROUNDUP(a) \ > src/usr.sbin/arp/arp.c:#defi

multiple definitions of ROUNDUP macro

2004-04-13 Thread Luigi Rizzo
The ROUNDUP macro, used to account for the space occupied by a sockaddr when passed through a routing socket, is defined in a zillion places: src/usr.sbin/IPXrouted/startup.c:#define ROUNDUP(a) \ src/usr.sbin/arp/arp.c:#define ROUNDUP(a) \ src/usr.sbin/ndp/ndp.c:#define ROUNDUP(a) \ src/usr.sbi