- Timestamp:
- Dec 1, 2010 11:39:52 AM (14 years ago)
- Location:
- trunk/doc/manual/en_US
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/doc/manual/en_US/SDKRef.xml
r34392 r34563 428 428 429 429 <para>By default, after installation, the web service uses the 430 V RDPAuth module that ships with VirtualBox. This module uses PAM on430 VBoxAuth module that ships with VirtualBox. This module uses PAM on 431 431 Linux hosts to authenticate users. Any valid username/password 432 432 combination is accepted, it does not have to be the username and -
trunk/doc/manual/en_US/user_AdvancedTopics.xml
r34539 r34563 787 787 entry point:</para> 788 788 789 <screen>#include "V RDPAuth.h"789 <screen>#include "VBoxAuth.h" 790 790 791 791 /** … … 807 807 * Return code: 808 808 * 809 * VRDPAuthAccessDenied Client access has been denied.810 * VRDPAuthAccessGranted Client has the right to use the811 * virtual machine.812 * VRDPAuthDelegateToGuest Guest operating system must813 * authenticate the client and the814 * library must be called again with815 * the result of the guest816 * authentication.809 * AuthResultAccessDenied Client access has been denied. 810 * AuthResultAccessGranted Client has the right to use the 811 * virtual machine. 812 * AuthResultDelegateToGuest Guest operating system must 813 * authenticate the client and the 814 * library must be called again with 815 * the result of the guest 816 * authentication. 817 817 */ 818 VRDPAuthResult VRDPAUTHCALL VRDPAuth2( 818 AuthResult AUTHCALL AuthEntry( 819 const char *szCaller, 819 820 PVRDPAUTHUUID pUuid, 820 821 VRDPAuthGuestJudgement guestJudgement, … … 826 827 { 827 828 /* process request against your authentication source of choice */ 828 return VRDPAuthAccessGranted;829 return AuthResultAccessGranted; 829 830 }</screen> 830 831 … … 853 854 <para>The second arguments contains information about the guest 854 855 authentication status. For the first call, it is always set to 855 <computeroutput> VRDPAuthGuestNotAsked</computeroutput>. In case the856 <computeroutput>AuthGuestNotAsked</computeroutput>. In case the 856 857 function returns 857 <computeroutput> VRDPAuthDelegateToGuest</computeroutput>, a guest858 <computeroutput>AuthResultDelegateToGuest</computeroutput>, a guest 858 859 authentication will be attempted and another call to the method is made 859 860 with its result. This can be either granted / denied or no judgement -
trunk/doc/manual/en_US/user_Frontends.xml
r33386 r34563 388 388 <computeroutput>VBoxManage setproperty vrdeauthlibrary "VBoxAuthSimple"</computeroutput>. 389 389 To enable the library for a VM, switch authentication to external using 390 <computeroutput>VBoxManage modifyvm "VM name" --vrd pauthtype external</computeroutput>.390 <computeroutput>VBoxManage modifyvm "VM name" --vrdeauthtype external</computeroutput>. 391 391 Last but not least, you have to configure users and passwords. Here is an example 392 392 for the user "john" with the password "secret": -
trunk/doc/manual/en_US/user_VBoxManage.xml
r34531 r34563 941 941 942 942 <listitem> 943 <para><computeroutput>--vrd pauthtype943 <para><computeroutput>--vrdeauthtype 944 944 null|external|guest</computeroutput>: This allows you to choose 945 945 whether and how authorization will be performed; see <xref
Note:
See TracChangeset
for help on using the changeset viewer.