From a090ca495e7f6b2bd44d3a5422f17ff4563fae8a Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Fri, 15 Dec 2006 17:33:31 +0000 Subject: VNC pasword authentication support for the paravirt framebuffer server. The rules for configuring the password are equivalent of those used for HVM, but the actual guest config option is a little different as a result of the recent refactoring of the PVFB config file syntax. - If the 'vfb' option in the guest config has a 'vncpasswd' parameter specified - If the passwd is not zero length, use that - Else run with no authentication (important as it enables override of next rule) - Else-if the xend-config.sxp has a password specified use that - Else run with no authentication Example configuration: - To set an explicit guest password: vfb = [ "type=vnc,vncunused=1,vnclisten=0.0.0.0,vncpasswd=123456"] - To disable authentication, overriding any XenD configured default password vfb = [ "type=vnc,vncunused=1,vnclisten=0.0.0.0,vncpasswd="] - To run with default XenD configured password (if any) vfb = [ "type=vnc,vncunused=1,vnclisten=0.0.0.0"] Signed-off-by: Daniel P. Berrange --- .hgignore | 1 + 1 file changed, 1 insertion(+) (limited to '.hgignore') diff --git a/.hgignore b/.hgignore index b445a0d342..d4127b6d1f 100644 --- a/.hgignore +++ b/.hgignore @@ -229,3 +229,4 @@ ^unmodified_drivers/linux-2.6/.*\.cmd$ ^unmodified_drivers/linux-2.6/.*\.ko$ ^unmodified_drivers/linux-2.6/.*\.mod\.c$ +^LibVNCServer.* -- cgit v1.2.3