Evening all, I posted this on another mailing list but I think there are a couple here that might be able to help. I am struggling to get the syntax right to add an equal-cost multi-path route under BSD and wondered if anyone out there could correct my mistake? I'm running FreeBSD 8.1 (actually its pfSense 2.0 Beta 4!). I have a virtual sand box on the go, I'm trying for something along the lines of:
route add -net 0.0.0.0/32 equalize nexthop via 192.168.0.1 nexthop via 192.168.0.2
With the intention of balancing per-packet across each of these gateways except I get this error instead:
route: writing to routing socket: Network is unreachable add net 0.0.0.0: gateway equalize: Network is unreachable
I'm rather tired, this stupid box has no man pages, so I stabbed again with:
route add -net 0.0.0.0/32 via 192.168.0.1 via 192.168.0.2 equalize route: bad address: via
Clearly my syntax is way out, but I'm tired and stuck for ideas. Anyone have clue to spare?