mirror of
				https://github.com/gyurix1968/guacamole-client.git
				synced 2025-10-31 09:03:21 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			37 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			XML
		
	
	
	
	
	
| <user-mapping>
 | |
| 	
 | |
|     <!-- Per-user authentication and config information -->
 | |
|     <authorize username="USERNAME" password="PASSWORD">
 | |
|         <protocol>vnc</protocol>
 | |
|         <param name="hostname">localhost</param>
 | |
|         <param name="port">5900</param>
 | |
|         <param name="password">VNCPASS</param>
 | |
|     </authorize>
 | |
| 
 | |
|     <!-- Another user, but using md5 to hash the password
 | |
|          (example below uses the md5 hash of "PASSWORD") -->
 | |
|     <authorize 
 | |
|             username="USERNAME2"
 | |
|             password="319f4d26e3c536b5dd871bb2c52e3178"
 | |
|             encoding="md5">
 | |
| 
 | |
|         <!-- First authorized connection -->
 | |
| 		<connection name="localhost">
 | |
|             <protocol>vnc</protocol>
 | |
|             <param name="hostname">localhost</param>
 | |
|             <param name="port">5901</param>
 | |
|             <param name="password">VNCPASS</param>
 | |
|         </connection>
 | |
| 
 | |
|         <!-- Second authorized connection -->
 | |
|    		<connection name="otherhost">
 | |
|             <protocol>vnc</protocol>
 | |
|             <param name="hostname">otherhost</param>
 | |
|             <param name="port">5900</param>
 | |
|             <param name="password">VNCPASS</param>
 | |
|         </connection>
 | |
| 
 | |
|  </authorize>
 | |
| 
 | |
| </user-mapping>
 |