[FreeNX-kNX] VNC and FreeNX 0.5

Michael Gorbovitski mickg at mickg.net
Wed Aug 2 05:43:19 UTC 2006


Had the issue that the windows nx client 2.0 would not work with a vnc session.

Tracked it down to the windows nxclient sending the address in an url-encoded form:
	server.com%3Adisplaynumber
instead of
	server.com:displaynumber
displaynumber is a number.

The freenx nxagent does not recognize this, and wants server.com:displaynumber.

This is, IMO, a bug (not a configuration issue), and can be fixed by replacing
   agent_server=$(getparam agent_server)
with
   agent_server=$(getparam agent_server | sed 's/%3A/:/g')
in nxnode.


This, at least, fixed it for me.


mickg




More information about the FreeNX-kNX mailing list