Changeset 2487


Ignore:
Timestamp:
Sep 28, 2009, 9:26:38 PM (15 years ago)
Author:
broder
Message:

Punt the "moocow" VNC password - it's dumb, and we already have our
own authentication mechanism (that uses real authentication).

Location:
trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • trunk/packages/invirt-web/code/templates/vnc.tmpl

    r1318 r2487  
    1616<APPLET CODE="VncViewer.class" ARCHIVE="https://$hostname:446/static/VncViewer.jar"
    1717        WIDTH="100%" HEIGHT="1000">
    18 <PARAM NAME="PASSWORD" VALUE="moocow">
    1918<PARAM NAME="PORT" VALUE="$port">
    2019<PARAM NAME="HOST" VALUE="$hostname">
  • trunk/packages/invirt-web/debian/changelog

    r2227 r2487  
     1invirt-web (0.0.22) unstable; urgency=low
     2
     3  * Don't supply a password to the VNC server, since one is no longer
     4    required.
     5
     6 -- Evan Broder <broder@mit.edu>  Mon, 28 Sep 2009 21:24:06 -0400
     7
    18invirt-web (0.0.21) unstable; urgency=low
    29
  • trunk/packages/invirt-xen-config/debian/changelog

    r2367 r2487  
     1invirt-xen-config (0.0.26) unstable; urgency=low
     2
     3  * Kill the moocow password for the VNC server. Not setting this variable
     4    causes VNC clients to not prompt for a password instead.
     5
     6 -- Evan Broder <broder@mit.edu>  Mon, 28 Sep 2009 21:20:21 -0400
     7
    18invirt-xen-config (0.0.25) unstable; urgency=low
    29
  • trunk/packages/invirt-xen-config/invirt-database

    r2367 r2487  
    7878    builder = 'hvm'
    7979    vnc = 1
    80     vncpasswd = 'moocow'
    8180    device_model = '/usr/sbin/qemu-dm-invirt'
    8281    serial = "pty"
  • trunk/scripts/vnc-client/invirt-vnc-client

    r2096 r2487  
    202202        reactor.listenTCP(listen[1], ProxyFactory(connect_host, connect_port, authtoken, machine))
    203203   
    204     print "Ready to connect. Connect to %s:%s (display %d) now with your VNC client. The password is 'moocow'." % (listen[0], listen[1], listen[1]-5900)
     204    print "Ready to connect. Connect to %s:%s (display %d) now with your VNC"
     205    print "client. There should be no password." % (listen[0], listen[1], listen[1]-5900)
    205206    print "You must connect before your authentication token expires at %s." % \
    206207          (time.ctime(token_expires))
Note: See TracChangeset for help on using the changeset viewer.