Jeremy Hansen wrote:
 > On the remote host, this is my config:

udp_send_channel {
  host = 1.1.1.1
  port = 8649
}


This is right.

On the receiving reporting server I have this:

/* You can specify as many udp_recv_channels as you like as well. */
udp_recv_channel {
  mcast_join = 239.2.11.71
  mcast_if = eth0
  port = 8649
  bind = 239.2.11.71
}

Not so right. Try:

udp_recv_channel {
        bind = 1.1.1.1
        port = 8649
}

This instructs the gmond to listen on the interface the other machine is connecting to.

/* You can specify as many tcp_accept_channels as you like to share
   an xml description of the state of the cluster */
tcp_accept_channel {
  port = 8649
}

This is right.

data_source "Blastoff Cluster" 1.1.1.1
gridname "Blastoff"
all_trusted on

This is right. Gmetad doesn't care whether a host is reporting unicast or multicast, all it needs is an ip and a port to connect to so it can pull down the XML tree.



Reply via email to