> I'm trying to set up a group of servers (these are running on VMWare
> ESXi, and working great -- CPU server running with two APs, though
> adding more causes it to fault with a divide by zero?). Auth server's
could you be more specific about this?
> The FS, however, sits on a private network. CPU and Auth are connected
> to this network via ether1. However, I'm having the following issues:
>
> #1) Using two networks on two different interfaces is a pain in the
> ass. I've got:
> bind '#l1' /net.alt
> bind '#I1' /net.alt
you want something like this in /lib/namespace.machinewith2ndipstack
cat /lib/namespace.ladd
bind -b #l1 /net.alt
bind -b #I1 /net.alt
mount -a /srv/cs_net.alt /net.alt
mount -a /srv/dns_net.alt /net.alt
#
and you want something like this in your cpurc
bind -b '#l1' /net.alt
bind -b '#I1' /net.alt
ip/ipconfig -x /net.alt -g 192.168.10.254 ether /net.alt/ether1 add
192.168.10.1 /120
ndb/cs -x /net.alt -f /lib/ndb/external
ndb/dns -Rrsx /net.alt -f /lib/ndb/external #external
- or -
ndb/dns -s #internal
aux/listen -q -t /rc/bin/service.auth -d /rc/bin/service.ext
/net.alt/tcp
- erik