> > Hi all,
> > During the client installation, I configure so that all the clients
> > are running the daemon "/usr/sbin/nsr/nsrexecd -s backup -s backup2".
> The hosts mentioned there are hosts which are allowed to begin backups.
> It's an authorization control, not a backup interface setting.
I see.
Quote:> > The backup server has two network interfaces called backup and
> > backup2.
> > The usage of the second interface is hardly any.
> > # netstat -ni
> > Name Mtu Net/Dest Address Ipkts Ierrs Opkts
> > Oerrs Collis Queue
> > lo0 8232 127.0.0.0 127.0.0.1 3001477 0 3001477 0
> > 0 0
> > hme0 1500 192.168.1.0 192.168.1.80 601802621 4 261315655 0
> > 0 0
> > hme1 1500 192.168.1.0 192.168.1.81 383168 0 323 0
> > 0 0
> > I think it is because of the same MAC address of the two interfaces.
> > If I give a different MAC address on the second interface would the
> > backup clients send data through it?
> No. You have to tell them to use it.
> Since I see 'nsr' commands, you're using Solstice Backup or Legato
> Networker.
Yes.
> Go into the client settings for a client. One of the fields is "server
> network interface" (I think it may be a hidden field). Set that to the
> interface you want the client to use on the server. I'm guessing that
> would be 'backup2' in your case. Without that field set, it uses the
> name of the server itself.
I can't find the file to set the interface.
I was thinking because of the same MAC address it will use the same
interface (hme0).
When I ping the hme1 interface and do snoop on the hme0 interface.
# snoop -d hme0 | grep backup2
Using device /dev/hme (promiscuous mode)
server1 -> backup2 ICMP Echo request (ID: 10447 Sequence
number: 0)
backup2 -> server1 ICMP Echo reply (ID: 10447 Sequence
number: 0)
server1 -> backup2 ICMP Echo request (ID: 10447 Sequence
number: 2)
backup2 -> server1 ICMP Echo reply (ID: 10447 Sequence
number: 2)
server1 -> backup2 ICMP Echo request (ID: 10447 Sequence
number: 5)
backup2 -> server1 ICMP Echo reply (ID: 10447 Sequence
number: 5)
server1 -> backup2 ICMP Echo request (ID: 10447 Sequence
number: 6)
backup2 -> server1 ICMP Echo reply (ID: 10447 Sequence
number: 6)
server1 -> backup2 ICMP Echo request (ID: 10447 Sequence
number: 7)
backup2 -> server1 ICMP Echo reply (ID: 10447 Sequence
number: 7)
Thank you.