The problem is not really with the name, the name is unusual but valid and there is no crossed RFC limitations. The problem is the way the name is treated. 24x7 internally uses Sybase networking components for agent communications. These components can accept both IP addresses and computer names. I guess they contain some piece of incorrect logic that checks what kind of connection information is passed. When it finds digits only in the destination name it assumes that an IP address is passed. Of course the connection then fails because the destination name is no an IP address. I don't think anything can be done quickly to correct the issue. It is also my understanding that you use some kind of dynamic IP schema and that's why you cannot use IP addresses. I suggest you find some workaround to deal with the issue. For example if you name agents as machine names you can create a job that will periodically run a ping each agent using the command line ping utility. The job can capture the output of ping command and use the reported agent's IP address to update agent information in the registry. Example JAL script to return comma-separated list of all configured 24x7 Remote Agent profiles: Dim( host_list, string ) RegistryList( "HKEY_LOCAL_MACHINE\SOFTWARE\SoftTree Technologies, Inc.\24x7 Scheduler\3.0\Agents", "SUBKEYS", host_list ) If you need further help with this job please let me know. : I'm not sure if the issue is Winsock or 24x7, but our : research and testing indicates it may be within 24x7. : We can ping the computername that begins with a digit. : We have other TCP apps on Windows that accept this : computername and resolve it to its IP address. : This seems to remove winsock as the problem. : RFC1123 specifies that a host name may begin with a : digit. Can you please look into this some more to : see if 24x7 is by chance not RFC1123 compliant? : Thank you, : Greg
|